com.google.cloud.dialogflow.cx.v3beta1.DeploymentOrBuilder 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/deployment.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
public interface DeploymentOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.Deployment)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of the deployment.
* Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/environments/<Environment ID>/deployments/<Deployment ID>.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The name of the deployment.
* Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/environments/<Environment ID>/deployments/<Deployment ID>.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The name of the flow version for this deployment.
* Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/versions/<Verion ID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The flowVersion.
*/
java.lang.String getFlowVersion();
/**
*
*
*
* The name of the flow version for this deployment.
* Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/versions/<Verion ID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for flowVersion.
*/
com.google.protobuf.ByteString getFlowVersionBytes();
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The state.
*/
com.google.cloud.dialogflow.cx.v3beta1.Deployment.State getState();
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return Whether the result field is set.
*/
boolean hasResult();
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return The result.
*/
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result getResult();
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder getResultOrBuilder();
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder();
}