1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. diagflow
  5. CxVersion
Google Cloud v8.25.0 published on Thursday, Apr 3, 2025 by Pulumi

gcp.diagflow.CxVersion

Explore with Pulumi AI

You can create multiple versions of your agent flows and deploy them to separate serving environments. When you edit a flow, you are editing a draft flow. At any point, you can save a draft flow as a flow version. A flow version is an immutable snapshot of your flow data and associated agent data like intents, entities, webhooks, pages, route groups, etc.

To get more information about Version, see:

Example Usage

Dialogflowcx Version Full

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const agent = new gcp.diagflow.CxAgent("agent", {
    displayName: "dialogflowcx-agent",
    location: "global",
    defaultLanguageCode: "en",
    supportedLanguageCodes: [
        "fr",
        "de",
        "es",
    ],
    timeZone: "America/New_York",
    description: "Example description.",
    avatarUri: "https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png",
    enableStackdriverLogging: true,
    enableSpellCorrection: true,
    speechToTextSettings: {
        enableSpeechAdaptation: true,
    },
});
const version1 = new gcp.diagflow.CxVersion("version_1", {
    parent: agent.startFlow,
    displayName: "1.0.0",
    description: "version 1.0.0",
});
Copy
import pulumi
import pulumi_gcp as gcp

agent = gcp.diagflow.CxAgent("agent",
    display_name="dialogflowcx-agent",
    location="global",
    default_language_code="en",
    supported_language_codes=[
        "fr",
        "de",
        "es",
    ],
    time_zone="America/New_York",
    description="Example description.",
    avatar_uri="https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png",
    enable_stackdriver_logging=True,
    enable_spell_correction=True,
    speech_to_text_settings={
        "enable_speech_adaptation": True,
    })
version1 = gcp.diagflow.CxVersion("version_1",
    parent=agent.start_flow,
    display_name="1.0.0",
    description="version 1.0.0")
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/diagflow"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		agent, err := diagflow.NewCxAgent(ctx, "agent", &diagflow.CxAgentArgs{
			DisplayName:         pulumi.String("dialogflowcx-agent"),
			Location:            pulumi.String("global"),
			DefaultLanguageCode: pulumi.String("en"),
			SupportedLanguageCodes: pulumi.StringArray{
				pulumi.String("fr"),
				pulumi.String("de"),
				pulumi.String("es"),
			},
			TimeZone:                 pulumi.String("America/New_York"),
			Description:              pulumi.String("Example description."),
			AvatarUri:                pulumi.String("https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png"),
			EnableStackdriverLogging: pulumi.Bool(true),
			EnableSpellCorrection:    pulumi.Bool(true),
			SpeechToTextSettings: &diagflow.CxAgentSpeechToTextSettingsArgs{
				EnableSpeechAdaptation: pulumi.Bool(true),
			},
		})
		if err != nil {
			return err
		}
		_, err = diagflow.NewCxVersion(ctx, "version_1", &diagflow.CxVersionArgs{
			Parent:      agent.StartFlow,
			DisplayName: pulumi.String("1.0.0"),
			Description: pulumi.String("version 1.0.0"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var agent = new Gcp.Diagflow.CxAgent("agent", new()
    {
        DisplayName = "dialogflowcx-agent",
        Location = "global",
        DefaultLanguageCode = "en",
        SupportedLanguageCodes = new[]
        {
            "fr",
            "de",
            "es",
        },
        TimeZone = "America/New_York",
        Description = "Example description.",
        AvatarUri = "https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png",
        EnableStackdriverLogging = true,
        EnableSpellCorrection = true,
        SpeechToTextSettings = new Gcp.Diagflow.Inputs.CxAgentSpeechToTextSettingsArgs
        {
            EnableSpeechAdaptation = true,
        },
    });

    var version1 = new Gcp.Diagflow.CxVersion("version_1", new()
    {
        Parent = agent.StartFlow,
        DisplayName = "1.0.0",
        Description = "version 1.0.0",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.diagflow.CxAgent;
import com.pulumi.gcp.diagflow.CxAgentArgs;
import com.pulumi.gcp.diagflow.inputs.CxAgentSpeechToTextSettingsArgs;
import com.pulumi.gcp.diagflow.CxVersion;
import com.pulumi.gcp.diagflow.CxVersionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var agent = new CxAgent("agent", CxAgentArgs.builder()
            .displayName("dialogflowcx-agent")
            .location("global")
            .defaultLanguageCode("en")
            .supportedLanguageCodes(            
                "fr",
                "de",
                "es")
            .timeZone("America/New_York")
            .description("Example description.")
            .avatarUri("https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png")
            .enableStackdriverLogging(true)
            .enableSpellCorrection(true)
            .speechToTextSettings(CxAgentSpeechToTextSettingsArgs.builder()
                .enableSpeechAdaptation(true)
                .build())
            .build());

        var version1 = new CxVersion("version1", CxVersionArgs.builder()
            .parent(agent.startFlow())
            .displayName("1.0.0")
            .description("version 1.0.0")
            .build());

    }
}
Copy
resources:
  agent:
    type: gcp:diagflow:CxAgent
    properties:
      displayName: dialogflowcx-agent
      location: global
      defaultLanguageCode: en
      supportedLanguageCodes:
        - fr
        - de
        - es
      timeZone: America/New_York
      description: Example description.
      avatarUri: https://cloud.google.com/_static/images/cloud/icons/favicons/onecloud/super_cloud.png
      enableStackdriverLogging: true
      enableSpellCorrection: true
      speechToTextSettings:
        enableSpeechAdaptation: true
  version1:
    type: gcp:diagflow:CxVersion
    name: version_1
    properties:
      parent: ${agent.startFlow}
      displayName: 1.0.0
      description: version 1.0.0
Copy

Create CxVersion Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CxVersion(name: string, args: CxVersionArgs, opts?: CustomResourceOptions);
@overload
def CxVersion(resource_name: str,
              args: CxVersionArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def CxVersion(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              display_name: Optional[str] = None,
              description: Optional[str] = None,
              parent: Optional[str] = None)
func NewCxVersion(ctx *Context, name string, args CxVersionArgs, opts ...ResourceOption) (*CxVersion, error)
public CxVersion(string name, CxVersionArgs args, CustomResourceOptions? opts = null)
public CxVersion(String name, CxVersionArgs args)
public CxVersion(String name, CxVersionArgs args, CustomResourceOptions options)
type: gcp:diagflow:CxVersion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CxVersionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CxVersionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CxVersionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CxVersionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CxVersionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var cxVersionResource = new Gcp.Diagflow.CxVersion("cxVersionResource", new()
{
    DisplayName = "string",
    Description = "string",
    Parent = "string",
});
Copy
example, err := diagflow.NewCxVersion(ctx, "cxVersionResource", &diagflow.CxVersionArgs{
	DisplayName: pulumi.String("string"),
	Description: pulumi.String("string"),
	Parent:      pulumi.String("string"),
})
Copy
var cxVersionResource = new CxVersion("cxVersionResource", CxVersionArgs.builder()
    .displayName("string")
    .description("string")
    .parent("string")
    .build());
Copy
cx_version_resource = gcp.diagflow.CxVersion("cxVersionResource",
    display_name="string",
    description="string",
    parent="string")
Copy
const cxVersionResource = new gcp.diagflow.CxVersion("cxVersionResource", {
    displayName: "string",
    description: "string",
    parent: "string",
});
Copy
type: gcp:diagflow:CxVersion
properties:
    description: string
    displayName: string
    parent: string
Copy

CxVersion Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CxVersion resource accepts the following input properties:

DisplayName This property is required. string
The human-readable name of the version. Limit of 64 characters.


Description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
Parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
DisplayName This property is required. string
The human-readable name of the version. Limit of 64 characters.


Description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
Parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
displayName This property is required. String
The human-readable name of the version. Limit of 64 characters.


description String
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
parent Changes to this property will trigger replacement. String
The Flow to create an Version for. Format: projects//locations//agents//flows/.
displayName This property is required. string
The human-readable name of the version. Limit of 64 characters.


description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
display_name This property is required. str
The human-readable name of the version. Limit of 64 characters.


description str
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
parent Changes to this property will trigger replacement. str
The Flow to create an Version for. Format: projects//locations//agents//flows/.
displayName This property is required. String
The human-readable name of the version. Limit of 64 characters.


description String
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
parent Changes to this property will trigger replacement. String
The Flow to create an Version for. Format: projects//locations//agents//flows/.

Outputs

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

CreateTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Id string
The provider-assigned unique ID for this managed resource.
Name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
NluSettings List<CxVersionNluSetting>
The NLU settings of the flow at version creation. Structure is documented below.
State string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
CreateTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Id string
The provider-assigned unique ID for this managed resource.
Name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
NluSettings []CxVersionNluSetting
The NLU settings of the flow at version creation. Structure is documented below.
State string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime String
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
id String
The provider-assigned unique ID for this managed resource.
name String
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings List<CxVersionNluSetting>
The NLU settings of the flow at version creation. Structure is documented below.
state String
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
id string
The provider-assigned unique ID for this managed resource.
name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings CxVersionNluSetting[]
The NLU settings of the flow at version creation. Structure is documented below.
state string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
create_time str
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
id str
The provider-assigned unique ID for this managed resource.
name str
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nlu_settings Sequence[CxVersionNluSetting]
The NLU settings of the flow at version creation. Structure is documented below.
state str
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime String
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
id String
The provider-assigned unique ID for this managed resource.
name String
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings List<Property Map>
The NLU settings of the flow at version creation. Structure is documented below.
state String
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.

Look up Existing CxVersion Resource

Get an existing CxVersion resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CxVersionState, opts?: CustomResourceOptions): CxVersion
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        name: Optional[str] = None,
        nlu_settings: Optional[Sequence[CxVersionNluSettingArgs]] = None,
        parent: Optional[str] = None,
        state: Optional[str] = None) -> CxVersion
func GetCxVersion(ctx *Context, name string, id IDInput, state *CxVersionState, opts ...ResourceOption) (*CxVersion, error)
public static CxVersion Get(string name, Input<string> id, CxVersionState? state, CustomResourceOptions? opts = null)
public static CxVersion get(String name, Output<String> id, CxVersionState state, CustomResourceOptions options)
resources:  _:    type: gcp:diagflow:CxVersion    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CreateTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
DisplayName string
The human-readable name of the version. Limit of 64 characters.


Name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
NluSettings List<CxVersionNluSetting>
The NLU settings of the flow at version creation. Structure is documented below.
Parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
State string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
CreateTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
DisplayName string
The human-readable name of the version. Limit of 64 characters.


Name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
NluSettings []CxVersionNluSettingArgs
The NLU settings of the flow at version creation. Structure is documented below.
Parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
State string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime String
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
description String
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
displayName String
The human-readable name of the version. Limit of 64 characters.


name String
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings List<CxVersionNluSetting>
The NLU settings of the flow at version creation. Structure is documented below.
parent Changes to this property will trigger replacement. String
The Flow to create an Version for. Format: projects//locations//agents//flows/.
state String
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime string
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
description string
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
displayName string
The human-readable name of the version. Limit of 64 characters.


name string
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings CxVersionNluSetting[]
The NLU settings of the flow at version creation. Structure is documented below.
parent Changes to this property will trigger replacement. string
The Flow to create an Version for. Format: projects//locations//agents//flows/.
state string
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
create_time str
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
description str
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
display_name str
The human-readable name of the version. Limit of 64 characters.


name str
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nlu_settings Sequence[CxVersionNluSettingArgs]
The NLU settings of the flow at version creation. Structure is documented below.
parent Changes to this property will trigger replacement. str
The Flow to create an Version for. Format: projects//locations//agents//flows/.
state str
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.
createTime String
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
description String
The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected.
displayName String
The human-readable name of the version. Limit of 64 characters.


name String
Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation.
nluSettings List<Property Map>
The NLU settings of the flow at version creation. Structure is documented below.
parent Changes to this property will trigger replacement. String
The Flow to create an Version for. Format: projects//locations//agents//flows/.
state String
The state of this version.

  • RUNNING: Version is not ready to serve (e.g. training is running).
  • SUCCEEDED: Training has succeeded and this version is ready to serve.
  • FAILED: Version training failed.

Supporting Types

CxVersionNluSetting
, CxVersionNluSettingArgs

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.

  • 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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
ModelType string
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.
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.

  • 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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
ModelType string
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.
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.

  • 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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
modelType String
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.
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.

  • 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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
modelType string
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.
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_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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
model_type str
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.
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.

  • 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: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train. Possible values are: MODEL_TRAINING_MODE_AUTOMATIC, MODEL_TRAINING_MODE_MANUAL.
modelType String
Indicates the type of NLU model.

  • MODEL_TYPE_STANDARD: Use standard NLU model.
  • MODEL_TYPE_ADVANCED: Use advanced NLU model. Possible values are: MODEL_TYPE_STANDARD, MODEL_TYPE_ADVANCED.

Import

Version can be imported using any of these accepted formats:

  • {{parent}}/versions/{{name}}

  • {{parent}}/{{name}}

When using the pulumi import command, Version can be imported using one of the formats above. For example:

$ pulumi import gcp:diagflow/cxVersion:CxVersion default {{parent}}/versions/{{name}}
Copy
$ pulumi import gcp:diagflow/cxVersion:CxVersion default {{parent}}/{{name}}
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.