Interface ValidationMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ValidationMessage
,ValidationMessage.Builder
public interface ValidationMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getDetail()
The message detail.com.google.protobuf.ByteString
getDetailBytes()
The message detail.ResourceName
getResourceNames(int index)
The resource names of the resources where the message is found.int
getResourceNamesCount()
The resource names of the resources where the message is found.List<ResourceName>
getResourceNamesList()
The resource names of the resources where the message is found.ResourceNameOrBuilder
getResourceNamesOrBuilder(int index)
The resource names of the resources where the message is found.List<? extends ResourceNameOrBuilder>
getResourceNamesOrBuilderList()
The resource names of the resources where the message is found.String
getResources(int index)
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated.com.google.protobuf.ByteString
getResourcesBytes(int index)
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated.int
getResourcesCount()
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated.List<String>
getResourcesList()
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated.ValidationMessage.ResourceType
getResourceType()
The type of the resources where the message is found.int
getResourceTypeValue()
The type of the resources where the message is found.ValidationMessage.Severity
getSeverity()
Indicates the severity of the message.int
getSeverityValue()
Indicates the severity of the message.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceTypeValue
int getResourceTypeValue()
The type of the resources where the message is found.
.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.ResourceType resource_type = 1;
- Returns:
- The enum numeric value on the wire for resourceType.
-
getResourceType
ValidationMessage.ResourceType getResourceType()
The type of the resources where the message is found.
.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.ResourceType resource_type = 1;
- Returns:
- The resourceType.
-
getResourcesList
@Deprecated List<String> getResourcesList()
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96The names of the resources where the message is found.
repeated string resources = 2 [deprecated = true];
- Returns:
- A list containing the resources.
-
getResourcesCount
@Deprecated int getResourcesCount()
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96The names of the resources where the message is found.
repeated string resources = 2 [deprecated = true];
- Returns:
- The count of resources.
-
getResources
@Deprecated String getResources(int index)
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96The names of the resources where the message is found.
repeated string resources = 2 [deprecated = true];
- Parameters:
index
- The index of the element to return.- Returns:
- The resources at the given index.
-
getResourcesBytes
@Deprecated com.google.protobuf.ByteString getResourcesBytes(int index)
Deprecated.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96The names of the resources where the message is found.
repeated string resources = 2 [deprecated = true];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the resources at the given index.
-
getResourceNamesList
List<ResourceName> getResourceNamesList()
The resource names of the resources where the message is found.
repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
-
getResourceNames
ResourceName getResourceNames(int index)
The resource names of the resources where the message is found.
repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
-
getResourceNamesCount
int getResourceNamesCount()
The resource names of the resources where the message is found.
repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
-
getResourceNamesOrBuilderList
List<? extends ResourceNameOrBuilder> getResourceNamesOrBuilderList()
The resource names of the resources where the message is found.
repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
-
getResourceNamesOrBuilder
ResourceNameOrBuilder getResourceNamesOrBuilder(int index)
The resource names of the resources where the message is found.
repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
-
getSeverityValue
int getSeverityValue()
Indicates the severity of the message.
.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Severity severity = 3;
- Returns:
- The enum numeric value on the wire for severity.
-
getSeverity
ValidationMessage.Severity getSeverity()
Indicates the severity of the message.
.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Severity severity = 3;
- Returns:
- The severity.
-
getDetail
String getDetail()
The message detail.
string detail = 4;
- Returns:
- The detail.
-
getDetailBytes
com.google.protobuf.ByteString getDetailBytes()
The message detail.
string detail = 4;
- Returns:
- The bytes for detail.
-
-