Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dialogflow/v2.Environment
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an agent environment. Auto-naming is currently not supported for this resource.
Create Environment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Environment(name: string, args: EnvironmentArgs, opts?: CustomResourceOptions);
@overload
def Environment(resource_name: str,
args: EnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Environment(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
agent_version: Optional[str] = None,
description: Optional[str] = None,
fulfillment: Optional[GoogleCloudDialogflowV2FulfillmentArgs] = None,
location: Optional[str] = None,
project: Optional[str] = None,
text_to_speech_settings: Optional[GoogleCloudDialogflowV2TextToSpeechSettingsArgs] = None)
func NewEnvironment(ctx *Context, name string, args EnvironmentArgs, opts ...ResourceOption) (*Environment, error)
public Environment(string name, EnvironmentArgs args, CustomResourceOptions? opts = null)
public Environment(String name, EnvironmentArgs args)
public Environment(String name, EnvironmentArgs args, CustomResourceOptions options)
type: google-native:dialogflow/v2:Environment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EnvironmentArgs
- 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 EnvironmentArgs
- 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 EnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnvironmentArgs
- 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 exampleenvironmentResourceResourceFromDialogflowv2 = new GoogleNative.Dialogflow.V2.Environment("exampleenvironmentResourceResourceFromDialogflowv2", new()
{
EnvironmentId = "string",
AgentVersion = "string",
Description = "string",
Fulfillment = new GoogleNative.Dialogflow.V2.Inputs.GoogleCloudDialogflowV2FulfillmentArgs
{
Name = "string",
DisplayName = "string",
Enabled = false,
Features = new[]
{
new GoogleNative.Dialogflow.V2.Inputs.GoogleCloudDialogflowV2FulfillmentFeatureArgs
{
Type = GoogleNative.Dialogflow.V2.GoogleCloudDialogflowV2FulfillmentFeatureType.TypeUnspecified,
},
},
GenericWebService = new GoogleNative.Dialogflow.V2.Inputs.GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs
{
Uri = "string",
IsCloudFunction = false,
Password = "string",
RequestHeaders =
{
{ "string", "string" },
},
Username = "string",
},
},
Location = "string",
Project = "string",
TextToSpeechSettings = new GoogleNative.Dialogflow.V2.Inputs.GoogleCloudDialogflowV2TextToSpeechSettingsArgs
{
OutputAudioEncoding = GoogleNative.Dialogflow.V2.GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding.OutputAudioEncodingUnspecified,
EnableTextToSpeech = false,
SampleRateHertz = 0,
SynthesizeSpeechConfigs =
{
{ "string", "string" },
},
},
});
example, err := dialogflow.NewEnvironment(ctx, "exampleenvironmentResourceResourceFromDialogflowv2", &dialogflow.EnvironmentArgs{
EnvironmentId: pulumi.String("string"),
AgentVersion: pulumi.String("string"),
Description: pulumi.String("string"),
Fulfillment: &dialogflow.GoogleCloudDialogflowV2FulfillmentArgs{
Name: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Features: dialogflow.GoogleCloudDialogflowV2FulfillmentFeatureArray{
&dialogflow.GoogleCloudDialogflowV2FulfillmentFeatureArgs{
Type: dialogflow.GoogleCloudDialogflowV2FulfillmentFeatureTypeTypeUnspecified,
},
},
GenericWebService: &dialogflow.GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs{
Uri: pulumi.String("string"),
IsCloudFunction: pulumi.Bool(false),
Password: pulumi.String("string"),
RequestHeaders: pulumi.StringMap{
"string": pulumi.String("string"),
},
Username: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Project: pulumi.String("string"),
TextToSpeechSettings: &dialogflow.GoogleCloudDialogflowV2TextToSpeechSettingsArgs{
OutputAudioEncoding: dialogflow.GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingOutputAudioEncodingUnspecified,
EnableTextToSpeech: pulumi.Bool(false),
SampleRateHertz: pulumi.Int(0),
SynthesizeSpeechConfigs: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
})
var exampleenvironmentResourceResourceFromDialogflowv2 = new Environment("exampleenvironmentResourceResourceFromDialogflowv2", EnvironmentArgs.builder()
.environmentId("string")
.agentVersion("string")
.description("string")
.fulfillment(GoogleCloudDialogflowV2FulfillmentArgs.builder()
.name("string")
.displayName("string")
.enabled(false)
.features(GoogleCloudDialogflowV2FulfillmentFeatureArgs.builder()
.type("TYPE_UNSPECIFIED")
.build())
.genericWebService(GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs.builder()
.uri("string")
.isCloudFunction(false)
.password("string")
.requestHeaders(Map.of("string", "string"))
.username("string")
.build())
.build())
.location("string")
.project("string")
.textToSpeechSettings(GoogleCloudDialogflowV2TextToSpeechSettingsArgs.builder()
.outputAudioEncoding("OUTPUT_AUDIO_ENCODING_UNSPECIFIED")
.enableTextToSpeech(false)
.sampleRateHertz(0)
.synthesizeSpeechConfigs(Map.of("string", "string"))
.build())
.build());
exampleenvironment_resource_resource_from_dialogflowv2 = google_native.dialogflow.v2.Environment("exampleenvironmentResourceResourceFromDialogflowv2",
environment_id="string",
agent_version="string",
description="string",
fulfillment=google_native.dialogflow.v2.GoogleCloudDialogflowV2FulfillmentArgs(
name="string",
display_name="string",
enabled=False,
features=[google_native.dialogflow.v2.GoogleCloudDialogflowV2FulfillmentFeatureArgs(
type=google_native.dialogflow.v2.GoogleCloudDialogflowV2FulfillmentFeatureType.TYPE_UNSPECIFIED,
)],
generic_web_service=google_native.dialogflow.v2.GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs(
uri="string",
is_cloud_function=False,
password="string",
request_headers={
"string": "string",
},
username="string",
),
),
location="string",
project="string",
text_to_speech_settings=google_native.dialogflow.v2.GoogleCloudDialogflowV2TextToSpeechSettingsArgs(
output_audio_encoding=google_native.dialogflow.v2.GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding.OUTPUT_AUDIO_ENCODING_UNSPECIFIED,
enable_text_to_speech=False,
sample_rate_hertz=0,
synthesize_speech_configs={
"string": "string",
},
))
const exampleenvironmentResourceResourceFromDialogflowv2 = new google_native.dialogflow.v2.Environment("exampleenvironmentResourceResourceFromDialogflowv2", {
environmentId: "string",
agentVersion: "string",
description: "string",
fulfillment: {
name: "string",
displayName: "string",
enabled: false,
features: [{
type: google_native.dialogflow.v2.GoogleCloudDialogflowV2FulfillmentFeatureType.TypeUnspecified,
}],
genericWebService: {
uri: "string",
isCloudFunction: false,
password: "string",
requestHeaders: {
string: "string",
},
username: "string",
},
},
location: "string",
project: "string",
textToSpeechSettings: {
outputAudioEncoding: google_native.dialogflow.v2.GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding.OutputAudioEncodingUnspecified,
enableTextToSpeech: false,
sampleRateHertz: 0,
synthesizeSpeechConfigs: {
string: "string",
},
},
});
type: google-native:dialogflow/v2:Environment
properties:
agentVersion: string
description: string
environmentId: string
fulfillment:
displayName: string
enabled: false
features:
- type: TYPE_UNSPECIFIED
genericWebService:
isCloudFunction: false
password: string
requestHeaders:
string: string
uri: string
username: string
name: string
location: string
project: string
textToSpeechSettings:
enableTextToSpeech: false
outputAudioEncoding: OUTPUT_AUDIO_ENCODING_UNSPECIFIED
sampleRateHertz: 0
synthesizeSpeechConfigs:
string: string
Environment 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 Environment resource accepts the following input properties:
- Environment
Id string - Required. The unique id of the new environment.
- Agent
Version string - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- Description string
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- Fulfillment
Pulumi.
Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Fulfillment - Optional. The fulfillment settings to use for this environment.
- Location string
- Project string
- Text
To Pulumi.Speech Settings Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Text To Speech Settings - Optional. Text to speech settings for this environment.
- Environment
Id string - Required. The unique id of the new environment.
- Agent
Version string - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- Description string
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- Fulfillment
Google
Cloud Dialogflow V2Fulfillment Args - Optional. The fulfillment settings to use for this environment.
- Location string
- Project string
- Text
To GoogleSpeech Settings Cloud Dialogflow V2Text To Speech Settings Args - Optional. Text to speech settings for this environment.
- environment
Id String - Required. The unique id of the new environment.
- agent
Version String - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- description String
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- fulfillment
Google
Cloud Dialogflow V2Fulfillment - Optional. The fulfillment settings to use for this environment.
- location String
- project String
- text
To GoogleSpeech Settings Cloud Dialogflow V2Text To Speech Settings - Optional. Text to speech settings for this environment.
- environment
Id string - Required. The unique id of the new environment.
- agent
Version string - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- description string
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- fulfillment
Google
Cloud Dialogflow V2Fulfillment - Optional. The fulfillment settings to use for this environment.
- location string
- project string
- text
To GoogleSpeech Settings Cloud Dialogflow V2Text To Speech Settings - Optional. Text to speech settings for this environment.
- environment_
id str - Required. The unique id of the new environment.
- agent_
version str - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- description str
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- fulfillment
Google
Cloud Dialogflow V2Fulfillment Args - Optional. The fulfillment settings to use for this environment.
- location str
- project str
- text_
to_ Googlespeech_ settings Cloud Dialogflow V2Text To Speech Settings Args - Optional. Text to speech settings for this environment.
- environment
Id String - Required. The unique id of the new environment.
- agent
Version String - Optional. The agent version loaded into this environment. Supported formats: -
projects//agent/versions/
-projects//locations//agent/versions/
- description String
- Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected.
- fulfillment Property Map
- Optional. The fulfillment settings to use for this environment.
- location String
- project String
- text
To Property MapSpeech Settings - Optional. Text to speech settings for this environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the Environment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - State string
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- Update
Time string - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - State string
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- Update
Time string - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - state String
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- update
Time String - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - state string
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- update
Time string - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - state str
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- update_
time str - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The unique identifier of this agent environment. Supported formats: -
projects//agent/environments/
-projects//locations//agent/environments/
The environment ID for the default environment is-
. - state String
- The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
- update
Time String - The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods.
Supporting Types
GoogleCloudDialogflowV2Fulfillment, GoogleCloudDialogflowV2FulfillmentArgs
- Name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - Display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- Enabled bool
- Optional. Whether fulfillment is enabled.
- Features
List<Pulumi.
Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Fulfillment Feature> - Optional. The field defines whether the fulfillment is enabled for certain features.
- Generic
Web Pulumi.Service Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Fulfillment Generic Web Service - Configuration for a generic web service.
- Name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - Display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- Enabled bool
- Optional. Whether fulfillment is enabled.
- Features
[]Google
Cloud Dialogflow V2Fulfillment Feature - Optional. The field defines whether the fulfillment is enabled for certain features.
- Generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service - Configuration for a generic web service.
- name String
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - display
Name String - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled Boolean
- Optional. Whether fulfillment is enabled.
- features
List<Google
Cloud Dialogflow V2Fulfillment Feature> - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service - Configuration for a generic web service.
- name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled boolean
- Optional. Whether fulfillment is enabled.
- features
Google
Cloud Dialogflow V2Fulfillment Feature[] - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service - Configuration for a generic web service.
- name str
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - display_
name str - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled bool
- Optional. Whether fulfillment is enabled.
- features
Sequence[Google
Cloud Dialogflow V2Fulfillment Feature] - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic_
web_ Googleservice Cloud Dialogflow V2Fulfillment Generic Web Service - Configuration for a generic web service.
- name String
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment. - display
Name String - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled Boolean
- Optional. Whether fulfillment is enabled.
- features List<Property Map>
- Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web Property MapService - Configuration for a generic web service.
GoogleCloudDialogflowV2FulfillmentFeature, GoogleCloudDialogflowV2FulfillmentFeatureArgs
- Type
Pulumi.
Google Native. Dialogflow. V2. Google Cloud Dialogflow V2Fulfillment Feature Type - The type of the feature that enabled for fulfillment.
- Type
Google
Cloud Dialogflow V2Fulfillment Feature Type - The type of the feature that enabled for fulfillment.
- type
Google
Cloud Dialogflow V2Fulfillment Feature Type - The type of the feature that enabled for fulfillment.
- type
Google
Cloud Dialogflow V2Fulfillment Feature Type - The type of the feature that enabled for fulfillment.
- type
Google
Cloud Dialogflow V2Fulfillment Feature Type - The type of the feature that enabled for fulfillment.
- type "TYPE_UNSPECIFIED" | "SMALLTALK"
- The type of the feature that enabled for fulfillment.
GoogleCloudDialogflowV2FulfillmentFeatureResponse, GoogleCloudDialogflowV2FulfillmentFeatureResponseArgs
- Type string
- The type of the feature that enabled for fulfillment.
- Type string
- The type of the feature that enabled for fulfillment.
- type String
- The type of the feature that enabled for fulfillment.
- type string
- The type of the feature that enabled for fulfillment.
- type str
- The type of the feature that enabled for fulfillment.
- type String
- The type of the feature that enabled for fulfillment.
GoogleCloudDialogflowV2FulfillmentFeatureType, GoogleCloudDialogflowV2FulfillmentFeatureTypeArgs
- Type
Unspecified - TYPE_UNSPECIFIEDFeature type not specified.
- Smalltalk
- SMALLTALKFulfillment is enabled for SmallTalk.
- Google
Cloud Dialogflow V2Fulfillment Feature Type Type Unspecified - TYPE_UNSPECIFIEDFeature type not specified.
- Google
Cloud Dialogflow V2Fulfillment Feature Type Smalltalk - SMALLTALKFulfillment is enabled for SmallTalk.
- Type
Unspecified - TYPE_UNSPECIFIEDFeature type not specified.
- Smalltalk
- SMALLTALKFulfillment is enabled for SmallTalk.
- Type
Unspecified - TYPE_UNSPECIFIEDFeature type not specified.
- Smalltalk
- SMALLTALKFulfillment is enabled for SmallTalk.
- TYPE_UNSPECIFIED
- TYPE_UNSPECIFIEDFeature type not specified.
- SMALLTALK
- SMALLTALKFulfillment is enabled for SmallTalk.
- "TYPE_UNSPECIFIED"
- TYPE_UNSPECIFIEDFeature type not specified.
- "SMALLTALK"
- SMALLTALKFulfillment is enabled for SmallTalk.
GoogleCloudDialogflowV2FulfillmentGenericWebService, GoogleCloudDialogflowV2FulfillmentGenericWebServiceArgs
- Uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- Is
Cloud boolFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- Password string
- Optional. The password for HTTP Basic authentication.
- Request
Headers Dictionary<string, string> - Optional. The HTTP request headers to send together with fulfillment requests.
- Username string
- Optional. The user name for HTTP Basic authentication.
- Uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- Is
Cloud boolFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- Password string
- Optional. The password for HTTP Basic authentication.
- Request
Headers map[string]string - Optional. The HTTP request headers to send together with fulfillment requests.
- Username string
- Optional. The user name for HTTP Basic authentication.
- uri String
- The fulfillment URI for receiving POST requests. It must use https protocol.
- is
Cloud BooleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password String
- Optional. The password for HTTP Basic authentication.
- request
Headers Map<String,String> - Optional. The HTTP request headers to send together with fulfillment requests.
- username String
- Optional. The user name for HTTP Basic authentication.
- uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- is
Cloud booleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password string
- Optional. The password for HTTP Basic authentication.
- request
Headers {[key: string]: string} - Optional. The HTTP request headers to send together with fulfillment requests.
- username string
- Optional. The user name for HTTP Basic authentication.
- uri str
- The fulfillment URI for receiving POST requests. It must use https protocol.
- is_
cloud_ boolfunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password str
- Optional. The password for HTTP Basic authentication.
- request_
headers Mapping[str, str] - Optional. The HTTP request headers to send together with fulfillment requests.
- username str
- Optional. The user name for HTTP Basic authentication.
- uri String
- The fulfillment URI for receiving POST requests. It must use https protocol.
- is
Cloud BooleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password String
- Optional. The password for HTTP Basic authentication.
- request
Headers Map<String> - Optional. The HTTP request headers to send together with fulfillment requests.
- username String
- Optional. The user name for HTTP Basic authentication.
GoogleCloudDialogflowV2FulfillmentGenericWebServiceResponse, GoogleCloudDialogflowV2FulfillmentGenericWebServiceResponseArgs
- Is
Cloud boolFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- Password string
- Optional. The password for HTTP Basic authentication.
- Request
Headers Dictionary<string, string> - Optional. The HTTP request headers to send together with fulfillment requests.
- Uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- Username string
- Optional. The user name for HTTP Basic authentication.
- Is
Cloud boolFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- Password string
- Optional. The password for HTTP Basic authentication.
- Request
Headers map[string]string - Optional. The HTTP request headers to send together with fulfillment requests.
- Uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- Username string
- Optional. The user name for HTTP Basic authentication.
- is
Cloud BooleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password String
- Optional. The password for HTTP Basic authentication.
- request
Headers Map<String,String> - Optional. The HTTP request headers to send together with fulfillment requests.
- uri String
- The fulfillment URI for receiving POST requests. It must use https protocol.
- username String
- Optional. The user name for HTTP Basic authentication.
- is
Cloud booleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password string
- Optional. The password for HTTP Basic authentication.
- request
Headers {[key: string]: string} - Optional. The HTTP request headers to send together with fulfillment requests.
- uri string
- The fulfillment URI for receiving POST requests. It must use https protocol.
- username string
- Optional. The user name for HTTP Basic authentication.
- is_
cloud_ boolfunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password str
- Optional. The password for HTTP Basic authentication.
- request_
headers Mapping[str, str] - Optional. The HTTP request headers to send together with fulfillment requests.
- uri str
- The fulfillment URI for receiving POST requests. It must use https protocol.
- username str
- Optional. The user name for HTTP Basic authentication.
- is
Cloud BooleanFunction - Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.
- password String
- Optional. The password for HTTP Basic authentication.
- request
Headers Map<String> - Optional. The HTTP request headers to send together with fulfillment requests.
- uri String
- The fulfillment URI for receiving POST requests. It must use https protocol.
- username String
- Optional. The user name for HTTP Basic authentication.
GoogleCloudDialogflowV2FulfillmentResponse, GoogleCloudDialogflowV2FulfillmentResponseArgs
- Display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- Enabled bool
- Optional. Whether fulfillment is enabled.
- Features
List<Pulumi.
Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Fulfillment Feature Response> - Optional. The field defines whether the fulfillment is enabled for certain features.
- Generic
Web Pulumi.Service Google Native. Dialogflow. V2. Inputs. Google Cloud Dialogflow V2Fulfillment Generic Web Service Response - Configuration for a generic web service.
- Name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
- Display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- Enabled bool
- Optional. Whether fulfillment is enabled.
- Features
[]Google
Cloud Dialogflow V2Fulfillment Feature Response - Optional. The field defines whether the fulfillment is enabled for certain features.
- Generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service Response - Configuration for a generic web service.
- Name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
- display
Name String - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled Boolean
- Optional. Whether fulfillment is enabled.
- features
List<Google
Cloud Dialogflow V2Fulfillment Feature Response> - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service Response - Configuration for a generic web service.
- name String
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
- display
Name string - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled boolean
- Optional. Whether fulfillment is enabled.
- features
Google
Cloud Dialogflow V2Fulfillment Feature Response[] - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web GoogleService Cloud Dialogflow V2Fulfillment Generic Web Service Response - Configuration for a generic web service.
- name string
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
- display_
name str - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled bool
- Optional. Whether fulfillment is enabled.
- features
Sequence[Google
Cloud Dialogflow V2Fulfillment Feature Response] - Optional. The field defines whether the fulfillment is enabled for certain features.
- generic_
web_ Googleservice Cloud Dialogflow V2Fulfillment Generic Web Service Response - Configuration for a generic web service.
- name str
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
- display
Name String - Optional. The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment.
- enabled Boolean
- Optional. Whether fulfillment is enabled.
- features List<Property Map>
- Optional. The field defines whether the fulfillment is enabled for certain features.
- generic
Web Property MapService - Configuration for a generic web service.
- name String
- The unique identifier of the fulfillment. Supported formats: -
projects//agent/fulfillment
-projects//locations//agent/fulfillment
This field is not used for Fulfillment in an Environment.
GoogleCloudDialogflowV2TextToSpeechSettings, GoogleCloudDialogflowV2TextToSpeechSettingsArgs
- Output
Audio Pulumi.Encoding Google Native. Dialogflow. V2. Google Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding - Audio encoding of the synthesized audio content.
- Enable
Text boolTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- Sample
Rate intHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- Synthesize
Speech Dictionary<string, string>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- Output
Audio GoogleEncoding Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding - Audio encoding of the synthesized audio content.
- Enable
Text boolTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- Sample
Rate intHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- Synthesize
Speech map[string]stringConfigs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- output
Audio GoogleEncoding Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding - Audio encoding of the synthesized audio content.
- enable
Text BooleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- sample
Rate IntegerHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech Map<String,String>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- output
Audio GoogleEncoding Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding - Audio encoding of the synthesized audio content.
- enable
Text booleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- sample
Rate numberHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech {[key: string]: string}Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- output_
audio_ Googleencoding Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding - Audio encoding of the synthesized audio content.
- enable_
text_ boolto_ speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- sample_
rate_ inthertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize_
speech_ Mapping[str, str]configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- output
Audio "OUTPUT_AUDIO_ENCODING_UNSPECIFIED" | "OUTPUT_AUDIO_ENCODING_LINEAR_16" | "OUTPUT_AUDIO_ENCODING_MP3" | "OUTPUT_AUDIO_ENCODING_MP3_64_KBPS" | "OUTPUT_AUDIO_ENCODING_OGG_OPUS" | "OUTPUT_AUDIO_ENCODING_MULAW"Encoding - Audio encoding of the synthesized audio content.
- enable
Text BooleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- sample
Rate NumberHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech Map<String>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding, GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingArgs
- Output
Audio Encoding Unspecified - OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- Output
Audio Encoding Linear16 - OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- Output
Audio Encoding Mp3 - OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- Output
Audio Encoding Mp364Kbps - OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- Output
Audio Encoding Ogg Opus - OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- Output
Audio Encoding Mulaw - OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Unspecified - OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Linear16 - OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Mp3 - OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Mp364Kbps - OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Ogg Opus - OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- Google
Cloud Dialogflow V2Text To Speech Settings Output Audio Encoding Output Audio Encoding Mulaw - OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
- Output
Audio Encoding Unspecified - OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- Output
Audio Encoding Linear16 - OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- Output
Audio Encoding Mp3 - OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- Output
Audio Encoding Mp364Kbps - OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- Output
Audio Encoding Ogg Opus - OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- Output
Audio Encoding Mulaw - OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
- Output
Audio Encoding Unspecified - OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- Output
Audio Encoding Linear16 - OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- Output
Audio Encoding Mp3 - OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- Output
Audio Encoding Mp364Kbps - OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- Output
Audio Encoding Ogg Opus - OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- Output
Audio Encoding Mulaw - OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
- OUTPUT_AUDIO_ENCODING_UNSPECIFIED
- OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- OUTPUT_AUDIO_ENCODING_LINEAR16
- OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- OUTPUT_AUDIO_ENCODING_MP3
- OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- OUTPUT_AUDIO_ENCODING_MP364_KBPS
- OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- OUTPUT_AUDIO_ENCODING_OGG_OPUS
- OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- OUTPUT_AUDIO_ENCODING_MULAW
- OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
- "OUTPUT_AUDIO_ENCODING_UNSPECIFIED"
- OUTPUT_AUDIO_ENCODING_UNSPECIFIEDNot specified.
- "OUTPUT_AUDIO_ENCODING_LINEAR_16"
- OUTPUT_AUDIO_ENCODING_LINEAR_16Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header.
- "OUTPUT_AUDIO_ENCODING_MP3"
- OUTPUT_AUDIO_ENCODING_MP3MP3 audio at 32kbps.
- "OUTPUT_AUDIO_ENCODING_MP3_64_KBPS"
- OUTPUT_AUDIO_ENCODING_MP3_64_KBPSMP3 audio at 64kbps.
- "OUTPUT_AUDIO_ENCODING_OGG_OPUS"
- OUTPUT_AUDIO_ENCODING_OGG_OPUSOpus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate.
- "OUTPUT_AUDIO_ENCODING_MULAW"
- OUTPUT_AUDIO_ENCODING_MULAW8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
GoogleCloudDialogflowV2TextToSpeechSettingsResponse, GoogleCloudDialogflowV2TextToSpeechSettingsResponseArgs
- Enable
Text boolTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- Output
Audio stringEncoding - Audio encoding of the synthesized audio content.
- Sample
Rate intHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- Synthesize
Speech Dictionary<string, string>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- Enable
Text boolTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- Output
Audio stringEncoding - Audio encoding of the synthesized audio content.
- Sample
Rate intHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- Synthesize
Speech map[string]stringConfigs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- enable
Text BooleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- output
Audio StringEncoding - Audio encoding of the synthesized audio content.
- sample
Rate IntegerHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech Map<String,String>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- enable
Text booleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- output
Audio stringEncoding - Audio encoding of the synthesized audio content.
- sample
Rate numberHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech {[key: string]: string}Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- enable_
text_ boolto_ speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- output_
audio_ strencoding - Audio encoding of the synthesized audio content.
- sample_
rate_ inthertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize_
speech_ Mapping[str, str]configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
- enable
Text BooleanTo Speech - Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained.
- output
Audio StringEncoding - Audio encoding of the synthesized audio content.
- sample
Rate NumberHertz - Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality).
- synthesize
Speech Map<String>Configs - Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.