com.google.cloud.dialogflow.cx.v3beta1.ValidationMessageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3beta1/validation_message.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
public interface ValidationMessageOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.ValidationMessage)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The type of the resources where the message is found.
*
*
* .google.cloud.dialogflow.cx.v3beta1.ValidationMessage.ResourceType resource_type = 1;
*
*
* @return The enum numeric value on the wire for resourceType.
*/
int getResourceTypeValue();
/**
*
*
*
* The type of the resources where the message is found.
*
*
* .google.cloud.dialogflow.cx.v3beta1.ValidationMessage.ResourceType resource_type = 1;
*
*
* @return The resourceType.
*/
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.ResourceType getResourceType();
/**
*
*
*
* The names of the resources where the message is found.
*
*
* repeated string resources = 2 [deprecated = true];
*
* @deprecated google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See
* google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96
* @return A list containing the resources.
*/
@java.lang.Deprecated
java.util.List getResourcesList();
/**
*
*
*
* The names of the resources where the message is found.
*
*
* repeated string resources = 2 [deprecated = true];
*
* @deprecated google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See
* google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96
* @return The count of resources.
*/
@java.lang.Deprecated
int getResourcesCount();
/**
*
*
*
* The names of the resources where the message is found.
*
*
* repeated string resources = 2 [deprecated = true];
*
* @deprecated google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See
* google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96
* @param index The index of the element to return.
* @return The resources at the given index.
*/
@java.lang.Deprecated
java.lang.String getResources(int index);
/**
*
*
*
* The names of the resources where the message is found.
*
*
* repeated string resources = 2 [deprecated = true];
*
* @deprecated google.cloud.dialogflow.cx.v3beta1.ValidationMessage.resources is deprecated. See
* google/cloud/dialogflow/cx/v3beta1/validation_message.proto;l=96
* @param index The index of the value to return.
* @return The bytes of the resources at the given index.
*/
@java.lang.Deprecated
com.google.protobuf.ByteString getResourcesBytes(int index);
/**
*
*
*
* The resource names of the resources where the message is found.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
*/
java.util.List getResourceNamesList();
/**
*
*
*
* The resource names of the resources where the message is found.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
*/
com.google.cloud.dialogflow.cx.v3beta1.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;
*/
int getResourceNamesCount();
/**
*
*
*
* The resource names of the resources where the message is found.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
*/
java.util.List extends com.google.cloud.dialogflow.cx.v3beta1.ResourceNameOrBuilder>
getResourceNamesOrBuilderList();
/**
*
*
*
* The resource names of the resources where the message is found.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.ResourceName resource_names = 6;
*/
com.google.cloud.dialogflow.cx.v3beta1.ResourceNameOrBuilder getResourceNamesOrBuilder(int index);
/**
*
*
*
* Indicates the severity of the message.
*
*
* .google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Severity severity = 3;
*
* @return The enum numeric value on the wire for severity.
*/
int getSeverityValue();
/**
*
*
*
* Indicates the severity of the message.
*
*
* .google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Severity severity = 3;
*
* @return The severity.
*/
com.google.cloud.dialogflow.cx.v3beta1.ValidationMessage.Severity getSeverity();
/**
*
*
*
* The message detail.
*
*
* string detail = 4;
*
* @return The detail.
*/
java.lang.String getDetail();
/**
*
*
*
* The message detail.
*
*
* string detail = 4;
*
* @return The bytes for detail.
*/
com.google.protobuf.ByteString getDetailBytes();
}