com.pulumi.googlenative.dialogflow.v3beta1.TransitionRouteGroupArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.dialogflow.v3beta1;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.googlenative.dialogflow.v3beta1.inputs.GoogleCloudDialogflowCxV3beta1TransitionRouteArgs;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TransitionRouteGroupArgs extends com.pulumi.resources.ResourceArgs {
public static final TransitionRouteGroupArgs Empty = new TransitionRouteGroupArgs();
@Import(name="agentId", required=true)
private Output agentId;
public Output agentId() {
return this.agentId;
}
/**
* The human-readable name of the transition route group, unique within the flow. The display name can be no longer than 30 characters.
*
*/
@Import(name="displayName", required=true)
private Output displayName;
/**
* @return The human-readable name of the transition route group, unique within the flow. The display name can be no longer than 30 characters.
*
*/
public Output displayName() {
return this.displayName;
}
@Import(name="flowId", required=true)
private Output flowId;
public Output flowId() {
return this.flowId;
}
/**
* The language of the following fields in `TransitionRouteGroup`: * `TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` * `TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note: languages must be enabled in the agent before they can be used.
*
*/
@Import(name="languageCode")
private @Nullable Output languageCode;
/**
* @return The language of the following fields in `TransitionRouteGroup`: * `TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` * `TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases` If not specified, the agent's default language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note: languages must be enabled in the agent before they can be used.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy