1. Packages
  2. Google Cloud Native
  3. API Docs
  4. dialogflow
  5. dialogflow/v3beta1
  6. Flow

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.dialogflow/v3beta1.Flow

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a flow in the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.

    Create Flow Resource

    new Flow(name: string, args: FlowArgs, opts?: CustomResourceOptions);
    @overload
    def Flow(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             advanced_settings: Optional[GoogleCloudDialogflowCxV3beta1AdvancedSettingsArgs] = None,
             agent_id: Optional[str] = None,
             description: Optional[str] = None,
             display_name: Optional[str] = None,
             event_handlers: Optional[Sequence[GoogleCloudDialogflowCxV3beta1EventHandlerArgs]] = None,
             knowledge_connector_settings: Optional[GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsArgs] = None,
             language_code: Optional[str] = None,
             location: Optional[str] = None,
             name: Optional[str] = None,
             nlu_settings: Optional[GoogleCloudDialogflowCxV3beta1NluSettingsArgs] = None,
             project: Optional[str] = None,
             transition_route_groups: Optional[Sequence[str]] = None,
             transition_routes: Optional[Sequence[GoogleCloudDialogflowCxV3beta1TransitionRouteArgs]] = None)
    @overload
    def Flow(resource_name: str,
             args: FlowArgs,
             opts: Optional[ResourceOptions] = None)
    func NewFlow(ctx *Context, name string, args FlowArgs, opts ...ResourceOption) (*Flow, error)
    public Flow(string name, FlowArgs args, CustomResourceOptions? opts = null)
    public Flow(String name, FlowArgs args)
    public Flow(String name, FlowArgs args, CustomResourceOptions options)
    
    type: google-native:dialogflow/v3beta1:Flow
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FlowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FlowArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FlowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FlowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FlowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Flow Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Flow resource accepts the following input properties:

    AgentId string
    DisplayName string

    The human-readable name of the flow.

    AdvancedSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    Description string

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    EventHandlers List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1EventHandler>

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    KnowledgeConnectorSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

    Optional. Knowledge connector configuration.

    LanguageCode string

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    Location string
    Name string

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    NluSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1NluSettings

    NLU related settings of the flow.

    Project string
    TransitionRouteGroups List<string>

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    TransitionRoutes List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1TransitionRoute>

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    AgentId string
    DisplayName string

    The human-readable name of the flow.

    AdvancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsArgs

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    Description string

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    EventHandlers []GoogleCloudDialogflowCxV3beta1EventHandlerArgs

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    KnowledgeConnectorSettings GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsArgs

    Optional. Knowledge connector configuration.

    LanguageCode string

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    Location string
    Name string

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    NluSettings GoogleCloudDialogflowCxV3beta1NluSettingsArgs

    NLU related settings of the flow.

    Project string
    TransitionRouteGroups []string

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    TransitionRoutes []GoogleCloudDialogflowCxV3beta1TransitionRouteArgs

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    agentId String
    displayName String

    The human-readable name of the flow.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    description String

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    eventHandlers List<GoogleCloudDialogflowCxV3beta1EventHandler>

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    knowledgeConnectorSettings GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

    Optional. Knowledge connector configuration.

    languageCode String

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    location String
    name String

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    nluSettings GoogleCloudDialogflowCxV3beta1NluSettings

    NLU related settings of the flow.

    project String
    transitionRouteGroups List<String>

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    transitionRoutes List<GoogleCloudDialogflowCxV3beta1TransitionRoute>

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    agentId string
    displayName string

    The human-readable name of the flow.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    description string

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    eventHandlers GoogleCloudDialogflowCxV3beta1EventHandler[]

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    knowledgeConnectorSettings GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

    Optional. Knowledge connector configuration.

    languageCode string

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    location string
    name string

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    nluSettings GoogleCloudDialogflowCxV3beta1NluSettings

    NLU related settings of the flow.

    project string
    transitionRouteGroups string[]

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    transitionRoutes GoogleCloudDialogflowCxV3beta1TransitionRoute[]

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    agent_id str
    display_name str

    The human-readable name of the flow.

    advanced_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsArgs

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    description str

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    event_handlers Sequence[GoogleCloudDialogflowCxV3beta1EventHandlerArgs]

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    knowledge_connector_settings GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsArgs

    Optional. Knowledge connector configuration.

    language_code str

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    location str
    name str

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    nlu_settings GoogleCloudDialogflowCxV3beta1NluSettingsArgs

    NLU related settings of the flow.

    project str
    transition_route_groups Sequence[str]

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    transition_routes Sequence[GoogleCloudDialogflowCxV3beta1TransitionRouteArgs]

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    agentId String
    displayName String

    The human-readable name of the flow.

    advancedSettings Property Map

    Hierarchical advanced settings for this flow. The settings exposed at the lower level overrides the settings exposed at the higher level.

    description String

    The description of the flow. The maximum length is 500 characters. If exceeded, the request is rejected.

    eventHandlers List<Property Map>

    A flow's event handlers serve two purposes: * They are responsible for handling events (e.g. no match, webhook errors) in the flow. * They are inherited by every page's event handlers, which can be used to handle common events regardless of the current page. Event handlers defined in the page have higher priority than those defined in the flow. Unlike transition_routes, these handlers are evaluated on a first-match basis. The first one that matches the event get executed, with the rest being ignored.

    knowledgeConnectorSettings Property Map

    Optional. Knowledge connector configuration.

    languageCode String

    The language of the following fields in flow: * Flow.event_handlers.trigger_fulfillment.messages * Flow.event_handlers.trigger_fulfillment.conditional_cases * Flow.transition_routes.trigger_fulfillment.messages * Flow.transition_routes.trigger_fulfillment.conditional_cases If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

    location String
    name String

    The unique identifier of the flow. Format: projects//locations//agents//flows/.

    nluSettings Property Map

    NLU related settings of the flow.

    project String
    transitionRouteGroups List<String>

    A flow's transition route group serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition route groups. Transition route groups defined in the page have higher priority than those defined in the flow. Format:projects//locations//agents//flows//transitionRouteGroups/ or projects//locations//agents//transitionRouteGroups/ for agent-level groups.

    transitionRoutes List<Property Map>

    A flow's transition routes serve two purposes: * They are responsible for matching the user's first utterances in the flow. * They are inherited by every page's transition routes and can support use cases such as the user saying "help" or "can I talk to a human?", which can be handled in a common way regardless of the current page. Transition routes defined in the page have higher priority than those defined in the flow. TransitionRoutes are evalauted in the following order: * TransitionRoutes with intent specified. * TransitionRoutes with only condition specified. TransitionRoutes with intent specified are inherited by pages in the flow.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Flow resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Supporting Types

    GoogleCloudDialogflowCxV3beta1AdvancedSettings, GoogleCloudDialogflowCxV3beta1AdvancedSettingsArgs

    AudioExportGcsDestination Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1GcsDestination

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    DtmfSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    LoggingSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    AudioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestination

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    DtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    LoggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestination

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestination

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audio_export_gcs_destination GoogleCloudDialogflowCxV3beta1GcsDestination

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmf_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    logging_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination Property Map

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings Property Map

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings Property Map

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings, GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsArgs

    Enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    FinishDigit string

    The digit that terminates a DTMF digit sequence.

    MaxDigits int

    Max length of DTMF digits.

    Enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    FinishDigit string

    The digit that terminates a DTMF digit sequence.

    MaxDigits int

    Max length of DTMF digits.

    enabled Boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit String

    The digit that terminates a DTMF digit sequence.

    maxDigits Integer

    Max length of DTMF digits.

    enabled boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit string

    The digit that terminates a DTMF digit sequence.

    maxDigits number

    Max length of DTMF digits.

    enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finish_digit str

    The digit that terminates a DTMF digit sequence.

    max_digits int

    Max length of DTMF digits.

    enabled Boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit String

    The digit that terminates a DTMF digit sequence.

    maxDigits Number

    Max length of DTMF digits.

    GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse, GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponseArgs

    Enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    FinishDigit string

    The digit that terminates a DTMF digit sequence.

    MaxDigits int

    Max length of DTMF digits.

    Enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    FinishDigit string

    The digit that terminates a DTMF digit sequence.

    MaxDigits int

    Max length of DTMF digits.

    enabled Boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit String

    The digit that terminates a DTMF digit sequence.

    maxDigits Integer

    Max length of DTMF digits.

    enabled boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit string

    The digit that terminates a DTMF digit sequence.

    maxDigits number

    Max length of DTMF digits.

    enabled bool

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finish_digit str

    The digit that terminates a DTMF digit sequence.

    max_digits int

    Max length of DTMF digits.

    enabled Boolean

    If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance).

    finishDigit String

    The digit that terminates a DTMF digit sequence.

    maxDigits Number

    Max length of DTMF digits.

    GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsArgs

    EnableInteractionLogging bool

    If true, DF Interaction logging is currently enabled.

    EnableStackdriverLogging bool

    If true, StackDriver logging is currently enabled.

    EnableInteractionLogging bool

    If true, DF Interaction logging is currently enabled.

    EnableStackdriverLogging bool

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging Boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging Boolean

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging boolean

    If true, StackDriver logging is currently enabled.

    enable_interaction_logging bool

    If true, DF Interaction logging is currently enabled.

    enable_stackdriver_logging bool

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging Boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging Boolean

    If true, StackDriver logging is currently enabled.

    GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse, GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponseArgs

    EnableInteractionLogging bool

    If true, DF Interaction logging is currently enabled.

    EnableStackdriverLogging bool

    If true, StackDriver logging is currently enabled.

    EnableInteractionLogging bool

    If true, DF Interaction logging is currently enabled.

    EnableStackdriverLogging bool

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging Boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging Boolean

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging boolean

    If true, StackDriver logging is currently enabled.

    enable_interaction_logging bool

    If true, DF Interaction logging is currently enabled.

    enable_stackdriver_logging bool

    If true, StackDriver logging is currently enabled.

    enableInteractionLogging Boolean

    If true, DF Interaction logging is currently enabled.

    enableStackdriverLogging Boolean

    If true, StackDriver logging is currently enabled.

    GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse, GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponseArgs

    AudioExportGcsDestination Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1GcsDestinationResponse

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    DtmfSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    LoggingSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    AudioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestinationResponse

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    DtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    LoggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestinationResponse

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination GoogleCloudDialogflowCxV3beta1GcsDestinationResponse

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audio_export_gcs_destination GoogleCloudDialogflowCxV3beta1GcsDestinationResponse

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmf_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettingsResponse

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    logging_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettingsResponse

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    audioExportGcsDestination Property Map

    If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels: - Agent level - Flow level

    dtmfSettings Property Map

    Settings for DTMF. Exposed at the following levels: - Agent level - Flow level - Page level - Parameter level.

    loggingSettings Property Map

    Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels: - Agent level.

    GoogleCloudDialogflowCxV3beta1DataStoreConnection, GoogleCloudDialogflowCxV3beta1DataStoreConnectionArgs

    DataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    DataStoreType Pulumi.GoogleNative.Dialogflow.V3Beta1.GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType

    The type of the connected data store.

    DataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    DataStoreType GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType

    The type of the connected data store.

    dataStore String

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType

    The type of the connected data store.

    dataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType

    The type of the connected data store.

    data_store str

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    data_store_type GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType

    The type of the connected data store.

    dataStore String

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType "DATA_STORE_TYPE_UNSPECIFIED" | "PUBLIC_WEB" | "UNSTRUCTURED" | "STRUCTURED"

    The type of the connected data store.

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType, GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypeArgs

    DataStoreTypeUnspecified
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    PublicWeb
    PUBLIC_WEB

    A data store that contains public web content.

    Unstructured
    UNSTRUCTURED

    A data store that contains unstructured private data.

    Structured
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypeDataStoreTypeUnspecified
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypePublicWeb
    PUBLIC_WEB

    A data store that contains public web content.

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypeUnstructured
    UNSTRUCTURED

    A data store that contains unstructured private data.

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypeStructured
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    DataStoreTypeUnspecified
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    PublicWeb
    PUBLIC_WEB

    A data store that contains public web content.

    Unstructured
    UNSTRUCTURED

    A data store that contains unstructured private data.

    Structured
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    DataStoreTypeUnspecified
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    PublicWeb
    PUBLIC_WEB

    A data store that contains public web content.

    Unstructured
    UNSTRUCTURED

    A data store that contains unstructured private data.

    Structured
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    DATA_STORE_TYPE_UNSPECIFIED
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    PUBLIC_WEB
    PUBLIC_WEB

    A data store that contains public web content.

    UNSTRUCTURED
    UNSTRUCTURED

    A data store that contains unstructured private data.

    STRUCTURED
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    "DATA_STORE_TYPE_UNSPECIFIED"
    DATA_STORE_TYPE_UNSPECIFIED

    Not specified. This value indicates that the data store type is not specified, so it will not be used during search.

    "PUBLIC_WEB"
    PUBLIC_WEB

    A data store that contains public web content.

    "UNSTRUCTURED"
    UNSTRUCTURED

    A data store that contains unstructured private data.

    "STRUCTURED"
    STRUCTURED

    A data store that contains structured data (for example FAQ).

    GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse, GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponseArgs

    DataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    DataStoreType string

    The type of the connected data store.

    DataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    DataStoreType string

    The type of the connected data store.

    dataStore String

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType String

    The type of the connected data store.

    dataStore string

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType string

    The type of the connected data store.

    data_store str

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    data_store_type str

    The type of the connected data store.

    dataStore String

    The full name of the referenced data store. Formats: projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store} projects/{project}/locations/{location}/dataStores/{data_store}

    dataStoreType String

    The type of the connected data store.

    GoogleCloudDialogflowCxV3beta1EventHandler, GoogleCloudDialogflowCxV3beta1EventHandlerArgs

    Event string

    The name of the event to handle.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    Event string

    The name of the event to handle.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event String

    The name of the event to handle.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event string

    The name of the event to handle.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event str

    The name of the event to handle.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event String

    The name of the event to handle.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    GoogleCloudDialogflowCxV3beta1EventHandlerResponse, GoogleCloudDialogflowCxV3beta1EventHandlerResponseArgs

    Event string

    The name of the event to handle.

    Name string

    The unique identifier of this event handler.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    Event string

    The name of the event to handle.

    Name string

    The unique identifier of this event handler.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event String

    The name of the event to handle.

    name String

    The unique identifier of this event handler.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event string

    The name of the event to handle.

    name string

    The unique identifier of this event handler.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event str

    The name of the event to handle.

    name str

    The unique identifier of this event handler.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    event String

    The name of the event to handle.

    name String

    The unique identifier of this event handler.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to call when the event occurs. Handling webhook errors with a fulfillment enabled with webhook could cause infinite loop. It is invalid to specify such fulfillment for a handler handling webhooks.

    GoogleCloudDialogflowCxV3beta1Fulfillment, GoogleCloudDialogflowCxV3beta1FulfillmentArgs

    AdvancedSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    ConditionalCases List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>

    Conditional cases for this fulfillment.

    EnableGenerativeFallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    Messages List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessage>

    The list of rich message responses to present to the user.

    ReturnPartialResponses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    SetParameterActions List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>

    Set parameter values before executing the webhook.

    Tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    Webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    AdvancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    ConditionalCases []GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases

    Conditional cases for this fulfillment.

    EnableGenerativeFallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    Messages []GoogleCloudDialogflowCxV3beta1ResponseMessage

    The list of rich message responses to present to the user.

    ReturnPartialResponses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    SetParameterActions []GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction

    Set parameter values before executing the webhook.

    Tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    Webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases List<GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>

    Conditional cases for this fulfillment.

    enableGenerativeFallback Boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages List<GoogleCloudDialogflowCxV3beta1ResponseMessage>

    The list of rich message responses to present to the user.

    returnPartialResponses Boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions List<GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>

    Set parameter values before executing the webhook.

    tag String

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook String

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases[]

    Conditional cases for this fulfillment.

    enableGenerativeFallback boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages GoogleCloudDialogflowCxV3beta1ResponseMessage[]

    The list of rich message responses to present to the user.

    returnPartialResponses boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction[]

    Set parameter values before executing the webhook.

    tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advanced_settings GoogleCloudDialogflowCxV3beta1AdvancedSettings

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditional_cases Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases]

    Conditional cases for this fulfillment.

    enable_generative_fallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages Sequence[GoogleCloudDialogflowCxV3beta1ResponseMessage]

    The list of rich message responses to present to the user.

    return_partial_responses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    set_parameter_actions Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction]

    Set parameter values before executing the webhook.

    tag str

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook str

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings Property Map

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases List<Property Map>

    Conditional cases for this fulfillment.

    enableGenerativeFallback Boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages List<Property Map>

    The list of rich message responses to present to the user.

    returnPartialResponses Boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions List<Property Map>

    Set parameter values before executing the webhook.

    tag String

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook String

    The webhook to call. Format: projects//locations//agents//webhooks/.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesArgs

    cases List<Property Map>

    A list of cascading if-else conditions.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseArgs

    CaseContent List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent>

    A list of case content.

    Condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    CaseContent []GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent

    A list of case content.

    Condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent List<GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent>

    A list of case content.

    condition String

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent[]

    A list of case content.

    condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    case_content Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent]

    A list of case content.

    condition str

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent List<Property Map>

    A list of case content.

    condition String

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentArgs

    additionalCases Property Map

    Additional cases to be evaluated.

    message Property Map

    Returned message.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponseArgs

    additionalCases Property Map

    Additional cases to be evaluated.

    message Property Map

    Returned message.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseResponse, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseResponseArgs

    CaseContent List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse>

    A list of case content.

    Condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    CaseContent []GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse

    A list of case content.

    Condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent List<GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse>

    A list of case content.

    condition String

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse[]

    A list of case content.

    condition string

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    case_content Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContentResponse]

    A list of case content.

    condition str

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    caseContent List<Property Map>

    A list of case content.

    condition String

    The condition to activate and select this case. Empty means the condition is always true. The condition is evaluated against form parameters or session parameters. See the conditions reference.

    GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse, GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponseArgs

    cases List<Property Map>

    A list of cascading if-else conditions.

    GoogleCloudDialogflowCxV3beta1FulfillmentResponse, GoogleCloudDialogflowCxV3beta1FulfillmentResponseArgs

    AdvancedSettings Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    ConditionalCases List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse>

    Conditional cases for this fulfillment.

    EnableGenerativeFallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    Messages List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageResponse>

    The list of rich message responses to present to the user.

    ReturnPartialResponses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    SetParameterActions List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse>

    Set parameter values before executing the webhook.

    Tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    Webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    AdvancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    ConditionalCases []GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse

    Conditional cases for this fulfillment.

    EnableGenerativeFallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    Messages []GoogleCloudDialogflowCxV3beta1ResponseMessageResponse

    The list of rich message responses to present to the user.

    ReturnPartialResponses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    SetParameterActions []GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse

    Set parameter values before executing the webhook.

    Tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    Webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases List<GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse>

    Conditional cases for this fulfillment.

    enableGenerativeFallback Boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages List<GoogleCloudDialogflowCxV3beta1ResponseMessageResponse>

    The list of rich message responses to present to the user.

    returnPartialResponses Boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions List<GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse>

    Set parameter values before executing the webhook.

    tag String

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook String

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse[]

    Conditional cases for this fulfillment.

    enableGenerativeFallback boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages GoogleCloudDialogflowCxV3beta1ResponseMessageResponse[]

    The list of rich message responses to present to the user.

    returnPartialResponses boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse[]

    Set parameter values before executing the webhook.

    tag string

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook string

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advanced_settings GoogleCloudDialogflowCxV3beta1AdvancedSettingsResponse

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditional_cases Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesResponse]

    Conditional cases for this fulfillment.

    enable_generative_fallback bool

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages Sequence[GoogleCloudDialogflowCxV3beta1ResponseMessageResponse]

    The list of rich message responses to present to the user.

    return_partial_responses bool

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    set_parameter_actions Sequence[GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse]

    Set parameter values before executing the webhook.

    tag str

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook str

    The webhook to call. Format: projects//locations//agents//webhooks/.

    advancedSettings Property Map

    Hierarchical advanced settings for this fulfillment. The settings exposed at the lower level overrides the settings exposed at the higher level.

    conditionalCases List<Property Map>

    Conditional cases for this fulfillment.

    enableGenerativeFallback Boolean

    If the flag is true, the agent will utilize LLM to generate a text response. If LLM generation fails, the defined responses in the fulfillment will be respected. This flag is only useful for fulfillments associated with no-match event handlers.

    messages List<Property Map>

    The list of rich message responses to present to the user.

    returnPartialResponses Boolean

    Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks.

    setParameterActions List<Property Map>

    Set parameter values before executing the webhook.

    tag String

    The value of this field will be populated in the WebhookRequest fulfillmentInfo.tag field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if webhook is specified.

    webhook String

    The webhook to call. Format: projects//locations//agents//webhooks/.

    GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction, GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionArgs

    Parameter string

    Display name of the parameter.

    Value object

    The new value of the parameter. A null value clears the parameter.

    Parameter string

    Display name of the parameter.

    Value interface{}

    The new value of the parameter. A null value clears the parameter.

    parameter String

    Display name of the parameter.

    value Object

    The new value of the parameter. A null value clears the parameter.

    parameter string

    Display name of the parameter.

    value any

    The new value of the parameter. A null value clears the parameter.

    parameter str

    Display name of the parameter.

    value Any

    The new value of the parameter. A null value clears the parameter.

    parameter String

    Display name of the parameter.

    value Any

    The new value of the parameter. A null value clears the parameter.

    GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponse, GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterActionResponseArgs

    Parameter string

    Display name of the parameter.

    Value object

    The new value of the parameter. A null value clears the parameter.

    Parameter string

    Display name of the parameter.

    Value interface{}

    The new value of the parameter. A null value clears the parameter.

    parameter String

    Display name of the parameter.

    value Object

    The new value of the parameter. A null value clears the parameter.

    parameter string

    Display name of the parameter.

    value any

    The new value of the parameter. A null value clears the parameter.

    parameter str

    Display name of the parameter.

    value Any

    The new value of the parameter. A null value clears the parameter.

    parameter String

    Display name of the parameter.

    value Any

    The new value of the parameter. A null value clears the parameter.

    GoogleCloudDialogflowCxV3beta1GcsDestination, GoogleCloudDialogflowCxV3beta1GcsDestinationArgs

    Uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    Uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri String

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri str

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri String

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    GoogleCloudDialogflowCxV3beta1GcsDestinationResponse, GoogleCloudDialogflowCxV3beta1GcsDestinationResponseArgs

    Uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    Uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri String

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri string

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri str

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    uri String

    The Google Cloud Storage URI for the exported objects. A URI is of the form: gs://bucket/object-name-or-prefix Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.

    GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings, GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsArgs

    DataStoreConnections List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1DataStoreConnection>

    Optional. List of related data store connections.

    Enabled bool

    Whether Knowledge Connector is enabled or not.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    DataStoreConnections []GoogleCloudDialogflowCxV3beta1DataStoreConnection

    Optional. List of related data store connections.

    Enabled bool

    Whether Knowledge Connector is enabled or not.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections List<GoogleCloudDialogflowCxV3beta1DataStoreConnection>

    Optional. List of related data store connections.

    enabled Boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections GoogleCloudDialogflowCxV3beta1DataStoreConnection[]

    Optional. List of related data store connections.

    enabled boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    data_store_connections Sequence[GoogleCloudDialogflowCxV3beta1DataStoreConnection]

    Optional. List of related data store connections.

    enabled bool

    Whether Knowledge Connector is enabled or not.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections List<Property Map>

    Optional. List of related data store connections.

    enabled Boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsResponse, GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettingsResponseArgs

    DataStoreConnections List<Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse>

    Optional. List of related data store connections.

    Enabled bool

    Whether Knowledge Connector is enabled or not.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    DataStoreConnections []GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse

    Optional. List of related data store connections.

    Enabled bool

    Whether Knowledge Connector is enabled or not.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections List<GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse>

    Optional. List of related data store connections.

    enabled Boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse[]

    Optional. List of related data store connections.

    enabled boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    data_store_connections Sequence[GoogleCloudDialogflowCxV3beta1DataStoreConnectionResponse]

    Optional. List of related data store connections.

    enabled bool

    Whether Knowledge Connector is enabled or not.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    dataStoreConnections List<Property Map>

    Optional. List of related data store connections.

    enabled Boolean

    Whether Knowledge Connector is enabled or not.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.

    GoogleCloudDialogflowCxV3beta1NluSettings, GoogleCloudDialogflowCxV3beta1NluSettingsArgs

    ClassificationThreshold double

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    ModelTrainingMode Pulumi.GoogleNative.Dialogflow.V3Beta1.GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode

    Indicates NLU model training mode.

    ModelType Pulumi.GoogleNative.Dialogflow.V3Beta1.GoogleCloudDialogflowCxV3beta1NluSettingsModelType

    Indicates the type of NLU model.

    ClassificationThreshold float64

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    ModelTrainingMode GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode

    Indicates NLU model training mode.

    ModelType GoogleCloudDialogflowCxV3beta1NluSettingsModelType

    Indicates the type of NLU model.

    classificationThreshold Double

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode

    Indicates NLU model training mode.

    modelType GoogleCloudDialogflowCxV3beta1NluSettingsModelType

    Indicates the type of NLU model.

    classificationThreshold number

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode

    Indicates NLU model training mode.

    modelType GoogleCloudDialogflowCxV3beta1NluSettingsModelType

    Indicates the type of NLU model.

    classification_threshold float

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    model_training_mode GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode

    Indicates NLU model training mode.

    model_type GoogleCloudDialogflowCxV3beta1NluSettingsModelType

    Indicates the type of NLU model.

    classificationThreshold Number

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode "MODEL_TRAINING_MODE_UNSPECIFIED" | "MODEL_TRAINING_MODE_AUTOMATIC" | "MODEL_TRAINING_MODE_MANUAL"

    Indicates NLU model training mode.

    modelType "MODEL_TYPE_UNSPECIFIED" | "MODEL_TYPE_STANDARD" | "MODEL_TYPE_ADVANCED"

    Indicates the type of NLU model.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode, GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModeArgs

    ModelTrainingModeUnspecified
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    ModelTrainingModeAutomatic
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    ModelTrainingModeManual
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModeModelTrainingModeUnspecified
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModeModelTrainingModeAutomatic
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModeModelTrainingModeManual
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    ModelTrainingModeUnspecified
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    ModelTrainingModeAutomatic
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    ModelTrainingModeManual
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    ModelTrainingModeUnspecified
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    ModelTrainingModeAutomatic
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    ModelTrainingModeManual
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    MODEL_TRAINING_MODE_UNSPECIFIED
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    MODEL_TRAINING_MODE_AUTOMATIC
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    MODEL_TRAINING_MODE_MANUAL
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    "MODEL_TRAINING_MODE_UNSPECIFIED"
    MODEL_TRAINING_MODE_UNSPECIFIED

    Not specified. MODEL_TRAINING_MODE_AUTOMATIC will be used.

    "MODEL_TRAINING_MODE_AUTOMATIC"
    MODEL_TRAINING_MODE_AUTOMATIC

    NLU model training is automatically triggered when a flow gets modified. User can also manually trigger model training in this mode.

    "MODEL_TRAINING_MODE_MANUAL"
    MODEL_TRAINING_MODE_MANUAL

    User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelType, GoogleCloudDialogflowCxV3beta1NluSettingsModelTypeArgs

    ModelTypeUnspecified
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    ModelTypeStandard
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    ModelTypeAdvanced
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTypeModelTypeUnspecified
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTypeModelTypeStandard
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    GoogleCloudDialogflowCxV3beta1NluSettingsModelTypeModelTypeAdvanced
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    ModelTypeUnspecified
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    ModelTypeStandard
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    ModelTypeAdvanced
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    ModelTypeUnspecified
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    ModelTypeStandard
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    ModelTypeAdvanced
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    MODEL_TYPE_UNSPECIFIED
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    MODEL_TYPE_STANDARD
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    MODEL_TYPE_ADVANCED
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    "MODEL_TYPE_UNSPECIFIED"
    MODEL_TYPE_UNSPECIFIED

    Not specified. MODEL_TYPE_STANDARD will be used.

    "MODEL_TYPE_STANDARD"
    MODEL_TYPE_STANDARD

    Use standard NLU model.

    "MODEL_TYPE_ADVANCED"
    MODEL_TYPE_ADVANCED

    Use advanced NLU model.

    GoogleCloudDialogflowCxV3beta1NluSettingsResponse, GoogleCloudDialogflowCxV3beta1NluSettingsResponseArgs

    ClassificationThreshold double

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    ModelTrainingMode string

    Indicates NLU model training mode.

    ModelType string

    Indicates the type of NLU model.

    ClassificationThreshold float64

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    ModelTrainingMode string

    Indicates NLU model training mode.

    ModelType string

    Indicates the type of NLU model.

    classificationThreshold Double

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode String

    Indicates NLU model training mode.

    modelType String

    Indicates the type of NLU model.

    classificationThreshold number

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode string

    Indicates NLU model training mode.

    modelType string

    Indicates the type of NLU model.

    classification_threshold float

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    model_training_mode str

    Indicates NLU model training mode.

    model_type str

    Indicates the type of NLU model.

    classificationThreshold Number

    To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

    modelTrainingMode String

    Indicates NLU model training mode.

    modelType String

    Indicates the type of NLU model.

    GoogleCloudDialogflowCxV3beta1ResponseMessage, GoogleCloudDialogflowCxV3beta1ResponseMessageArgs

    Channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    ConversationSuccess Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

    Indicates that the conversation succeeded.

    KnowledgeInfoCard Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    LiveAgentHandoff Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

    Hands off conversation to a human agent.

    OutputAudioText Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    Payload Dictionary<string, string>

    Returns a response containing a custom, platform-specific payload.

    PlayAudio Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    TelephonyTransferCall Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    Text Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageText

    Returns a text response.

    Channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    ConversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

    Indicates that the conversation succeeded.

    KnowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    LiveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

    Hands off conversation to a human agent.

    OutputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    Payload map[string]string

    Returns a response containing a custom, platform-specific payload.

    PlayAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    TelephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    Text GoogleCloudDialogflowCxV3beta1ResponseMessageText

    Returns a text response.

    channel String

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

    Indicates that the conversation succeeded.

    knowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

    Hands off conversation to a human agent.

    outputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Map<String,String>

    Returns a response containing a custom, platform-specific payload.

    playAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageText

    Returns a text response.

    channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

    Indicates that the conversation succeeded.

    knowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

    Hands off conversation to a human agent.

    outputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload {[key: string]: string}

    Returns a response containing a custom, platform-specific payload.

    playAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageText

    Returns a text response.

    channel str

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversation_success GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess

    Indicates that the conversation succeeded.

    knowledge_info_card GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCard

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    live_agent_handoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

    Hands off conversation to a human agent.

    output_audio_text GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Mapping[str, str]

    Returns a response containing a custom, platform-specific payload.

    play_audio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephony_transfer_call GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageText

    Returns a text response.

    channel String

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess Property Map

    Indicates that the conversation succeeded.

    knowledgeInfoCard Property Map

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff Property Map

    Hands off conversation to a human agent.

    outputAudioText Property Map

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Map<String>

    Returns a response containing a custom, platform-specific payload.

    playAudio Property Map

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall Property Map

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text Property Map

    Returns a text response.

    GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess, GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessArgs

    Metadata Dictionary<string, string>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    Metadata map[string]string

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Map<String,String>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata {[key: string]: string}

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Mapping[str, str]

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Map<String>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponseArgs

    Metadata Dictionary<string, string>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    Metadata map[string]string

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Map<String,String>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata {[key: string]: string}

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Mapping[str, str]

    Custom metadata. Dialogflow doesn't impose any structure on this.

    metadata Map<String>

    Custom metadata. Dialogflow doesn't impose any structure on this.

    GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff, GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffArgs

    Metadata Dictionary<string, string>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    Metadata map[string]string

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Map<String,String>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata {[key: string]: string}

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Mapping[str, str]

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Map<String>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponseArgs

    Metadata Dictionary<string, string>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    Metadata map[string]string

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Map<String,String>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata {[key: string]: string}

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Mapping[str, str]

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    metadata Map<String>

    Custom metadata for your handoff procedure. Dialogflow doesn't impose any structure on this.

    GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponseArgs

    segments List<Property Map>

    Segments this audio response is composed of.

    GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegmentResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegmentResponseArgs

    AllowPlaybackInterruption bool

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    Audio string

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    Uri string

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    AllowPlaybackInterruption bool

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    Audio string

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    Uri string

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    allowPlaybackInterruption Boolean

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    audio String

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    uri String

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    allowPlaybackInterruption boolean

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    audio string

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    uri string

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    allow_playback_interruption bool

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    audio str

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    uri str

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    allowPlaybackInterruption Boolean

    Whether the playback of this segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request.

    audio String

    Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request.

    uri String

    Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it.

    GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText, GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextArgs

    Ssml string

    The SSML text to be synthesized. For more information, see SSML.

    Text string

    The raw text to be synthesized.

    Ssml string

    The SSML text to be synthesized. For more information, see SSML.

    Text string

    The raw text to be synthesized.

    ssml String

    The SSML text to be synthesized. For more information, see SSML.

    text String

    The raw text to be synthesized.

    ssml string

    The SSML text to be synthesized. For more information, see SSML.

    text string

    The raw text to be synthesized.

    ssml str

    The SSML text to be synthesized. For more information, see SSML.

    text str

    The raw text to be synthesized.

    ssml String

    The SSML text to be synthesized. For more information, see SSML.

    text String

    The raw text to be synthesized.

    GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponseArgs

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    Ssml string

    The SSML text to be synthesized. For more information, see SSML.

    Text string

    The raw text to be synthesized.

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    Ssml string

    The SSML text to be synthesized. For more information, see SSML.

    Text string

    The raw text to be synthesized.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    ssml String

    The SSML text to be synthesized. For more information, see SSML.

    text String

    The raw text to be synthesized.

    allowPlaybackInterruption boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    ssml string

    The SSML text to be synthesized. For more information, see SSML.

    text string

    The raw text to be synthesized.

    allow_playback_interruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    ssml str

    The SSML text to be synthesized. For more information, see SSML.

    text str

    The raw text to be synthesized.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    ssml String

    The SSML text to be synthesized. For more information, see SSML.

    text String

    The raw text to be synthesized.

    GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio, GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioArgs

    AudioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    AudioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    audioUri String

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    audioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    audio_uri str

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    audioUri String

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse, GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponseArgs

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    AudioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    AudioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    audioUri String

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    allowPlaybackInterruption boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    audioUri string

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    allow_playback_interruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    audio_uri str

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    audioUri String

    URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.

    GoogleCloudDialogflowCxV3beta1ResponseMessageResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageResponseArgs

    Channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    ConversationSuccess Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse

    Indicates that the conversation succeeded.

    EndInteraction Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteractionResponse

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    KnowledgeInfoCard Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardResponse

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    LiveAgentHandoff Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse

    Hands off conversation to a human agent.

    MixedAudio Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    OutputAudioText Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    Payload Dictionary<string, string>

    Returns a response containing a custom, platform-specific payload.

    PlayAudio Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    TelephonyTransferCall Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    Text Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse

    Returns a text response.

    Channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    ConversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse

    Indicates that the conversation succeeded.

    EndInteraction GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteractionResponse

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    KnowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardResponse

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    LiveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse

    Hands off conversation to a human agent.

    MixedAudio GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    OutputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    Payload map[string]string

    Returns a response containing a custom, platform-specific payload.

    PlayAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    TelephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    Text GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse

    Returns a text response.

    channel String

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse

    Indicates that the conversation succeeded.

    endInteraction GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteractionResponse

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    knowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardResponse

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse

    Hands off conversation to a human agent.

    mixedAudio GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    outputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Map<String,String>

    Returns a response containing a custom, platform-specific payload.

    playAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse

    Returns a text response.

    channel string

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse

    Indicates that the conversation succeeded.

    endInteraction GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteractionResponse

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    knowledgeInfoCard GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardResponse

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse

    Hands off conversation to a human agent.

    mixedAudio GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    outputAudioText GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload {[key: string]: string}

    Returns a response containing a custom, platform-specific payload.

    playAudio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse

    Returns a text response.

    channel str

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversation_success GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccessResponse

    Indicates that the conversation succeeded.

    end_interaction GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteractionResponse

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    knowledge_info_card GoogleCloudDialogflowCxV3beta1ResponseMessageKnowledgeInfoCardResponse

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    live_agent_handoff GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoffResponse

    Hands off conversation to a human agent.

    mixed_audio GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioResponse

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    output_audio_text GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioTextResponse

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Mapping[str, str]

    Returns a response containing a custom, platform-specific payload.

    play_audio GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudioResponse

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephony_transfer_call GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse

    Returns a text response.

    channel String

    The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.

    conversationSuccess Property Map

    Indicates that the conversation succeeded.

    endInteraction Property Map

    A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user. It's guaranteed that there is at most one such message in each response.

    knowledgeInfoCard Property Map

    Represents info card for knowledge answers, to be better rendered in Dialogflow Messenger.

    liveAgentHandoff Property Map

    Hands off conversation to a human agent.

    mixedAudio Property Map

    An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via play_audio. This message is generated by Dialogflow only and not supposed to be defined by the user.

    outputAudioText Property Map

    A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

    payload Map<String>

    Returns a response containing a custom, platform-specific payload.

    playAudio Property Map

    Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct mixed_audio. However, Dialogflow itself does not try to read or process the URI in any way.

    telephonyTransferCall Property Map

    A signal that the client should transfer the phone call connected to this agent to a third-party endpoint.

    text Property Map

    Returns a text response.

    GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall, GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallArgs

    PhoneNumber string

    Transfer the call to a phone number in E.164 format.

    PhoneNumber string

    Transfer the call to a phone number in E.164 format.

    phoneNumber String

    Transfer the call to a phone number in E.164 format.

    phoneNumber string

    Transfer the call to a phone number in E.164 format.

    phone_number str

    Transfer the call to a phone number in E.164 format.

    phoneNumber String

    Transfer the call to a phone number in E.164 format.

    GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCallResponseArgs

    PhoneNumber string

    Transfer the call to a phone number in E.164 format.

    PhoneNumber string

    Transfer the call to a phone number in E.164 format.

    phoneNumber String

    Transfer the call to a phone number in E.164 format.

    phoneNumber string

    Transfer the call to a phone number in E.164 format.

    phone_number str

    Transfer the call to a phone number in E.164 format.

    phoneNumber String

    Transfer the call to a phone number in E.164 format.

    GoogleCloudDialogflowCxV3beta1ResponseMessageText, GoogleCloudDialogflowCxV3beta1ResponseMessageTextArgs

    Text List<string>

    A collection of text responses.

    Text []string

    A collection of text responses.

    text List<String>

    A collection of text responses.

    text string[]

    A collection of text responses.

    text Sequence[str]

    A collection of text responses.

    text List<String>

    A collection of text responses.

    GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponse, GoogleCloudDialogflowCxV3beta1ResponseMessageTextResponseArgs

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    Text List<string>

    A collection of text responses.

    AllowPlaybackInterruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    Text []string

    A collection of text responses.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    text List<String>

    A collection of text responses.

    allowPlaybackInterruption boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    text string[]

    A collection of text responses.

    allow_playback_interruption bool

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    text Sequence[str]

    A collection of text responses.

    allowPlaybackInterruption Boolean

    Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request.

    text List<String>

    A collection of text responses.

    GoogleCloudDialogflowCxV3beta1TransitionRoute, GoogleCloudDialogflowCxV3beta1TransitionRouteArgs

    Condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    Intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    Condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    Intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition String

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description String

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent String

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition str

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description str

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent str

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1Fulfillment

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition String

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description String

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent String

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    GoogleCloudDialogflowCxV3beta1TransitionRouteResponse, GoogleCloudDialogflowCxV3beta1TransitionRouteResponseArgs

    Condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    Intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Name string

    The unique identifier of this transition route.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment Pulumi.GoogleNative.Dialogflow.V3Beta1.Inputs.GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    Condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    Intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    Name string

    The unique identifier of this transition route.

    TargetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    TargetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    TriggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition String

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description String

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent String

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    name String

    The unique identifier of this transition route.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition string

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description string

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent string

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    name string

    The unique identifier of this transition route.

    targetFlow string

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage string

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition str

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description str

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent str

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    name str

    The unique identifier of this transition route.

    target_flow str

    The target flow to transition to. Format: projects//locations//agents//flows/.

    target_page str

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    trigger_fulfillment GoogleCloudDialogflowCxV3beta1FulfillmentResponse

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    condition String

    The condition to evaluate against form parameters or session parameters. See the conditions reference. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    description String

    Optional. The description of the transition route. The maximum length is 500 characters.

    intent String

    The unique identifier of an Intent. Format: projects//locations//agents//intents/. Indicates that the transition can only happen when the given intent is matched. At least one of intent or condition must be specified. When both intent and condition are specified, the transition can only happen when both are fulfilled.

    name String

    The unique identifier of this transition route.

    targetFlow String

    The target flow to transition to. Format: projects//locations//agents//flows/.

    targetPage String

    The target page to transition to. Format: projects//locations//agents//flows//pages/.

    triggerFulfillment Property Map

    The fulfillment to call when the condition is satisfied. At least one of trigger_fulfillment and target must be specified. When both are defined, trigger_fulfillment is executed first.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi