pulumi-gcp 7.30.0a1719470057__py3-none-any.whl → 7.30.0a1719555549__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/_inputs.py +15 -0
- pulumi_gcp/accessapproval/get_folder_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_organization_service_account.py +5 -0
- pulumi_gcp/accessapproval/get_project_service_account.py +5 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +2066 -6
- pulumi_gcp/accesscontextmanager/access_level.py +37 -32
- pulumi_gcp/accesscontextmanager/access_level_condition.py +53 -48
- pulumi_gcp/accesscontextmanager/access_levels.py +70 -65
- pulumi_gcp/accesscontextmanager/access_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_member.py +24 -19
- pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py +21 -16
- pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +5 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +33 -28
- pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +5 -0
- pulumi_gcp/accesscontextmanager/outputs.py +5 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +201 -196
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +15 -10
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +11 -6
- pulumi_gcp/accesscontextmanager/service_perimeters.py +60 -55
- pulumi_gcp/activedirectory/domain.py +5 -0
- pulumi_gcp/activedirectory/domain_trust.py +5 -0
- pulumi_gcp/activedirectory/peering.py +5 -0
- pulumi_gcp/alloydb/_inputs.py +535 -0
- pulumi_gcp/alloydb/backup.py +26 -21
- pulumi_gcp/alloydb/cluster.py +177 -172
- pulumi_gcp/alloydb/get_locations.py +5 -0
- pulumi_gcp/alloydb/get_supported_database_flags.py +5 -0
- pulumi_gcp/alloydb/instance.py +77 -72
- pulumi_gcp/alloydb/outputs.py +5 -0
- pulumi_gcp/alloydb/user.py +17 -12
- pulumi_gcp/apigateway/_inputs.py +168 -0
- pulumi_gcp/apigateway/api.py +5 -0
- pulumi_gcp/apigateway/api_config.py +25 -20
- pulumi_gcp/apigateway/api_config_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_config_iam_policy.py +21 -16
- pulumi_gcp/apigateway/api_iam_binding.py +24 -19
- pulumi_gcp/apigateway/api_iam_member.py +24 -19
- pulumi_gcp/apigateway/api_iam_policy.py +21 -16
- pulumi_gcp/apigateway/gateway.py +5 -0
- pulumi_gcp/apigateway/gateway_iam_binding.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_member.py +24 -19
- pulumi_gcp/apigateway/gateway_iam_policy.py +21 -16
- pulumi_gcp/apigateway/get_api_config_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_api_iam_policy.py +5 -0
- pulumi_gcp/apigateway/get_gateway_iam_policy.py +5 -0
- pulumi_gcp/apigateway/outputs.py +5 -0
- pulumi_gcp/apigee/_inputs.py +508 -0
- pulumi_gcp/apigee/addons_config.py +60 -55
- pulumi_gcp/apigee/endpoint_attachment.py +5 -0
- pulumi_gcp/apigee/env_group.py +5 -0
- pulumi_gcp/apigee/env_group_attachment.py +5 -0
- pulumi_gcp/apigee/env_keystore.py +5 -0
- pulumi_gcp/apigee/env_references.py +5 -0
- pulumi_gcp/apigee/environment.py +10 -5
- pulumi_gcp/apigee/environment_iam_binding.py +24 -19
- pulumi_gcp/apigee/environment_iam_member.py +24 -19
- pulumi_gcp/apigee/environment_iam_policy.py +21 -16
- pulumi_gcp/apigee/flowhook.py +5 -0
- pulumi_gcp/apigee/get_environment_iam_policy.py +5 -0
- pulumi_gcp/apigee/instance.py +5 -0
- pulumi_gcp/apigee/instance_attachment.py +5 -0
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +10 -5
- pulumi_gcp/apigee/keystores_aliases_pkcs12.py +7 -2
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +31 -26
- pulumi_gcp/apigee/nat_address.py +5 -0
- pulumi_gcp/apigee/organization.py +10 -5
- pulumi_gcp/apigee/outputs.py +5 -0
- pulumi_gcp/apigee/sharedflow.py +7 -2
- pulumi_gcp/apigee/sharedflow_deployment.py +5 -0
- pulumi_gcp/apigee/sync_authorization.py +5 -0
- pulumi_gcp/apigee/target_server.py +10 -5
- pulumi_gcp/appengine/_inputs.py +990 -7
- pulumi_gcp/appengine/application.py +17 -12
- pulumi_gcp/appengine/application_url_dispatch_rules.py +46 -41
- pulumi_gcp/appengine/domain_mapping.py +18 -13
- pulumi_gcp/appengine/engine_split_traffic.py +50 -45
- pulumi_gcp/appengine/firewall_rule.py +5 -0
- pulumi_gcp/appengine/flexible_app_version.py +130 -125
- pulumi_gcp/appengine/get_default_service_account.py +5 -0
- pulumi_gcp/appengine/outputs.py +5 -0
- pulumi_gcp/appengine/service_network_settings.py +32 -27
- pulumi_gcp/appengine/standard_app_version.py +109 -104
- pulumi_gcp/apphub/_inputs.py +370 -0
- pulumi_gcp/apphub/application.py +67 -62
- pulumi_gcp/apphub/get_application.py +5 -0
- pulumi_gcp/apphub/get_discovered_service.py +5 -0
- pulumi_gcp/apphub/get_discovered_workload.py +5 -0
- pulumi_gcp/apphub/outputs.py +5 -0
- pulumi_gcp/apphub/service.py +78 -73
- pulumi_gcp/apphub/service_project_attachment.py +5 -0
- pulumi_gcp/apphub/workload.py +14 -9
- pulumi_gcp/applicationintegration/_inputs.py +324 -0
- pulumi_gcp/applicationintegration/auth_config.py +29 -24
- pulumi_gcp/applicationintegration/client.py +24 -19
- pulumi_gcp/applicationintegration/outputs.py +5 -0
- pulumi_gcp/artifactregistry/_inputs.py +392 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +5 -0
- pulumi_gcp/artifactregistry/get_repository.py +5 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +5 -0
- pulumi_gcp/artifactregistry/outputs.py +5 -0
- pulumi_gcp/artifactregistry/repository.py +338 -333
- pulumi_gcp/artifactregistry/repository_iam_binding.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_member.py +24 -19
- pulumi_gcp/artifactregistry/repository_iam_policy.py +21 -16
- pulumi_gcp/artifactregistry/vpcsc_config.py +5 -0
- pulumi_gcp/assuredworkloads/_inputs.py +117 -0
- pulumi_gcp/assuredworkloads/outputs.py +5 -0
- pulumi_gcp/assuredworkloads/workload.py +86 -81
- pulumi_gcp/backupdisasterrecovery/_inputs.py +41 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +5 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +20 -15
- pulumi_gcp/backupdisasterrecovery/outputs.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +86 -0
- pulumi_gcp/beyondcorp/app_connection.py +57 -52
- pulumi_gcp/beyondcorp/app_connector.py +30 -25
- pulumi_gcp/beyondcorp/app_gateway.py +7 -2
- pulumi_gcp/beyondcorp/get_app_connection.py +5 -0
- pulumi_gcp/beyondcorp/get_app_connector.py +5 -0
- pulumi_gcp/beyondcorp/get_app_gateway.py +5 -0
- pulumi_gcp/beyondcorp/outputs.py +5 -0
- pulumi_gcp/biglake/_inputs.py +64 -0
- pulumi_gcp/biglake/catalog.py +5 -0
- pulumi_gcp/biglake/database.py +18 -13
- pulumi_gcp/biglake/outputs.py +5 -0
- pulumi_gcp/biglake/table.py +36 -31
- pulumi_gcp/bigquery/_inputs.py +1930 -6
- pulumi_gcp/bigquery/app_profile.py +133 -128
- pulumi_gcp/bigquery/bi_reservation.py +10 -5
- pulumi_gcp/bigquery/capacity_commitment.py +5 -0
- pulumi_gcp/bigquery/connection.py +181 -176
- pulumi_gcp/bigquery/connection_iam_binding.py +24 -19
- pulumi_gcp/bigquery/connection_iam_member.py +24 -19
- pulumi_gcp/bigquery/connection_iam_policy.py +21 -16
- pulumi_gcp/bigquery/data_transfer_config.py +20 -15
- pulumi_gcp/bigquery/dataset.py +132 -127
- pulumi_gcp/bigquery/dataset_access.py +72 -67
- pulumi_gcp/bigquery/dataset_iam_binding.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_member.py +24 -19
- pulumi_gcp/bigquery/dataset_iam_policy.py +21 -16
- pulumi_gcp/bigquery/get_connection_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_dataset.py +5 -0
- pulumi_gcp/bigquery/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/bigquery/get_default_service_account.py +5 -0
- pulumi_gcp/bigquery/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigquery/iam_binding.py +102 -97
- pulumi_gcp/bigquery/iam_member.py +102 -97
- pulumi_gcp/bigquery/iam_policy.py +97 -92
- pulumi_gcp/bigquery/job.py +229 -224
- pulumi_gcp/bigquery/outputs.py +5 -0
- pulumi_gcp/bigquery/reservation.py +16 -11
- pulumi_gcp/bigquery/reservation_assignment.py +5 -0
- pulumi_gcp/bigquery/routine.py +114 -109
- pulumi_gcp/bigquery/table.py +67 -62
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +97 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +5 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +45 -40
- pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +24 -19
- pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +21 -16
- pulumi_gcp/bigqueryanalyticshub/outputs.py +5 -0
- pulumi_gcp/bigquerydatapolicy/_inputs.py +40 -0
- pulumi_gcp/bigquerydatapolicy/data_policy.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +24 -19
- pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +21 -16
- pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +5 -0
- pulumi_gcp/bigquerydatapolicy/outputs.py +5 -0
- pulumi_gcp/bigtable/_inputs.py +202 -0
- pulumi_gcp/bigtable/authorized_view.py +10 -5
- pulumi_gcp/bigtable/gc_policy.py +45 -40
- pulumi_gcp/bigtable/get_instance_iam_policy.py +5 -0
- pulumi_gcp/bigtable/get_table_iam_policy.py +5 -0
- pulumi_gcp/bigtable/instance.py +52 -47
- pulumi_gcp/bigtable/instance_iam_binding.py +24 -19
- pulumi_gcp/bigtable/instance_iam_member.py +24 -19
- pulumi_gcp/bigtable/instance_iam_policy.py +21 -16
- pulumi_gcp/bigtable/outputs.py +5 -0
- pulumi_gcp/bigtable/table.py +39 -34
- pulumi_gcp/bigtable/table_iam_binding.py +24 -19
- pulumi_gcp/bigtable/table_iam_member.py +24 -19
- pulumi_gcp/bigtable/table_iam_policy.py +21 -16
- pulumi_gcp/billing/_inputs.py +257 -0
- pulumi_gcp/billing/account_iam_binding.py +24 -19
- pulumi_gcp/billing/account_iam_member.py +24 -19
- pulumi_gcp/billing/account_iam_policy.py +21 -16
- pulumi_gcp/billing/budget.py +225 -220
- pulumi_gcp/billing/get_account_iam_policy.py +5 -0
- pulumi_gcp/billing/outputs.py +5 -0
- pulumi_gcp/billing/project_info.py +5 -0
- pulumi_gcp/billing/sub_account.py +5 -0
- pulumi_gcp/binaryauthorization/_inputs.py +199 -0
- pulumi_gcp/binaryauthorization/attestor.py +68 -63
- pulumi_gcp/binaryauthorization/attestor_iam_binding.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_member.py +24 -19
- pulumi_gcp/binaryauthorization/attestor_iam_policy.py +21 -16
- pulumi_gcp/binaryauthorization/get_attestor_iam_policy.py +5 -0
- pulumi_gcp/binaryauthorization/outputs.py +5 -0
- pulumi_gcp/binaryauthorization/policy.py +88 -83
- pulumi_gcp/blockchainnodeengine/_inputs.py +131 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +62 -57
- pulumi_gcp/blockchainnodeengine/outputs.py +5 -0
- pulumi_gcp/certificateauthority/_inputs.py +2157 -36
- pulumi_gcp/certificateauthority/authority.py +398 -393
- pulumi_gcp/certificateauthority/ca_pool.py +189 -184
- pulumi_gcp/certificateauthority/ca_pool_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/ca_pool_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/certificate.py +636 -631
- pulumi_gcp/certificateauthority/certificate_template.py +134 -129
- pulumi_gcp/certificateauthority/certificate_template_iam_binding.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_member.py +102 -97
- pulumi_gcp/certificateauthority/certificate_template_iam_policy.py +97 -92
- pulumi_gcp/certificateauthority/get_authority.py +5 -0
- pulumi_gcp/certificateauthority/get_ca_pool_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/get_certificate_template_iam_policy.py +5 -0
- pulumi_gcp/certificateauthority/outputs.py +5 -0
- pulumi_gcp/certificatemanager/_inputs.py +256 -0
- pulumi_gcp/certificatemanager/certificate.py +203 -198
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +76 -71
- pulumi_gcp/certificatemanager/certificate_map.py +7 -2
- pulumi_gcp/certificatemanager/certificate_map_entry.py +13 -8
- pulumi_gcp/certificatemanager/dns_authorization.py +7 -2
- pulumi_gcp/certificatemanager/get_certificate_map.py +5 -0
- pulumi_gcp/certificatemanager/outputs.py +5 -0
- pulumi_gcp/certificatemanager/trust_config.py +26 -21
- pulumi_gcp/cloudasset/_inputs.py +151 -0
- pulumi_gcp/cloudasset/folder_feed.py +35 -30
- pulumi_gcp/cloudasset/get_resources_search_all.py +5 -0
- pulumi_gcp/cloudasset/get_search_all_resources.py +5 -0
- pulumi_gcp/cloudasset/organization_feed.py +35 -30
- pulumi_gcp/cloudasset/outputs.py +5 -0
- pulumi_gcp/cloudasset/project_feed.py +35 -30
- pulumi_gcp/cloudbuild/_inputs.py +1038 -29
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +61 -56
- pulumi_gcp/cloudbuild/get_trigger.py +5 -0
- pulumi_gcp/cloudbuild/outputs.py +5 -0
- pulumi_gcp/cloudbuild/trigger.py +733 -728
- pulumi_gcp/cloudbuild/worker_pool.py +43 -38
- pulumi_gcp/cloudbuildv2/_inputs.py +335 -0
- pulumi_gcp/cloudbuildv2/connection.py +106 -101
- pulumi_gcp/cloudbuildv2/connection_iam_binding.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_member.py +24 -19
- pulumi_gcp/cloudbuildv2/connection_iam_policy.py +21 -16
- pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py +5 -0
- pulumi_gcp/cloudbuildv2/outputs.py +5 -0
- pulumi_gcp/cloudbuildv2/repository.py +67 -62
- pulumi_gcp/clouddeploy/_inputs.py +700 -0
- pulumi_gcp/clouddeploy/automation.py +101 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +88 -83
- pulumi_gcp/clouddeploy/custom_target_type_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +162 -157
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_custom_target_type_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/get_target_iam_policy.py +5 -0
- pulumi_gcp/clouddeploy/outputs.py +5 -0
- pulumi_gcp/clouddeploy/target.py +69 -64
- pulumi_gcp/clouddeploy/target_iam_binding.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_member.py +8 -3
- pulumi_gcp/clouddeploy/target_iam_policy.py +5 -0
- pulumi_gcp/clouddomains/_inputs.py +372 -0
- pulumi_gcp/clouddomains/outputs.py +5 -0
- pulumi_gcp/clouddomains/registration.py +121 -116
- pulumi_gcp/cloudfunctions/_inputs.py +132 -0
- pulumi_gcp/cloudfunctions/function.py +25 -20
- pulumi_gcp/cloudfunctions/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctions/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctions/get_function.py +5 -0
- pulumi_gcp/cloudfunctions/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctions/outputs.py +5 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +357 -0
- pulumi_gcp/cloudfunctionsv2/function.py +514 -509
- pulumi_gcp/cloudfunctionsv2/function_iam_binding.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_member.py +24 -19
- pulumi_gcp/cloudfunctionsv2/function_iam_policy.py +21 -16
- pulumi_gcp/cloudfunctionsv2/get_function.py +5 -0
- pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py +5 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +5 -0
- pulumi_gcp/cloudidentity/_inputs.py +161 -0
- pulumi_gcp/cloudidentity/get_group_lookup.py +9 -4
- pulumi_gcp/cloudidentity/get_group_memberships.py +5 -0
- pulumi_gcp/cloudidentity/get_groups.py +5 -0
- pulumi_gcp/cloudidentity/group.py +18 -13
- pulumi_gcp/cloudidentity/group_membership.py +68 -63
- pulumi_gcp/cloudidentity/outputs.py +5 -0
- pulumi_gcp/cloudids/endpoint.py +5 -0
- pulumi_gcp/cloudquota/_inputs.py +44 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +5 -0
- pulumi_gcp/cloudquota/get_s_quota_infos.py +5 -0
- pulumi_gcp/cloudquota/outputs.py +5 -0
- pulumi_gcp/cloudquota/s_quota_preference.py +16 -11
- pulumi_gcp/cloudrun/_inputs.py +1165 -15
- pulumi_gcp/cloudrun/domain_mapping.py +49 -44
- pulumi_gcp/cloudrun/get_locations.py +5 -0
- pulumi_gcp/cloudrun/get_service.py +5 -0
- pulumi_gcp/cloudrun/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrun/iam_binding.py +24 -19
- pulumi_gcp/cloudrun/iam_member.py +24 -19
- pulumi_gcp/cloudrun/iam_policy.py +21 -16
- pulumi_gcp/cloudrun/outputs.py +5 -0
- pulumi_gcp/cloudrun/service.py +270 -265
- pulumi_gcp/cloudrunv2/_inputs.py +1338 -5
- pulumi_gcp/cloudrunv2/get_job.py +5 -0
- pulumi_gcp/cloudrunv2/get_job_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/get_service.py +5 -0
- pulumi_gcp/cloudrunv2/get_service_iam_policy.py +5 -0
- pulumi_gcp/cloudrunv2/job.py +287 -282
- pulumi_gcp/cloudrunv2/job_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/job_iam_policy.py +21 -16
- pulumi_gcp/cloudrunv2/outputs.py +5 -0
- pulumi_gcp/cloudrunv2/service.py +437 -432
- pulumi_gcp/cloudrunv2/service_iam_binding.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_member.py +24 -19
- pulumi_gcp/cloudrunv2/service_iam_policy.py +21 -16
- pulumi_gcp/cloudscheduler/_inputs.py +193 -0
- pulumi_gcp/cloudscheduler/job.py +127 -122
- pulumi_gcp/cloudscheduler/outputs.py +5 -0
- pulumi_gcp/cloudtasks/_inputs.py +134 -0
- pulumi_gcp/cloudtasks/get_queue_iam_policy.py +5 -0
- pulumi_gcp/cloudtasks/outputs.py +5 -0
- pulumi_gcp/cloudtasks/queue.py +63 -58
- pulumi_gcp/cloudtasks/queue_iam_binding.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_member.py +24 -19
- pulumi_gcp/cloudtasks/queue_iam_policy.py +21 -16
- pulumi_gcp/composer/_inputs.py +566 -0
- pulumi_gcp/composer/environment.py +15 -10
- pulumi_gcp/composer/get_environment.py +5 -0
- pulumi_gcp/composer/get_image_versions.py +15 -10
- pulumi_gcp/composer/get_user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/get_user_workloads_secret.py +15 -10
- pulumi_gcp/composer/outputs.py +5 -0
- pulumi_gcp/composer/user_workloads_config_map.py +15 -10
- pulumi_gcp/composer/user_workloads_secret.py +15 -10
- pulumi_gcp/compute/_inputs.py +13512 -145
- pulumi_gcp/compute/address.py +27 -22
- pulumi_gcp/compute/attached_disk.py +21 -16
- pulumi_gcp/compute/autoscaler.py +98 -93
- pulumi_gcp/compute/backend_bucket.py +30 -25
- pulumi_gcp/compute/backend_bucket_iam_binding.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_member.py +8 -3
- pulumi_gcp/compute/backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_bucket_signed_url_key.py +5 -0
- pulumi_gcp/compute/backend_service.py +204 -199
- pulumi_gcp/compute/backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/backend_service_signed_url_key.py +35 -30
- pulumi_gcp/compute/ca_external_account_key.py +5 -0
- pulumi_gcp/compute/disk.py +54 -49
- pulumi_gcp/compute/disk_async_replication.py +10 -5
- pulumi_gcp/compute/disk_iam_binding.py +24 -19
- pulumi_gcp/compute/disk_iam_member.py +24 -19
- pulumi_gcp/compute/disk_iam_policy.py +21 -16
- pulumi_gcp/compute/disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/external_vpn_gateway.py +24 -19
- pulumi_gcp/compute/firewall.py +42 -37
- pulumi_gcp/compute/firewall_policy.py +5 -0
- pulumi_gcp/compute/firewall_policy_association.py +5 -0
- pulumi_gcp/compute/firewall_policy_rule.py +44 -39
- pulumi_gcp/compute/forwarding_rule.py +248 -243
- pulumi_gcp/compute/get_address.py +5 -0
- pulumi_gcp/compute/get_addresses.py +5 -0
- pulumi_gcp/compute/get_backend_bucket.py +5 -0
- pulumi_gcp/compute/get_backend_bucket_iam_policy.py +5 -0
- pulumi_gcp/compute/get_backend_service.py +5 -0
- pulumi_gcp/compute/get_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_certificate.py +5 -0
- pulumi_gcp/compute/get_default_service_account.py +5 -0
- pulumi_gcp/compute/get_disk.py +13 -8
- pulumi_gcp/compute/get_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_forwarding_rules.py +5 -0
- pulumi_gcp/compute/get_global_address.py +5 -0
- pulumi_gcp/compute/get_global_forwarding_rule.py +5 -0
- pulumi_gcp/compute/get_hc_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_health_check.py +5 -0
- pulumi_gcp/compute/get_image.py +15 -10
- pulumi_gcp/compute/get_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance.py +5 -0
- pulumi_gcp/compute/get_instance_group.py +5 -0
- pulumi_gcp/compute/get_instance_group_manager.py +5 -0
- pulumi_gcp/compute/get_instance_iam_policy.py +5 -0
- pulumi_gcp/compute/get_instance_serial_port.py +29 -24
- pulumi_gcp/compute/get_instance_template.py +5 -0
- pulumi_gcp/compute/get_lbip_ranges.py +5 -0
- pulumi_gcp/compute/get_machine_image_iam_policy.py +5 -0
- pulumi_gcp/compute/get_machine_types.py +5 -0
- pulumi_gcp/compute/get_netblock_ip_ranges.py +5 -0
- pulumi_gcp/compute/get_network.py +5 -0
- pulumi_gcp/compute/get_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_network_peering.py +5 -0
- pulumi_gcp/compute/get_networks.py +5 -0
- pulumi_gcp/compute/get_node_types.py +5 -0
- pulumi_gcp/compute/get_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_disk.py +5 -0
- pulumi_gcp/compute/get_region_disk_iam_policy.py +5 -0
- pulumi_gcp/compute/get_region_instance_group.py +5 -0
- pulumi_gcp/compute/get_region_instance_template.py +5 -0
- pulumi_gcp/compute/get_region_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/get_region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/get_regions.py +5 -0
- pulumi_gcp/compute/get_reservation.py +5 -0
- pulumi_gcp/compute/get_resource_policy.py +5 -0
- pulumi_gcp/compute/get_router.py +5 -0
- pulumi_gcp/compute/get_router_nat.py +5 -0
- pulumi_gcp/compute/get_router_status.py +5 -0
- pulumi_gcp/compute/get_security_policy.py +5 -0
- pulumi_gcp/compute/get_snapshot.py +5 -0
- pulumi_gcp/compute/get_snapshot_iam_policy.py +5 -0
- pulumi_gcp/compute/get_ssl_policy.py +5 -0
- pulumi_gcp/compute/get_subnetwork.py +5 -0
- pulumi_gcp/compute/get_subnetwork_iam_policy.py +5 -0
- pulumi_gcp/compute/get_subnetworks.py +5 -0
- pulumi_gcp/compute/get_vpn_gateway.py +5 -0
- pulumi_gcp/compute/get_zones.py +5 -0
- pulumi_gcp/compute/global_address.py +5 -0
- pulumi_gcp/compute/global_forwarding_rule.py +211 -206
- pulumi_gcp/compute/global_network_endpoint.py +5 -0
- pulumi_gcp/compute/global_network_endpoint_group.py +5 -0
- pulumi_gcp/compute/ha_vpn_gateway.py +32 -27
- pulumi_gcp/compute/health_check.py +174 -169
- pulumi_gcp/compute/http_health_check.py +5 -0
- pulumi_gcp/compute/https_health_check.py +5 -0
- pulumi_gcp/compute/image.py +50 -45
- pulumi_gcp/compute/image_iam_binding.py +102 -97
- pulumi_gcp/compute/image_iam_member.py +102 -97
- pulumi_gcp/compute/image_iam_policy.py +97 -92
- pulumi_gcp/compute/instance.py +104 -99
- pulumi_gcp/compute/instance_from_machine_image.py +61 -56
- pulumi_gcp/compute/instance_from_template.py +88 -83
- pulumi_gcp/compute/instance_group.py +26 -21
- pulumi_gcp/compute/instance_group_manager.py +138 -133
- pulumi_gcp/compute/instance_group_membership.py +21 -16
- pulumi_gcp/compute/instance_group_named_port.py +13 -8
- pulumi_gcp/compute/instance_iam_binding.py +102 -97
- pulumi_gcp/compute/instance_iam_member.py +102 -97
- pulumi_gcp/compute/instance_iam_policy.py +97 -92
- pulumi_gcp/compute/instance_settings.py +16 -11
- pulumi_gcp/compute/instance_template.py +147 -142
- pulumi_gcp/compute/interconnect.py +14 -9
- pulumi_gcp/compute/interconnect_attachment.py +19 -14
- pulumi_gcp/compute/machine_image.py +48 -43
- pulumi_gcp/compute/machine_image_iam_binding.py +102 -97
- pulumi_gcp/compute/machine_image_iam_member.py +102 -97
- pulumi_gcp/compute/machine_image_iam_policy.py +97 -92
- pulumi_gcp/compute/managed_ssl_certificate.py +40 -35
- pulumi_gcp/compute/manged_ssl_certificate.py +40 -35
- pulumi_gcp/compute/network.py +5 -0
- pulumi_gcp/compute/network_attachment.py +29 -24
- pulumi_gcp/compute/network_edge_security_service.py +5 -0
- pulumi_gcp/compute/network_endpoint.py +23 -18
- pulumi_gcp/compute/network_endpoint_group.py +5 -0
- pulumi_gcp/compute/network_endpoint_list.py +66 -61
- pulumi_gcp/compute/network_firewall_policy.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/network_peering.py +5 -0
- pulumi_gcp/compute/network_peering_routes_config.py +41 -36
- pulumi_gcp/compute/node_group.py +50 -45
- pulumi_gcp/compute/node_template.py +21 -16
- pulumi_gcp/compute/organization_security_policy.py +5 -0
- pulumi_gcp/compute/organization_security_policy_association.py +31 -26
- pulumi_gcp/compute/organization_security_policy_rule.py +36 -31
- pulumi_gcp/compute/outputs.py +5 -0
- pulumi_gcp/compute/packet_mirroring.py +83 -78
- pulumi_gcp/compute/per_instance_config.py +56 -51
- pulumi_gcp/compute/project_cloud_armor_tier.py +5 -0
- pulumi_gcp/compute/project_default_network_tier.py +5 -0
- pulumi_gcp/compute/project_metadata.py +5 -0
- pulumi_gcp/compute/project_metadata_item.py +5 -0
- pulumi_gcp/compute/public_advertised_prefix.py +5 -0
- pulumi_gcp/compute/public_delegated_prefix.py +5 -0
- pulumi_gcp/compute/region_autoscaler.py +60 -55
- pulumi_gcp/compute/region_backend_service.py +203 -198
- pulumi_gcp/compute/region_backend_service_iam_binding.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_member.py +10 -5
- pulumi_gcp/compute/region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/compute/region_commitment.py +47 -42
- pulumi_gcp/compute/region_disk.py +49 -44
- pulumi_gcp/compute/region_disk_iam_binding.py +24 -19
- pulumi_gcp/compute/region_disk_iam_member.py +24 -19
- pulumi_gcp/compute/region_disk_iam_policy.py +21 -16
- pulumi_gcp/compute/region_disk_resource_policy_attachment.py +21 -16
- pulumi_gcp/compute/region_health_check.py +174 -169
- pulumi_gcp/compute/region_instance_group_manager.py +134 -129
- pulumi_gcp/compute/region_instance_template.py +55 -50
- pulumi_gcp/compute/region_network_endpoint.py +23 -18
- pulumi_gcp/compute/region_network_endpoint_group.py +135 -130
- pulumi_gcp/compute/region_network_firewall_policy.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_association.py +5 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +41 -36
- pulumi_gcp/compute/region_per_instance_config.py +66 -61
- pulumi_gcp/compute/region_security_policy.py +49 -44
- pulumi_gcp/compute/region_security_policy_rule.py +161 -156
- pulumi_gcp/compute/region_ssl_certificate.py +5 -0
- pulumi_gcp/compute/region_ssl_policy.py +5 -0
- pulumi_gcp/compute/region_target_http_proxy.py +43 -38
- pulumi_gcp/compute/region_target_https_proxy.py +97 -92
- pulumi_gcp/compute/region_target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/region_url_map.py +824 -819
- pulumi_gcp/compute/reservation.py +29 -24
- pulumi_gcp/compute/resource_policy.py +153 -148
- pulumi_gcp/compute/route.py +17 -12
- pulumi_gcp/compute/router.py +40 -35
- pulumi_gcp/compute/router_interface.py +5 -0
- pulumi_gcp/compute/router_nat.py +98 -93
- pulumi_gcp/compute/router_peer.py +78 -73
- pulumi_gcp/compute/router_status.py +5 -0
- pulumi_gcp/compute/security_policy.py +201 -196
- pulumi_gcp/compute/security_policy_rule.py +80 -75
- pulumi_gcp/compute/security_scan_config.py +15 -10
- pulumi_gcp/compute/service_attachment.py +60 -55
- pulumi_gcp/compute/shared_vpc_host_project.py +5 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +5 -0
- pulumi_gcp/compute/snapshot.py +15 -10
- pulumi_gcp/compute/snapshot_iam_binding.py +24 -19
- pulumi_gcp/compute/snapshot_iam_member.py +24 -19
- pulumi_gcp/compute/snapshot_iam_policy.py +21 -16
- pulumi_gcp/compute/ssl_certificate.py +5 -0
- pulumi_gcp/compute/ssl_policy.py +5 -0
- pulumi_gcp/compute/subnetwork.py +33 -28
- pulumi_gcp/compute/subnetwork_iam_binding.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_member.py +102 -97
- pulumi_gcp/compute/subnetwork_iam_policy.py +97 -92
- pulumi_gcp/compute/target_grpc_proxy.py +129 -124
- pulumi_gcp/compute/target_http_proxy.py +61 -56
- pulumi_gcp/compute/target_https_proxy.py +133 -128
- pulumi_gcp/compute/target_instance.py +63 -58
- pulumi_gcp/compute/target_pool.py +5 -0
- pulumi_gcp/compute/target_ssl_proxy.py +11 -6
- pulumi_gcp/compute/target_tcp_proxy.py +11 -6
- pulumi_gcp/compute/url_map.py +731 -726
- pulumi_gcp/compute/vpn_gateway.py +5 -0
- pulumi_gcp/compute/vpn_tunnel.py +5 -0
- pulumi_gcp/config/__init__.pyi +5 -0
- pulumi_gcp/config/outputs.py +5 -0
- pulumi_gcp/config/vars.py +5 -0
- pulumi_gcp/container/_inputs.py +5502 -823
- pulumi_gcp/container/attached_cluster.py +128 -123
- pulumi_gcp/container/aws_cluster.py +359 -354
- pulumi_gcp/container/aws_node_pool.py +554 -549
- pulumi_gcp/container/azure_client.py +5 -0
- pulumi_gcp/container/azure_cluster.py +133 -128
- pulumi_gcp/container/azure_node_pool.py +115 -110
- pulumi_gcp/container/cluster.py +224 -219
- pulumi_gcp/container/get_attached_install_manifest.py +5 -0
- pulumi_gcp/container/get_attached_versions.py +5 -0
- pulumi_gcp/container/get_aws_versions.py +5 -0
- pulumi_gcp/container/get_azure_versions.py +5 -0
- pulumi_gcp/container/get_cluster.py +5 -0
- pulumi_gcp/container/get_engine_versions.py +5 -0
- pulumi_gcp/container/get_registry_image.py +5 -0
- pulumi_gcp/container/get_registry_repository.py +5 -0
- pulumi_gcp/container/node_pool.py +78 -73
- pulumi_gcp/container/outputs.py +5 -0
- pulumi_gcp/container/registry.py +5 -0
- pulumi_gcp/containeranalysis/_inputs.py +121 -0
- pulumi_gcp/containeranalysis/get_note_iam_policy.py +5 -0
- pulumi_gcp/containeranalysis/note.py +49 -44
- pulumi_gcp/containeranalysis/note_iam_binding.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_member.py +24 -19
- pulumi_gcp/containeranalysis/note_iam_policy.py +21 -16
- pulumi_gcp/containeranalysis/occurence.py +10 -5
- pulumi_gcp/containeranalysis/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +578 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +188 -183
- pulumi_gcp/databasemigrationservice/outputs.py +5 -0
- pulumi_gcp/databasemigrationservice/private_connection.py +20 -15
- pulumi_gcp/datacatalog/_inputs.py +318 -0
- pulumi_gcp/datacatalog/entry.py +20 -15
- pulumi_gcp/datacatalog/entry_group.py +5 -0
- pulumi_gcp/datacatalog/entry_group_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_member.py +24 -19
- pulumi_gcp/datacatalog/entry_group_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_policy_tag_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +5 -0
- pulumi_gcp/datacatalog/outputs.py +5 -0
- pulumi_gcp/datacatalog/policy_tag.py +5 -0
- pulumi_gcp/datacatalog/policy_tag_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_member.py +24 -19
- pulumi_gcp/datacatalog/policy_tag_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/tag.py +264 -259
- pulumi_gcp/datacatalog/tag_template.py +76 -71
- pulumi_gcp/datacatalog/tag_template_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_member.py +24 -19
- pulumi_gcp/datacatalog/tag_template_iam_policy.py +21 -16
- pulumi_gcp/datacatalog/taxonomy.py +5 -0
- pulumi_gcp/datacatalog/taxonomy_iam_binding.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_member.py +24 -19
- pulumi_gcp/datacatalog/taxonomy_iam_policy.py +21 -16
- pulumi_gcp/dataflow/_inputs.py +316 -0
- pulumi_gcp/dataflow/flex_template_job.py +5 -0
- pulumi_gcp/dataflow/job.py +5 -0
- pulumi_gcp/dataflow/outputs.py +5 -0
- pulumi_gcp/dataflow/pipeline.py +75 -70
- pulumi_gcp/dataform/_inputs.py +251 -0
- pulumi_gcp/dataform/get_repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/outputs.py +5 -0
- pulumi_gcp/dataform/repository.py +41 -36
- pulumi_gcp/dataform/repository_iam_binding.py +8 -3
- pulumi_gcp/dataform/repository_iam_member.py +8 -3
- pulumi_gcp/dataform/repository_iam_policy.py +5 -0
- pulumi_gcp/dataform/repository_release_config.py +58 -53
- pulumi_gcp/dataform/repository_workflow_config.py +94 -89
- pulumi_gcp/datafusion/_inputs.py +64 -0
- pulumi_gcp/datafusion/get_instance_iam_policy.py +5 -0
- pulumi_gcp/datafusion/instance.py +55 -50
- pulumi_gcp/datafusion/outputs.py +5 -0
- pulumi_gcp/dataloss/_inputs.py +6566 -114
- pulumi_gcp/dataloss/outputs.py +5 -0
- pulumi_gcp/dataloss/prevention_deidentify_template.py +226 -221
- pulumi_gcp/dataloss/prevention_discovery_config.py +22 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +442 -437
- pulumi_gcp/dataloss/prevention_job_trigger.py +701 -696
- pulumi_gcp/dataloss/prevention_stored_info_type.py +62 -57
- pulumi_gcp/dataplex/_inputs.py +1212 -6
- pulumi_gcp/dataplex/aspect_type.py +5 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/asset.py +47 -42
- pulumi_gcp/dataplex/asset_iam_binding.py +24 -19
- pulumi_gcp/dataplex/asset_iam_member.py +24 -19
- pulumi_gcp/dataplex/asset_iam_policy.py +21 -16
- pulumi_gcp/dataplex/datascan.py +289 -284
- pulumi_gcp/dataplex/datascan_iam_binding.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_member.py +24 -19
- pulumi_gcp/dataplex/datascan_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_group.py +5 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_group_iam_policy.py +21 -16
- pulumi_gcp/dataplex/entry_type.py +16 -11
- pulumi_gcp/dataplex/entry_type_iam_binding.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_member.py +24 -19
- pulumi_gcp/dataplex/entry_type_iam_policy.py +21 -16
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_asset_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_datascan_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_entry_type_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_lake_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_task_iam_policy.py +5 -0
- pulumi_gcp/dataplex/get_zone_iam_policy.py +5 -0
- pulumi_gcp/dataplex/lake.py +14 -9
- pulumi_gcp/dataplex/lake_iam_binding.py +24 -19
- pulumi_gcp/dataplex/lake_iam_member.py +24 -19
- pulumi_gcp/dataplex/lake_iam_policy.py +21 -16
- pulumi_gcp/dataplex/outputs.py +5 -0
- pulumi_gcp/dataplex/task.py +173 -168
- pulumi_gcp/dataplex/task_iam_binding.py +24 -19
- pulumi_gcp/dataplex/task_iam_member.py +24 -19
- pulumi_gcp/dataplex/task_iam_policy.py +21 -16
- pulumi_gcp/dataplex/zone.py +29 -24
- pulumi_gcp/dataplex/zone_iam_binding.py +24 -19
- pulumi_gcp/dataplex/zone_iam_member.py +24 -19
- pulumi_gcp/dataplex/zone_iam_policy.py +21 -16
- pulumi_gcp/dataproc/_inputs.py +3214 -39
- pulumi_gcp/dataproc/autoscaling_policy.py +50 -45
- pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +24 -19
- pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +21 -16
- pulumi_gcp/dataproc/cluster.py +109 -104
- pulumi_gcp/dataproc/cluster_iam_binding.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_member.py +24 -19
- pulumi_gcp/dataproc/cluster_iam_policy.py +21 -16
- pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_cluster_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_job_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service.py +5 -0
- pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +5 -0
- pulumi_gcp/dataproc/job.py +95 -90
- pulumi_gcp/dataproc/job_iam_binding.py +24 -19
- pulumi_gcp/dataproc/job_iam_member.py +24 -19
- pulumi_gcp/dataproc/job_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_federation.py +56 -51
- pulumi_gcp/dataproc/metastore_federation_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_federation_iam_policy.py +21 -16
- pulumi_gcp/dataproc/metastore_service.py +239 -234
- pulumi_gcp/dataproc/metastore_service_iam_binding.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_member.py +24 -19
- pulumi_gcp/dataproc/metastore_service_iam_policy.py +21 -16
- pulumi_gcp/dataproc/outputs.py +5 -0
- pulumi_gcp/dataproc/workflow_template.py +112 -107
- pulumi_gcp/datastore/_inputs.py +22 -0
- pulumi_gcp/datastore/data_store_index.py +26 -21
- pulumi_gcp/datastore/outputs.py +5 -0
- pulumi_gcp/datastream/_inputs.py +1631 -35
- pulumi_gcp/datastream/connection_profile.py +251 -246
- pulumi_gcp/datastream/get_static_ips.py +5 -0
- pulumi_gcp/datastream/outputs.py +5 -0
- pulumi_gcp/datastream/private_connection.py +20 -15
- pulumi_gcp/datastream/stream.py +777 -772
- pulumi_gcp/deploymentmanager/_inputs.py +66 -0
- pulumi_gcp/deploymentmanager/deployment.py +33 -28
- pulumi_gcp/deploymentmanager/outputs.py +5 -0
- pulumi_gcp/diagflow/_inputs.py +2590 -41
- pulumi_gcp/diagflow/agent.py +5 -0
- pulumi_gcp/diagflow/cx_agent.py +75 -70
- pulumi_gcp/diagflow/cx_entity_type.py +37 -32
- pulumi_gcp/diagflow/cx_environment.py +22 -17
- pulumi_gcp/diagflow/cx_flow.py +455 -450
- pulumi_gcp/diagflow/cx_intent.py +55 -50
- pulumi_gcp/diagflow/cx_page.py +718 -713
- pulumi_gcp/diagflow/cx_security_settings.py +69 -64
- pulumi_gcp/diagflow/cx_test_case.py +197 -192
- pulumi_gcp/diagflow/cx_version.py +13 -8
- pulumi_gcp/diagflow/cx_webhook.py +27 -22
- pulumi_gcp/diagflow/entity_type.py +26 -21
- pulumi_gcp/diagflow/fulfillment.py +27 -22
- pulumi_gcp/diagflow/intent.py +7 -2
- pulumi_gcp/diagflow/outputs.py +5 -0
- pulumi_gcp/discoveryengine/_inputs.py +183 -0
- pulumi_gcp/discoveryengine/chat_engine.py +37 -32
- pulumi_gcp/discoveryengine/data_store.py +32 -27
- pulumi_gcp/discoveryengine/outputs.py +5 -0
- pulumi_gcp/discoveryengine/search_engine.py +17 -12
- pulumi_gcp/dns/_inputs.py +589 -0
- pulumi_gcp/dns/dns_managed_zone_iam_binding.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_member.py +24 -19
- pulumi_gcp/dns/dns_managed_zone_iam_policy.py +21 -16
- pulumi_gcp/dns/get_keys.py +13 -8
- pulumi_gcp/dns/get_managed_zone.py +5 -0
- pulumi_gcp/dns/get_managed_zone_iam_policy.py +5 -0
- pulumi_gcp/dns/get_managed_zones.py +5 -0
- pulumi_gcp/dns/get_record_set.py +5 -0
- pulumi_gcp/dns/managed_zone.py +183 -178
- pulumi_gcp/dns/outputs.py +5 -0
- pulumi_gcp/dns/policy.py +47 -42
- pulumi_gcp/dns/record_set.py +100 -95
- pulumi_gcp/dns/response_policy.py +81 -76
- pulumi_gcp/dns/response_policy_rule.py +38 -33
- pulumi_gcp/edgecontainer/_inputs.py +464 -0
- pulumi_gcp/edgecontainer/cluster.py +152 -147
- pulumi_gcp/edgecontainer/node_pool.py +109 -104
- pulumi_gcp/edgecontainer/outputs.py +5 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +36 -31
- pulumi_gcp/edgenetwork/network.py +5 -0
- pulumi_gcp/edgenetwork/subnet.py +5 -0
- pulumi_gcp/endpoints/_inputs.py +101 -0
- pulumi_gcp/endpoints/consumers_iam_binding.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_member.py +8 -3
- pulumi_gcp/endpoints/consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +5 -0
- pulumi_gcp/endpoints/get_service_iam_policy.py +5 -0
- pulumi_gcp/endpoints/outputs.py +5 -0
- pulumi_gcp/endpoints/service.py +9 -4
- pulumi_gcp/endpoints/service_iam_binding.py +24 -19
- pulumi_gcp/endpoints/service_iam_member.py +24 -19
- pulumi_gcp/endpoints/service_iam_policy.py +21 -16
- pulumi_gcp/essentialcontacts/_inputs.py +313 -0
- pulumi_gcp/essentialcontacts/contact.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py +5 -0
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +40 -35
- pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py +5 -0
- pulumi_gcp/essentialcontacts/outputs.py +5 -0
- pulumi_gcp/eventarc/_inputs.py +145 -0
- pulumi_gcp/eventarc/channel.py +5 -0
- pulumi_gcp/eventarc/google_channel_config.py +5 -0
- pulumi_gcp/eventarc/outputs.py +5 -0
- pulumi_gcp/eventarc/trigger.py +78 -73
- pulumi_gcp/filestore/_inputs.py +108 -0
- pulumi_gcp/filestore/backup.py +23 -18
- pulumi_gcp/filestore/get_instance.py +5 -0
- pulumi_gcp/filestore/instance.py +107 -102
- pulumi_gcp/filestore/outputs.py +5 -0
- pulumi_gcp/filestore/snapshot.py +37 -32
- pulumi_gcp/firebase/_inputs.py +511 -0
- pulumi_gcp/firebase/android_app.py +21 -16
- pulumi_gcp/firebase/app_check_app_attest_config.py +5 -0
- pulumi_gcp/firebase/app_check_debug_token.py +5 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +5 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +5 -0
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +5 -0
- pulumi_gcp/firebase/app_check_service_config.py +5 -0
- pulumi_gcp/firebase/apple_app.py +15 -10
- pulumi_gcp/firebase/database_instance.py +5 -0
- pulumi_gcp/firebase/extensions_instance.py +30 -25
- pulumi_gcp/firebase/get_android_app.py +5 -0
- pulumi_gcp/firebase/get_android_app_config.py +5 -0
- pulumi_gcp/firebase/get_apple_app.py +5 -0
- pulumi_gcp/firebase/get_apple_app_config.py +5 -0
- pulumi_gcp/firebase/get_hosting_channel.py +5 -0
- pulumi_gcp/firebase/get_web_app.py +5 -0
- pulumi_gcp/firebase/get_web_app_config.py +5 -0
- pulumi_gcp/firebase/hosting_channel.py +5 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +39 -34
- pulumi_gcp/firebase/hosting_release.py +33 -28
- pulumi_gcp/firebase/hosting_site.py +5 -0
- pulumi_gcp/firebase/hosting_version.py +76 -71
- pulumi_gcp/firebase/outputs.py +5 -0
- pulumi_gcp/firebase/project.py +5 -0
- pulumi_gcp/firebase/storage_bucket.py +5 -0
- pulumi_gcp/firebase/web_app.py +15 -10
- pulumi_gcp/firebaserules/_inputs.py +51 -0
- pulumi_gcp/firebaserules/outputs.py +5 -0
- pulumi_gcp/firebaserules/release.py +5 -0
- pulumi_gcp/firebaserules/ruleset.py +40 -35
- pulumi_gcp/firestore/_inputs.py +154 -0
- pulumi_gcp/firestore/backup_schedule.py +23 -18
- pulumi_gcp/firestore/database.py +22 -17
- pulumi_gcp/firestore/document.py +5 -0
- pulumi_gcp/firestore/field.py +63 -58
- pulumi_gcp/firestore/index.py +72 -67
- pulumi_gcp/firestore/outputs.py +5 -0
- pulumi_gcp/folder/_inputs.py +165 -0
- pulumi_gcp/folder/access_approval_settings.py +28 -23
- pulumi_gcp/folder/get_iam_policy.py +5 -0
- pulumi_gcp/folder/get_organization_policy.py +5 -0
- pulumi_gcp/folder/iam_audit_config.py +130 -125
- pulumi_gcp/folder/iam_binding.py +8 -3
- pulumi_gcp/folder/iam_member.py +130 -125
- pulumi_gcp/folder/iam_policy.py +125 -120
- pulumi_gcp/folder/organization_policy.py +54 -49
- pulumi_gcp/folder/outputs.py +5 -0
- pulumi_gcp/gkebackup/_inputs.py +694 -0
- pulumi_gcp/gkebackup/backup_plan.py +436 -431
- pulumi_gcp/gkebackup/backup_plan_iam_binding.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_member.py +24 -19
- pulumi_gcp/gkebackup/backup_plan_iam_policy.py +21 -16
- pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py +5 -0
- pulumi_gcp/gkebackup/outputs.py +5 -0
- pulumi_gcp/gkebackup/restore_plan.py +580 -575
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +578 -573
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +575 -570
- pulumi_gcp/gkehub/_inputs.py +1204 -6
- pulumi_gcp/gkehub/feature.py +319 -314
- pulumi_gcp/gkehub/feature_iam_binding.py +24 -19
- pulumi_gcp/gkehub/feature_iam_member.py +24 -19
- pulumi_gcp/gkehub/feature_iam_policy.py +21 -16
- pulumi_gcp/gkehub/feature_membership.py +184 -179
- pulumi_gcp/gkehub/fleet.py +24 -19
- pulumi_gcp/gkehub/get_feature_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_membership_iam_policy.py +5 -0
- pulumi_gcp/gkehub/get_scope_iam_policy.py +5 -0
- pulumi_gcp/gkehub/membership.py +57 -52
- pulumi_gcp/gkehub/membership_binding.py +17 -12
- pulumi_gcp/gkehub/membership_iam_binding.py +24 -19
- pulumi_gcp/gkehub/membership_iam_member.py +24 -19
- pulumi_gcp/gkehub/membership_iam_policy.py +21 -16
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +28 -23
- pulumi_gcp/gkehub/namespace.py +7 -2
- pulumi_gcp/gkehub/outputs.py +5 -0
- pulumi_gcp/gkehub/scope.py +7 -2
- pulumi_gcp/gkehub/scope_iam_binding.py +24 -19
- pulumi_gcp/gkehub/scope_iam_member.py +24 -19
- pulumi_gcp/gkehub/scope_iam_policy.py +21 -16
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +18 -13
- pulumi_gcp/gkeonprem/_inputs.py +2318 -18
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +335 -330
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +528 -523
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +262 -257
- pulumi_gcp/gkeonprem/outputs.py +5 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +399 -394
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +89 -84
- pulumi_gcp/healthcare/_inputs.py +316 -0
- pulumi_gcp/healthcare/consent_store.py +5 -0
- pulumi_gcp/healthcare/consent_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/consent_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dataset.py +5 -0
- pulumi_gcp/healthcare/dataset_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_member.py +24 -19
- pulumi_gcp/healthcare/dataset_iam_policy.py +21 -16
- pulumi_gcp/healthcare/dicom_store.py +39 -34
- pulumi_gcp/healthcare/dicom_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/dicom_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/fhir_store.py +62 -57
- pulumi_gcp/healthcare/fhir_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/fhir_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/get_consent_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dataset_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_dicom_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_fhir_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/get_hl7_v2_store_iam_policy.py +5 -0
- pulumi_gcp/healthcare/hl7_store.py +46 -41
- pulumi_gcp/healthcare/hl7_store_iam_binding.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_member.py +24 -19
- pulumi_gcp/healthcare/hl7_store_iam_policy.py +21 -16
- pulumi_gcp/healthcare/outputs.py +5 -0
- pulumi_gcp/iam/_inputs.py +433 -0
- pulumi_gcp/iam/access_boundary_policy.py +54 -49
- pulumi_gcp/iam/deny_policy.py +56 -51
- pulumi_gcp/iam/get_rule.py +5 -0
- pulumi_gcp/iam/get_testable_permissions.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool.py +5 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +5 -0
- pulumi_gcp/iam/outputs.py +5 -0
- pulumi_gcp/iam/workforce_pool.py +22 -17
- pulumi_gcp/iam/workforce_pool_provider.py +184 -179
- pulumi_gcp/iam/workload_identity_pool.py +5 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +68 -63
- pulumi_gcp/iap/_inputs.py +411 -0
- pulumi_gcp/iap/app_engine_service_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_service_iam_policy.py +97 -92
- pulumi_gcp/iap/app_engine_version_iam_binding.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_member.py +102 -97
- pulumi_gcp/iap/app_engine_version_iam_policy.py +97 -92
- pulumi_gcp/iap/brand.py +5 -0
- pulumi_gcp/iap/client.py +5 -0
- pulumi_gcp/iap/get_app_engine_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_app_engine_version_iam_policy.py +5 -0
- pulumi_gcp/iap/get_client.py +5 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_iam_policy.py +5 -0
- pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +5 -0
- pulumi_gcp/iap/get_web_type_compute_iam_policy.py +5 -0
- pulumi_gcp/iap/outputs.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group.py +5 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_iam_policy.py +97 -92
- pulumi_gcp/iap/tunnel_instance_iam_binding.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_member.py +102 -97
- pulumi_gcp/iap/tunnel_instance_iam_policy.py +97 -92
- pulumi_gcp/iap/web_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_iam_binding.py +102 -97
- pulumi_gcp/iap/web_iam_member.py +102 -97
- pulumi_gcp/iap/web_iam_policy.py +97 -92
- pulumi_gcp/iap/web_region_backend_service_iam_binding.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_member.py +102 -97
- pulumi_gcp/iap/web_region_backend_service_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_app_enging_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_app_enging_iam_policy.py +97 -92
- pulumi_gcp/iap/web_type_compute_iam_binding.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_member.py +102 -97
- pulumi_gcp/iap/web_type_compute_iam_policy.py +97 -92
- pulumi_gcp/identityplatform/_inputs.py +576 -0
- pulumi_gcp/identityplatform/config.py +119 -114
- pulumi_gcp/identityplatform/default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/oauth_idp_config.py +5 -0
- pulumi_gcp/identityplatform/outputs.py +5 -0
- pulumi_gcp/identityplatform/project_default_config.py +38 -33
- pulumi_gcp/identityplatform/tenant.py +5 -0
- pulumi_gcp/identityplatform/tenant_default_supported_idp_config.py +5 -0
- pulumi_gcp/identityplatform/tenant_inbound_saml_config.py +39 -34
- pulumi_gcp/identityplatform/tenant_oauth_idp_config.py +5 -0
- pulumi_gcp/integrationconnectors/_inputs.py +868 -0
- pulumi_gcp/integrationconnectors/connection.py +465 -460
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +5 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +15 -10
- pulumi_gcp/integrationconnectors/outputs.py +5 -0
- pulumi_gcp/kms/_inputs.py +303 -0
- pulumi_gcp/kms/autokey_config.py +5 -0
- pulumi_gcp/kms/crypto_key.py +18 -13
- pulumi_gcp/kms/crypto_key_iam_binding.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_member.py +56 -51
- pulumi_gcp/kms/crypto_key_iam_policy.py +51 -46
- pulumi_gcp/kms/crypto_key_version.py +12 -7
- pulumi_gcp/kms/ekm_connection.py +24 -19
- pulumi_gcp/kms/get_crypto_key_iam_policy.py +5 -0
- pulumi_gcp/kms/get_key_ring_iam_policy.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +5 -0
- pulumi_gcp/kms/get_kms_crypto_key_version.py +5 -0
- pulumi_gcp/kms/get_kms_key_ring.py +5 -0
- pulumi_gcp/kms/get_kms_secret.py +11 -6
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +17 -12
- pulumi_gcp/kms/get_kms_secret_ciphertext.py +23 -18
- pulumi_gcp/kms/key_handle.py +5 -0
- pulumi_gcp/kms/key_ring.py +5 -0
- pulumi_gcp/kms/key_ring_iam_binding.py +102 -97
- pulumi_gcp/kms/key_ring_iam_member.py +102 -97
- pulumi_gcp/kms/key_ring_iam_policy.py +97 -92
- pulumi_gcp/kms/key_ring_import_job.py +9 -4
- pulumi_gcp/kms/outputs.py +5 -0
- pulumi_gcp/kms/secret_ciphertext.py +23 -18
- pulumi_gcp/logging/_inputs.py +520 -0
- pulumi_gcp/logging/billing_account_bucket_config.py +15 -10
- pulumi_gcp/logging/billing_account_exclusion.py +5 -0
- pulumi_gcp/logging/billing_account_sink.py +15 -10
- pulumi_gcp/logging/folder_bucket_config.py +15 -10
- pulumi_gcp/logging/folder_exclusion.py +5 -0
- pulumi_gcp/logging/folder_settings.py +5 -0
- pulumi_gcp/logging/folder_sink.py +15 -10
- pulumi_gcp/logging/get_folder_settings.py +5 -0
- pulumi_gcp/logging/get_log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/get_organization_settings.py +5 -0
- pulumi_gcp/logging/get_project_cmek_settings.py +5 -0
- pulumi_gcp/logging/get_project_settings.py +5 -0
- pulumi_gcp/logging/get_sink.py +5 -0
- pulumi_gcp/logging/linked_dataset.py +10 -5
- pulumi_gcp/logging/log_view.py +5 -0
- pulumi_gcp/logging/log_view_iam_binding.py +10 -5
- pulumi_gcp/logging/log_view_iam_member.py +10 -5
- pulumi_gcp/logging/log_view_iam_policy.py +5 -0
- pulumi_gcp/logging/metric.py +97 -92
- pulumi_gcp/logging/organization_bucket_config.py +15 -10
- pulumi_gcp/logging/organization_exclusion.py +5 -0
- pulumi_gcp/logging/organization_settings.py +5 -0
- pulumi_gcp/logging/organization_sink.py +15 -10
- pulumi_gcp/logging/outputs.py +5 -0
- pulumi_gcp/logging/project_bucket_config.py +21 -16
- pulumi_gcp/logging/project_exclusion.py +5 -0
- pulumi_gcp/logging/project_sink.py +15 -10
- pulumi_gcp/looker/_inputs.py +211 -0
- pulumi_gcp/looker/instance.py +204 -199
- pulumi_gcp/looker/outputs.py +5 -0
- pulumi_gcp/managedkafka/_inputs.py +69 -0
- pulumi_gcp/managedkafka/cluster.py +72 -67
- pulumi_gcp/managedkafka/outputs.py +5 -0
- pulumi_gcp/managedkafka/topic.py +27 -22
- pulumi_gcp/memcache/_inputs.py +184 -0
- pulumi_gcp/memcache/instance.py +56 -51
- pulumi_gcp/memcache/outputs.py +5 -0
- pulumi_gcp/migrationcenter/_inputs.py +182 -0
- pulumi_gcp/migrationcenter/group.py +5 -0
- pulumi_gcp/migrationcenter/outputs.py +5 -0
- pulumi_gcp/migrationcenter/preference_set.py +82 -77
- pulumi_gcp/ml/_inputs.py +17 -0
- pulumi_gcp/ml/engine_model.py +10 -5
- pulumi_gcp/ml/outputs.py +5 -0
- pulumi_gcp/monitoring/_inputs.py +1651 -12
- pulumi_gcp/monitoring/alert_policy.py +128 -123
- pulumi_gcp/monitoring/custom_service.py +16 -11
- pulumi_gcp/monitoring/dashboard.py +5 -0
- pulumi_gcp/monitoring/generic_service.py +20 -15
- pulumi_gcp/monitoring/get_app_engine_service.py +21 -16
- pulumi_gcp/monitoring/get_cluster_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_istio_canonical_service.py +5 -0
- pulumi_gcp/monitoring/get_mesh_istio_service.py +5 -0
- pulumi_gcp/monitoring/get_notification_channel.py +29 -24
- pulumi_gcp/monitoring/get_secret_version.py +5 -0
- pulumi_gcp/monitoring/get_uptime_check_i_ps.py +5 -0
- pulumi_gcp/monitoring/group.py +5 -0
- pulumi_gcp/monitoring/metric_descriptor.py +49 -44
- pulumi_gcp/monitoring/monitored_project.py +5 -0
- pulumi_gcp/monitoring/notification_channel.py +16 -11
- pulumi_gcp/monitoring/outputs.py +5 -0
- pulumi_gcp/monitoring/slo.py +120 -115
- pulumi_gcp/monitoring/uptime_check_config.py +241 -236
- pulumi_gcp/netapp/_inputs.py +311 -0
- pulumi_gcp/netapp/active_directory.py +5 -0
- pulumi_gcp/netapp/backup.py +11 -6
- pulumi_gcp/netapp/backup_policy.py +5 -0
- pulumi_gcp/netapp/backup_vault.py +5 -0
- pulumi_gcp/netapp/kmsconfig.py +5 -0
- pulumi_gcp/netapp/outputs.py +5 -0
- pulumi_gcp/netapp/storage_pool.py +5 -0
- pulumi_gcp/netapp/volume.py +27 -22
- pulumi_gcp/netapp/volume_replication.py +24 -19
- pulumi_gcp/netapp/volume_snapshot.py +5 -0
- pulumi_gcp/networkconnectivity/_inputs.py +253 -0
- pulumi_gcp/networkconnectivity/hub.py +7 -2
- pulumi_gcp/networkconnectivity/internal_range.py +5 -0
- pulumi_gcp/networkconnectivity/outputs.py +5 -0
- pulumi_gcp/networkconnectivity/policy_based_route.py +46 -41
- pulumi_gcp/networkconnectivity/regional_endpoint.py +5 -0
- pulumi_gcp/networkconnectivity/service_connection_policy.py +20 -15
- pulumi_gcp/networkconnectivity/spoke.py +71 -66
- pulumi_gcp/networkmanagement/_inputs.py +87 -0
- pulumi_gcp/networkmanagement/connectivity_test.py +85 -80
- pulumi_gcp/networkmanagement/outputs.py +5 -0
- pulumi_gcp/networksecurity/_inputs.py +321 -0
- pulumi_gcp/networksecurity/address_group.py +5 -0
- pulumi_gcp/networksecurity/address_group_iam_binding.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_member.py +8 -3
- pulumi_gcp/networksecurity/address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/authorization_policy.py +52 -47
- pulumi_gcp/networksecurity/client_tls_policy.py +45 -40
- pulumi_gcp/networksecurity/firewall_endpoint.py +5 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +5 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +91 -86
- pulumi_gcp/networksecurity/gateway_security_policy_rule.py +5 -0
- pulumi_gcp/networksecurity/get_address_group_iam_policy.py +5 -0
- pulumi_gcp/networksecurity/outputs.py +5 -0
- pulumi_gcp/networksecurity/security_profile.py +40 -35
- pulumi_gcp/networksecurity/security_profile_group.py +5 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +101 -96
- pulumi_gcp/networksecurity/tls_inspection_policy.py +193 -188
- pulumi_gcp/networksecurity/url_list.py +5 -0
- pulumi_gcp/networkservices/_inputs.py +1781 -29
- pulumi_gcp/networkservices/edge_cache_keyset.py +51 -46
- pulumi_gcp/networkservices/edge_cache_origin.py +89 -84
- pulumi_gcp/networkservices/edge_cache_service.py +567 -562
- pulumi_gcp/networkservices/endpoint_policy.py +55 -50
- pulumi_gcp/networkservices/gateway.py +21 -16
- pulumi_gcp/networkservices/grpc_route.py +146 -141
- pulumi_gcp/networkservices/http_route.py +294 -289
- pulumi_gcp/networkservices/lb_route_extension.py +10 -5
- pulumi_gcp/networkservices/lb_traffic_extension.py +10 -5
- pulumi_gcp/networkservices/mesh.py +5 -0
- pulumi_gcp/networkservices/outputs.py +5 -0
- pulumi_gcp/networkservices/service_binding.py +5 -0
- pulumi_gcp/networkservices/service_lb_policies.py +27 -22
- pulumi_gcp/networkservices/tcp_route.py +106 -101
- pulumi_gcp/networkservices/tls_route.py +82 -77
- pulumi_gcp/notebooks/_inputs.py +615 -0
- pulumi_gcp/notebooks/environment.py +21 -16
- pulumi_gcp/notebooks/get_instance_iam_policy.py +5 -0
- pulumi_gcp/notebooks/get_runtime_iam_policy.py +5 -0
- pulumi_gcp/notebooks/instance.py +78 -73
- pulumi_gcp/notebooks/instance_iam_binding.py +24 -19
- pulumi_gcp/notebooks/instance_iam_member.py +24 -19
- pulumi_gcp/notebooks/instance_iam_policy.py +21 -16
- pulumi_gcp/notebooks/location.py +5 -0
- pulumi_gcp/notebooks/outputs.py +5 -0
- pulumi_gcp/notebooks/runtime.py +222 -217
- pulumi_gcp/notebooks/runtime_iam_binding.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_member.py +24 -19
- pulumi_gcp/notebooks/runtime_iam_policy.py +21 -16
- pulumi_gcp/organizations/_inputs.py +231 -0
- pulumi_gcp/organizations/access_approval_settings.py +36 -31
- pulumi_gcp/organizations/folder.py +5 -0
- pulumi_gcp/organizations/get_active_folder.py +5 -0
- pulumi_gcp/organizations/get_billing_account.py +5 -0
- pulumi_gcp/organizations/get_client_config.py +5 -0
- pulumi_gcp/organizations/get_client_open_id_user_info.py +5 -0
- pulumi_gcp/organizations/get_folder.py +5 -0
- pulumi_gcp/organizations/get_folders.py +5 -0
- pulumi_gcp/organizations/get_iam_policy.py +13 -8
- pulumi_gcp/organizations/get_organization.py +5 -0
- pulumi_gcp/organizations/get_project.py +5 -0
- pulumi_gcp/organizations/iam_audit_config.py +18 -13
- pulumi_gcp/organizations/iam_binding.py +8 -3
- pulumi_gcp/organizations/iam_custom_role.py +5 -0
- pulumi_gcp/organizations/iam_member.py +130 -125
- pulumi_gcp/organizations/iam_policy.py +125 -120
- pulumi_gcp/organizations/outputs.py +5 -0
- pulumi_gcp/organizations/policy.py +54 -49
- pulumi_gcp/organizations/project.py +5 -0
- pulumi_gcp/orgpolicy/_inputs.py +183 -0
- pulumi_gcp/orgpolicy/custom_constraint.py +15 -10
- pulumi_gcp/orgpolicy/outputs.py +5 -0
- pulumi_gcp/orgpolicy/policy.py +103 -98
- pulumi_gcp/osconfig/_inputs.py +2235 -30
- pulumi_gcp/osconfig/guest_policies.py +171 -166
- pulumi_gcp/osconfig/os_policy_assignment.py +158 -153
- pulumi_gcp/osconfig/outputs.py +5 -0
- pulumi_gcp/osconfig/patch_deployment.py +326 -321
- pulumi_gcp/oslogin/ssh_public_key.py +5 -0
- pulumi_gcp/parallelstore/instance.py +5 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +170 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +94 -89
- pulumi_gcp/privilegedaccessmanager/outputs.py +5 -0
- pulumi_gcp/projects/_inputs.py +262 -0
- pulumi_gcp/projects/access_approval_settings.py +30 -25
- pulumi_gcp/projects/api_key.py +88 -83
- pulumi_gcp/projects/default_service_accounts.py +5 -0
- pulumi_gcp/projects/get_iam_policy.py +5 -0
- pulumi_gcp/projects/get_organization_policy.py +5 -0
- pulumi_gcp/projects/get_project.py +5 -0
- pulumi_gcp/projects/get_project_service.py +5 -0
- pulumi_gcp/projects/iam_audit_config.py +130 -125
- pulumi_gcp/projects/iam_binding.py +130 -125
- pulumi_gcp/projects/iam_custom_role.py +5 -0
- pulumi_gcp/projects/iam_member.py +130 -125
- pulumi_gcp/projects/iam_member_remove.py +5 -0
- pulumi_gcp/projects/iam_policy.py +125 -120
- pulumi_gcp/projects/organization_policy.py +54 -49
- pulumi_gcp/projects/outputs.py +5 -0
- pulumi_gcp/projects/service.py +5 -0
- pulumi_gcp/projects/service_identity.py +5 -0
- pulumi_gcp/projects/usage_export_bucket.py +5 -0
- pulumi_gcp/provider.py +7 -2
- pulumi_gcp/pubsub/_inputs.py +438 -0
- pulumi_gcp/pubsub/get_schema_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_subscription.py +5 -0
- pulumi_gcp/pubsub/get_subscription_iam_policy.py +5 -0
- pulumi_gcp/pubsub/get_topic.py +5 -0
- pulumi_gcp/pubsub/get_topic_iam_policy.py +5 -0
- pulumi_gcp/pubsub/lite_reservation.py +5 -0
- pulumi_gcp/pubsub/lite_subscription.py +36 -31
- pulumi_gcp/pubsub/lite_topic.py +46 -41
- pulumi_gcp/pubsub/outputs.py +5 -0
- pulumi_gcp/pubsub/schema.py +13 -8
- pulumi_gcp/pubsub/schema_iam_binding.py +24 -19
- pulumi_gcp/pubsub/schema_iam_member.py +24 -19
- pulumi_gcp/pubsub/schema_iam_policy.py +21 -16
- pulumi_gcp/pubsub/subscription.py +141 -136
- pulumi_gcp/pubsub/subscription_iam_binding.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_member.py +24 -19
- pulumi_gcp/pubsub/subscription_iam_policy.py +21 -16
- pulumi_gcp/pubsub/topic.py +50 -45
- pulumi_gcp/pubsub/topic_iam_binding.py +24 -19
- pulumi_gcp/pubsub/topic_iam_member.py +24 -19
- pulumi_gcp/pubsub/topic_iam_policy.py +21 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/_inputs.py +89 -0
- pulumi_gcp/recaptcha/enterprise_key.py +132 -127
- pulumi_gcp/recaptcha/outputs.py +5 -0
- pulumi_gcp/redis/_inputs.py +321 -0
- pulumi_gcp/redis/cluster.py +59 -54
- pulumi_gcp/redis/get_instance.py +5 -0
- pulumi_gcp/redis/instance.py +51 -46
- pulumi_gcp/redis/outputs.py +5 -0
- pulumi_gcp/resourcemanager/lien.py +5 -0
- pulumi_gcp/runtimeconfig/_inputs.py +25 -0
- pulumi_gcp/runtimeconfig/config.py +5 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_member.py +8 -3
- pulumi_gcp/runtimeconfig/config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_config.py +5 -0
- pulumi_gcp/runtimeconfig/get_config_iam_policy.py +5 -0
- pulumi_gcp/runtimeconfig/get_variable.py +5 -0
- pulumi_gcp/runtimeconfig/outputs.py +5 -0
- pulumi_gcp/runtimeconfig/variable.py +5 -0
- pulumi_gcp/secretmanager/_inputs.py +143 -0
- pulumi_gcp/secretmanager/get_secret.py +5 -0
- pulumi_gcp/secretmanager/get_secret_iam_policy.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version.py +5 -0
- pulumi_gcp/secretmanager/get_secret_version_access.py +5 -0
- pulumi_gcp/secretmanager/get_secrets.py +5 -0
- pulumi_gcp/secretmanager/outputs.py +5 -0
- pulumi_gcp/secretmanager/secret.py +68 -63
- pulumi_gcp/secretmanager/secret_iam_binding.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_member.py +102 -97
- pulumi_gcp/secretmanager/secret_iam_policy.py +97 -92
- pulumi_gcp/secretmanager/secret_version.py +53 -48
- pulumi_gcp/securesourcemanager/_inputs.py +75 -0
- pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/instance.py +78 -73
- pulumi_gcp/securesourcemanager/instance_iam_binding.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_member.py +8 -3
- pulumi_gcp/securesourcemanager/instance_iam_policy.py +5 -0
- pulumi_gcp/securesourcemanager/outputs.py +5 -0
- pulumi_gcp/securitycenter/_inputs.py +860 -7
- pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/folder_custom_module.py +82 -77
- pulumi_gcp/securitycenter/get_source_iam_policy.py +5 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_member.py +38 -33
- pulumi_gcp/securitycenter/instance_iam_policy.py +35 -30
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +5 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +82 -77
- pulumi_gcp/securitycenter/mute_config.py +5 -0
- pulumi_gcp/securitycenter/notification_config.py +16 -11
- pulumi_gcp/securitycenter/organization_custom_module.py +82 -77
- pulumi_gcp/securitycenter/outputs.py +5 -0
- pulumi_gcp/securitycenter/project_custom_module.py +82 -77
- pulumi_gcp/securitycenter/source.py +5 -0
- pulumi_gcp/securitycenter/source_iam_binding.py +8 -3
- pulumi_gcp/securitycenter/source_iam_member.py +8 -3
- pulumi_gcp/securitycenter/source_iam_policy.py +5 -0
- pulumi_gcp/securityposture/_inputs.py +457 -0
- pulumi_gcp/securityposture/outputs.py +5 -0
- pulumi_gcp/securityposture/posture.py +186 -181
- pulumi_gcp/securityposture/posture_deployment.py +35 -30
- pulumi_gcp/serviceaccount/_inputs.py +51 -0
- pulumi_gcp/serviceaccount/account.py +5 -0
- pulumi_gcp/serviceaccount/get_account.py +5 -0
- pulumi_gcp/serviceaccount/get_account_access_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_id_token.py +5 -0
- pulumi_gcp/serviceaccount/get_account_jwt.py +5 -0
- pulumi_gcp/serviceaccount/get_account_key.py +5 -0
- pulumi_gcp/serviceaccount/get_iam_policy.py +5 -0
- pulumi_gcp/serviceaccount/iam_binding.py +66 -61
- pulumi_gcp/serviceaccount/iam_member.py +66 -61
- pulumi_gcp/serviceaccount/iam_policy.py +61 -56
- pulumi_gcp/serviceaccount/key.py +5 -0
- pulumi_gcp/serviceaccount/outputs.py +5 -0
- pulumi_gcp/servicedirectory/_inputs.py +43 -0
- pulumi_gcp/servicedirectory/endpoint.py +5 -0
- pulumi_gcp/servicedirectory/get_namespace_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/get_service_iam_policy.py +5 -0
- pulumi_gcp/servicedirectory/namespace.py +5 -0
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +21 -16
- pulumi_gcp/servicedirectory/outputs.py +5 -0
- pulumi_gcp/servicedirectory/service.py +5 -0
- pulumi_gcp/servicedirectory/service_iam_binding.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_member.py +24 -19
- pulumi_gcp/servicedirectory/service_iam_policy.py +21 -16
- pulumi_gcp/servicenetworking/connection.py +5 -0
- pulumi_gcp/servicenetworking/get_peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/peered_dns_domain.py +5 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +5 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +5 -0
- pulumi_gcp/sourcerepo/_inputs.py +49 -0
- pulumi_gcp/sourcerepo/get_repository.py +5 -0
- pulumi_gcp/sourcerepo/get_repository_iam_policy.py +5 -0
- pulumi_gcp/sourcerepo/outputs.py +5 -0
- pulumi_gcp/sourcerepo/repository.py +20 -15
- pulumi_gcp/sourcerepo/repository_iam_binding.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_member.py +24 -19
- pulumi_gcp/sourcerepo/repository_iam_policy.py +21 -16
- pulumi_gcp/spanner/_inputs.py +157 -0
- pulumi_gcp/spanner/database.py +10 -5
- pulumi_gcp/spanner/database_iam_binding.py +102 -97
- pulumi_gcp/spanner/database_iam_member.py +102 -97
- pulumi_gcp/spanner/database_iam_policy.py +97 -92
- pulumi_gcp/spanner/get_database_iam_policy.py +5 -0
- pulumi_gcp/spanner/get_instance.py +5 -0
- pulumi_gcp/spanner/get_instance_iam_policy.py +5 -0
- pulumi_gcp/spanner/instance.py +30 -25
- pulumi_gcp/spanner/instance_config.py +10 -5
- pulumi_gcp/spanner/instance_iam_binding.py +24 -19
- pulumi_gcp/spanner/instance_iam_member.py +24 -19
- pulumi_gcp/spanner/instance_iam_policy.py +21 -16
- pulumi_gcp/spanner/outputs.py +5 -0
- pulumi_gcp/sql/_inputs.py +616 -0
- pulumi_gcp/sql/database.py +17 -12
- pulumi_gcp/sql/database_instance.py +93 -88
- pulumi_gcp/sql/get_backup_run.py +5 -0
- pulumi_gcp/sql/get_ca_certs.py +5 -0
- pulumi_gcp/sql/get_database.py +5 -0
- pulumi_gcp/sql/get_database_instance.py +5 -0
- pulumi_gcp/sql/get_database_instance_latest_recovery_time.py +5 -0
- pulumi_gcp/sql/get_database_instances.py +5 -0
- pulumi_gcp/sql/get_databases.py +5 -0
- pulumi_gcp/sql/get_tiers.py +5 -0
- pulumi_gcp/sql/outputs.py +5 -0
- pulumi_gcp/sql/source_representation_instance.py +5 -0
- pulumi_gcp/sql/ssl_cert.py +11 -6
- pulumi_gcp/sql/user.py +43 -38
- pulumi_gcp/storage/_inputs.py +828 -0
- pulumi_gcp/storage/bucket.py +125 -120
- pulumi_gcp/storage/bucket_access_control.py +5 -0
- pulumi_gcp/storage/bucket_acl.py +5 -0
- pulumi_gcp/storage/bucket_iam_binding.py +102 -97
- pulumi_gcp/storage/bucket_iam_member.py +102 -97
- pulumi_gcp/storage/bucket_iam_policy.py +97 -92
- pulumi_gcp/storage/bucket_object.py +15 -10
- pulumi_gcp/storage/default_object_access_control.py +7 -2
- pulumi_gcp/storage/default_object_acl.py +5 -0
- pulumi_gcp/storage/get_bucket.py +5 -0
- pulumi_gcp/storage/get_bucket_iam_policy.py +5 -0
- pulumi_gcp/storage/get_bucket_object.py +5 -0
- pulumi_gcp/storage/get_bucket_object_content.py +5 -0
- pulumi_gcp/storage/get_bucket_objects.py +5 -0
- pulumi_gcp/storage/get_buckets.py +5 -0
- pulumi_gcp/storage/get_object_signed_url.py +5 -0
- pulumi_gcp/storage/get_project_service_account.py +11 -6
- pulumi_gcp/storage/get_transfer_project_service_account.py +5 -0
- pulumi_gcp/storage/get_transfer_project_servie_account.py +5 -0
- pulumi_gcp/storage/hmac_key.py +5 -0
- pulumi_gcp/storage/insights_report_config.py +76 -71
- pulumi_gcp/storage/notification.py +5 -0
- pulumi_gcp/storage/object_access_control.py +7 -2
- pulumi_gcp/storage/object_acl.py +5 -0
- pulumi_gcp/storage/outputs.py +5 -0
- pulumi_gcp/storage/transfer_agent_pool.py +16 -11
- pulumi_gcp/storage/transfer_job.py +113 -108
- pulumi_gcp/tags/_inputs.py +43 -0
- pulumi_gcp/tags/get_tag_key.py +5 -0
- pulumi_gcp/tags/get_tag_key_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_keys.py +5 -0
- pulumi_gcp/tags/get_tag_value.py +5 -0
- pulumi_gcp/tags/get_tag_value_iam_policy.py +5 -0
- pulumi_gcp/tags/get_tag_values.py +5 -0
- pulumi_gcp/tags/location_tag_binding.py +5 -0
- pulumi_gcp/tags/outputs.py +5 -0
- pulumi_gcp/tags/tag_binding.py +5 -0
- pulumi_gcp/tags/tag_key.py +5 -0
- pulumi_gcp/tags/tag_key_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_key_iam_member.py +24 -19
- pulumi_gcp/tags/tag_key_iam_policy.py +21 -16
- pulumi_gcp/tags/tag_value.py +5 -0
- pulumi_gcp/tags/tag_value_iam_binding.py +24 -19
- pulumi_gcp/tags/tag_value_iam_member.py +24 -19
- pulumi_gcp/tags/tag_value_iam_policy.py +21 -16
- pulumi_gcp/tpu/_inputs.py +194 -0
- pulumi_gcp/tpu/get_tensorflow_versions.py +5 -0
- pulumi_gcp/tpu/get_v2_accelerator_types.py +5 -0
- pulumi_gcp/tpu/get_v2_runtime_versions.py +5 -0
- pulumi_gcp/tpu/node.py +18 -13
- pulumi_gcp/tpu/outputs.py +5 -0
- pulumi_gcp/tpu/v2_vm.py +87 -82
- pulumi_gcp/vertex/_inputs.py +841 -0
- pulumi_gcp/vertex/ai_dataset.py +10 -5
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +36 -31
- pulumi_gcp/vertex/ai_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_endpoint_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_group.py +22 -17
- pulumi_gcp/vertex/ai_feature_group_feature.py +17 -12
- pulumi_gcp/vertex/ai_feature_online_store.py +73 -68
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +151 -146
- pulumi_gcp/vertex/ai_feature_store.py +57 -52
- pulumi_gcp/vertex/ai_feature_store_entity_type.py +92 -87
- pulumi_gcp/vertex/ai_feature_store_entity_type_feature.py +41 -36
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +8 -3
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +5 -0
- pulumi_gcp/vertex/ai_index.py +68 -63
- pulumi_gcp/vertex/ai_index_endpoint.py +18 -13
- pulumi_gcp/vertex/ai_metadata_store.py +12 -7
- pulumi_gcp/vertex/ai_tensorboard.py +16 -11
- pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py +5 -0
- pulumi_gcp/vertex/get_ai_index.py +5 -0
- pulumi_gcp/vertex/outputs.py +5 -0
- pulumi_gcp/vmwareengine/_inputs.py +290 -0
- pulumi_gcp/vmwareengine/cluster.py +74 -69
- pulumi_gcp/vmwareengine/external_access_rule.py +61 -56
- pulumi_gcp/vmwareengine/external_address.py +27 -22
- pulumi_gcp/vmwareengine/get_cluster.py +5 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +5 -0
- pulumi_gcp/vmwareengine/get_external_address.py +5 -0
- pulumi_gcp/vmwareengine/get_network.py +5 -0
- pulumi_gcp/vmwareengine/get_network_peering.py +5 -0
- pulumi_gcp/vmwareengine/get_network_policy.py +5 -0
- pulumi_gcp/vmwareengine/get_nsx_credentials.py +5 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +5 -0
- pulumi_gcp/vmwareengine/get_subnet.py +5 -0
- pulumi_gcp/vmwareengine/get_vcenter_credentials.py +5 -0
- pulumi_gcp/vmwareengine/network.py +7 -2
- pulumi_gcp/vmwareengine/network_peering.py +5 -0
- pulumi_gcp/vmwareengine/network_policy.py +27 -22
- pulumi_gcp/vmwareengine/outputs.py +5 -0
- pulumi_gcp/vmwareengine/private_cloud.py +67 -62
- pulumi_gcp/vmwareengine/subnet.py +29 -24
- pulumi_gcp/vpcaccess/_inputs.py +22 -0
- pulumi_gcp/vpcaccess/connector.py +16 -11
- pulumi_gcp/vpcaccess/get_connector.py +5 -0
- pulumi_gcp/vpcaccess/outputs.py +5 -0
- pulumi_gcp/workbench/_inputs.py +319 -0
- pulumi_gcp/workbench/get_instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/instance.py +144 -139
- pulumi_gcp/workbench/instance_iam_binding.py +8 -3
- pulumi_gcp/workbench/instance_iam_member.py +8 -3
- pulumi_gcp/workbench/instance_iam_policy.py +5 -0
- pulumi_gcp/workbench/outputs.py +5 -0
- pulumi_gcp/workflows/workflow.py +5 -0
- pulumi_gcp/workstations/_inputs.py +433 -0
- pulumi_gcp/workstations/get_workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/get_workstation_iam_policy.py +5 -0
- pulumi_gcp/workstations/outputs.py +5 -0
- pulumi_gcp/workstations/workstation.py +19 -14
- pulumi_gcp/workstations/workstation_cluster.py +35 -30
- pulumi_gcp/workstations/workstation_config.py +251 -246
- pulumi_gcp/workstations/workstation_config_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_config_iam_policy.py +5 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +8 -3
- pulumi_gcp/workstations/workstation_iam_member.py +8 -3
- pulumi_gcp/workstations/workstation_iam_policy.py +5 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/METADATA +2 -1
- pulumi_gcp-7.30.0a1719555549.dist-info/RECORD +1600 -0
- pulumi_gcp-7.30.0a1719470057.dist-info/RECORD +0 -1600
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1719470057.dist-info → pulumi_gcp-7.30.0a1719555549.dist-info}/top_level.txt +0 -0
pulumi_gcp/diagflow/_inputs.py
CHANGED
@@ -4,147 +4,308 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'CxAgentAdvancedSettingsArgs',
|
19
|
+
'CxAgentAdvancedSettingsArgsDict',
|
14
20
|
'CxAgentAdvancedSettingsAudioExportGcsDestinationArgs',
|
21
|
+
'CxAgentAdvancedSettingsAudioExportGcsDestinationArgsDict',
|
15
22
|
'CxAgentAdvancedSettingsDtmfSettingsArgs',
|
23
|
+
'CxAgentAdvancedSettingsDtmfSettingsArgsDict',
|
16
24
|
'CxAgentGitIntegrationSettingsArgs',
|
25
|
+
'CxAgentGitIntegrationSettingsArgsDict',
|
17
26
|
'CxAgentGitIntegrationSettingsGithubSettingsArgs',
|
27
|
+
'CxAgentGitIntegrationSettingsGithubSettingsArgsDict',
|
18
28
|
'CxAgentSpeechToTextSettingsArgs',
|
29
|
+
'CxAgentSpeechToTextSettingsArgsDict',
|
19
30
|
'CxAgentTextToSpeechSettingsArgs',
|
31
|
+
'CxAgentTextToSpeechSettingsArgsDict',
|
20
32
|
'CxEntityTypeEntityArgs',
|
33
|
+
'CxEntityTypeEntityArgsDict',
|
21
34
|
'CxEntityTypeExcludedPhraseArgs',
|
35
|
+
'CxEntityTypeExcludedPhraseArgsDict',
|
22
36
|
'CxEnvironmentVersionConfigArgs',
|
37
|
+
'CxEnvironmentVersionConfigArgsDict',
|
23
38
|
'CxFlowAdvancedSettingsArgs',
|
39
|
+
'CxFlowAdvancedSettingsArgsDict',
|
24
40
|
'CxFlowAdvancedSettingsAudioExportGcsDestinationArgs',
|
41
|
+
'CxFlowAdvancedSettingsAudioExportGcsDestinationArgsDict',
|
25
42
|
'CxFlowAdvancedSettingsDtmfSettingsArgs',
|
43
|
+
'CxFlowAdvancedSettingsDtmfSettingsArgsDict',
|
26
44
|
'CxFlowEventHandlerArgs',
|
45
|
+
'CxFlowEventHandlerArgsDict',
|
27
46
|
'CxFlowEventHandlerTriggerFulfillmentArgs',
|
47
|
+
'CxFlowEventHandlerTriggerFulfillmentArgsDict',
|
28
48
|
'CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgs',
|
49
|
+
'CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgsDict',
|
29
50
|
'CxFlowEventHandlerTriggerFulfillmentMessageArgs',
|
51
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageArgsDict',
|
30
52
|
'CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgs',
|
53
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict',
|
31
54
|
'CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs',
|
55
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict',
|
32
56
|
'CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs',
|
57
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict',
|
33
58
|
'CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgs',
|
59
|
+
'CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict',
|
34
60
|
'CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs',
|
61
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict',
|
35
62
|
'CxFlowEventHandlerTriggerFulfillmentMessageTextArgs',
|
63
|
+
'CxFlowEventHandlerTriggerFulfillmentMessageTextArgsDict',
|
36
64
|
'CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgs',
|
65
|
+
'CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgsDict',
|
37
66
|
'CxFlowNluSettingsArgs',
|
67
|
+
'CxFlowNluSettingsArgsDict',
|
38
68
|
'CxFlowTransitionRouteArgs',
|
69
|
+
'CxFlowTransitionRouteArgsDict',
|
39
70
|
'CxFlowTransitionRouteTriggerFulfillmentArgs',
|
71
|
+
'CxFlowTransitionRouteTriggerFulfillmentArgsDict',
|
40
72
|
'CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgs',
|
73
|
+
'CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgsDict',
|
41
74
|
'CxFlowTransitionRouteTriggerFulfillmentMessageArgs',
|
75
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageArgsDict',
|
42
76
|
'CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs',
|
77
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict',
|
43
78
|
'CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs',
|
79
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict',
|
44
80
|
'CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs',
|
81
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict',
|
45
82
|
'CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgs',
|
83
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict',
|
46
84
|
'CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs',
|
85
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict',
|
47
86
|
'CxFlowTransitionRouteTriggerFulfillmentMessageTextArgs',
|
87
|
+
'CxFlowTransitionRouteTriggerFulfillmentMessageTextArgsDict',
|
48
88
|
'CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs',
|
89
|
+
'CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgsDict',
|
49
90
|
'CxIntentParameterArgs',
|
91
|
+
'CxIntentParameterArgsDict',
|
50
92
|
'CxIntentTrainingPhraseArgs',
|
93
|
+
'CxIntentTrainingPhraseArgsDict',
|
51
94
|
'CxIntentTrainingPhrasePartArgs',
|
95
|
+
'CxIntentTrainingPhrasePartArgsDict',
|
52
96
|
'CxPageAdvancedSettingsArgs',
|
97
|
+
'CxPageAdvancedSettingsArgsDict',
|
53
98
|
'CxPageAdvancedSettingsDtmfSettingsArgs',
|
99
|
+
'CxPageAdvancedSettingsDtmfSettingsArgsDict',
|
54
100
|
'CxPageEntryFulfillmentArgs',
|
101
|
+
'CxPageEntryFulfillmentArgsDict',
|
55
102
|
'CxPageEntryFulfillmentConditionalCaseArgs',
|
103
|
+
'CxPageEntryFulfillmentConditionalCaseArgsDict',
|
56
104
|
'CxPageEntryFulfillmentMessageArgs',
|
105
|
+
'CxPageEntryFulfillmentMessageArgsDict',
|
57
106
|
'CxPageEntryFulfillmentMessageConversationSuccessArgs',
|
107
|
+
'CxPageEntryFulfillmentMessageConversationSuccessArgsDict',
|
58
108
|
'CxPageEntryFulfillmentMessageLiveAgentHandoffArgs',
|
109
|
+
'CxPageEntryFulfillmentMessageLiveAgentHandoffArgsDict',
|
59
110
|
'CxPageEntryFulfillmentMessageOutputAudioTextArgs',
|
111
|
+
'CxPageEntryFulfillmentMessageOutputAudioTextArgsDict',
|
60
112
|
'CxPageEntryFulfillmentMessagePlayAudioArgs',
|
113
|
+
'CxPageEntryFulfillmentMessagePlayAudioArgsDict',
|
61
114
|
'CxPageEntryFulfillmentMessageTelephonyTransferCallArgs',
|
115
|
+
'CxPageEntryFulfillmentMessageTelephonyTransferCallArgsDict',
|
62
116
|
'CxPageEntryFulfillmentMessageTextArgs',
|
117
|
+
'CxPageEntryFulfillmentMessageTextArgsDict',
|
63
118
|
'CxPageEntryFulfillmentSetParameterActionArgs',
|
119
|
+
'CxPageEntryFulfillmentSetParameterActionArgsDict',
|
64
120
|
'CxPageEventHandlerArgs',
|
121
|
+
'CxPageEventHandlerArgsDict',
|
65
122
|
'CxPageEventHandlerTriggerFulfillmentArgs',
|
123
|
+
'CxPageEventHandlerTriggerFulfillmentArgsDict',
|
66
124
|
'CxPageEventHandlerTriggerFulfillmentConditionalCaseArgs',
|
125
|
+
'CxPageEventHandlerTriggerFulfillmentConditionalCaseArgsDict',
|
67
126
|
'CxPageEventHandlerTriggerFulfillmentMessageArgs',
|
127
|
+
'CxPageEventHandlerTriggerFulfillmentMessageArgsDict',
|
68
128
|
'CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgs',
|
129
|
+
'CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict',
|
69
130
|
'CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs',
|
131
|
+
'CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict',
|
70
132
|
'CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs',
|
133
|
+
'CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict',
|
71
134
|
'CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgs',
|
135
|
+
'CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict',
|
72
136
|
'CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs',
|
137
|
+
'CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict',
|
73
138
|
'CxPageEventHandlerTriggerFulfillmentMessageTextArgs',
|
139
|
+
'CxPageEventHandlerTriggerFulfillmentMessageTextArgsDict',
|
74
140
|
'CxPageEventHandlerTriggerFulfillmentSetParameterActionArgs',
|
141
|
+
'CxPageEventHandlerTriggerFulfillmentSetParameterActionArgsDict',
|
75
142
|
'CxPageFormArgs',
|
143
|
+
'CxPageFormArgsDict',
|
76
144
|
'CxPageFormParameterArgs',
|
145
|
+
'CxPageFormParameterArgsDict',
|
77
146
|
'CxPageFormParameterAdvancedSettingsArgs',
|
147
|
+
'CxPageFormParameterAdvancedSettingsArgsDict',
|
78
148
|
'CxPageFormParameterAdvancedSettingsDtmfSettingsArgs',
|
149
|
+
'CxPageFormParameterAdvancedSettingsDtmfSettingsArgsDict',
|
79
150
|
'CxPageFormParameterFillBehaviorArgs',
|
151
|
+
'CxPageFormParameterFillBehaviorArgsDict',
|
80
152
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgs',
|
153
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgsDict',
|
81
154
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgs',
|
155
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgsDict',
|
82
156
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgs',
|
157
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgsDict',
|
83
158
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgs',
|
159
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgsDict',
|
84
160
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgs',
|
161
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgsDict',
|
85
162
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgs',
|
163
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgsDict',
|
86
164
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgs',
|
165
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgsDict',
|
87
166
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgs',
|
167
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgsDict',
|
88
168
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgs',
|
169
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgsDict',
|
89
170
|
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgs',
|
171
|
+
'CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgsDict',
|
90
172
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerArgs',
|
173
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerArgsDict',
|
91
174
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgs',
|
175
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgsDict',
|
92
176
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgs',
|
177
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgsDict',
|
93
178
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgs',
|
179
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgsDict',
|
94
180
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgs',
|
181
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict',
|
95
182
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs',
|
183
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict',
|
96
184
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs',
|
185
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict',
|
97
186
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgs',
|
187
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict',
|
98
188
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs',
|
189
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict',
|
99
190
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgs',
|
191
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgsDict',
|
100
192
|
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgs',
|
193
|
+
'CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgsDict',
|
101
194
|
'CxPageTransitionRouteArgs',
|
195
|
+
'CxPageTransitionRouteArgsDict',
|
102
196
|
'CxPageTransitionRouteTriggerFulfillmentArgs',
|
197
|
+
'CxPageTransitionRouteTriggerFulfillmentArgsDict',
|
103
198
|
'CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgs',
|
199
|
+
'CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgsDict',
|
104
200
|
'CxPageTransitionRouteTriggerFulfillmentMessageArgs',
|
201
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageArgsDict',
|
105
202
|
'CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs',
|
203
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict',
|
106
204
|
'CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs',
|
205
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict',
|
107
206
|
'CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs',
|
207
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict',
|
108
208
|
'CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgs',
|
209
|
+
'CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict',
|
109
210
|
'CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs',
|
211
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict',
|
110
212
|
'CxPageTransitionRouteTriggerFulfillmentMessageTextArgs',
|
213
|
+
'CxPageTransitionRouteTriggerFulfillmentMessageTextArgsDict',
|
111
214
|
'CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgs',
|
215
|
+
'CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgsDict',
|
112
216
|
'CxSecuritySettingsAudioExportSettingsArgs',
|
217
|
+
'CxSecuritySettingsAudioExportSettingsArgsDict',
|
113
218
|
'CxSecuritySettingsInsightsExportSettingsArgs',
|
219
|
+
'CxSecuritySettingsInsightsExportSettingsArgsDict',
|
114
220
|
'CxTestCaseLastTestResultArgs',
|
221
|
+
'CxTestCaseLastTestResultArgsDict',
|
115
222
|
'CxTestCaseLastTestResultConversationTurnArgs',
|
223
|
+
'CxTestCaseLastTestResultConversationTurnArgsDict',
|
116
224
|
'CxTestCaseLastTestResultConversationTurnUserInputArgs',
|
225
|
+
'CxTestCaseLastTestResultConversationTurnUserInputArgsDict',
|
117
226
|
'CxTestCaseLastTestResultConversationTurnUserInputInputArgs',
|
227
|
+
'CxTestCaseLastTestResultConversationTurnUserInputInputArgsDict',
|
118
228
|
'CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgs',
|
229
|
+
'CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgsDict',
|
119
230
|
'CxTestCaseLastTestResultConversationTurnUserInputInputEventArgs',
|
231
|
+
'CxTestCaseLastTestResultConversationTurnUserInputInputEventArgsDict',
|
120
232
|
'CxTestCaseLastTestResultConversationTurnUserInputInputTextArgs',
|
233
|
+
'CxTestCaseLastTestResultConversationTurnUserInputInputTextArgsDict',
|
121
234
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgs',
|
235
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgsDict',
|
122
236
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgs',
|
237
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgsDict',
|
123
238
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgs',
|
239
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgsDict',
|
124
240
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgs',
|
241
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgsDict',
|
125
242
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgs',
|
243
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgsDict',
|
126
244
|
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgs',
|
245
|
+
'CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgsDict',
|
127
246
|
'CxTestCaseTestCaseConversationTurnArgs',
|
247
|
+
'CxTestCaseTestCaseConversationTurnArgsDict',
|
128
248
|
'CxTestCaseTestCaseConversationTurnUserInputArgs',
|
249
|
+
'CxTestCaseTestCaseConversationTurnUserInputArgsDict',
|
129
250
|
'CxTestCaseTestCaseConversationTurnUserInputInputArgs',
|
251
|
+
'CxTestCaseTestCaseConversationTurnUserInputInputArgsDict',
|
130
252
|
'CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs',
|
253
|
+
'CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgsDict',
|
131
254
|
'CxTestCaseTestCaseConversationTurnUserInputInputEventArgs',
|
255
|
+
'CxTestCaseTestCaseConversationTurnUserInputInputEventArgsDict',
|
132
256
|
'CxTestCaseTestCaseConversationTurnUserInputInputTextArgs',
|
257
|
+
'CxTestCaseTestCaseConversationTurnUserInputInputTextArgsDict',
|
133
258
|
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgs',
|
259
|
+
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgsDict',
|
134
260
|
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgs',
|
261
|
+
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgsDict',
|
135
262
|
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgs',
|
263
|
+
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgsDict',
|
136
264
|
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgs',
|
265
|
+
'CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgsDict',
|
137
266
|
'CxTestCaseTestConfigArgs',
|
267
|
+
'CxTestCaseTestConfigArgsDict',
|
138
268
|
'CxVersionNluSettingArgs',
|
269
|
+
'CxVersionNluSettingArgsDict',
|
139
270
|
'CxWebhookGenericWebServiceArgs',
|
271
|
+
'CxWebhookGenericWebServiceArgsDict',
|
140
272
|
'CxWebhookServiceDirectoryArgs',
|
273
|
+
'CxWebhookServiceDirectoryArgsDict',
|
141
274
|
'CxWebhookServiceDirectoryGenericWebServiceArgs',
|
275
|
+
'CxWebhookServiceDirectoryGenericWebServiceArgsDict',
|
142
276
|
'EntityTypeEntityArgs',
|
277
|
+
'EntityTypeEntityArgsDict',
|
143
278
|
'FulfillmentFeatureArgs',
|
279
|
+
'FulfillmentFeatureArgsDict',
|
144
280
|
'FulfillmentGenericWebServiceArgs',
|
281
|
+
'FulfillmentGenericWebServiceArgsDict',
|
145
282
|
'IntentFollowupIntentInfoArgs',
|
283
|
+
'IntentFollowupIntentInfoArgsDict',
|
146
284
|
]
|
147
285
|
|
286
|
+
MYPY = False
|
287
|
+
|
288
|
+
if not MYPY:
|
289
|
+
class CxAgentAdvancedSettingsArgsDict(TypedDict):
|
290
|
+
audio_export_gcs_destination: NotRequired[pulumi.Input['CxAgentAdvancedSettingsAudioExportGcsDestinationArgsDict']]
|
291
|
+
"""
|
292
|
+
If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels:
|
293
|
+
* Agent level
|
294
|
+
* Flow level
|
295
|
+
Structure is documented below.
|
296
|
+
"""
|
297
|
+
dtmf_settings: NotRequired[pulumi.Input['CxAgentAdvancedSettingsDtmfSettingsArgsDict']]
|
298
|
+
"""
|
299
|
+
Define behaviors for DTMF (dual tone multi frequency). DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Exposed at the following levels:
|
300
|
+
* Agent level
|
301
|
+
* Flow level
|
302
|
+
* Page level
|
303
|
+
* Parameter level
|
304
|
+
Structure is documented below.
|
305
|
+
"""
|
306
|
+
elif False:
|
307
|
+
CxAgentAdvancedSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
308
|
+
|
148
309
|
@pulumi.input_type
|
149
310
|
class CxAgentAdvancedSettingsArgs:
|
150
311
|
def __init__(__self__, *,
|
@@ -200,6 +361,16 @@ class CxAgentAdvancedSettingsArgs:
|
|
200
361
|
pulumi.set(self, "dtmf_settings", value)
|
201
362
|
|
202
363
|
|
364
|
+
if not MYPY:
|
365
|
+
class CxAgentAdvancedSettingsAudioExportGcsDestinationArgsDict(TypedDict):
|
366
|
+
uri: NotRequired[pulumi.Input[str]]
|
367
|
+
"""
|
368
|
+
The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
|
369
|
+
Format: gs://bucket/object-name-or-prefix
|
370
|
+
"""
|
371
|
+
elif False:
|
372
|
+
CxAgentAdvancedSettingsAudioExportGcsDestinationArgsDict: TypeAlias = Mapping[str, Any]
|
373
|
+
|
203
374
|
@pulumi.input_type
|
204
375
|
class CxAgentAdvancedSettingsAudioExportGcsDestinationArgs:
|
205
376
|
def __init__(__self__, *,
|
@@ -225,6 +396,23 @@ class CxAgentAdvancedSettingsAudioExportGcsDestinationArgs:
|
|
225
396
|
pulumi.set(self, "uri", value)
|
226
397
|
|
227
398
|
|
399
|
+
if not MYPY:
|
400
|
+
class CxAgentAdvancedSettingsDtmfSettingsArgsDict(TypedDict):
|
401
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
402
|
+
"""
|
403
|
+
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).
|
404
|
+
"""
|
405
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
406
|
+
"""
|
407
|
+
The digit that terminates a DTMF digit sequence.
|
408
|
+
"""
|
409
|
+
max_digits: NotRequired[pulumi.Input[int]]
|
410
|
+
"""
|
411
|
+
Max length of DTMF digits.
|
412
|
+
"""
|
413
|
+
elif False:
|
414
|
+
CxAgentAdvancedSettingsDtmfSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
415
|
+
|
228
416
|
@pulumi.input_type
|
229
417
|
class CxAgentAdvancedSettingsDtmfSettingsArgs:
|
230
418
|
def __init__(__self__, *,
|
@@ -280,6 +468,16 @@ class CxAgentAdvancedSettingsDtmfSettingsArgs:
|
|
280
468
|
pulumi.set(self, "max_digits", value)
|
281
469
|
|
282
470
|
|
471
|
+
if not MYPY:
|
472
|
+
class CxAgentGitIntegrationSettingsArgsDict(TypedDict):
|
473
|
+
github_settings: NotRequired[pulumi.Input['CxAgentGitIntegrationSettingsGithubSettingsArgsDict']]
|
474
|
+
"""
|
475
|
+
Settings of integration with GitHub.
|
476
|
+
Structure is documented below.
|
477
|
+
"""
|
478
|
+
elif False:
|
479
|
+
CxAgentGitIntegrationSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
480
|
+
|
283
481
|
@pulumi.input_type
|
284
482
|
class CxAgentGitIntegrationSettingsArgs:
|
285
483
|
def __init__(__self__, *,
|
@@ -305,6 +503,32 @@ class CxAgentGitIntegrationSettingsArgs:
|
|
305
503
|
pulumi.set(self, "github_settings", value)
|
306
504
|
|
307
505
|
|
506
|
+
if not MYPY:
|
507
|
+
class CxAgentGitIntegrationSettingsGithubSettingsArgsDict(TypedDict):
|
508
|
+
access_token: NotRequired[pulumi.Input[str]]
|
509
|
+
"""
|
510
|
+
The access token used to authenticate the access to the GitHub repository.
|
511
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
512
|
+
"""
|
513
|
+
branches: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
514
|
+
"""
|
515
|
+
A list of branches configured to be used from Dialogflow.
|
516
|
+
"""
|
517
|
+
display_name: NotRequired[pulumi.Input[str]]
|
518
|
+
"""
|
519
|
+
The unique repository display name for the GitHub repository.
|
520
|
+
"""
|
521
|
+
repository_uri: NotRequired[pulumi.Input[str]]
|
522
|
+
"""
|
523
|
+
The GitHub repository URI related to the agent.
|
524
|
+
"""
|
525
|
+
tracking_branch: NotRequired[pulumi.Input[str]]
|
526
|
+
"""
|
527
|
+
The branch of the GitHub repository tracked for this agent.
|
528
|
+
"""
|
529
|
+
elif False:
|
530
|
+
CxAgentGitIntegrationSettingsGithubSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
531
|
+
|
308
532
|
@pulumi.input_type
|
309
533
|
class CxAgentGitIntegrationSettingsGithubSettingsArgs:
|
310
534
|
def __init__(__self__, *,
|
@@ -394,6 +618,15 @@ class CxAgentGitIntegrationSettingsGithubSettingsArgs:
|
|
394
618
|
pulumi.set(self, "tracking_branch", value)
|
395
619
|
|
396
620
|
|
621
|
+
if not MYPY:
|
622
|
+
class CxAgentSpeechToTextSettingsArgsDict(TypedDict):
|
623
|
+
enable_speech_adaptation: NotRequired[pulumi.Input[bool]]
|
624
|
+
"""
|
625
|
+
Whether to use speech adaptation for speech recognition.
|
626
|
+
"""
|
627
|
+
elif False:
|
628
|
+
CxAgentSpeechToTextSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
629
|
+
|
397
630
|
@pulumi.input_type
|
398
631
|
class CxAgentSpeechToTextSettingsArgs:
|
399
632
|
def __init__(__self__, *,
|
@@ -417,6 +650,18 @@ class CxAgentSpeechToTextSettingsArgs:
|
|
417
650
|
pulumi.set(self, "enable_speech_adaptation", value)
|
418
651
|
|
419
652
|
|
653
|
+
if not MYPY:
|
654
|
+
class CxAgentTextToSpeechSettingsArgsDict(TypedDict):
|
655
|
+
synthesize_speech_configs: NotRequired[pulumi.Input[str]]
|
656
|
+
"""
|
657
|
+
Configuration of how speech should be synthesized, mapping from [language](https://cloud.google.com/dialogflow/cx/docs/reference/language) to [SynthesizeSpeechConfig](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents#synthesizespeechconfig).
|
658
|
+
These settings affect:
|
659
|
+
* The phone gateway synthesize configuration set via Agent.text_to_speech_settings.
|
660
|
+
* How speech is synthesized when invoking session APIs. `Agent.text_to_speech_settings` only applies if `OutputAudioConfig.synthesize_speech_config` is not specified.
|
661
|
+
"""
|
662
|
+
elif False:
|
663
|
+
CxAgentTextToSpeechSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
664
|
+
|
420
665
|
@pulumi.input_type
|
421
666
|
class CxAgentTextToSpeechSettingsArgs:
|
422
667
|
def __init__(__self__, *,
|
@@ -446,6 +691,24 @@ class CxAgentTextToSpeechSettingsArgs:
|
|
446
691
|
pulumi.set(self, "synthesize_speech_configs", value)
|
447
692
|
|
448
693
|
|
694
|
+
if not MYPY:
|
695
|
+
class CxEntityTypeEntityArgsDict(TypedDict):
|
696
|
+
synonyms: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
697
|
+
"""
|
698
|
+
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions.
|
699
|
+
For KIND_LIST entity types: This collection must contain exactly one synonym equal to value.
|
700
|
+
|
701
|
+
- - -
|
702
|
+
"""
|
703
|
+
value: NotRequired[pulumi.Input[str]]
|
704
|
+
"""
|
705
|
+
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions.
|
706
|
+
For KIND_MAP entity types: A canonical value to be used in place of synonyms.
|
707
|
+
For KIND_LIST entity types: A string that can contain references to other entity types (with or without aliases).
|
708
|
+
"""
|
709
|
+
elif False:
|
710
|
+
CxEntityTypeEntityArgsDict: TypeAlias = Mapping[str, Any]
|
711
|
+
|
449
712
|
@pulumi.input_type
|
450
713
|
class CxEntityTypeEntityArgs:
|
451
714
|
def __init__(__self__, *,
|
@@ -495,6 +758,15 @@ class CxEntityTypeEntityArgs:
|
|
495
758
|
pulumi.set(self, "value", value)
|
496
759
|
|
497
760
|
|
761
|
+
if not MYPY:
|
762
|
+
class CxEntityTypeExcludedPhraseArgsDict(TypedDict):
|
763
|
+
value: NotRequired[pulumi.Input[str]]
|
764
|
+
"""
|
765
|
+
The word or phrase to be excluded.
|
766
|
+
"""
|
767
|
+
elif False:
|
768
|
+
CxEntityTypeExcludedPhraseArgsDict: TypeAlias = Mapping[str, Any]
|
769
|
+
|
498
770
|
@pulumi.input_type
|
499
771
|
class CxEntityTypeExcludedPhraseArgs:
|
500
772
|
def __init__(__self__, *,
|
@@ -518,6 +790,17 @@ class CxEntityTypeExcludedPhraseArgs:
|
|
518
790
|
pulumi.set(self, "value", value)
|
519
791
|
|
520
792
|
|
793
|
+
if not MYPY:
|
794
|
+
class CxEnvironmentVersionConfigArgsDict(TypedDict):
|
795
|
+
version: pulumi.Input[str]
|
796
|
+
"""
|
797
|
+
Format: projects/{{project}}/locations/{{location}}/agents/{{agent}}/flows/{{flow}}/versions/{{version}}.
|
798
|
+
|
799
|
+
- - -
|
800
|
+
"""
|
801
|
+
elif False:
|
802
|
+
CxEnvironmentVersionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
803
|
+
|
521
804
|
@pulumi.input_type
|
522
805
|
class CxEnvironmentVersionConfigArgs:
|
523
806
|
def __init__(__self__, *,
|
@@ -544,6 +827,27 @@ class CxEnvironmentVersionConfigArgs:
|
|
544
827
|
pulumi.set(self, "version", value)
|
545
828
|
|
546
829
|
|
830
|
+
if not MYPY:
|
831
|
+
class CxFlowAdvancedSettingsArgsDict(TypedDict):
|
832
|
+
audio_export_gcs_destination: NotRequired[pulumi.Input['CxFlowAdvancedSettingsAudioExportGcsDestinationArgsDict']]
|
833
|
+
"""
|
834
|
+
If present, incoming audio is exported by Dialogflow to the configured Google Cloud Storage destination. Exposed at the following levels:
|
835
|
+
* Agent level
|
836
|
+
* Flow level
|
837
|
+
Structure is documented below.
|
838
|
+
"""
|
839
|
+
dtmf_settings: NotRequired[pulumi.Input['CxFlowAdvancedSettingsDtmfSettingsArgsDict']]
|
840
|
+
"""
|
841
|
+
Define behaviors for DTMF (dual tone multi frequency). DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Exposed at the following levels:
|
842
|
+
* Agent level
|
843
|
+
* Flow level
|
844
|
+
* Page level
|
845
|
+
* Parameter level
|
846
|
+
Structure is documented below.
|
847
|
+
"""
|
848
|
+
elif False:
|
849
|
+
CxFlowAdvancedSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
850
|
+
|
547
851
|
@pulumi.input_type
|
548
852
|
class CxFlowAdvancedSettingsArgs:
|
549
853
|
def __init__(__self__, *,
|
@@ -599,6 +903,16 @@ class CxFlowAdvancedSettingsArgs:
|
|
599
903
|
pulumi.set(self, "dtmf_settings", value)
|
600
904
|
|
601
905
|
|
906
|
+
if not MYPY:
|
907
|
+
class CxFlowAdvancedSettingsAudioExportGcsDestinationArgsDict(TypedDict):
|
908
|
+
uri: NotRequired[pulumi.Input[str]]
|
909
|
+
"""
|
910
|
+
The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
|
911
|
+
Format: gs://bucket/object-name-or-prefix
|
912
|
+
"""
|
913
|
+
elif False:
|
914
|
+
CxFlowAdvancedSettingsAudioExportGcsDestinationArgsDict: TypeAlias = Mapping[str, Any]
|
915
|
+
|
602
916
|
@pulumi.input_type
|
603
917
|
class CxFlowAdvancedSettingsAudioExportGcsDestinationArgs:
|
604
918
|
def __init__(__self__, *,
|
@@ -624,6 +938,23 @@ class CxFlowAdvancedSettingsAudioExportGcsDestinationArgs:
|
|
624
938
|
pulumi.set(self, "uri", value)
|
625
939
|
|
626
940
|
|
941
|
+
if not MYPY:
|
942
|
+
class CxFlowAdvancedSettingsDtmfSettingsArgsDict(TypedDict):
|
943
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
944
|
+
"""
|
945
|
+
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).
|
946
|
+
"""
|
947
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
948
|
+
"""
|
949
|
+
The digit that terminates a DTMF digit sequence.
|
950
|
+
"""
|
951
|
+
max_digits: NotRequired[pulumi.Input[int]]
|
952
|
+
"""
|
953
|
+
Max length of DTMF digits.
|
954
|
+
"""
|
955
|
+
elif False:
|
956
|
+
CxFlowAdvancedSettingsDtmfSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
957
|
+
|
627
958
|
@pulumi.input_type
|
628
959
|
class CxFlowAdvancedSettingsDtmfSettingsArgs:
|
629
960
|
def __init__(__self__, *,
|
@@ -679,6 +1010,35 @@ class CxFlowAdvancedSettingsDtmfSettingsArgs:
|
|
679
1010
|
pulumi.set(self, "max_digits", value)
|
680
1011
|
|
681
1012
|
|
1013
|
+
if not MYPY:
|
1014
|
+
class CxFlowEventHandlerArgsDict(TypedDict):
|
1015
|
+
event: NotRequired[pulumi.Input[str]]
|
1016
|
+
"""
|
1017
|
+
The name of the event to handle.
|
1018
|
+
"""
|
1019
|
+
name: NotRequired[pulumi.Input[str]]
|
1020
|
+
"""
|
1021
|
+
(Output)
|
1022
|
+
The unique identifier of this event handler.
|
1023
|
+
"""
|
1024
|
+
target_flow: NotRequired[pulumi.Input[str]]
|
1025
|
+
"""
|
1026
|
+
The target flow to transition to.
|
1027
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
1028
|
+
"""
|
1029
|
+
target_page: NotRequired[pulumi.Input[str]]
|
1030
|
+
"""
|
1031
|
+
The target page to transition to.
|
1032
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
1033
|
+
"""
|
1034
|
+
trigger_fulfillment: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentArgsDict']]
|
1035
|
+
"""
|
1036
|
+
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.
|
1037
|
+
Structure is documented below.
|
1038
|
+
"""
|
1039
|
+
elif False:
|
1040
|
+
CxFlowEventHandlerArgsDict: TypeAlias = Mapping[str, Any]
|
1041
|
+
|
682
1042
|
@pulumi.input_type
|
683
1043
|
class CxFlowEventHandlerArgs:
|
684
1044
|
def __init__(__self__, *,
|
@@ -774,6 +1134,38 @@ class CxFlowEventHandlerArgs:
|
|
774
1134
|
pulumi.set(self, "trigger_fulfillment", value)
|
775
1135
|
|
776
1136
|
|
1137
|
+
if not MYPY:
|
1138
|
+
class CxFlowEventHandlerTriggerFulfillmentArgsDict(TypedDict):
|
1139
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgsDict']]]]
|
1140
|
+
"""
|
1141
|
+
Conditional cases for this fulfillment.
|
1142
|
+
Structure is documented below.
|
1143
|
+
"""
|
1144
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageArgsDict']]]]
|
1145
|
+
"""
|
1146
|
+
The list of rich message responses to present to the user.
|
1147
|
+
Structure is documented below.
|
1148
|
+
"""
|
1149
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
1150
|
+
"""
|
1151
|
+
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.
|
1152
|
+
"""
|
1153
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgsDict']]]]
|
1154
|
+
"""
|
1155
|
+
Set parameter values before executing the webhook.
|
1156
|
+
Structure is documented below.
|
1157
|
+
"""
|
1158
|
+
tag: NotRequired[pulumi.Input[str]]
|
1159
|
+
"""
|
1160
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
1161
|
+
"""
|
1162
|
+
webhook: NotRequired[pulumi.Input[str]]
|
1163
|
+
"""
|
1164
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
1165
|
+
"""
|
1166
|
+
elif False:
|
1167
|
+
CxFlowEventHandlerTriggerFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
1168
|
+
|
777
1169
|
@pulumi.input_type
|
778
1170
|
class CxFlowEventHandlerTriggerFulfillmentArgs:
|
779
1171
|
def __init__(__self__, *,
|
@@ -883,6 +1275,16 @@ class CxFlowEventHandlerTriggerFulfillmentArgs:
|
|
883
1275
|
pulumi.set(self, "webhook", value)
|
884
1276
|
|
885
1277
|
|
1278
|
+
if not MYPY:
|
1279
|
+
class CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgsDict(TypedDict):
|
1280
|
+
cases: NotRequired[pulumi.Input[str]]
|
1281
|
+
"""
|
1282
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
1283
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
1284
|
+
"""
|
1285
|
+
elif False:
|
1286
|
+
CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
1287
|
+
|
886
1288
|
@pulumi.input_type
|
887
1289
|
class CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgs:
|
888
1290
|
def __init__(__self__, *,
|
@@ -908,6 +1310,57 @@ class CxFlowEventHandlerTriggerFulfillmentConditionalCaseArgs:
|
|
908
1310
|
pulumi.set(self, "cases", value)
|
909
1311
|
|
910
1312
|
|
1313
|
+
if not MYPY:
|
1314
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageArgsDict(TypedDict):
|
1315
|
+
channel: NotRequired[pulumi.Input[str]]
|
1316
|
+
"""
|
1317
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
1318
|
+
"""
|
1319
|
+
conversation_success: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict']]
|
1320
|
+
"""
|
1321
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
1322
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
1323
|
+
You may set this, for example:
|
1324
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
1325
|
+
* In a webhook response when you determine that you handled the customer issue.
|
1326
|
+
Structure is documented below.
|
1327
|
+
"""
|
1328
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict']]
|
1329
|
+
"""
|
1330
|
+
Indicates that the conversation should be handed off to a live agent.
|
1331
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
1332
|
+
You may set this, for example:
|
1333
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
1334
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
1335
|
+
Structure is documented below.
|
1336
|
+
"""
|
1337
|
+
output_audio_text: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict']]
|
1338
|
+
"""
|
1339
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
1340
|
+
Structure is documented below.
|
1341
|
+
"""
|
1342
|
+
payload: NotRequired[pulumi.Input[str]]
|
1343
|
+
"""
|
1344
|
+
A custom, platform-specific payload.
|
1345
|
+
"""
|
1346
|
+
play_audio: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict']]
|
1347
|
+
"""
|
1348
|
+
Specifies an audio clip to be played by the client as part of the response.
|
1349
|
+
Structure is documented below.
|
1350
|
+
"""
|
1351
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict']]
|
1352
|
+
"""
|
1353
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
1354
|
+
Structure is documented below.
|
1355
|
+
"""
|
1356
|
+
text: NotRequired[pulumi.Input['CxFlowEventHandlerTriggerFulfillmentMessageTextArgsDict']]
|
1357
|
+
"""
|
1358
|
+
The text response message.
|
1359
|
+
Structure is documented below.
|
1360
|
+
"""
|
1361
|
+
elif False:
|
1362
|
+
CxFlowEventHandlerTriggerFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
1363
|
+
|
911
1364
|
@pulumi.input_type
|
912
1365
|
class CxFlowEventHandlerTriggerFulfillmentMessageArgs:
|
913
1366
|
def __init__(__self__, *,
|
@@ -1071,6 +1524,15 @@ class CxFlowEventHandlerTriggerFulfillmentMessageArgs:
|
|
1071
1524
|
pulumi.set(self, "text", value)
|
1072
1525
|
|
1073
1526
|
|
1527
|
+
if not MYPY:
|
1528
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
1529
|
+
metadata: NotRequired[pulumi.Input[str]]
|
1530
|
+
"""
|
1531
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
1532
|
+
"""
|
1533
|
+
elif False:
|
1534
|
+
CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
1535
|
+
|
1074
1536
|
@pulumi.input_type
|
1075
1537
|
class CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgs:
|
1076
1538
|
def __init__(__self__, *,
|
@@ -1094,6 +1556,15 @@ class CxFlowEventHandlerTriggerFulfillmentMessageConversationSuccessArgs:
|
|
1094
1556
|
pulumi.set(self, "metadata", value)
|
1095
1557
|
|
1096
1558
|
|
1559
|
+
if not MYPY:
|
1560
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
1561
|
+
metadata: NotRequired[pulumi.Input[str]]
|
1562
|
+
"""
|
1563
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
1564
|
+
"""
|
1565
|
+
elif False:
|
1566
|
+
CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
1567
|
+
|
1097
1568
|
@pulumi.input_type
|
1098
1569
|
class CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
1099
1570
|
def __init__(__self__, *,
|
@@ -1117,6 +1588,24 @@ class CxFlowEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
|
1117
1588
|
pulumi.set(self, "metadata", value)
|
1118
1589
|
|
1119
1590
|
|
1591
|
+
if not MYPY:
|
1592
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
1593
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
1594
|
+
"""
|
1595
|
+
(Output)
|
1596
|
+
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.
|
1597
|
+
"""
|
1598
|
+
ssml: NotRequired[pulumi.Input[str]]
|
1599
|
+
"""
|
1600
|
+
The SSML text to be synthesized. For more information, see SSML.
|
1601
|
+
"""
|
1602
|
+
text: NotRequired[pulumi.Input[str]]
|
1603
|
+
"""
|
1604
|
+
The raw text to be synthesized.
|
1605
|
+
"""
|
1606
|
+
elif False:
|
1607
|
+
CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
1608
|
+
|
1120
1609
|
@pulumi.input_type
|
1121
1610
|
class CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs:
|
1122
1611
|
def __init__(__self__, *,
|
@@ -1174,6 +1663,20 @@ class CxFlowEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs:
|
|
1174
1663
|
pulumi.set(self, "text", value)
|
1175
1664
|
|
1176
1665
|
|
1666
|
+
if not MYPY:
|
1667
|
+
class CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
1668
|
+
audio_uri: pulumi.Input[str]
|
1669
|
+
"""
|
1670
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
1671
|
+
"""
|
1672
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
1673
|
+
"""
|
1674
|
+
(Output)
|
1675
|
+
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.
|
1676
|
+
"""
|
1677
|
+
elif False:
|
1678
|
+
CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
1679
|
+
|
1177
1680
|
@pulumi.input_type
|
1178
1681
|
class CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgs:
|
1179
1682
|
def __init__(__self__, *,
|
@@ -1214,6 +1717,15 @@ class CxFlowEventHandlerTriggerFulfillmentMessagePlayAudioArgs:
|
|
1214
1717
|
pulumi.set(self, "allow_playback_interruption", value)
|
1215
1718
|
|
1216
1719
|
|
1720
|
+
if not MYPY:
|
1721
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
1722
|
+
phone_number: pulumi.Input[str]
|
1723
|
+
"""
|
1724
|
+
Transfer the call to a phone number in E.164 format.
|
1725
|
+
"""
|
1726
|
+
elif False:
|
1727
|
+
CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
1728
|
+
|
1217
1729
|
@pulumi.input_type
|
1218
1730
|
class CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
1219
1731
|
def __init__(__self__, *,
|
@@ -1236,6 +1748,20 @@ class CxFlowEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
|
1236
1748
|
pulumi.set(self, "phone_number", value)
|
1237
1749
|
|
1238
1750
|
|
1751
|
+
if not MYPY:
|
1752
|
+
class CxFlowEventHandlerTriggerFulfillmentMessageTextArgsDict(TypedDict):
|
1753
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
1754
|
+
"""
|
1755
|
+
(Output)
|
1756
|
+
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.
|
1757
|
+
"""
|
1758
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1759
|
+
"""
|
1760
|
+
A collection of text responses.
|
1761
|
+
"""
|
1762
|
+
elif False:
|
1763
|
+
CxFlowEventHandlerTriggerFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
1764
|
+
|
1239
1765
|
@pulumi.input_type
|
1240
1766
|
class CxFlowEventHandlerTriggerFulfillmentMessageTextArgs:
|
1241
1767
|
def __init__(__self__, *,
|
@@ -1277,6 +1803,19 @@ class CxFlowEventHandlerTriggerFulfillmentMessageTextArgs:
|
|
1277
1803
|
pulumi.set(self, "texts", value)
|
1278
1804
|
|
1279
1805
|
|
1806
|
+
if not MYPY:
|
1807
|
+
class CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgsDict(TypedDict):
|
1808
|
+
parameter: NotRequired[pulumi.Input[str]]
|
1809
|
+
"""
|
1810
|
+
Display name of the parameter.
|
1811
|
+
"""
|
1812
|
+
value: NotRequired[pulumi.Input[str]]
|
1813
|
+
"""
|
1814
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
1815
|
+
"""
|
1816
|
+
elif False:
|
1817
|
+
CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
1818
|
+
|
1280
1819
|
@pulumi.input_type
|
1281
1820
|
class CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgs:
|
1282
1821
|
def __init__(__self__, *,
|
@@ -1316,15 +1855,39 @@ class CxFlowEventHandlerTriggerFulfillmentSetParameterActionArgs:
|
|
1316
1855
|
pulumi.set(self, "value", value)
|
1317
1856
|
|
1318
1857
|
|
1319
|
-
|
1320
|
-
class
|
1321
|
-
|
1322
|
-
classification_threshold: Optional[pulumi.Input[float]] = None,
|
1323
|
-
model_training_mode: Optional[pulumi.Input[str]] = None,
|
1324
|
-
model_type: Optional[pulumi.Input[str]] = None):
|
1858
|
+
if not MYPY:
|
1859
|
+
class CxFlowNluSettingsArgsDict(TypedDict):
|
1860
|
+
classification_threshold: NotRequired[pulumi.Input[float]]
|
1325
1861
|
"""
|
1326
|
-
|
1327
|
-
|
1862
|
+
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.
|
1863
|
+
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.
|
1864
|
+
"""
|
1865
|
+
model_training_mode: NotRequired[pulumi.Input[str]]
|
1866
|
+
"""
|
1867
|
+
Indicates NLU model training mode.
|
1868
|
+
* 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.
|
1869
|
+
* MODEL_TRAINING_MODE_MANUAL: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.
|
1870
|
+
Possible values are: `MODEL_TRAINING_MODE_AUTOMATIC`, `MODEL_TRAINING_MODE_MANUAL`.
|
1871
|
+
"""
|
1872
|
+
model_type: NotRequired[pulumi.Input[str]]
|
1873
|
+
"""
|
1874
|
+
Indicates the type of NLU model.
|
1875
|
+
* MODEL_TYPE_STANDARD: Use standard NLU model.
|
1876
|
+
* MODEL_TYPE_ADVANCED: Use advanced NLU model.
|
1877
|
+
Possible values are: `MODEL_TYPE_STANDARD`, `MODEL_TYPE_ADVANCED`.
|
1878
|
+
"""
|
1879
|
+
elif False:
|
1880
|
+
CxFlowNluSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1881
|
+
|
1882
|
+
@pulumi.input_type
|
1883
|
+
class CxFlowNluSettingsArgs:
|
1884
|
+
def __init__(__self__, *,
|
1885
|
+
classification_threshold: Optional[pulumi.Input[float]] = None,
|
1886
|
+
model_training_mode: Optional[pulumi.Input[str]] = None,
|
1887
|
+
model_type: Optional[pulumi.Input[str]] = None):
|
1888
|
+
"""
|
1889
|
+
:param pulumi.Input[float] classification_threshold: 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.
|
1890
|
+
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.
|
1328
1891
|
:param pulumi.Input[str] model_training_mode: Indicates NLU model training mode.
|
1329
1892
|
* 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.
|
1330
1893
|
* MODEL_TRAINING_MODE_MANUAL: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.
|
@@ -1385,6 +1948,41 @@ class CxFlowNluSettingsArgs:
|
|
1385
1948
|
pulumi.set(self, "model_type", value)
|
1386
1949
|
|
1387
1950
|
|
1951
|
+
if not MYPY:
|
1952
|
+
class CxFlowTransitionRouteArgsDict(TypedDict):
|
1953
|
+
condition: NotRequired[pulumi.Input[str]]
|
1954
|
+
"""
|
1955
|
+
The condition to evaluate against form parameters or session parameters.
|
1956
|
+
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.
|
1957
|
+
"""
|
1958
|
+
intent: NotRequired[pulumi.Input[str]]
|
1959
|
+
"""
|
1960
|
+
The unique identifier of an Intent.
|
1961
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>. 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.
|
1962
|
+
"""
|
1963
|
+
name: NotRequired[pulumi.Input[str]]
|
1964
|
+
"""
|
1965
|
+
(Output)
|
1966
|
+
The unique identifier of this transition route.
|
1967
|
+
"""
|
1968
|
+
target_flow: NotRequired[pulumi.Input[str]]
|
1969
|
+
"""
|
1970
|
+
The target flow to transition to.
|
1971
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
1972
|
+
"""
|
1973
|
+
target_page: NotRequired[pulumi.Input[str]]
|
1974
|
+
"""
|
1975
|
+
The target page to transition to.
|
1976
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
1977
|
+
"""
|
1978
|
+
trigger_fulfillment: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentArgsDict']]
|
1979
|
+
"""
|
1980
|
+
The fulfillment to call when the condition is satisfied. At least one of triggerFulfillment and target must be specified. When both are defined, triggerFulfillment is executed first.
|
1981
|
+
Structure is documented below.
|
1982
|
+
"""
|
1983
|
+
elif False:
|
1984
|
+
CxFlowTransitionRouteArgsDict: TypeAlias = Mapping[str, Any]
|
1985
|
+
|
1388
1986
|
@pulumi.input_type
|
1389
1987
|
class CxFlowTransitionRouteArgs:
|
1390
1988
|
def __init__(__self__, *,
|
@@ -1500,6 +2098,38 @@ class CxFlowTransitionRouteArgs:
|
|
1500
2098
|
pulumi.set(self, "trigger_fulfillment", value)
|
1501
2099
|
|
1502
2100
|
|
2101
|
+
if not MYPY:
|
2102
|
+
class CxFlowTransitionRouteTriggerFulfillmentArgsDict(TypedDict):
|
2103
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgsDict']]]]
|
2104
|
+
"""
|
2105
|
+
Conditional cases for this fulfillment.
|
2106
|
+
Structure is documented below.
|
2107
|
+
"""
|
2108
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageArgsDict']]]]
|
2109
|
+
"""
|
2110
|
+
The list of rich message responses to present to the user.
|
2111
|
+
Structure is documented below.
|
2112
|
+
"""
|
2113
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
2114
|
+
"""
|
2115
|
+
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.
|
2116
|
+
"""
|
2117
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgsDict']]]]
|
2118
|
+
"""
|
2119
|
+
Set parameter values before executing the webhook.
|
2120
|
+
Structure is documented below.
|
2121
|
+
"""
|
2122
|
+
tag: NotRequired[pulumi.Input[str]]
|
2123
|
+
"""
|
2124
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
2125
|
+
"""
|
2126
|
+
webhook: NotRequired[pulumi.Input[str]]
|
2127
|
+
"""
|
2128
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
2129
|
+
"""
|
2130
|
+
elif False:
|
2131
|
+
CxFlowTransitionRouteTriggerFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
2132
|
+
|
1503
2133
|
@pulumi.input_type
|
1504
2134
|
class CxFlowTransitionRouteTriggerFulfillmentArgs:
|
1505
2135
|
def __init__(__self__, *,
|
@@ -1609,6 +2239,16 @@ class CxFlowTransitionRouteTriggerFulfillmentArgs:
|
|
1609
2239
|
pulumi.set(self, "webhook", value)
|
1610
2240
|
|
1611
2241
|
|
2242
|
+
if not MYPY:
|
2243
|
+
class CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgsDict(TypedDict):
|
2244
|
+
cases: NotRequired[pulumi.Input[str]]
|
2245
|
+
"""
|
2246
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
2247
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
2248
|
+
"""
|
2249
|
+
elif False:
|
2250
|
+
CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
2251
|
+
|
1612
2252
|
@pulumi.input_type
|
1613
2253
|
class CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgs:
|
1614
2254
|
def __init__(__self__, *,
|
@@ -1634,6 +2274,57 @@ class CxFlowTransitionRouteTriggerFulfillmentConditionalCaseArgs:
|
|
1634
2274
|
pulumi.set(self, "cases", value)
|
1635
2275
|
|
1636
2276
|
|
2277
|
+
if not MYPY:
|
2278
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageArgsDict(TypedDict):
|
2279
|
+
channel: NotRequired[pulumi.Input[str]]
|
2280
|
+
"""
|
2281
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
2282
|
+
"""
|
2283
|
+
conversation_success: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict']]
|
2284
|
+
"""
|
2285
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
2286
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
2287
|
+
You may set this, for example:
|
2288
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
2289
|
+
* In a webhook response when you determine that you handled the customer issue.
|
2290
|
+
Structure is documented below.
|
2291
|
+
"""
|
2292
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict']]
|
2293
|
+
"""
|
2294
|
+
Indicates that the conversation should be handed off to a live agent.
|
2295
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
2296
|
+
You may set this, for example:
|
2297
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
2298
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
2299
|
+
Structure is documented below.
|
2300
|
+
"""
|
2301
|
+
output_audio_text: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict']]
|
2302
|
+
"""
|
2303
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
2304
|
+
Structure is documented below.
|
2305
|
+
"""
|
2306
|
+
payload: NotRequired[pulumi.Input[str]]
|
2307
|
+
"""
|
2308
|
+
A custom, platform-specific payload.
|
2309
|
+
"""
|
2310
|
+
play_audio: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict']]
|
2311
|
+
"""
|
2312
|
+
Specifies an audio clip to be played by the client as part of the response.
|
2313
|
+
Structure is documented below.
|
2314
|
+
"""
|
2315
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict']]
|
2316
|
+
"""
|
2317
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
2318
|
+
Structure is documented below.
|
2319
|
+
"""
|
2320
|
+
text: NotRequired[pulumi.Input['CxFlowTransitionRouteTriggerFulfillmentMessageTextArgsDict']]
|
2321
|
+
"""
|
2322
|
+
The text response message.
|
2323
|
+
Structure is documented below.
|
2324
|
+
"""
|
2325
|
+
elif False:
|
2326
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
2327
|
+
|
1637
2328
|
@pulumi.input_type
|
1638
2329
|
class CxFlowTransitionRouteTriggerFulfillmentMessageArgs:
|
1639
2330
|
def __init__(__self__, *,
|
@@ -1797,6 +2488,15 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageArgs:
|
|
1797
2488
|
pulumi.set(self, "text", value)
|
1798
2489
|
|
1799
2490
|
|
2491
|
+
if not MYPY:
|
2492
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
2493
|
+
metadata: NotRequired[pulumi.Input[str]]
|
2494
|
+
"""
|
2495
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
2496
|
+
"""
|
2497
|
+
elif False:
|
2498
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
2499
|
+
|
1800
2500
|
@pulumi.input_type
|
1801
2501
|
class CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs:
|
1802
2502
|
def __init__(__self__, *,
|
@@ -1820,6 +2520,15 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs:
|
|
1820
2520
|
pulumi.set(self, "metadata", value)
|
1821
2521
|
|
1822
2522
|
|
2523
|
+
if not MYPY:
|
2524
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
2525
|
+
metadata: NotRequired[pulumi.Input[str]]
|
2526
|
+
"""
|
2527
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
2528
|
+
"""
|
2529
|
+
elif False:
|
2530
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
2531
|
+
|
1823
2532
|
@pulumi.input_type
|
1824
2533
|
class CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
1825
2534
|
def __init__(__self__, *,
|
@@ -1843,6 +2552,24 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
|
1843
2552
|
pulumi.set(self, "metadata", value)
|
1844
2553
|
|
1845
2554
|
|
2555
|
+
if not MYPY:
|
2556
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
2557
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
2558
|
+
"""
|
2559
|
+
(Output)
|
2560
|
+
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.
|
2561
|
+
"""
|
2562
|
+
ssml: NotRequired[pulumi.Input[str]]
|
2563
|
+
"""
|
2564
|
+
The SSML text to be synthesized. For more information, see SSML.
|
2565
|
+
"""
|
2566
|
+
text: NotRequired[pulumi.Input[str]]
|
2567
|
+
"""
|
2568
|
+
The raw text to be synthesized.
|
2569
|
+
"""
|
2570
|
+
elif False:
|
2571
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
2572
|
+
|
1846
2573
|
@pulumi.input_type
|
1847
2574
|
class CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs:
|
1848
2575
|
def __init__(__self__, *,
|
@@ -1900,6 +2627,20 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs:
|
|
1900
2627
|
pulumi.set(self, "text", value)
|
1901
2628
|
|
1902
2629
|
|
2630
|
+
if not MYPY:
|
2631
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
2632
|
+
audio_uri: pulumi.Input[str]
|
2633
|
+
"""
|
2634
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
2635
|
+
"""
|
2636
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
2637
|
+
"""
|
2638
|
+
(Output)
|
2639
|
+
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.
|
2640
|
+
"""
|
2641
|
+
elif False:
|
2642
|
+
CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
2643
|
+
|
1903
2644
|
@pulumi.input_type
|
1904
2645
|
class CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgs:
|
1905
2646
|
def __init__(__self__, *,
|
@@ -1940,6 +2681,15 @@ class CxFlowTransitionRouteTriggerFulfillmentMessagePlayAudioArgs:
|
|
1940
2681
|
pulumi.set(self, "allow_playback_interruption", value)
|
1941
2682
|
|
1942
2683
|
|
2684
|
+
if not MYPY:
|
2685
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
2686
|
+
phone_number: pulumi.Input[str]
|
2687
|
+
"""
|
2688
|
+
Transfer the call to a phone number in E.164 format.
|
2689
|
+
"""
|
2690
|
+
elif False:
|
2691
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
2692
|
+
|
1943
2693
|
@pulumi.input_type
|
1944
2694
|
class CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
1945
2695
|
def __init__(__self__, *,
|
@@ -1962,6 +2712,20 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
|
1962
2712
|
pulumi.set(self, "phone_number", value)
|
1963
2713
|
|
1964
2714
|
|
2715
|
+
if not MYPY:
|
2716
|
+
class CxFlowTransitionRouteTriggerFulfillmentMessageTextArgsDict(TypedDict):
|
2717
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
2718
|
+
"""
|
2719
|
+
(Output)
|
2720
|
+
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.
|
2721
|
+
"""
|
2722
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2723
|
+
"""
|
2724
|
+
A collection of text responses.
|
2725
|
+
"""
|
2726
|
+
elif False:
|
2727
|
+
CxFlowTransitionRouteTriggerFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
2728
|
+
|
1965
2729
|
@pulumi.input_type
|
1966
2730
|
class CxFlowTransitionRouteTriggerFulfillmentMessageTextArgs:
|
1967
2731
|
def __init__(__self__, *,
|
@@ -2003,6 +2767,19 @@ class CxFlowTransitionRouteTriggerFulfillmentMessageTextArgs:
|
|
2003
2767
|
pulumi.set(self, "texts", value)
|
2004
2768
|
|
2005
2769
|
|
2770
|
+
if not MYPY:
|
2771
|
+
class CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgsDict(TypedDict):
|
2772
|
+
parameter: NotRequired[pulumi.Input[str]]
|
2773
|
+
"""
|
2774
|
+
Display name of the parameter.
|
2775
|
+
"""
|
2776
|
+
value: NotRequired[pulumi.Input[str]]
|
2777
|
+
"""
|
2778
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
2779
|
+
"""
|
2780
|
+
elif False:
|
2781
|
+
CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
2782
|
+
|
2006
2783
|
@pulumi.input_type
|
2007
2784
|
class CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs:
|
2008
2785
|
def __init__(__self__, *,
|
@@ -2042,6 +2819,29 @@ class CxFlowTransitionRouteTriggerFulfillmentSetParameterActionArgs:
|
|
2042
2819
|
pulumi.set(self, "value", value)
|
2043
2820
|
|
2044
2821
|
|
2822
|
+
if not MYPY:
|
2823
|
+
class CxIntentParameterArgsDict(TypedDict):
|
2824
|
+
entity_type: pulumi.Input[str]
|
2825
|
+
"""
|
2826
|
+
The entity type of the parameter.
|
2827
|
+
Format: projects/-/locations/-/agents/-/entityTypes/<System Entity Type ID> for system entity types (for example, projects/-/locations/-/agents/-/entityTypes/sys.date), or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<Entity Type ID> for developer entity types.
|
2828
|
+
"""
|
2829
|
+
id: pulumi.Input[str]
|
2830
|
+
"""
|
2831
|
+
The unique identifier of the parameter. This field is used by training phrases to annotate their parts.
|
2832
|
+
"""
|
2833
|
+
is_list: NotRequired[pulumi.Input[bool]]
|
2834
|
+
"""
|
2835
|
+
Indicates whether the parameter represents a list of values.
|
2836
|
+
"""
|
2837
|
+
redact: NotRequired[pulumi.Input[bool]]
|
2838
|
+
"""
|
2839
|
+
Indicates whether the parameter content should be redacted in log. If redaction is enabled, the parameter content will be replaced by parameter name during logging.
|
2840
|
+
Note: the parameter content is subject to redaction if either parameter level redaction or entity type level redaction is enabled.
|
2841
|
+
"""
|
2842
|
+
elif False:
|
2843
|
+
CxIntentParameterArgsDict: TypeAlias = Mapping[str, Any]
|
2844
|
+
|
2045
2845
|
@pulumi.input_type
|
2046
2846
|
class CxIntentParameterArgs:
|
2047
2847
|
def __init__(__self__, *,
|
@@ -2115,6 +2915,31 @@ class CxIntentParameterArgs:
|
|
2115
2915
|
pulumi.set(self, "redact", value)
|
2116
2916
|
|
2117
2917
|
|
2918
|
+
if not MYPY:
|
2919
|
+
class CxIntentTrainingPhraseArgsDict(TypedDict):
|
2920
|
+
parts: pulumi.Input[Sequence[pulumi.Input['CxIntentTrainingPhrasePartArgsDict']]]
|
2921
|
+
"""
|
2922
|
+
The ordered list of training phrase parts. The parts are concatenated in order to form the training phrase.
|
2923
|
+
Note: The API does not automatically annotate training phrases like the Dialogflow Console does.
|
2924
|
+
Note: Do not forget to include whitespace at part boundaries, so the training phrase is well formatted when the parts are concatenated.
|
2925
|
+
If the training phrase does not need to be annotated with parameters, you just need a single part with only the Part.text field set.
|
2926
|
+
If you want to annotate the training phrase, you must create multiple parts, where the fields of each part are populated in one of two ways:
|
2927
|
+
Part.text is set to a part of the phrase that has no parameters.
|
2928
|
+
Part.text is set to a part of the phrase that you want to annotate, and the parameterId field is set.
|
2929
|
+
Structure is documented below.
|
2930
|
+
"""
|
2931
|
+
id: NotRequired[pulumi.Input[str]]
|
2932
|
+
"""
|
2933
|
+
(Output)
|
2934
|
+
The unique identifier of the training phrase.
|
2935
|
+
"""
|
2936
|
+
repeat_count: NotRequired[pulumi.Input[int]]
|
2937
|
+
"""
|
2938
|
+
Indicates how many times this example was added to the intent.
|
2939
|
+
"""
|
2940
|
+
elif False:
|
2941
|
+
CxIntentTrainingPhraseArgsDict: TypeAlias = Mapping[str, Any]
|
2942
|
+
|
2118
2943
|
@pulumi.input_type
|
2119
2944
|
class CxIntentTrainingPhraseArgs:
|
2120
2945
|
def __init__(__self__, *,
|
@@ -2185,6 +3010,19 @@ class CxIntentTrainingPhraseArgs:
|
|
2185
3010
|
pulumi.set(self, "repeat_count", value)
|
2186
3011
|
|
2187
3012
|
|
3013
|
+
if not MYPY:
|
3014
|
+
class CxIntentTrainingPhrasePartArgsDict(TypedDict):
|
3015
|
+
text: pulumi.Input[str]
|
3016
|
+
"""
|
3017
|
+
The text for this part.
|
3018
|
+
"""
|
3019
|
+
parameter_id: NotRequired[pulumi.Input[str]]
|
3020
|
+
"""
|
3021
|
+
The parameter used to annotate this part of the training phrase. This field is required for annotated parts of the training phrase.
|
3022
|
+
"""
|
3023
|
+
elif False:
|
3024
|
+
CxIntentTrainingPhrasePartArgsDict: TypeAlias = Mapping[str, Any]
|
3025
|
+
|
2188
3026
|
@pulumi.input_type
|
2189
3027
|
class CxIntentTrainingPhrasePartArgs:
|
2190
3028
|
def __init__(__self__, *,
|
@@ -2223,6 +3061,20 @@ class CxIntentTrainingPhrasePartArgs:
|
|
2223
3061
|
pulumi.set(self, "parameter_id", value)
|
2224
3062
|
|
2225
3063
|
|
3064
|
+
if not MYPY:
|
3065
|
+
class CxPageAdvancedSettingsArgsDict(TypedDict):
|
3066
|
+
dtmf_settings: NotRequired[pulumi.Input['CxPageAdvancedSettingsDtmfSettingsArgsDict']]
|
3067
|
+
"""
|
3068
|
+
Define behaviors for DTMF (dual tone multi frequency). DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Exposed at the following levels:
|
3069
|
+
* Agent level
|
3070
|
+
* Flow level
|
3071
|
+
* Page level
|
3072
|
+
* Parameter level
|
3073
|
+
Structure is documented below.
|
3074
|
+
"""
|
3075
|
+
elif False:
|
3076
|
+
CxPageAdvancedSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
3077
|
+
|
2226
3078
|
@pulumi.input_type
|
2227
3079
|
class CxPageAdvancedSettingsArgs:
|
2228
3080
|
def __init__(__self__, *,
|
@@ -2256,6 +3108,23 @@ class CxPageAdvancedSettingsArgs:
|
|
2256
3108
|
pulumi.set(self, "dtmf_settings", value)
|
2257
3109
|
|
2258
3110
|
|
3111
|
+
if not MYPY:
|
3112
|
+
class CxPageAdvancedSettingsDtmfSettingsArgsDict(TypedDict):
|
3113
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
3114
|
+
"""
|
3115
|
+
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).
|
3116
|
+
"""
|
3117
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
3118
|
+
"""
|
3119
|
+
The digit that terminates a DTMF digit sequence.
|
3120
|
+
"""
|
3121
|
+
max_digits: NotRequired[pulumi.Input[int]]
|
3122
|
+
"""
|
3123
|
+
Max length of DTMF digits.
|
3124
|
+
"""
|
3125
|
+
elif False:
|
3126
|
+
CxPageAdvancedSettingsDtmfSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
3127
|
+
|
2259
3128
|
@pulumi.input_type
|
2260
3129
|
class CxPageAdvancedSettingsDtmfSettingsArgs:
|
2261
3130
|
def __init__(__self__, *,
|
@@ -2311,6 +3180,38 @@ class CxPageAdvancedSettingsDtmfSettingsArgs:
|
|
2311
3180
|
pulumi.set(self, "max_digits", value)
|
2312
3181
|
|
2313
3182
|
|
3183
|
+
if not MYPY:
|
3184
|
+
class CxPageEntryFulfillmentArgsDict(TypedDict):
|
3185
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEntryFulfillmentConditionalCaseArgsDict']]]]
|
3186
|
+
"""
|
3187
|
+
Conditional cases for this fulfillment.
|
3188
|
+
Structure is documented below.
|
3189
|
+
"""
|
3190
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEntryFulfillmentMessageArgsDict']]]]
|
3191
|
+
"""
|
3192
|
+
The list of rich message responses to present to the user.
|
3193
|
+
Structure is documented below.
|
3194
|
+
"""
|
3195
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
3196
|
+
"""
|
3197
|
+
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.
|
3198
|
+
"""
|
3199
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEntryFulfillmentSetParameterActionArgsDict']]]]
|
3200
|
+
"""
|
3201
|
+
Set parameter values before executing the webhook.
|
3202
|
+
Structure is documented below.
|
3203
|
+
"""
|
3204
|
+
tag: NotRequired[pulumi.Input[str]]
|
3205
|
+
"""
|
3206
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
3207
|
+
"""
|
3208
|
+
webhook: NotRequired[pulumi.Input[str]]
|
3209
|
+
"""
|
3210
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
3211
|
+
"""
|
3212
|
+
elif False:
|
3213
|
+
CxPageEntryFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
3214
|
+
|
2314
3215
|
@pulumi.input_type
|
2315
3216
|
class CxPageEntryFulfillmentArgs:
|
2316
3217
|
def __init__(__self__, *,
|
@@ -2420,6 +3321,16 @@ class CxPageEntryFulfillmentArgs:
|
|
2420
3321
|
pulumi.set(self, "webhook", value)
|
2421
3322
|
|
2422
3323
|
|
3324
|
+
if not MYPY:
|
3325
|
+
class CxPageEntryFulfillmentConditionalCaseArgsDict(TypedDict):
|
3326
|
+
cases: NotRequired[pulumi.Input[str]]
|
3327
|
+
"""
|
3328
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
3329
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
3330
|
+
"""
|
3331
|
+
elif False:
|
3332
|
+
CxPageEntryFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
3333
|
+
|
2423
3334
|
@pulumi.input_type
|
2424
3335
|
class CxPageEntryFulfillmentConditionalCaseArgs:
|
2425
3336
|
def __init__(__self__, *,
|
@@ -2445,14 +3356,65 @@ class CxPageEntryFulfillmentConditionalCaseArgs:
|
|
2445
3356
|
pulumi.set(self, "cases", value)
|
2446
3357
|
|
2447
3358
|
|
2448
|
-
|
2449
|
-
class
|
2450
|
-
|
2451
|
-
|
2452
|
-
|
2453
|
-
|
2454
|
-
|
2455
|
-
|
3359
|
+
if not MYPY:
|
3360
|
+
class CxPageEntryFulfillmentMessageArgsDict(TypedDict):
|
3361
|
+
channel: NotRequired[pulumi.Input[str]]
|
3362
|
+
"""
|
3363
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
3364
|
+
"""
|
3365
|
+
conversation_success: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessageConversationSuccessArgsDict']]
|
3366
|
+
"""
|
3367
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
3368
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
3369
|
+
You may set this, for example:
|
3370
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
3371
|
+
* In a webhook response when you determine that you handled the customer issue.
|
3372
|
+
Structure is documented below.
|
3373
|
+
"""
|
3374
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessageLiveAgentHandoffArgsDict']]
|
3375
|
+
"""
|
3376
|
+
Indicates that the conversation should be handed off to a live agent.
|
3377
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
3378
|
+
You may set this, for example:
|
3379
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
3380
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
3381
|
+
Structure is documented below.
|
3382
|
+
"""
|
3383
|
+
output_audio_text: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessageOutputAudioTextArgsDict']]
|
3384
|
+
"""
|
3385
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
3386
|
+
Structure is documented below.
|
3387
|
+
"""
|
3388
|
+
payload: NotRequired[pulumi.Input[str]]
|
3389
|
+
"""
|
3390
|
+
A custom, platform-specific payload.
|
3391
|
+
"""
|
3392
|
+
play_audio: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessagePlayAudioArgsDict']]
|
3393
|
+
"""
|
3394
|
+
Specifies an audio clip to be played by the client as part of the response.
|
3395
|
+
Structure is documented below.
|
3396
|
+
"""
|
3397
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessageTelephonyTransferCallArgsDict']]
|
3398
|
+
"""
|
3399
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
3400
|
+
Structure is documented below.
|
3401
|
+
"""
|
3402
|
+
text: NotRequired[pulumi.Input['CxPageEntryFulfillmentMessageTextArgsDict']]
|
3403
|
+
"""
|
3404
|
+
The text response message.
|
3405
|
+
Structure is documented below.
|
3406
|
+
"""
|
3407
|
+
elif False:
|
3408
|
+
CxPageEntryFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
3409
|
+
|
3410
|
+
@pulumi.input_type
|
3411
|
+
class CxPageEntryFulfillmentMessageArgs:
|
3412
|
+
def __init__(__self__, *,
|
3413
|
+
channel: Optional[pulumi.Input[str]] = None,
|
3414
|
+
conversation_success: Optional[pulumi.Input['CxPageEntryFulfillmentMessageConversationSuccessArgs']] = None,
|
3415
|
+
live_agent_handoff: Optional[pulumi.Input['CxPageEntryFulfillmentMessageLiveAgentHandoffArgs']] = None,
|
3416
|
+
output_audio_text: Optional[pulumi.Input['CxPageEntryFulfillmentMessageOutputAudioTextArgs']] = None,
|
3417
|
+
payload: Optional[pulumi.Input[str]] = None,
|
2456
3418
|
play_audio: Optional[pulumi.Input['CxPageEntryFulfillmentMessagePlayAudioArgs']] = None,
|
2457
3419
|
telephony_transfer_call: Optional[pulumi.Input['CxPageEntryFulfillmentMessageTelephonyTransferCallArgs']] = None,
|
2458
3420
|
text: Optional[pulumi.Input['CxPageEntryFulfillmentMessageTextArgs']] = None):
|
@@ -2608,6 +3570,15 @@ class CxPageEntryFulfillmentMessageArgs:
|
|
2608
3570
|
pulumi.set(self, "text", value)
|
2609
3571
|
|
2610
3572
|
|
3573
|
+
if not MYPY:
|
3574
|
+
class CxPageEntryFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
3575
|
+
metadata: NotRequired[pulumi.Input[str]]
|
3576
|
+
"""
|
3577
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
3578
|
+
"""
|
3579
|
+
elif False:
|
3580
|
+
CxPageEntryFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
3581
|
+
|
2611
3582
|
@pulumi.input_type
|
2612
3583
|
class CxPageEntryFulfillmentMessageConversationSuccessArgs:
|
2613
3584
|
def __init__(__self__, *,
|
@@ -2631,6 +3602,15 @@ class CxPageEntryFulfillmentMessageConversationSuccessArgs:
|
|
2631
3602
|
pulumi.set(self, "metadata", value)
|
2632
3603
|
|
2633
3604
|
|
3605
|
+
if not MYPY:
|
3606
|
+
class CxPageEntryFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
3607
|
+
metadata: NotRequired[pulumi.Input[str]]
|
3608
|
+
"""
|
3609
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
3610
|
+
"""
|
3611
|
+
elif False:
|
3612
|
+
CxPageEntryFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
3613
|
+
|
2634
3614
|
@pulumi.input_type
|
2635
3615
|
class CxPageEntryFulfillmentMessageLiveAgentHandoffArgs:
|
2636
3616
|
def __init__(__self__, *,
|
@@ -2654,6 +3634,24 @@ class CxPageEntryFulfillmentMessageLiveAgentHandoffArgs:
|
|
2654
3634
|
pulumi.set(self, "metadata", value)
|
2655
3635
|
|
2656
3636
|
|
3637
|
+
if not MYPY:
|
3638
|
+
class CxPageEntryFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
3639
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
3640
|
+
"""
|
3641
|
+
(Output)
|
3642
|
+
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.
|
3643
|
+
"""
|
3644
|
+
ssml: NotRequired[pulumi.Input[str]]
|
3645
|
+
"""
|
3646
|
+
The SSML text to be synthesized. For more information, see SSML.
|
3647
|
+
"""
|
3648
|
+
text: NotRequired[pulumi.Input[str]]
|
3649
|
+
"""
|
3650
|
+
The raw text to be synthesized.
|
3651
|
+
"""
|
3652
|
+
elif False:
|
3653
|
+
CxPageEntryFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
3654
|
+
|
2657
3655
|
@pulumi.input_type
|
2658
3656
|
class CxPageEntryFulfillmentMessageOutputAudioTextArgs:
|
2659
3657
|
def __init__(__self__, *,
|
@@ -2711,6 +3709,20 @@ class CxPageEntryFulfillmentMessageOutputAudioTextArgs:
|
|
2711
3709
|
pulumi.set(self, "text", value)
|
2712
3710
|
|
2713
3711
|
|
3712
|
+
if not MYPY:
|
3713
|
+
class CxPageEntryFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
3714
|
+
audio_uri: pulumi.Input[str]
|
3715
|
+
"""
|
3716
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
3717
|
+
"""
|
3718
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
3719
|
+
"""
|
3720
|
+
(Output)
|
3721
|
+
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.
|
3722
|
+
"""
|
3723
|
+
elif False:
|
3724
|
+
CxPageEntryFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
3725
|
+
|
2714
3726
|
@pulumi.input_type
|
2715
3727
|
class CxPageEntryFulfillmentMessagePlayAudioArgs:
|
2716
3728
|
def __init__(__self__, *,
|
@@ -2751,6 +3763,15 @@ class CxPageEntryFulfillmentMessagePlayAudioArgs:
|
|
2751
3763
|
pulumi.set(self, "allow_playback_interruption", value)
|
2752
3764
|
|
2753
3765
|
|
3766
|
+
if not MYPY:
|
3767
|
+
class CxPageEntryFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
3768
|
+
phone_number: pulumi.Input[str]
|
3769
|
+
"""
|
3770
|
+
Transfer the call to a phone number in E.164 format.
|
3771
|
+
"""
|
3772
|
+
elif False:
|
3773
|
+
CxPageEntryFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
3774
|
+
|
2754
3775
|
@pulumi.input_type
|
2755
3776
|
class CxPageEntryFulfillmentMessageTelephonyTransferCallArgs:
|
2756
3777
|
def __init__(__self__, *,
|
@@ -2773,6 +3794,20 @@ class CxPageEntryFulfillmentMessageTelephonyTransferCallArgs:
|
|
2773
3794
|
pulumi.set(self, "phone_number", value)
|
2774
3795
|
|
2775
3796
|
|
3797
|
+
if not MYPY:
|
3798
|
+
class CxPageEntryFulfillmentMessageTextArgsDict(TypedDict):
|
3799
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
3800
|
+
"""
|
3801
|
+
(Output)
|
3802
|
+
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.
|
3803
|
+
"""
|
3804
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
3805
|
+
"""
|
3806
|
+
A collection of text responses.
|
3807
|
+
"""
|
3808
|
+
elif False:
|
3809
|
+
CxPageEntryFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
3810
|
+
|
2776
3811
|
@pulumi.input_type
|
2777
3812
|
class CxPageEntryFulfillmentMessageTextArgs:
|
2778
3813
|
def __init__(__self__, *,
|
@@ -2814,6 +3849,19 @@ class CxPageEntryFulfillmentMessageTextArgs:
|
|
2814
3849
|
pulumi.set(self, "texts", value)
|
2815
3850
|
|
2816
3851
|
|
3852
|
+
if not MYPY:
|
3853
|
+
class CxPageEntryFulfillmentSetParameterActionArgsDict(TypedDict):
|
3854
|
+
parameter: NotRequired[pulumi.Input[str]]
|
3855
|
+
"""
|
3856
|
+
Display name of the parameter.
|
3857
|
+
"""
|
3858
|
+
value: NotRequired[pulumi.Input[str]]
|
3859
|
+
"""
|
3860
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
3861
|
+
"""
|
3862
|
+
elif False:
|
3863
|
+
CxPageEntryFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
3864
|
+
|
2817
3865
|
@pulumi.input_type
|
2818
3866
|
class CxPageEntryFulfillmentSetParameterActionArgs:
|
2819
3867
|
def __init__(__self__, *,
|
@@ -2853,6 +3901,35 @@ class CxPageEntryFulfillmentSetParameterActionArgs:
|
|
2853
3901
|
pulumi.set(self, "value", value)
|
2854
3902
|
|
2855
3903
|
|
3904
|
+
if not MYPY:
|
3905
|
+
class CxPageEventHandlerArgsDict(TypedDict):
|
3906
|
+
event: NotRequired[pulumi.Input[str]]
|
3907
|
+
"""
|
3908
|
+
The name of the event to handle.
|
3909
|
+
"""
|
3910
|
+
name: NotRequired[pulumi.Input[str]]
|
3911
|
+
"""
|
3912
|
+
(Output)
|
3913
|
+
The unique identifier of this event handler.
|
3914
|
+
"""
|
3915
|
+
target_flow: NotRequired[pulumi.Input[str]]
|
3916
|
+
"""
|
3917
|
+
The target flow to transition to.
|
3918
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
3919
|
+
"""
|
3920
|
+
target_page: NotRequired[pulumi.Input[str]]
|
3921
|
+
"""
|
3922
|
+
The target page to transition to.
|
3923
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
3924
|
+
"""
|
3925
|
+
trigger_fulfillment: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentArgsDict']]
|
3926
|
+
"""
|
3927
|
+
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.
|
3928
|
+
Structure is documented below.
|
3929
|
+
"""
|
3930
|
+
elif False:
|
3931
|
+
CxPageEventHandlerArgsDict: TypeAlias = Mapping[str, Any]
|
3932
|
+
|
2856
3933
|
@pulumi.input_type
|
2857
3934
|
class CxPageEventHandlerArgs:
|
2858
3935
|
def __init__(__self__, *,
|
@@ -2948,6 +4025,38 @@ class CxPageEventHandlerArgs:
|
|
2948
4025
|
pulumi.set(self, "trigger_fulfillment", value)
|
2949
4026
|
|
2950
4027
|
|
4028
|
+
if not MYPY:
|
4029
|
+
class CxPageEventHandlerTriggerFulfillmentArgsDict(TypedDict):
|
4030
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEventHandlerTriggerFulfillmentConditionalCaseArgsDict']]]]
|
4031
|
+
"""
|
4032
|
+
Conditional cases for this fulfillment.
|
4033
|
+
Structure is documented below.
|
4034
|
+
"""
|
4035
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageArgsDict']]]]
|
4036
|
+
"""
|
4037
|
+
The list of rich message responses to present to the user.
|
4038
|
+
Structure is documented below.
|
4039
|
+
"""
|
4040
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
4041
|
+
"""
|
4042
|
+
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.
|
4043
|
+
"""
|
4044
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageEventHandlerTriggerFulfillmentSetParameterActionArgsDict']]]]
|
4045
|
+
"""
|
4046
|
+
Set parameter values before executing the webhook.
|
4047
|
+
Structure is documented below.
|
4048
|
+
"""
|
4049
|
+
tag: NotRequired[pulumi.Input[str]]
|
4050
|
+
"""
|
4051
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
4052
|
+
"""
|
4053
|
+
webhook: NotRequired[pulumi.Input[str]]
|
4054
|
+
"""
|
4055
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
4056
|
+
"""
|
4057
|
+
elif False:
|
4058
|
+
CxPageEventHandlerTriggerFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
4059
|
+
|
2951
4060
|
@pulumi.input_type
|
2952
4061
|
class CxPageEventHandlerTriggerFulfillmentArgs:
|
2953
4062
|
def __init__(__self__, *,
|
@@ -3057,6 +4166,16 @@ class CxPageEventHandlerTriggerFulfillmentArgs:
|
|
3057
4166
|
pulumi.set(self, "webhook", value)
|
3058
4167
|
|
3059
4168
|
|
4169
|
+
if not MYPY:
|
4170
|
+
class CxPageEventHandlerTriggerFulfillmentConditionalCaseArgsDict(TypedDict):
|
4171
|
+
cases: NotRequired[pulumi.Input[str]]
|
4172
|
+
"""
|
4173
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
4174
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
4175
|
+
"""
|
4176
|
+
elif False:
|
4177
|
+
CxPageEventHandlerTriggerFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
4178
|
+
|
3060
4179
|
@pulumi.input_type
|
3061
4180
|
class CxPageEventHandlerTriggerFulfillmentConditionalCaseArgs:
|
3062
4181
|
def __init__(__self__, *,
|
@@ -3082,6 +4201,57 @@ class CxPageEventHandlerTriggerFulfillmentConditionalCaseArgs:
|
|
3082
4201
|
pulumi.set(self, "cases", value)
|
3083
4202
|
|
3084
4203
|
|
4204
|
+
if not MYPY:
|
4205
|
+
class CxPageEventHandlerTriggerFulfillmentMessageArgsDict(TypedDict):
|
4206
|
+
channel: NotRequired[pulumi.Input[str]]
|
4207
|
+
"""
|
4208
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
4209
|
+
"""
|
4210
|
+
conversation_success: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict']]
|
4211
|
+
"""
|
4212
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
4213
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
4214
|
+
You may set this, for example:
|
4215
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
4216
|
+
* In a webhook response when you determine that you handled the customer issue.
|
4217
|
+
Structure is documented below.
|
4218
|
+
"""
|
4219
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict']]
|
4220
|
+
"""
|
4221
|
+
Indicates that the conversation should be handed off to a live agent.
|
4222
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
4223
|
+
You may set this, for example:
|
4224
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
4225
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
4226
|
+
Structure is documented below.
|
4227
|
+
"""
|
4228
|
+
output_audio_text: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict']]
|
4229
|
+
"""
|
4230
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
4231
|
+
Structure is documented below.
|
4232
|
+
"""
|
4233
|
+
payload: NotRequired[pulumi.Input[str]]
|
4234
|
+
"""
|
4235
|
+
A custom, platform-specific payload.
|
4236
|
+
"""
|
4237
|
+
play_audio: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict']]
|
4238
|
+
"""
|
4239
|
+
Specifies an audio clip to be played by the client as part of the response.
|
4240
|
+
Structure is documented below.
|
4241
|
+
"""
|
4242
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict']]
|
4243
|
+
"""
|
4244
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
4245
|
+
Structure is documented below.
|
4246
|
+
"""
|
4247
|
+
text: NotRequired[pulumi.Input['CxPageEventHandlerTriggerFulfillmentMessageTextArgsDict']]
|
4248
|
+
"""
|
4249
|
+
The text response message.
|
4250
|
+
Structure is documented below.
|
4251
|
+
"""
|
4252
|
+
elif False:
|
4253
|
+
CxPageEventHandlerTriggerFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
4254
|
+
|
3085
4255
|
@pulumi.input_type
|
3086
4256
|
class CxPageEventHandlerTriggerFulfillmentMessageArgs:
|
3087
4257
|
def __init__(__self__, *,
|
@@ -3245,6 +4415,15 @@ class CxPageEventHandlerTriggerFulfillmentMessageArgs:
|
|
3245
4415
|
pulumi.set(self, "text", value)
|
3246
4416
|
|
3247
4417
|
|
4418
|
+
if not MYPY:
|
4419
|
+
class CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
4420
|
+
metadata: NotRequired[pulumi.Input[str]]
|
4421
|
+
"""
|
4422
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
4423
|
+
"""
|
4424
|
+
elif False:
|
4425
|
+
CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
4426
|
+
|
3248
4427
|
@pulumi.input_type
|
3249
4428
|
class CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgs:
|
3250
4429
|
def __init__(__self__, *,
|
@@ -3268,6 +4447,15 @@ class CxPageEventHandlerTriggerFulfillmentMessageConversationSuccessArgs:
|
|
3268
4447
|
pulumi.set(self, "metadata", value)
|
3269
4448
|
|
3270
4449
|
|
4450
|
+
if not MYPY:
|
4451
|
+
class CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
4452
|
+
metadata: NotRequired[pulumi.Input[str]]
|
4453
|
+
"""
|
4454
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
4455
|
+
"""
|
4456
|
+
elif False:
|
4457
|
+
CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
4458
|
+
|
3271
4459
|
@pulumi.input_type
|
3272
4460
|
class CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
3273
4461
|
def __init__(__self__, *,
|
@@ -3291,6 +4479,24 @@ class CxPageEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
|
3291
4479
|
pulumi.set(self, "metadata", value)
|
3292
4480
|
|
3293
4481
|
|
4482
|
+
if not MYPY:
|
4483
|
+
class CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
4484
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
4485
|
+
"""
|
4486
|
+
(Output)
|
4487
|
+
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.
|
4488
|
+
"""
|
4489
|
+
ssml: NotRequired[pulumi.Input[str]]
|
4490
|
+
"""
|
4491
|
+
The SSML text to be synthesized. For more information, see SSML.
|
4492
|
+
"""
|
4493
|
+
text: NotRequired[pulumi.Input[str]]
|
4494
|
+
"""
|
4495
|
+
The raw text to be synthesized.
|
4496
|
+
"""
|
4497
|
+
elif False:
|
4498
|
+
CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
4499
|
+
|
3294
4500
|
@pulumi.input_type
|
3295
4501
|
class CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs:
|
3296
4502
|
def __init__(__self__, *,
|
@@ -3348,6 +4554,20 @@ class CxPageEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs:
|
|
3348
4554
|
pulumi.set(self, "text", value)
|
3349
4555
|
|
3350
4556
|
|
4557
|
+
if not MYPY:
|
4558
|
+
class CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
4559
|
+
audio_uri: pulumi.Input[str]
|
4560
|
+
"""
|
4561
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
4562
|
+
"""
|
4563
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
4564
|
+
"""
|
4565
|
+
(Output)
|
4566
|
+
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.
|
4567
|
+
"""
|
4568
|
+
elif False:
|
4569
|
+
CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
4570
|
+
|
3351
4571
|
@pulumi.input_type
|
3352
4572
|
class CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgs:
|
3353
4573
|
def __init__(__self__, *,
|
@@ -3388,6 +4608,15 @@ class CxPageEventHandlerTriggerFulfillmentMessagePlayAudioArgs:
|
|
3388
4608
|
pulumi.set(self, "allow_playback_interruption", value)
|
3389
4609
|
|
3390
4610
|
|
4611
|
+
if not MYPY:
|
4612
|
+
class CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
4613
|
+
phone_number: pulumi.Input[str]
|
4614
|
+
"""
|
4615
|
+
Transfer the call to a phone number in E.164 format.
|
4616
|
+
"""
|
4617
|
+
elif False:
|
4618
|
+
CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
4619
|
+
|
3391
4620
|
@pulumi.input_type
|
3392
4621
|
class CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
3393
4622
|
def __init__(__self__, *,
|
@@ -3410,6 +4639,20 @@ class CxPageEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
|
3410
4639
|
pulumi.set(self, "phone_number", value)
|
3411
4640
|
|
3412
4641
|
|
4642
|
+
if not MYPY:
|
4643
|
+
class CxPageEventHandlerTriggerFulfillmentMessageTextArgsDict(TypedDict):
|
4644
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
4645
|
+
"""
|
4646
|
+
(Output)
|
4647
|
+
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.
|
4648
|
+
"""
|
4649
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4650
|
+
"""
|
4651
|
+
A collection of text responses.
|
4652
|
+
"""
|
4653
|
+
elif False:
|
4654
|
+
CxPageEventHandlerTriggerFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
4655
|
+
|
3413
4656
|
@pulumi.input_type
|
3414
4657
|
class CxPageEventHandlerTriggerFulfillmentMessageTextArgs:
|
3415
4658
|
def __init__(__self__, *,
|
@@ -3451,6 +4694,19 @@ class CxPageEventHandlerTriggerFulfillmentMessageTextArgs:
|
|
3451
4694
|
pulumi.set(self, "texts", value)
|
3452
4695
|
|
3453
4696
|
|
4697
|
+
if not MYPY:
|
4698
|
+
class CxPageEventHandlerTriggerFulfillmentSetParameterActionArgsDict(TypedDict):
|
4699
|
+
parameter: NotRequired[pulumi.Input[str]]
|
4700
|
+
"""
|
4701
|
+
Display name of the parameter.
|
4702
|
+
"""
|
4703
|
+
value: NotRequired[pulumi.Input[str]]
|
4704
|
+
"""
|
4705
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
4706
|
+
"""
|
4707
|
+
elif False:
|
4708
|
+
CxPageEventHandlerTriggerFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
4709
|
+
|
3454
4710
|
@pulumi.input_type
|
3455
4711
|
class CxPageEventHandlerTriggerFulfillmentSetParameterActionArgs:
|
3456
4712
|
def __init__(__self__, *,
|
@@ -3490,6 +4746,16 @@ class CxPageEventHandlerTriggerFulfillmentSetParameterActionArgs:
|
|
3490
4746
|
pulumi.set(self, "value", value)
|
3491
4747
|
|
3492
4748
|
|
4749
|
+
if not MYPY:
|
4750
|
+
class CxPageFormArgsDict(TypedDict):
|
4751
|
+
parameters: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterArgsDict']]]]
|
4752
|
+
"""
|
4753
|
+
Parameters to collect from the user.
|
4754
|
+
Structure is documented below.
|
4755
|
+
"""
|
4756
|
+
elif False:
|
4757
|
+
CxPageFormArgsDict: TypeAlias = Mapping[str, Any]
|
4758
|
+
|
3493
4759
|
@pulumi.input_type
|
3494
4760
|
class CxPageFormArgs:
|
3495
4761
|
def __init__(__self__, *,
|
@@ -3515,6 +4781,49 @@ class CxPageFormArgs:
|
|
3515
4781
|
pulumi.set(self, "parameters", value)
|
3516
4782
|
|
3517
4783
|
|
4784
|
+
if not MYPY:
|
4785
|
+
class CxPageFormParameterArgsDict(TypedDict):
|
4786
|
+
advanced_settings: NotRequired[pulumi.Input['CxPageFormParameterAdvancedSettingsArgsDict']]
|
4787
|
+
"""
|
4788
|
+
Hierarchical advanced settings for this parameter. The settings exposed at the lower level overrides the settings exposed at the higher level.
|
4789
|
+
Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
4790
|
+
Structure is documented below.
|
4791
|
+
"""
|
4792
|
+
default_value: NotRequired[pulumi.Input[str]]
|
4793
|
+
"""
|
4794
|
+
The default value of an optional parameter. If the parameter is required, the default value will be ignored.
|
4795
|
+
"""
|
4796
|
+
display_name: NotRequired[pulumi.Input[str]]
|
4797
|
+
"""
|
4798
|
+
The human-readable name of the parameter, unique within the form.
|
4799
|
+
"""
|
4800
|
+
entity_type: NotRequired[pulumi.Input[str]]
|
4801
|
+
"""
|
4802
|
+
The entity type of the parameter.
|
4803
|
+
Format: projects/-/locations/-/agents/-/entityTypes/<System Entity Type ID> for system entity types (for example, projects/-/locations/-/agents/-/entityTypes/sys.date), or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<Entity Type ID> for developer entity types.
|
4804
|
+
"""
|
4805
|
+
fill_behavior: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorArgsDict']]
|
4806
|
+
"""
|
4807
|
+
Defines fill behavior for the parameter.
|
4808
|
+
Structure is documented below.
|
4809
|
+
"""
|
4810
|
+
is_list: NotRequired[pulumi.Input[bool]]
|
4811
|
+
"""
|
4812
|
+
Indicates whether the parameter represents a list of values.
|
4813
|
+
"""
|
4814
|
+
redact: NotRequired[pulumi.Input[bool]]
|
4815
|
+
"""
|
4816
|
+
Indicates whether the parameter content should be redacted in log.
|
4817
|
+
If redaction is enabled, the parameter content will be replaced by parameter name during logging. Note: the parameter content is subject to redaction if either parameter level redaction or entity type level redaction is enabled.
|
4818
|
+
"""
|
4819
|
+
required: NotRequired[pulumi.Input[bool]]
|
4820
|
+
"""
|
4821
|
+
Indicates whether the parameter is required. Optional parameters will not trigger prompts; however, they are filled if the user specifies them.
|
4822
|
+
Required parameters must be filled before form filling concludes.
|
4823
|
+
"""
|
4824
|
+
elif False:
|
4825
|
+
CxPageFormParameterArgsDict: TypeAlias = Mapping[str, Any]
|
4826
|
+
|
3518
4827
|
@pulumi.input_type
|
3519
4828
|
class CxPageFormParameterArgs:
|
3520
4829
|
def __init__(__self__, *,
|
@@ -3662,6 +4971,20 @@ class CxPageFormParameterArgs:
|
|
3662
4971
|
pulumi.set(self, "required", value)
|
3663
4972
|
|
3664
4973
|
|
4974
|
+
if not MYPY:
|
4975
|
+
class CxPageFormParameterAdvancedSettingsArgsDict(TypedDict):
|
4976
|
+
dtmf_settings: NotRequired[pulumi.Input['CxPageFormParameterAdvancedSettingsDtmfSettingsArgsDict']]
|
4977
|
+
"""
|
4978
|
+
Define behaviors for DTMF (dual tone multi frequency). DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Exposed at the following levels:
|
4979
|
+
* Agent level
|
4980
|
+
* Flow level
|
4981
|
+
* Page level
|
4982
|
+
* Parameter level
|
4983
|
+
Structure is documented below.
|
4984
|
+
"""
|
4985
|
+
elif False:
|
4986
|
+
CxPageFormParameterAdvancedSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
4987
|
+
|
3665
4988
|
@pulumi.input_type
|
3666
4989
|
class CxPageFormParameterAdvancedSettingsArgs:
|
3667
4990
|
def __init__(__self__, *,
|
@@ -3695,6 +5018,23 @@ class CxPageFormParameterAdvancedSettingsArgs:
|
|
3695
5018
|
pulumi.set(self, "dtmf_settings", value)
|
3696
5019
|
|
3697
5020
|
|
5021
|
+
if not MYPY:
|
5022
|
+
class CxPageFormParameterAdvancedSettingsDtmfSettingsArgsDict(TypedDict):
|
5023
|
+
enabled: NotRequired[pulumi.Input[bool]]
|
5024
|
+
"""
|
5025
|
+
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).
|
5026
|
+
"""
|
5027
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
5028
|
+
"""
|
5029
|
+
The digit that terminates a DTMF digit sequence.
|
5030
|
+
"""
|
5031
|
+
max_digits: NotRequired[pulumi.Input[int]]
|
5032
|
+
"""
|
5033
|
+
Max length of DTMF digits.
|
5034
|
+
"""
|
5035
|
+
elif False:
|
5036
|
+
CxPageFormParameterAdvancedSettingsDtmfSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
5037
|
+
|
3698
5038
|
@pulumi.input_type
|
3699
5039
|
class CxPageFormParameterAdvancedSettingsDtmfSettingsArgs:
|
3700
5040
|
def __init__(__self__, *,
|
@@ -3750,6 +5090,31 @@ class CxPageFormParameterAdvancedSettingsDtmfSettingsArgs:
|
|
3750
5090
|
pulumi.set(self, "max_digits", value)
|
3751
5091
|
|
3752
5092
|
|
5093
|
+
if not MYPY:
|
5094
|
+
class CxPageFormParameterFillBehaviorArgsDict(TypedDict):
|
5095
|
+
initial_prompt_fulfillment: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgsDict']]
|
5096
|
+
"""
|
5097
|
+
The fulfillment to provide the initial prompt that the agent can present to the user in order to fill the parameter.
|
5098
|
+
Structure is documented below.
|
5099
|
+
"""
|
5100
|
+
reprompt_event_handlers: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerArgsDict']]]]
|
5101
|
+
"""
|
5102
|
+
The handlers for parameter-level events, used to provide reprompt for the parameter or transition to a different page/flow. The supported events are:
|
5103
|
+
* sys.no-match-<N>, where N can be from 1 to 6
|
5104
|
+
* sys.no-match-default
|
5105
|
+
* sys.no-input-<N>, where N can be from 1 to 6
|
5106
|
+
* sys.no-input-default
|
5107
|
+
* sys.invalid-parameter
|
5108
|
+
[initialPromptFulfillment][initialPromptFulfillment] provides the first prompt for the parameter.
|
5109
|
+
If the user's response does not fill the parameter, a no-match/no-input event will be triggered, and the fulfillment associated with the sys.no-match-1/sys.no-input-1 handler (if defined) will be called to provide a prompt. The sys.no-match-2/sys.no-input-2 handler (if defined) will respond to the next no-match/no-input event, and so on.
|
5110
|
+
A sys.no-match-default or sys.no-input-default handler will be used to handle all following no-match/no-input events after all numbered no-match/no-input handlers for the parameter are consumed.
|
5111
|
+
A sys.invalid-parameter handler can be defined to handle the case where the parameter values have been invalidated by webhook. For example, if the user's response fill the parameter, however the parameter was invalidated by webhook, the fulfillment associated with the sys.invalid-parameter handler (if defined) will be called to provide a prompt.
|
5112
|
+
If the event handler for the corresponding event can't be found on the parameter, initialPromptFulfillment will be re-prompted.
|
5113
|
+
Structure is documented below.
|
5114
|
+
"""
|
5115
|
+
elif False:
|
5116
|
+
CxPageFormParameterFillBehaviorArgsDict: TypeAlias = Mapping[str, Any]
|
5117
|
+
|
3753
5118
|
@pulumi.input_type
|
3754
5119
|
class CxPageFormParameterFillBehaviorArgs:
|
3755
5120
|
def __init__(__self__, *,
|
@@ -3806,12 +5171,44 @@ class CxPageFormParameterFillBehaviorArgs:
|
|
3806
5171
|
If the event handler for the corresponding event can't be found on the parameter, initialPromptFulfillment will be re-prompted.
|
3807
5172
|
Structure is documented below.
|
3808
5173
|
"""
|
3809
|
-
return pulumi.get(self, "reprompt_event_handlers")
|
3810
|
-
|
3811
|
-
@reprompt_event_handlers.setter
|
3812
|
-
def reprompt_event_handlers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerArgs']]]]):
|
3813
|
-
pulumi.set(self, "reprompt_event_handlers", value)
|
3814
|
-
|
5174
|
+
return pulumi.get(self, "reprompt_event_handlers")
|
5175
|
+
|
5176
|
+
@reprompt_event_handlers.setter
|
5177
|
+
def reprompt_event_handlers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerArgs']]]]):
|
5178
|
+
pulumi.set(self, "reprompt_event_handlers", value)
|
5179
|
+
|
5180
|
+
|
5181
|
+
if not MYPY:
|
5182
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgsDict(TypedDict):
|
5183
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgsDict']]]]
|
5184
|
+
"""
|
5185
|
+
Conditional cases for this fulfillment.
|
5186
|
+
Structure is documented below.
|
5187
|
+
"""
|
5188
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgsDict']]]]
|
5189
|
+
"""
|
5190
|
+
The list of rich message responses to present to the user.
|
5191
|
+
Structure is documented below.
|
5192
|
+
"""
|
5193
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
5194
|
+
"""
|
5195
|
+
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.
|
5196
|
+
"""
|
5197
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgsDict']]]]
|
5198
|
+
"""
|
5199
|
+
Set parameter values before executing the webhook.
|
5200
|
+
Structure is documented below.
|
5201
|
+
"""
|
5202
|
+
tag: NotRequired[pulumi.Input[str]]
|
5203
|
+
"""
|
5204
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
5205
|
+
"""
|
5206
|
+
webhook: NotRequired[pulumi.Input[str]]
|
5207
|
+
"""
|
5208
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
5209
|
+
"""
|
5210
|
+
elif False:
|
5211
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
3815
5212
|
|
3816
5213
|
@pulumi.input_type
|
3817
5214
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgs:
|
@@ -3922,6 +5319,16 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentArgs:
|
|
3922
5319
|
pulumi.set(self, "webhook", value)
|
3923
5320
|
|
3924
5321
|
|
5322
|
+
if not MYPY:
|
5323
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgsDict(TypedDict):
|
5324
|
+
cases: NotRequired[pulumi.Input[str]]
|
5325
|
+
"""
|
5326
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
5327
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
5328
|
+
"""
|
5329
|
+
elif False:
|
5330
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
5331
|
+
|
3925
5332
|
@pulumi.input_type
|
3926
5333
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgs:
|
3927
5334
|
def __init__(__self__, *,
|
@@ -3947,6 +5354,57 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentConditionalCaseArgs
|
|
3947
5354
|
pulumi.set(self, "cases", value)
|
3948
5355
|
|
3949
5356
|
|
5357
|
+
if not MYPY:
|
5358
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgsDict(TypedDict):
|
5359
|
+
channel: NotRequired[pulumi.Input[str]]
|
5360
|
+
"""
|
5361
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
5362
|
+
"""
|
5363
|
+
conversation_success: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgsDict']]
|
5364
|
+
"""
|
5365
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
5366
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
5367
|
+
You may set this, for example:
|
5368
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
5369
|
+
* In a webhook response when you determine that you handled the customer issue.
|
5370
|
+
Structure is documented below.
|
5371
|
+
"""
|
5372
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgsDict']]
|
5373
|
+
"""
|
5374
|
+
Indicates that the conversation should be handed off to a live agent.
|
5375
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
5376
|
+
You may set this, for example:
|
5377
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
5378
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
5379
|
+
Structure is documented below.
|
5380
|
+
"""
|
5381
|
+
output_audio_text: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgsDict']]
|
5382
|
+
"""
|
5383
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
5384
|
+
Structure is documented below.
|
5385
|
+
"""
|
5386
|
+
payload: NotRequired[pulumi.Input[str]]
|
5387
|
+
"""
|
5388
|
+
A custom, platform-specific payload.
|
5389
|
+
"""
|
5390
|
+
play_audio: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgsDict']]
|
5391
|
+
"""
|
5392
|
+
Specifies an audio clip to be played by the client as part of the response.
|
5393
|
+
Structure is documented below.
|
5394
|
+
"""
|
5395
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgsDict']]
|
5396
|
+
"""
|
5397
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
5398
|
+
Structure is documented below.
|
5399
|
+
"""
|
5400
|
+
text: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgsDict']]
|
5401
|
+
"""
|
5402
|
+
The text response message.
|
5403
|
+
Structure is documented below.
|
5404
|
+
"""
|
5405
|
+
elif False:
|
5406
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
5407
|
+
|
3950
5408
|
@pulumi.input_type
|
3951
5409
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgs:
|
3952
5410
|
def __init__(__self__, *,
|
@@ -4110,6 +5568,15 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageArgs:
|
|
4110
5568
|
pulumi.set(self, "text", value)
|
4111
5569
|
|
4112
5570
|
|
5571
|
+
if not MYPY:
|
5572
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
5573
|
+
metadata: NotRequired[pulumi.Input[str]]
|
5574
|
+
"""
|
5575
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
5576
|
+
"""
|
5577
|
+
elif False:
|
5578
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
5579
|
+
|
4113
5580
|
@pulumi.input_type
|
4114
5581
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversationSuccessArgs:
|
4115
5582
|
def __init__(__self__, *,
|
@@ -4133,6 +5600,15 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageConversation
|
|
4133
5600
|
pulumi.set(self, "metadata", value)
|
4134
5601
|
|
4135
5602
|
|
5603
|
+
if not MYPY:
|
5604
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
5605
|
+
metadata: NotRequired[pulumi.Input[str]]
|
5606
|
+
"""
|
5607
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
5608
|
+
"""
|
5609
|
+
elif False:
|
5610
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
5611
|
+
|
4136
5612
|
@pulumi.input_type
|
4137
5613
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHandoffArgs:
|
4138
5614
|
def __init__(__self__, *,
|
@@ -4156,6 +5632,24 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageLiveAgentHan
|
|
4156
5632
|
pulumi.set(self, "metadata", value)
|
4157
5633
|
|
4158
5634
|
|
5635
|
+
if not MYPY:
|
5636
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
5637
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
5638
|
+
"""
|
5639
|
+
(Output)
|
5640
|
+
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.
|
5641
|
+
"""
|
5642
|
+
ssml: NotRequired[pulumi.Input[str]]
|
5643
|
+
"""
|
5644
|
+
The SSML text to be synthesized. For more information, see SSML.
|
5645
|
+
"""
|
5646
|
+
text: NotRequired[pulumi.Input[str]]
|
5647
|
+
"""
|
5648
|
+
The raw text to be synthesized.
|
5649
|
+
"""
|
5650
|
+
elif False:
|
5651
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
5652
|
+
|
4159
5653
|
@pulumi.input_type
|
4160
5654
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioTextArgs:
|
4161
5655
|
def __init__(__self__, *,
|
@@ -4213,6 +5707,20 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageOutputAudioT
|
|
4213
5707
|
pulumi.set(self, "text", value)
|
4214
5708
|
|
4215
5709
|
|
5710
|
+
if not MYPY:
|
5711
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
5712
|
+
audio_uri: pulumi.Input[str]
|
5713
|
+
"""
|
5714
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
5715
|
+
"""
|
5716
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
5717
|
+
"""
|
5718
|
+
(Output)
|
5719
|
+
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.
|
5720
|
+
"""
|
5721
|
+
elif False:
|
5722
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
5723
|
+
|
4216
5724
|
@pulumi.input_type
|
4217
5725
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArgs:
|
4218
5726
|
def __init__(__self__, *,
|
@@ -4253,6 +5761,15 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessagePlayAudioArg
|
|
4253
5761
|
pulumi.set(self, "allow_playback_interruption", value)
|
4254
5762
|
|
4255
5763
|
|
5764
|
+
if not MYPY:
|
5765
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
5766
|
+
phone_number: pulumi.Input[str]
|
5767
|
+
"""
|
5768
|
+
Transfer the call to a phone number in E.164 format.
|
5769
|
+
"""
|
5770
|
+
elif False:
|
5771
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
5772
|
+
|
4256
5773
|
@pulumi.input_type
|
4257
5774
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTransferCallArgs:
|
4258
5775
|
def __init__(__self__, *,
|
@@ -4275,6 +5792,20 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTelephonyTra
|
|
4275
5792
|
pulumi.set(self, "phone_number", value)
|
4276
5793
|
|
4277
5794
|
|
5795
|
+
if not MYPY:
|
5796
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgsDict(TypedDict):
|
5797
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
5798
|
+
"""
|
5799
|
+
(Output)
|
5800
|
+
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.
|
5801
|
+
"""
|
5802
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5803
|
+
"""
|
5804
|
+
A collection of text responses.
|
5805
|
+
"""
|
5806
|
+
elif False:
|
5807
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
5808
|
+
|
4278
5809
|
@pulumi.input_type
|
4279
5810
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgs:
|
4280
5811
|
def __init__(__self__, *,
|
@@ -4316,6 +5847,19 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentMessageTextArgs:
|
|
4316
5847
|
pulumi.set(self, "texts", value)
|
4317
5848
|
|
4318
5849
|
|
5850
|
+
if not MYPY:
|
5851
|
+
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgsDict(TypedDict):
|
5852
|
+
parameter: NotRequired[pulumi.Input[str]]
|
5853
|
+
"""
|
5854
|
+
Display name of the parameter.
|
5855
|
+
"""
|
5856
|
+
value: NotRequired[pulumi.Input[str]]
|
5857
|
+
"""
|
5858
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
5859
|
+
"""
|
5860
|
+
elif False:
|
5861
|
+
CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
5862
|
+
|
4319
5863
|
@pulumi.input_type
|
4320
5864
|
class CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionArgs:
|
4321
5865
|
def __init__(__self__, *,
|
@@ -4355,6 +5899,35 @@ class CxPageFormParameterFillBehaviorInitialPromptFulfillmentSetParameterActionA
|
|
4355
5899
|
pulumi.set(self, "value", value)
|
4356
5900
|
|
4357
5901
|
|
5902
|
+
if not MYPY:
|
5903
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerArgsDict(TypedDict):
|
5904
|
+
event: NotRequired[pulumi.Input[str]]
|
5905
|
+
"""
|
5906
|
+
The name of the event to handle.
|
5907
|
+
"""
|
5908
|
+
name: NotRequired[pulumi.Input[str]]
|
5909
|
+
"""
|
5910
|
+
(Output)
|
5911
|
+
The unique identifier of this event handler.
|
5912
|
+
"""
|
5913
|
+
target_flow: NotRequired[pulumi.Input[str]]
|
5914
|
+
"""
|
5915
|
+
The target flow to transition to.
|
5916
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
5917
|
+
"""
|
5918
|
+
target_page: NotRequired[pulumi.Input[str]]
|
5919
|
+
"""
|
5920
|
+
The target page to transition to.
|
5921
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
5922
|
+
"""
|
5923
|
+
trigger_fulfillment: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgsDict']]
|
5924
|
+
"""
|
5925
|
+
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.
|
5926
|
+
Structure is documented below.
|
5927
|
+
"""
|
5928
|
+
elif False:
|
5929
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerArgsDict: TypeAlias = Mapping[str, Any]
|
5930
|
+
|
4358
5931
|
@pulumi.input_type
|
4359
5932
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerArgs:
|
4360
5933
|
def __init__(__self__, *,
|
@@ -4450,6 +6023,38 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerArgs:
|
|
4450
6023
|
pulumi.set(self, "trigger_fulfillment", value)
|
4451
6024
|
|
4452
6025
|
|
6026
|
+
if not MYPY:
|
6027
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgsDict(TypedDict):
|
6028
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgsDict']]]]
|
6029
|
+
"""
|
6030
|
+
Conditional cases for this fulfillment.
|
6031
|
+
Structure is documented below.
|
6032
|
+
"""
|
6033
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgsDict']]]]
|
6034
|
+
"""
|
6035
|
+
The list of rich message responses to present to the user.
|
6036
|
+
Structure is documented below.
|
6037
|
+
"""
|
6038
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
6039
|
+
"""
|
6040
|
+
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.
|
6041
|
+
"""
|
6042
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgsDict']]]]
|
6043
|
+
"""
|
6044
|
+
Set parameter values before executing the webhook.
|
6045
|
+
Structure is documented below.
|
6046
|
+
"""
|
6047
|
+
tag: NotRequired[pulumi.Input[str]]
|
6048
|
+
"""
|
6049
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
6050
|
+
"""
|
6051
|
+
webhook: NotRequired[pulumi.Input[str]]
|
6052
|
+
"""
|
6053
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
6054
|
+
"""
|
6055
|
+
elif False:
|
6056
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
6057
|
+
|
4453
6058
|
@pulumi.input_type
|
4454
6059
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgs:
|
4455
6060
|
def __init__(__self__, *,
|
@@ -4559,6 +6164,16 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentArgs:
|
|
4559
6164
|
pulumi.set(self, "webhook", value)
|
4560
6165
|
|
4561
6166
|
|
6167
|
+
if not MYPY:
|
6168
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgsDict(TypedDict):
|
6169
|
+
cases: NotRequired[pulumi.Input[str]]
|
6170
|
+
"""
|
6171
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
6172
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
6173
|
+
"""
|
6174
|
+
elif False:
|
6175
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
6176
|
+
|
4562
6177
|
@pulumi.input_type
|
4563
6178
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentConditionalCaseArgs:
|
4564
6179
|
def __init__(__self__, *,
|
@@ -4584,6 +6199,57 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentCondi
|
|
4584
6199
|
pulumi.set(self, "cases", value)
|
4585
6200
|
|
4586
6201
|
|
6202
|
+
if not MYPY:
|
6203
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgsDict(TypedDict):
|
6204
|
+
channel: NotRequired[pulumi.Input[str]]
|
6205
|
+
"""
|
6206
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
6207
|
+
"""
|
6208
|
+
conversation_success: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict']]
|
6209
|
+
"""
|
6210
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
6211
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
6212
|
+
You may set this, for example:
|
6213
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
6214
|
+
* In a webhook response when you determine that you handled the customer issue.
|
6215
|
+
Structure is documented below.
|
6216
|
+
"""
|
6217
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict']]
|
6218
|
+
"""
|
6219
|
+
Indicates that the conversation should be handed off to a live agent.
|
6220
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
6221
|
+
You may set this, for example:
|
6222
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
6223
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
6224
|
+
Structure is documented below.
|
6225
|
+
"""
|
6226
|
+
output_audio_text: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict']]
|
6227
|
+
"""
|
6228
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
6229
|
+
Structure is documented below.
|
6230
|
+
"""
|
6231
|
+
payload: NotRequired[pulumi.Input[str]]
|
6232
|
+
"""
|
6233
|
+
A custom, platform-specific payload.
|
6234
|
+
"""
|
6235
|
+
play_audio: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict']]
|
6236
|
+
"""
|
6237
|
+
Specifies an audio clip to be played by the client as part of the response.
|
6238
|
+
Structure is documented below.
|
6239
|
+
"""
|
6240
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict']]
|
6241
|
+
"""
|
6242
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
6243
|
+
Structure is documented below.
|
6244
|
+
"""
|
6245
|
+
text: NotRequired[pulumi.Input['CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgsDict']]
|
6246
|
+
"""
|
6247
|
+
The text response message.
|
6248
|
+
Structure is documented below.
|
6249
|
+
"""
|
6250
|
+
elif False:
|
6251
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
6252
|
+
|
4587
6253
|
@pulumi.input_type
|
4588
6254
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageArgs:
|
4589
6255
|
def __init__(__self__, *,
|
@@ -4747,6 +6413,15 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4747
6413
|
pulumi.set(self, "text", value)
|
4748
6414
|
|
4749
6415
|
|
6416
|
+
if not MYPY:
|
6417
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
6418
|
+
metadata: NotRequired[pulumi.Input[str]]
|
6419
|
+
"""
|
6420
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
6421
|
+
"""
|
6422
|
+
elif False:
|
6423
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
6424
|
+
|
4750
6425
|
@pulumi.input_type
|
4751
6426
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageConversationSuccessArgs:
|
4752
6427
|
def __init__(__self__, *,
|
@@ -4770,6 +6445,15 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4770
6445
|
pulumi.set(self, "metadata", value)
|
4771
6446
|
|
4772
6447
|
|
6448
|
+
if not MYPY:
|
6449
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
6450
|
+
metadata: NotRequired[pulumi.Input[str]]
|
6451
|
+
"""
|
6452
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
6453
|
+
"""
|
6454
|
+
elif False:
|
6455
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
6456
|
+
|
4773
6457
|
@pulumi.input_type
|
4774
6458
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
4775
6459
|
def __init__(__self__, *,
|
@@ -4793,6 +6477,24 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4793
6477
|
pulumi.set(self, "metadata", value)
|
4794
6478
|
|
4795
6479
|
|
6480
|
+
if not MYPY:
|
6481
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
6482
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
6483
|
+
"""
|
6484
|
+
(Output)
|
6485
|
+
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.
|
6486
|
+
"""
|
6487
|
+
ssml: NotRequired[pulumi.Input[str]]
|
6488
|
+
"""
|
6489
|
+
The SSML text to be synthesized. For more information, see SSML.
|
6490
|
+
"""
|
6491
|
+
text: NotRequired[pulumi.Input[str]]
|
6492
|
+
"""
|
6493
|
+
The raw text to be synthesized.
|
6494
|
+
"""
|
6495
|
+
elif False:
|
6496
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
6497
|
+
|
4796
6498
|
@pulumi.input_type
|
4797
6499
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageOutputAudioTextArgs:
|
4798
6500
|
def __init__(__self__, *,
|
@@ -4850,6 +6552,20 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4850
6552
|
pulumi.set(self, "text", value)
|
4851
6553
|
|
4852
6554
|
|
6555
|
+
if not MYPY:
|
6556
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
6557
|
+
audio_uri: pulumi.Input[str]
|
6558
|
+
"""
|
6559
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
6560
|
+
"""
|
6561
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
6562
|
+
"""
|
6563
|
+
(Output)
|
6564
|
+
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.
|
6565
|
+
"""
|
6566
|
+
elif False:
|
6567
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
6568
|
+
|
4853
6569
|
@pulumi.input_type
|
4854
6570
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessagePlayAudioArgs:
|
4855
6571
|
def __init__(__self__, *,
|
@@ -4890,6 +6606,15 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4890
6606
|
pulumi.set(self, "allow_playback_interruption", value)
|
4891
6607
|
|
4892
6608
|
|
6609
|
+
if not MYPY:
|
6610
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
6611
|
+
phone_number: pulumi.Input[str]
|
6612
|
+
"""
|
6613
|
+
Transfer the call to a phone number in E.164 format.
|
6614
|
+
"""
|
6615
|
+
elif False:
|
6616
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
6617
|
+
|
4893
6618
|
@pulumi.input_type
|
4894
6619
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
4895
6620
|
def __init__(__self__, *,
|
@@ -4912,6 +6637,20 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4912
6637
|
pulumi.set(self, "phone_number", value)
|
4913
6638
|
|
4914
6639
|
|
6640
|
+
if not MYPY:
|
6641
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgsDict(TypedDict):
|
6642
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
6643
|
+
"""
|
6644
|
+
(Output)
|
6645
|
+
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.
|
6646
|
+
"""
|
6647
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
6648
|
+
"""
|
6649
|
+
A collection of text responses.
|
6650
|
+
"""
|
6651
|
+
elif False:
|
6652
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
6653
|
+
|
4915
6654
|
@pulumi.input_type
|
4916
6655
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessageTextArgs:
|
4917
6656
|
def __init__(__self__, *,
|
@@ -4953,6 +6692,19 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentMessa
|
|
4953
6692
|
pulumi.set(self, "texts", value)
|
4954
6693
|
|
4955
6694
|
|
6695
|
+
if not MYPY:
|
6696
|
+
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgsDict(TypedDict):
|
6697
|
+
parameter: NotRequired[pulumi.Input[str]]
|
6698
|
+
"""
|
6699
|
+
Display name of the parameter.
|
6700
|
+
"""
|
6701
|
+
value: NotRequired[pulumi.Input[str]]
|
6702
|
+
"""
|
6703
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
6704
|
+
"""
|
6705
|
+
elif False:
|
6706
|
+
CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
6707
|
+
|
4956
6708
|
@pulumi.input_type
|
4957
6709
|
class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetParameterActionArgs:
|
4958
6710
|
def __init__(__self__, *,
|
@@ -4983,14 +6735,49 @@ class CxPageFormParameterFillBehaviorRepromptEventHandlerTriggerFulfillmentSetPa
|
|
4983
6735
|
@pulumi.getter
|
4984
6736
|
def value(self) -> Optional[pulumi.Input[str]]:
|
4985
6737
|
"""
|
4986
|
-
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
6738
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
6739
|
+
"""
|
6740
|
+
return pulumi.get(self, "value")
|
6741
|
+
|
6742
|
+
@value.setter
|
6743
|
+
def value(self, value: Optional[pulumi.Input[str]]):
|
6744
|
+
pulumi.set(self, "value", value)
|
6745
|
+
|
6746
|
+
|
6747
|
+
if not MYPY:
|
6748
|
+
class CxPageTransitionRouteArgsDict(TypedDict):
|
6749
|
+
condition: NotRequired[pulumi.Input[str]]
|
6750
|
+
"""
|
6751
|
+
The condition to evaluate against form parameters or session parameters.
|
6752
|
+
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.
|
6753
|
+
"""
|
6754
|
+
intent: NotRequired[pulumi.Input[str]]
|
6755
|
+
"""
|
6756
|
+
The unique identifier of an Intent.
|
6757
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>. 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.
|
6758
|
+
"""
|
6759
|
+
name: NotRequired[pulumi.Input[str]]
|
6760
|
+
"""
|
6761
|
+
(Output)
|
6762
|
+
The unique identifier of this transition route.
|
6763
|
+
"""
|
6764
|
+
target_flow: NotRequired[pulumi.Input[str]]
|
6765
|
+
"""
|
6766
|
+
The target flow to transition to.
|
6767
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
6768
|
+
"""
|
6769
|
+
target_page: NotRequired[pulumi.Input[str]]
|
4987
6770
|
"""
|
4988
|
-
|
4989
|
-
|
4990
|
-
|
4991
|
-
|
4992
|
-
|
4993
|
-
|
6771
|
+
The target page to transition to.
|
6772
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
6773
|
+
"""
|
6774
|
+
trigger_fulfillment: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentArgsDict']]
|
6775
|
+
"""
|
6776
|
+
The fulfillment to call when the condition is satisfied. At least one of triggerFulfillment and target must be specified. When both are defined, triggerFulfillment is executed first.
|
6777
|
+
Structure is documented below.
|
6778
|
+
"""
|
6779
|
+
elif False:
|
6780
|
+
CxPageTransitionRouteArgsDict: TypeAlias = Mapping[str, Any]
|
4994
6781
|
|
4995
6782
|
@pulumi.input_type
|
4996
6783
|
class CxPageTransitionRouteArgs:
|
@@ -5107,6 +6894,38 @@ class CxPageTransitionRouteArgs:
|
|
5107
6894
|
pulumi.set(self, "trigger_fulfillment", value)
|
5108
6895
|
|
5109
6896
|
|
6897
|
+
if not MYPY:
|
6898
|
+
class CxPageTransitionRouteTriggerFulfillmentArgsDict(TypedDict):
|
6899
|
+
conditional_cases: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgsDict']]]]
|
6900
|
+
"""
|
6901
|
+
Conditional cases for this fulfillment.
|
6902
|
+
Structure is documented below.
|
6903
|
+
"""
|
6904
|
+
messages: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageArgsDict']]]]
|
6905
|
+
"""
|
6906
|
+
The list of rich message responses to present to the user.
|
6907
|
+
Structure is documented below.
|
6908
|
+
"""
|
6909
|
+
return_partial_responses: NotRequired[pulumi.Input[bool]]
|
6910
|
+
"""
|
6911
|
+
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.
|
6912
|
+
"""
|
6913
|
+
set_parameter_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgsDict']]]]
|
6914
|
+
"""
|
6915
|
+
Set parameter values before executing the webhook.
|
6916
|
+
Structure is documented below.
|
6917
|
+
"""
|
6918
|
+
tag: NotRequired[pulumi.Input[str]]
|
6919
|
+
"""
|
6920
|
+
The tag used by the webhook to identify which fulfillment is being called. This field is required if webhook is specified.
|
6921
|
+
"""
|
6922
|
+
webhook: NotRequired[pulumi.Input[str]]
|
6923
|
+
"""
|
6924
|
+
The webhook to call. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/webhooks/<Webhook ID>.
|
6925
|
+
"""
|
6926
|
+
elif False:
|
6927
|
+
CxPageTransitionRouteTriggerFulfillmentArgsDict: TypeAlias = Mapping[str, Any]
|
6928
|
+
|
5110
6929
|
@pulumi.input_type
|
5111
6930
|
class CxPageTransitionRouteTriggerFulfillmentArgs:
|
5112
6931
|
def __init__(__self__, *,
|
@@ -5216,6 +7035,16 @@ class CxPageTransitionRouteTriggerFulfillmentArgs:
|
|
5216
7035
|
pulumi.set(self, "webhook", value)
|
5217
7036
|
|
5218
7037
|
|
7038
|
+
if not MYPY:
|
7039
|
+
class CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgsDict(TypedDict):
|
7040
|
+
cases: NotRequired[pulumi.Input[str]]
|
7041
|
+
"""
|
7042
|
+
A JSON encoded list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
|
7043
|
+
See [Case](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/Fulfillment#case) for the schema.
|
7044
|
+
"""
|
7045
|
+
elif False:
|
7046
|
+
CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgsDict: TypeAlias = Mapping[str, Any]
|
7047
|
+
|
5219
7048
|
@pulumi.input_type
|
5220
7049
|
class CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgs:
|
5221
7050
|
def __init__(__self__, *,
|
@@ -5241,6 +7070,57 @@ class CxPageTransitionRouteTriggerFulfillmentConditionalCaseArgs:
|
|
5241
7070
|
pulumi.set(self, "cases", value)
|
5242
7071
|
|
5243
7072
|
|
7073
|
+
if not MYPY:
|
7074
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageArgsDict(TypedDict):
|
7075
|
+
channel: NotRequired[pulumi.Input[str]]
|
7076
|
+
"""
|
7077
|
+
The channel which the response is associated with. Clients can specify the channel via QueryParameters.channel, and only associated channel response will be returned.
|
7078
|
+
"""
|
7079
|
+
conversation_success: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict']]
|
7080
|
+
"""
|
7081
|
+
Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about.
|
7082
|
+
Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess.
|
7083
|
+
You may set this, for example:
|
7084
|
+
* In the entryFulfillment of a Page if entering the page indicates that the conversation succeeded.
|
7085
|
+
* In a webhook response when you determine that you handled the customer issue.
|
7086
|
+
Structure is documented below.
|
7087
|
+
"""
|
7088
|
+
live_agent_handoff: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict']]
|
7089
|
+
"""
|
7090
|
+
Indicates that the conversation should be handed off to a live agent.
|
7091
|
+
Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures.
|
7092
|
+
You may set this, for example:
|
7093
|
+
* In the entryFulfillment of a Page if entering the page indicates something went extremely wrong in the conversation.
|
7094
|
+
* In a webhook response when you determine that the customer issue can only be handled by a human.
|
7095
|
+
Structure is documented below.
|
7096
|
+
"""
|
7097
|
+
output_audio_text: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict']]
|
7098
|
+
"""
|
7099
|
+
A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.
|
7100
|
+
Structure is documented below.
|
7101
|
+
"""
|
7102
|
+
payload: NotRequired[pulumi.Input[str]]
|
7103
|
+
"""
|
7104
|
+
A custom, platform-specific payload.
|
7105
|
+
"""
|
7106
|
+
play_audio: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict']]
|
7107
|
+
"""
|
7108
|
+
Specifies an audio clip to be played by the client as part of the response.
|
7109
|
+
Structure is documented below.
|
7110
|
+
"""
|
7111
|
+
telephony_transfer_call: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict']]
|
7112
|
+
"""
|
7113
|
+
Represents the signal that telles the client to transfer the phone call connected to the agent to a third-party endpoint.
|
7114
|
+
Structure is documented below.
|
7115
|
+
"""
|
7116
|
+
text: NotRequired[pulumi.Input['CxPageTransitionRouteTriggerFulfillmentMessageTextArgsDict']]
|
7117
|
+
"""
|
7118
|
+
The text response message.
|
7119
|
+
Structure is documented below.
|
7120
|
+
"""
|
7121
|
+
elif False:
|
7122
|
+
CxPageTransitionRouteTriggerFulfillmentMessageArgsDict: TypeAlias = Mapping[str, Any]
|
7123
|
+
|
5244
7124
|
@pulumi.input_type
|
5245
7125
|
class CxPageTransitionRouteTriggerFulfillmentMessageArgs:
|
5246
7126
|
def __init__(__self__, *,
|
@@ -5404,6 +7284,15 @@ class CxPageTransitionRouteTriggerFulfillmentMessageArgs:
|
|
5404
7284
|
pulumi.set(self, "text", value)
|
5405
7285
|
|
5406
7286
|
|
7287
|
+
if not MYPY:
|
7288
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict(TypedDict):
|
7289
|
+
metadata: NotRequired[pulumi.Input[str]]
|
7290
|
+
"""
|
7291
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
7292
|
+
"""
|
7293
|
+
elif False:
|
7294
|
+
CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgsDict: TypeAlias = Mapping[str, Any]
|
7295
|
+
|
5407
7296
|
@pulumi.input_type
|
5408
7297
|
class CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs:
|
5409
7298
|
def __init__(__self__, *,
|
@@ -5427,6 +7316,15 @@ class CxPageTransitionRouteTriggerFulfillmentMessageConversationSuccessArgs:
|
|
5427
7316
|
pulumi.set(self, "metadata", value)
|
5428
7317
|
|
5429
7318
|
|
7319
|
+
if not MYPY:
|
7320
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict(TypedDict):
|
7321
|
+
metadata: NotRequired[pulumi.Input[str]]
|
7322
|
+
"""
|
7323
|
+
Custom metadata. Dialogflow doesn't impose any structure on this.
|
7324
|
+
"""
|
7325
|
+
elif False:
|
7326
|
+
CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgsDict: TypeAlias = Mapping[str, Any]
|
7327
|
+
|
5430
7328
|
@pulumi.input_type
|
5431
7329
|
class CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
5432
7330
|
def __init__(__self__, *,
|
@@ -5450,6 +7348,24 @@ class CxPageTransitionRouteTriggerFulfillmentMessageLiveAgentHandoffArgs:
|
|
5450
7348
|
pulumi.set(self, "metadata", value)
|
5451
7349
|
|
5452
7350
|
|
7351
|
+
if not MYPY:
|
7352
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict(TypedDict):
|
7353
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
7354
|
+
"""
|
7355
|
+
(Output)
|
7356
|
+
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.
|
7357
|
+
"""
|
7358
|
+
ssml: NotRequired[pulumi.Input[str]]
|
7359
|
+
"""
|
7360
|
+
The SSML text to be synthesized. For more information, see SSML.
|
7361
|
+
"""
|
7362
|
+
text: NotRequired[pulumi.Input[str]]
|
7363
|
+
"""
|
7364
|
+
The raw text to be synthesized.
|
7365
|
+
"""
|
7366
|
+
elif False:
|
7367
|
+
CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgsDict: TypeAlias = Mapping[str, Any]
|
7368
|
+
|
5453
7369
|
@pulumi.input_type
|
5454
7370
|
class CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs:
|
5455
7371
|
def __init__(__self__, *,
|
@@ -5507,6 +7423,20 @@ class CxPageTransitionRouteTriggerFulfillmentMessageOutputAudioTextArgs:
|
|
5507
7423
|
pulumi.set(self, "text", value)
|
5508
7424
|
|
5509
7425
|
|
7426
|
+
if not MYPY:
|
7427
|
+
class CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict(TypedDict):
|
7428
|
+
audio_uri: pulumi.Input[str]
|
7429
|
+
"""
|
7430
|
+
URI of the audio clip. Dialogflow does not impose any validation on this value. It is specific to the client that reads it.
|
7431
|
+
"""
|
7432
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
7433
|
+
"""
|
7434
|
+
(Output)
|
7435
|
+
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.
|
7436
|
+
"""
|
7437
|
+
elif False:
|
7438
|
+
CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgsDict: TypeAlias = Mapping[str, Any]
|
7439
|
+
|
5510
7440
|
@pulumi.input_type
|
5511
7441
|
class CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgs:
|
5512
7442
|
def __init__(__self__, *,
|
@@ -5547,6 +7477,15 @@ class CxPageTransitionRouteTriggerFulfillmentMessagePlayAudioArgs:
|
|
5547
7477
|
pulumi.set(self, "allow_playback_interruption", value)
|
5548
7478
|
|
5549
7479
|
|
7480
|
+
if not MYPY:
|
7481
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict(TypedDict):
|
7482
|
+
phone_number: pulumi.Input[str]
|
7483
|
+
"""
|
7484
|
+
Transfer the call to a phone number in E.164 format.
|
7485
|
+
"""
|
7486
|
+
elif False:
|
7487
|
+
CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgsDict: TypeAlias = Mapping[str, Any]
|
7488
|
+
|
5550
7489
|
@pulumi.input_type
|
5551
7490
|
class CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
5552
7491
|
def __init__(__self__, *,
|
@@ -5569,6 +7508,20 @@ class CxPageTransitionRouteTriggerFulfillmentMessageTelephonyTransferCallArgs:
|
|
5569
7508
|
pulumi.set(self, "phone_number", value)
|
5570
7509
|
|
5571
7510
|
|
7511
|
+
if not MYPY:
|
7512
|
+
class CxPageTransitionRouteTriggerFulfillmentMessageTextArgsDict(TypedDict):
|
7513
|
+
allow_playback_interruption: NotRequired[pulumi.Input[bool]]
|
7514
|
+
"""
|
7515
|
+
(Output)
|
7516
|
+
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.
|
7517
|
+
"""
|
7518
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
7519
|
+
"""
|
7520
|
+
A collection of text responses.
|
7521
|
+
"""
|
7522
|
+
elif False:
|
7523
|
+
CxPageTransitionRouteTriggerFulfillmentMessageTextArgsDict: TypeAlias = Mapping[str, Any]
|
7524
|
+
|
5572
7525
|
@pulumi.input_type
|
5573
7526
|
class CxPageTransitionRouteTriggerFulfillmentMessageTextArgs:
|
5574
7527
|
def __init__(__self__, *,
|
@@ -5610,6 +7563,19 @@ class CxPageTransitionRouteTriggerFulfillmentMessageTextArgs:
|
|
5610
7563
|
pulumi.set(self, "texts", value)
|
5611
7564
|
|
5612
7565
|
|
7566
|
+
if not MYPY:
|
7567
|
+
class CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgsDict(TypedDict):
|
7568
|
+
parameter: NotRequired[pulumi.Input[str]]
|
7569
|
+
"""
|
7570
|
+
Display name of the parameter.
|
7571
|
+
"""
|
7572
|
+
value: NotRequired[pulumi.Input[str]]
|
7573
|
+
"""
|
7574
|
+
The new JSON-encoded value of the parameter. A null value clears the parameter.
|
7575
|
+
"""
|
7576
|
+
elif False:
|
7577
|
+
CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgsDict: TypeAlias = Mapping[str, Any]
|
7578
|
+
|
5613
7579
|
@pulumi.input_type
|
5614
7580
|
class CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgs:
|
5615
7581
|
def __init__(__self__, *,
|
@@ -5649,6 +7615,31 @@ class CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgs:
|
|
5649
7615
|
pulumi.set(self, "value", value)
|
5650
7616
|
|
5651
7617
|
|
7618
|
+
if not MYPY:
|
7619
|
+
class CxSecuritySettingsAudioExportSettingsArgsDict(TypedDict):
|
7620
|
+
audio_export_pattern: NotRequired[pulumi.Input[str]]
|
7621
|
+
"""
|
7622
|
+
Filename pattern for exported audio.
|
7623
|
+
"""
|
7624
|
+
audio_format: NotRequired[pulumi.Input[str]]
|
7625
|
+
"""
|
7626
|
+
File format for exported audio file. Currently only in telephony recordings.
|
7627
|
+
* MULAW: G.711 mu-law PCM with 8kHz sample rate.
|
7628
|
+
* MP3: MP3 file format.
|
7629
|
+
* OGG: OGG Vorbis.
|
7630
|
+
Possible values are: `MULAW`, `MP3`, `OGG`.
|
7631
|
+
"""
|
7632
|
+
enable_audio_redaction: NotRequired[pulumi.Input[bool]]
|
7633
|
+
"""
|
7634
|
+
Enable audio redaction if it is true.
|
7635
|
+
"""
|
7636
|
+
gcs_bucket: NotRequired[pulumi.Input[str]]
|
7637
|
+
"""
|
7638
|
+
Cloud Storage bucket to export audio record to. Setting this field would grant the Storage Object Creator role to the Dialogflow Service Agent. API caller that tries to modify this field should have the permission of storage.buckets.setIamPolicy.
|
7639
|
+
"""
|
7640
|
+
elif False:
|
7641
|
+
CxSecuritySettingsAudioExportSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
7642
|
+
|
5652
7643
|
@pulumi.input_type
|
5653
7644
|
class CxSecuritySettingsAudioExportSettingsArgs:
|
5654
7645
|
def __init__(__self__, *,
|
@@ -5728,6 +7719,15 @@ class CxSecuritySettingsAudioExportSettingsArgs:
|
|
5728
7719
|
pulumi.set(self, "gcs_bucket", value)
|
5729
7720
|
|
5730
7721
|
|
7722
|
+
if not MYPY:
|
7723
|
+
class CxSecuritySettingsInsightsExportSettingsArgsDict(TypedDict):
|
7724
|
+
enable_insights_export: pulumi.Input[bool]
|
7725
|
+
"""
|
7726
|
+
If enabled, we will automatically exports conversations to Insights and Insights runs its analyzers.
|
7727
|
+
"""
|
7728
|
+
elif False:
|
7729
|
+
CxSecuritySettingsInsightsExportSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
7730
|
+
|
5731
7731
|
@pulumi.input_type
|
5732
7732
|
class CxSecuritySettingsInsightsExportSettingsArgs:
|
5733
7733
|
def __init__(__self__, *,
|
@@ -5750,6 +7750,36 @@ class CxSecuritySettingsInsightsExportSettingsArgs:
|
|
5750
7750
|
pulumi.set(self, "enable_insights_export", value)
|
5751
7751
|
|
5752
7752
|
|
7753
|
+
if not MYPY:
|
7754
|
+
class CxTestCaseLastTestResultArgsDict(TypedDict):
|
7755
|
+
conversation_turns: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxTestCaseLastTestResultConversationTurnArgsDict']]]]
|
7756
|
+
"""
|
7757
|
+
The conversation turns uttered during the test case replay in chronological order.
|
7758
|
+
Structure is documented below.
|
7759
|
+
"""
|
7760
|
+
environment: NotRequired[pulumi.Input[str]]
|
7761
|
+
"""
|
7762
|
+
Environment where the test was run. If not set, it indicates the draft environment.
|
7763
|
+
"""
|
7764
|
+
name: NotRequired[pulumi.Input[str]]
|
7765
|
+
"""
|
7766
|
+
The unique identifier of the page.
|
7767
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
7768
|
+
"""
|
7769
|
+
test_result: NotRequired[pulumi.Input[str]]
|
7770
|
+
"""
|
7771
|
+
Whether the test case passed in the agent environment.
|
7772
|
+
* PASSED: The test passed.
|
7773
|
+
* FAILED: The test did not pass.
|
7774
|
+
Possible values are: `PASSED`, `FAILED`.
|
7775
|
+
"""
|
7776
|
+
test_time: NotRequired[pulumi.Input[str]]
|
7777
|
+
"""
|
7778
|
+
The time that the test was run. A timestamp in RFC3339 text format.
|
7779
|
+
"""
|
7780
|
+
elif False:
|
7781
|
+
CxTestCaseLastTestResultArgsDict: TypeAlias = Mapping[str, Any]
|
7782
|
+
|
5753
7783
|
@pulumi.input_type
|
5754
7784
|
class CxTestCaseLastTestResultArgs:
|
5755
7785
|
def __init__(__self__, *,
|
@@ -5847,6 +7877,21 @@ class CxTestCaseLastTestResultArgs:
|
|
5847
7877
|
pulumi.set(self, "test_time", value)
|
5848
7878
|
|
5849
7879
|
|
7880
|
+
if not MYPY:
|
7881
|
+
class CxTestCaseLastTestResultConversationTurnArgsDict(TypedDict):
|
7882
|
+
user_input: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnUserInputArgsDict']]
|
7883
|
+
"""
|
7884
|
+
The user input.
|
7885
|
+
Structure is documented below.
|
7886
|
+
"""
|
7887
|
+
virtual_agent_output: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgsDict']]
|
7888
|
+
"""
|
7889
|
+
The virtual agent output.
|
7890
|
+
Structure is documented below.
|
7891
|
+
"""
|
7892
|
+
elif False:
|
7893
|
+
CxTestCaseLastTestResultConversationTurnArgsDict: TypeAlias = Mapping[str, Any]
|
7894
|
+
|
5850
7895
|
@pulumi.input_type
|
5851
7896
|
class CxTestCaseLastTestResultConversationTurnArgs:
|
5852
7897
|
def __init__(__self__, *,
|
@@ -5890,6 +7935,28 @@ class CxTestCaseLastTestResultConversationTurnArgs:
|
|
5890
7935
|
pulumi.set(self, "virtual_agent_output", value)
|
5891
7936
|
|
5892
7937
|
|
7938
|
+
if not MYPY:
|
7939
|
+
class CxTestCaseLastTestResultConversationTurnUserInputArgsDict(TypedDict):
|
7940
|
+
enable_sentiment_analysis: NotRequired[pulumi.Input[bool]]
|
7941
|
+
"""
|
7942
|
+
Whether sentiment analysis is enabled.
|
7943
|
+
"""
|
7944
|
+
injected_parameters: NotRequired[pulumi.Input[str]]
|
7945
|
+
"""
|
7946
|
+
Parameters that need to be injected into the conversation during intent detection.
|
7947
|
+
"""
|
7948
|
+
input: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnUserInputInputArgsDict']]
|
7949
|
+
"""
|
7950
|
+
User input. Supports text input, event input, dtmf input in the test case.
|
7951
|
+
Structure is documented below.
|
7952
|
+
"""
|
7953
|
+
is_webhook_enabled: NotRequired[pulumi.Input[bool]]
|
7954
|
+
"""
|
7955
|
+
If webhooks should be allowed to trigger in response to the user utterance. Often if parameters are injected, webhooks should not be enabled.
|
7956
|
+
"""
|
7957
|
+
elif False:
|
7958
|
+
CxTestCaseLastTestResultConversationTurnUserInputArgsDict: TypeAlias = Mapping[str, Any]
|
7959
|
+
|
5893
7960
|
@pulumi.input_type
|
5894
7961
|
class CxTestCaseLastTestResultConversationTurnUserInputArgs:
|
5895
7962
|
def __init__(__self__, *,
|
@@ -5963,6 +8030,31 @@ class CxTestCaseLastTestResultConversationTurnUserInputArgs:
|
|
5963
8030
|
pulumi.set(self, "is_webhook_enabled", value)
|
5964
8031
|
|
5965
8032
|
|
8033
|
+
if not MYPY:
|
8034
|
+
class CxTestCaseLastTestResultConversationTurnUserInputInputArgsDict(TypedDict):
|
8035
|
+
dtmf: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgsDict']]
|
8036
|
+
"""
|
8037
|
+
The DTMF event to be handled.
|
8038
|
+
Structure is documented below.
|
8039
|
+
"""
|
8040
|
+
event: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnUserInputInputEventArgsDict']]
|
8041
|
+
"""
|
8042
|
+
The event to be triggered.
|
8043
|
+
Structure is documented below.
|
8044
|
+
"""
|
8045
|
+
language_code: NotRequired[pulumi.Input[str]]
|
8046
|
+
"""
|
8047
|
+
The language of the input. See [Language Support](https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list of the currently supported language codes.
|
8048
|
+
Note that queries in the same session do not necessarily need to specify the same language.
|
8049
|
+
"""
|
8050
|
+
text: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnUserInputInputTextArgsDict']]
|
8051
|
+
"""
|
8052
|
+
The natural language text to be processed.
|
8053
|
+
Structure is documented below.
|
8054
|
+
"""
|
8055
|
+
elif False:
|
8056
|
+
CxTestCaseLastTestResultConversationTurnUserInputInputArgsDict: TypeAlias = Mapping[str, Any]
|
8057
|
+
|
5966
8058
|
@pulumi.input_type
|
5967
8059
|
class CxTestCaseLastTestResultConversationTurnUserInputInputArgs:
|
5968
8060
|
def __init__(__self__, *,
|
@@ -6042,6 +8134,19 @@ class CxTestCaseLastTestResultConversationTurnUserInputInputArgs:
|
|
6042
8134
|
pulumi.set(self, "text", value)
|
6043
8135
|
|
6044
8136
|
|
8137
|
+
if not MYPY:
|
8138
|
+
class CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgsDict(TypedDict):
|
8139
|
+
digits: NotRequired[pulumi.Input[str]]
|
8140
|
+
"""
|
8141
|
+
The dtmf digits.
|
8142
|
+
"""
|
8143
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
8144
|
+
"""
|
8145
|
+
The finish digit (if any).
|
8146
|
+
"""
|
8147
|
+
elif False:
|
8148
|
+
CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgsDict: TypeAlias = Mapping[str, Any]
|
8149
|
+
|
6045
8150
|
@pulumi.input_type
|
6046
8151
|
class CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgs:
|
6047
8152
|
def __init__(__self__, *,
|
@@ -6081,6 +8186,15 @@ class CxTestCaseLastTestResultConversationTurnUserInputInputDtmfArgs:
|
|
6081
8186
|
pulumi.set(self, "finish_digit", value)
|
6082
8187
|
|
6083
8188
|
|
8189
|
+
if not MYPY:
|
8190
|
+
class CxTestCaseLastTestResultConversationTurnUserInputInputEventArgsDict(TypedDict):
|
8191
|
+
event: pulumi.Input[str]
|
8192
|
+
"""
|
8193
|
+
Name of the event.
|
8194
|
+
"""
|
8195
|
+
elif False:
|
8196
|
+
CxTestCaseLastTestResultConversationTurnUserInputInputEventArgsDict: TypeAlias = Mapping[str, Any]
|
8197
|
+
|
6084
8198
|
@pulumi.input_type
|
6085
8199
|
class CxTestCaseLastTestResultConversationTurnUserInputInputEventArgs:
|
6086
8200
|
def __init__(__self__, *,
|
@@ -6103,6 +8217,15 @@ class CxTestCaseLastTestResultConversationTurnUserInputInputEventArgs:
|
|
6103
8217
|
pulumi.set(self, "event", value)
|
6104
8218
|
|
6105
8219
|
|
8220
|
+
if not MYPY:
|
8221
|
+
class CxTestCaseLastTestResultConversationTurnUserInputInputTextArgsDict(TypedDict):
|
8222
|
+
text: pulumi.Input[str]
|
8223
|
+
"""
|
8224
|
+
The natural language text to be processed. Text length must not exceed 256 characters.
|
8225
|
+
"""
|
8226
|
+
elif False:
|
8227
|
+
CxTestCaseLastTestResultConversationTurnUserInputInputTextArgsDict: TypeAlias = Mapping[str, Any]
|
8228
|
+
|
6106
8229
|
@pulumi.input_type
|
6107
8230
|
class CxTestCaseLastTestResultConversationTurnUserInputInputTextArgs:
|
6108
8231
|
def __init__(__self__, *,
|
@@ -6110,20 +8233,54 @@ class CxTestCaseLastTestResultConversationTurnUserInputInputTextArgs:
|
|
6110
8233
|
"""
|
6111
8234
|
:param pulumi.Input[str] text: The natural language text to be processed. Text length must not exceed 256 characters.
|
6112
8235
|
"""
|
6113
|
-
pulumi.set(__self__, "text", text)
|
6114
|
-
|
6115
|
-
@property
|
6116
|
-
@pulumi.getter
|
6117
|
-
def text(self) -> pulumi.Input[str]:
|
8236
|
+
pulumi.set(__self__, "text", text)
|
8237
|
+
|
8238
|
+
@property
|
8239
|
+
@pulumi.getter
|
8240
|
+
def text(self) -> pulumi.Input[str]:
|
8241
|
+
"""
|
8242
|
+
The natural language text to be processed. Text length must not exceed 256 characters.
|
8243
|
+
"""
|
8244
|
+
return pulumi.get(self, "text")
|
8245
|
+
|
8246
|
+
@text.setter
|
8247
|
+
def text(self, value: pulumi.Input[str]):
|
8248
|
+
pulumi.set(self, "text", value)
|
8249
|
+
|
8250
|
+
|
8251
|
+
if not MYPY:
|
8252
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgsDict(TypedDict):
|
8253
|
+
current_page: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgsDict']]
|
8254
|
+
"""
|
8255
|
+
The [Page](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.flows.pages#Page) on which the utterance was spoken.
|
8256
|
+
Structure is documented below.
|
8257
|
+
"""
|
8258
|
+
differences: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgsDict']]]]
|
8259
|
+
"""
|
8260
|
+
The list of differences between the original run and the replay for this output, if any.
|
8261
|
+
Structure is documented below.
|
8262
|
+
"""
|
8263
|
+
session_parameters: NotRequired[pulumi.Input[str]]
|
8264
|
+
"""
|
8265
|
+
The session parameters available to the bot at this point.
|
8266
|
+
"""
|
8267
|
+
status: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgsDict']]
|
8268
|
+
"""
|
8269
|
+
Response error from the agent in the test result. If set, other output is empty.
|
8270
|
+
Structure is documented below.
|
8271
|
+
"""
|
8272
|
+
text_responses: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgsDict']]]]
|
8273
|
+
"""
|
8274
|
+
The text responses from the agent for the turn.
|
8275
|
+
Structure is documented below.
|
8276
|
+
"""
|
8277
|
+
triggered_intent: NotRequired[pulumi.Input['CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgsDict']]
|
6118
8278
|
"""
|
6119
|
-
The
|
8279
|
+
The [Intent](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.intents#Intent) that triggered the response.
|
8280
|
+
Structure is documented below.
|
6120
8281
|
"""
|
6121
|
-
|
6122
|
-
|
6123
|
-
@text.setter
|
6124
|
-
def text(self, value: pulumi.Input[str]):
|
6125
|
-
pulumi.set(self, "text", value)
|
6126
|
-
|
8282
|
+
elif False:
|
8283
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgsDict: TypeAlias = Mapping[str, Any]
|
6127
8284
|
|
6128
8285
|
@pulumi.input_type
|
6129
8286
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgs:
|
@@ -6238,6 +8395,21 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputArgs:
|
|
6238
8395
|
pulumi.set(self, "triggered_intent", value)
|
6239
8396
|
|
6240
8397
|
|
8398
|
+
if not MYPY:
|
8399
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgsDict(TypedDict):
|
8400
|
+
display_name: NotRequired[pulumi.Input[str]]
|
8401
|
+
"""
|
8402
|
+
(Output)
|
8403
|
+
The human-readable name of the page, unique within the flow.
|
8404
|
+
"""
|
8405
|
+
name: NotRequired[pulumi.Input[str]]
|
8406
|
+
"""
|
8407
|
+
The unique identifier of the page.
|
8408
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
8409
|
+
"""
|
8410
|
+
elif False:
|
8411
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgsDict: TypeAlias = Mapping[str, Any]
|
8412
|
+
|
6241
8413
|
@pulumi.input_type
|
6242
8414
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgs:
|
6243
8415
|
def __init__(__self__, *,
|
@@ -6281,6 +8453,25 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputCurrentPageArgs:
|
|
6281
8453
|
pulumi.set(self, "name", value)
|
6282
8454
|
|
6283
8455
|
|
8456
|
+
if not MYPY:
|
8457
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgsDict(TypedDict):
|
8458
|
+
description: NotRequired[pulumi.Input[str]]
|
8459
|
+
"""
|
8460
|
+
A human readable description of the diff, showing the actual output vs expected output.
|
8461
|
+
"""
|
8462
|
+
type: NotRequired[pulumi.Input[str]]
|
8463
|
+
"""
|
8464
|
+
The type of diff.
|
8465
|
+
* INTENT: The intent.
|
8466
|
+
* PAGE: The page.
|
8467
|
+
* PARAMETERS: The parameters.
|
8468
|
+
* UTTERANCE: The message utterance.
|
8469
|
+
* FLOW: The flow.
|
8470
|
+
Possible values are: `INTENT`, `PAGE`, `PARAMETERS`, `UTTERANCE`, `FLOW`.
|
8471
|
+
"""
|
8472
|
+
elif False:
|
8473
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgsDict: TypeAlias = Mapping[str, Any]
|
8474
|
+
|
6284
8475
|
@pulumi.input_type
|
6285
8476
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgs:
|
6286
8477
|
def __init__(__self__, *,
|
@@ -6332,6 +8523,23 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputDifferenceArgs:
|
|
6332
8523
|
pulumi.set(self, "type", value)
|
6333
8524
|
|
6334
8525
|
|
8526
|
+
if not MYPY:
|
8527
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgsDict(TypedDict):
|
8528
|
+
code: NotRequired[pulumi.Input[int]]
|
8529
|
+
"""
|
8530
|
+
The status code, which should be an enum value of google.rpc.Code.
|
8531
|
+
"""
|
8532
|
+
details: NotRequired[pulumi.Input[str]]
|
8533
|
+
"""
|
8534
|
+
A JSON encoded list of messages that carry the error details.
|
8535
|
+
"""
|
8536
|
+
message: NotRequired[pulumi.Input[str]]
|
8537
|
+
"""
|
8538
|
+
A developer-facing error message.
|
8539
|
+
"""
|
8540
|
+
elif False:
|
8541
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgsDict: TypeAlias = Mapping[str, Any]
|
8542
|
+
|
6335
8543
|
@pulumi.input_type
|
6336
8544
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgs:
|
6337
8545
|
def __init__(__self__, *,
|
@@ -6387,6 +8595,15 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputStatusArgs:
|
|
6387
8595
|
pulumi.set(self, "message", value)
|
6388
8596
|
|
6389
8597
|
|
8598
|
+
if not MYPY:
|
8599
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgsDict(TypedDict):
|
8600
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8601
|
+
"""
|
8602
|
+
A collection of text responses.
|
8603
|
+
"""
|
8604
|
+
elif False:
|
8605
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgsDict: TypeAlias = Mapping[str, Any]
|
8606
|
+
|
6390
8607
|
@pulumi.input_type
|
6391
8608
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgs:
|
6392
8609
|
def __init__(__self__, *,
|
@@ -6410,6 +8627,21 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTextResponseArgs
|
|
6410
8627
|
pulumi.set(self, "texts", value)
|
6411
8628
|
|
6412
8629
|
|
8630
|
+
if not MYPY:
|
8631
|
+
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgsDict(TypedDict):
|
8632
|
+
display_name: NotRequired[pulumi.Input[str]]
|
8633
|
+
"""
|
8634
|
+
(Output)
|
8635
|
+
The human-readable name of the intent, unique within the agent.
|
8636
|
+
"""
|
8637
|
+
name: NotRequired[pulumi.Input[str]]
|
8638
|
+
"""
|
8639
|
+
The unique identifier of the intent.
|
8640
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.
|
8641
|
+
"""
|
8642
|
+
elif False:
|
8643
|
+
CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgsDict: TypeAlias = Mapping[str, Any]
|
8644
|
+
|
6413
8645
|
@pulumi.input_type
|
6414
8646
|
class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentArgs:
|
6415
8647
|
def __init__(__self__, *,
|
@@ -6453,6 +8685,21 @@ class CxTestCaseLastTestResultConversationTurnVirtualAgentOutputTriggeredIntentA
|
|
6453
8685
|
pulumi.set(self, "name", value)
|
6454
8686
|
|
6455
8687
|
|
8688
|
+
if not MYPY:
|
8689
|
+
class CxTestCaseTestCaseConversationTurnArgsDict(TypedDict):
|
8690
|
+
user_input: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnUserInputArgsDict']]
|
8691
|
+
"""
|
8692
|
+
The user input.
|
8693
|
+
Structure is documented below.
|
8694
|
+
"""
|
8695
|
+
virtual_agent_output: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgsDict']]
|
8696
|
+
"""
|
8697
|
+
The virtual agent output.
|
8698
|
+
Structure is documented below.
|
8699
|
+
"""
|
8700
|
+
elif False:
|
8701
|
+
CxTestCaseTestCaseConversationTurnArgsDict: TypeAlias = Mapping[str, Any]
|
8702
|
+
|
6456
8703
|
@pulumi.input_type
|
6457
8704
|
class CxTestCaseTestCaseConversationTurnArgs:
|
6458
8705
|
def __init__(__self__, *,
|
@@ -6496,6 +8743,28 @@ class CxTestCaseTestCaseConversationTurnArgs:
|
|
6496
8743
|
pulumi.set(self, "virtual_agent_output", value)
|
6497
8744
|
|
6498
8745
|
|
8746
|
+
if not MYPY:
|
8747
|
+
class CxTestCaseTestCaseConversationTurnUserInputArgsDict(TypedDict):
|
8748
|
+
enable_sentiment_analysis: NotRequired[pulumi.Input[bool]]
|
8749
|
+
"""
|
8750
|
+
Whether sentiment analysis is enabled.
|
8751
|
+
"""
|
8752
|
+
injected_parameters: NotRequired[pulumi.Input[str]]
|
8753
|
+
"""
|
8754
|
+
Parameters that need to be injected into the conversation during intent detection.
|
8755
|
+
"""
|
8756
|
+
input: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnUserInputInputArgsDict']]
|
8757
|
+
"""
|
8758
|
+
User input. Supports text input, event input, dtmf input in the test case.
|
8759
|
+
Structure is documented below.
|
8760
|
+
"""
|
8761
|
+
is_webhook_enabled: NotRequired[pulumi.Input[bool]]
|
8762
|
+
"""
|
8763
|
+
If webhooks should be allowed to trigger in response to the user utterance. Often if parameters are injected, webhooks should not be enabled.
|
8764
|
+
"""
|
8765
|
+
elif False:
|
8766
|
+
CxTestCaseTestCaseConversationTurnUserInputArgsDict: TypeAlias = Mapping[str, Any]
|
8767
|
+
|
6499
8768
|
@pulumi.input_type
|
6500
8769
|
class CxTestCaseTestCaseConversationTurnUserInputArgs:
|
6501
8770
|
def __init__(__self__, *,
|
@@ -6569,6 +8838,31 @@ class CxTestCaseTestCaseConversationTurnUserInputArgs:
|
|
6569
8838
|
pulumi.set(self, "is_webhook_enabled", value)
|
6570
8839
|
|
6571
8840
|
|
8841
|
+
if not MYPY:
|
8842
|
+
class CxTestCaseTestCaseConversationTurnUserInputInputArgsDict(TypedDict):
|
8843
|
+
dtmf: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgsDict']]
|
8844
|
+
"""
|
8845
|
+
The DTMF event to be handled.
|
8846
|
+
Structure is documented below.
|
8847
|
+
"""
|
8848
|
+
event: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnUserInputInputEventArgsDict']]
|
8849
|
+
"""
|
8850
|
+
The event to be triggered.
|
8851
|
+
Structure is documented below.
|
8852
|
+
"""
|
8853
|
+
language_code: NotRequired[pulumi.Input[str]]
|
8854
|
+
"""
|
8855
|
+
The language of the input. See [Language Support](https://cloud.google.com/dialogflow/cx/docs/reference/language) for a list of the currently supported language codes.
|
8856
|
+
Note that queries in the same session do not necessarily need to specify the same language.
|
8857
|
+
"""
|
8858
|
+
text: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnUserInputInputTextArgsDict']]
|
8859
|
+
"""
|
8860
|
+
The natural language text to be processed.
|
8861
|
+
Structure is documented below.
|
8862
|
+
"""
|
8863
|
+
elif False:
|
8864
|
+
CxTestCaseTestCaseConversationTurnUserInputInputArgsDict: TypeAlias = Mapping[str, Any]
|
8865
|
+
|
6572
8866
|
@pulumi.input_type
|
6573
8867
|
class CxTestCaseTestCaseConversationTurnUserInputInputArgs:
|
6574
8868
|
def __init__(__self__, *,
|
@@ -6648,6 +8942,19 @@ class CxTestCaseTestCaseConversationTurnUserInputInputArgs:
|
|
6648
8942
|
pulumi.set(self, "text", value)
|
6649
8943
|
|
6650
8944
|
|
8945
|
+
if not MYPY:
|
8946
|
+
class CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgsDict(TypedDict):
|
8947
|
+
digits: NotRequired[pulumi.Input[str]]
|
8948
|
+
"""
|
8949
|
+
The dtmf digits.
|
8950
|
+
"""
|
8951
|
+
finish_digit: NotRequired[pulumi.Input[str]]
|
8952
|
+
"""
|
8953
|
+
The finish digit (if any).
|
8954
|
+
"""
|
8955
|
+
elif False:
|
8956
|
+
CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgsDict: TypeAlias = Mapping[str, Any]
|
8957
|
+
|
6651
8958
|
@pulumi.input_type
|
6652
8959
|
class CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs:
|
6653
8960
|
def __init__(__self__, *,
|
@@ -6687,6 +8994,15 @@ class CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs:
|
|
6687
8994
|
pulumi.set(self, "finish_digit", value)
|
6688
8995
|
|
6689
8996
|
|
8997
|
+
if not MYPY:
|
8998
|
+
class CxTestCaseTestCaseConversationTurnUserInputInputEventArgsDict(TypedDict):
|
8999
|
+
event: pulumi.Input[str]
|
9000
|
+
"""
|
9001
|
+
Name of the event.
|
9002
|
+
"""
|
9003
|
+
elif False:
|
9004
|
+
CxTestCaseTestCaseConversationTurnUserInputInputEventArgsDict: TypeAlias = Mapping[str, Any]
|
9005
|
+
|
6690
9006
|
@pulumi.input_type
|
6691
9007
|
class CxTestCaseTestCaseConversationTurnUserInputInputEventArgs:
|
6692
9008
|
def __init__(__self__, *,
|
@@ -6709,6 +9025,15 @@ class CxTestCaseTestCaseConversationTurnUserInputInputEventArgs:
|
|
6709
9025
|
pulumi.set(self, "event", value)
|
6710
9026
|
|
6711
9027
|
|
9028
|
+
if not MYPY:
|
9029
|
+
class CxTestCaseTestCaseConversationTurnUserInputInputTextArgsDict(TypedDict):
|
9030
|
+
text: pulumi.Input[str]
|
9031
|
+
"""
|
9032
|
+
The natural language text to be processed. Text length must not exceed 256 characters.
|
9033
|
+
"""
|
9034
|
+
elif False:
|
9035
|
+
CxTestCaseTestCaseConversationTurnUserInputInputTextArgsDict: TypeAlias = Mapping[str, Any]
|
9036
|
+
|
6712
9037
|
@pulumi.input_type
|
6713
9038
|
class CxTestCaseTestCaseConversationTurnUserInputInputTextArgs:
|
6714
9039
|
def __init__(__self__, *,
|
@@ -6731,6 +9056,30 @@ class CxTestCaseTestCaseConversationTurnUserInputInputTextArgs:
|
|
6731
9056
|
pulumi.set(self, "text", value)
|
6732
9057
|
|
6733
9058
|
|
9059
|
+
if not MYPY:
|
9060
|
+
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgsDict(TypedDict):
|
9061
|
+
current_page: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgsDict']]
|
9062
|
+
"""
|
9063
|
+
The [Page](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.flows.pages#Page) on which the utterance was spoken.
|
9064
|
+
Structure is documented below.
|
9065
|
+
"""
|
9066
|
+
session_parameters: NotRequired[pulumi.Input[str]]
|
9067
|
+
"""
|
9068
|
+
The session parameters available to the bot at this point.
|
9069
|
+
"""
|
9070
|
+
text_responses: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgsDict']]]]
|
9071
|
+
"""
|
9072
|
+
The text responses from the agent for the turn.
|
9073
|
+
Structure is documented below.
|
9074
|
+
"""
|
9075
|
+
triggered_intent: NotRequired[pulumi.Input['CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgsDict']]
|
9076
|
+
"""
|
9077
|
+
The [Intent](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.intents#Intent) that triggered the response.
|
9078
|
+
Structure is documented below.
|
9079
|
+
"""
|
9080
|
+
elif False:
|
9081
|
+
CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgsDict: TypeAlias = Mapping[str, Any]
|
9082
|
+
|
6734
9083
|
@pulumi.input_type
|
6735
9084
|
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgs:
|
6736
9085
|
def __init__(__self__, *,
|
@@ -6808,6 +9157,21 @@ class CxTestCaseTestCaseConversationTurnVirtualAgentOutputArgs:
|
|
6808
9157
|
pulumi.set(self, "triggered_intent", value)
|
6809
9158
|
|
6810
9159
|
|
9160
|
+
if not MYPY:
|
9161
|
+
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgsDict(TypedDict):
|
9162
|
+
display_name: NotRequired[pulumi.Input[str]]
|
9163
|
+
"""
|
9164
|
+
(Output)
|
9165
|
+
The human-readable name of the page, unique within the flow.
|
9166
|
+
"""
|
9167
|
+
name: NotRequired[pulumi.Input[str]]
|
9168
|
+
"""
|
9169
|
+
The unique identifier of the page.
|
9170
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
9171
|
+
"""
|
9172
|
+
elif False:
|
9173
|
+
CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgsDict: TypeAlias = Mapping[str, Any]
|
9174
|
+
|
6811
9175
|
@pulumi.input_type
|
6812
9176
|
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgs:
|
6813
9177
|
def __init__(__self__, *,
|
@@ -6851,6 +9215,15 @@ class CxTestCaseTestCaseConversationTurnVirtualAgentOutputCurrentPageArgs:
|
|
6851
9215
|
pulumi.set(self, "name", value)
|
6852
9216
|
|
6853
9217
|
|
9218
|
+
if not MYPY:
|
9219
|
+
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgsDict(TypedDict):
|
9220
|
+
texts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9221
|
+
"""
|
9222
|
+
A collection of text responses.
|
9223
|
+
"""
|
9224
|
+
elif False:
|
9225
|
+
CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgsDict: TypeAlias = Mapping[str, Any]
|
9226
|
+
|
6854
9227
|
@pulumi.input_type
|
6855
9228
|
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgs:
|
6856
9229
|
def __init__(__self__, *,
|
@@ -6874,6 +9247,21 @@ class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTextResponseArgs:
|
|
6874
9247
|
pulumi.set(self, "texts", value)
|
6875
9248
|
|
6876
9249
|
|
9250
|
+
if not MYPY:
|
9251
|
+
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgsDict(TypedDict):
|
9252
|
+
display_name: NotRequired[pulumi.Input[str]]
|
9253
|
+
"""
|
9254
|
+
(Output)
|
9255
|
+
The human-readable name of the intent, unique within the agent.
|
9256
|
+
"""
|
9257
|
+
name: NotRequired[pulumi.Input[str]]
|
9258
|
+
"""
|
9259
|
+
The unique identifier of the intent.
|
9260
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.
|
9261
|
+
"""
|
9262
|
+
elif False:
|
9263
|
+
CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgsDict: TypeAlias = Mapping[str, Any]
|
9264
|
+
|
6877
9265
|
@pulumi.input_type
|
6878
9266
|
class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgs:
|
6879
9267
|
def __init__(__self__, *,
|
@@ -6917,6 +9305,27 @@ class CxTestCaseTestCaseConversationTurnVirtualAgentOutputTriggeredIntentArgs:
|
|
6917
9305
|
pulumi.set(self, "name", value)
|
6918
9306
|
|
6919
9307
|
|
9308
|
+
if not MYPY:
|
9309
|
+
class CxTestCaseTestConfigArgsDict(TypedDict):
|
9310
|
+
flow: NotRequired[pulumi.Input[str]]
|
9311
|
+
"""
|
9312
|
+
Flow name to start the test case with.
|
9313
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>.
|
9314
|
+
Only one of flow and page should be set to indicate the starting point of the test case. If neither is set, the test case will start with start page on the default start flow.
|
9315
|
+
"""
|
9316
|
+
page: NotRequired[pulumi.Input[str]]
|
9317
|
+
"""
|
9318
|
+
The page to start the test case with.
|
9319
|
+
Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/pages/<Page ID>.
|
9320
|
+
Only one of flow and page should be set to indicate the starting point of the test case. If neither is set, the test case will start with start page on the default start flow.
|
9321
|
+
"""
|
9322
|
+
tracking_parameters: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9323
|
+
"""
|
9324
|
+
Session parameters to be compared when calculating differences.
|
9325
|
+
"""
|
9326
|
+
elif False:
|
9327
|
+
CxTestCaseTestConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9328
|
+
|
6920
9329
|
@pulumi.input_type
|
6921
9330
|
class CxTestCaseTestConfigArgs:
|
6922
9331
|
def __init__(__self__, *,
|
@@ -6980,6 +9389,30 @@ class CxTestCaseTestConfigArgs:
|
|
6980
9389
|
pulumi.set(self, "tracking_parameters", value)
|
6981
9390
|
|
6982
9391
|
|
9392
|
+
if not MYPY:
|
9393
|
+
class CxVersionNluSettingArgsDict(TypedDict):
|
9394
|
+
classification_threshold: NotRequired[pulumi.Input[float]]
|
9395
|
+
"""
|
9396
|
+
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.
|
9397
|
+
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.
|
9398
|
+
"""
|
9399
|
+
model_training_mode: NotRequired[pulumi.Input[str]]
|
9400
|
+
"""
|
9401
|
+
Indicates NLU model training mode.
|
9402
|
+
* 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.
|
9403
|
+
* MODEL_TRAINING_MODE_MANUAL: User needs to manually trigger NLU model training. Best for large flows whose models take long time to train.
|
9404
|
+
Possible values are: `MODEL_TRAINING_MODE_AUTOMATIC`, `MODEL_TRAINING_MODE_MANUAL`.
|
9405
|
+
"""
|
9406
|
+
model_type: NotRequired[pulumi.Input[str]]
|
9407
|
+
"""
|
9408
|
+
Indicates the type of NLU model.
|
9409
|
+
* MODEL_TYPE_STANDARD: Use standard NLU model.
|
9410
|
+
* MODEL_TYPE_ADVANCED: Use advanced NLU model.
|
9411
|
+
Possible values are: `MODEL_TYPE_STANDARD`, `MODEL_TYPE_ADVANCED`.
|
9412
|
+
"""
|
9413
|
+
elif False:
|
9414
|
+
CxVersionNluSettingArgsDict: TypeAlias = Mapping[str, Any]
|
9415
|
+
|
6983
9416
|
@pulumi.input_type
|
6984
9417
|
class CxVersionNluSettingArgs:
|
6985
9418
|
def __init__(__self__, *,
|
@@ -7049,6 +9482,23 @@ class CxVersionNluSettingArgs:
|
|
7049
9482
|
pulumi.set(self, "model_type", value)
|
7050
9483
|
|
7051
9484
|
|
9485
|
+
if not MYPY:
|
9486
|
+
class CxWebhookGenericWebServiceArgsDict(TypedDict):
|
9487
|
+
uri: pulumi.Input[str]
|
9488
|
+
"""
|
9489
|
+
Whether to use speech adaptation for speech recognition.
|
9490
|
+
"""
|
9491
|
+
allowed_ca_certs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9492
|
+
"""
|
9493
|
+
Specifies a list of allowed custom CA certificates (in DER format) for HTTPS verification.
|
9494
|
+
"""
|
9495
|
+
request_headers: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9496
|
+
"""
|
9497
|
+
The HTTP request headers to send together with webhook requests.
|
9498
|
+
"""
|
9499
|
+
elif False:
|
9500
|
+
CxWebhookGenericWebServiceArgsDict: TypeAlias = Mapping[str, Any]
|
9501
|
+
|
7052
9502
|
@pulumi.input_type
|
7053
9503
|
class CxWebhookGenericWebServiceArgs:
|
7054
9504
|
def __init__(__self__, *,
|
@@ -7103,6 +9553,20 @@ class CxWebhookGenericWebServiceArgs:
|
|
7103
9553
|
pulumi.set(self, "request_headers", value)
|
7104
9554
|
|
7105
9555
|
|
9556
|
+
if not MYPY:
|
9557
|
+
class CxWebhookServiceDirectoryArgsDict(TypedDict):
|
9558
|
+
generic_web_service: pulumi.Input['CxWebhookServiceDirectoryGenericWebServiceArgsDict']
|
9559
|
+
"""
|
9560
|
+
The name of Service Directory service.
|
9561
|
+
Structure is documented below.
|
9562
|
+
"""
|
9563
|
+
service: pulumi.Input[str]
|
9564
|
+
"""
|
9565
|
+
The name of Service Directory service.
|
9566
|
+
"""
|
9567
|
+
elif False:
|
9568
|
+
CxWebhookServiceDirectoryArgsDict: TypeAlias = Mapping[str, Any]
|
9569
|
+
|
7106
9570
|
@pulumi.input_type
|
7107
9571
|
class CxWebhookServiceDirectoryArgs:
|
7108
9572
|
def __init__(__self__, *,
|
@@ -7142,6 +9606,23 @@ class CxWebhookServiceDirectoryArgs:
|
|
7142
9606
|
pulumi.set(self, "service", value)
|
7143
9607
|
|
7144
9608
|
|
9609
|
+
if not MYPY:
|
9610
|
+
class CxWebhookServiceDirectoryGenericWebServiceArgsDict(TypedDict):
|
9611
|
+
uri: pulumi.Input[str]
|
9612
|
+
"""
|
9613
|
+
Whether to use speech adaptation for speech recognition.
|
9614
|
+
"""
|
9615
|
+
allowed_ca_certs: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
9616
|
+
"""
|
9617
|
+
Specifies a list of allowed custom CA certificates (in DER format) for HTTPS verification.
|
9618
|
+
"""
|
9619
|
+
request_headers: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9620
|
+
"""
|
9621
|
+
The HTTP request headers to send together with webhook requests.
|
9622
|
+
"""
|
9623
|
+
elif False:
|
9624
|
+
CxWebhookServiceDirectoryGenericWebServiceArgsDict: TypeAlias = Mapping[str, Any]
|
9625
|
+
|
7145
9626
|
@pulumi.input_type
|
7146
9627
|
class CxWebhookServiceDirectoryGenericWebServiceArgs:
|
7147
9628
|
def __init__(__self__, *,
|
@@ -7196,6 +9677,27 @@ class CxWebhookServiceDirectoryGenericWebServiceArgs:
|
|
7196
9677
|
pulumi.set(self, "request_headers", value)
|
7197
9678
|
|
7198
9679
|
|
9680
|
+
if not MYPY:
|
9681
|
+
class EntityTypeEntityArgsDict(TypedDict):
|
9682
|
+
synonyms: pulumi.Input[Sequence[pulumi.Input[str]]]
|
9683
|
+
"""
|
9684
|
+
A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym
|
9685
|
+
could be green onions.
|
9686
|
+
For KIND_LIST entity types:
|
9687
|
+
* This collection must contain exactly one synonym equal to value.
|
9688
|
+
"""
|
9689
|
+
value: pulumi.Input[str]
|
9690
|
+
"""
|
9691
|
+
The primary value associated with this entity entry. For example, if the entity type is vegetable, the value
|
9692
|
+
could be scallions.
|
9693
|
+
For KIND_MAP entity types:
|
9694
|
+
* A reference value to be used in place of synonyms.
|
9695
|
+
For KIND_LIST entity types:
|
9696
|
+
* A string that can contain references to other entity types (with or without aliases).
|
9697
|
+
"""
|
9698
|
+
elif False:
|
9699
|
+
EntityTypeEntityArgsDict: TypeAlias = Mapping[str, Any]
|
9700
|
+
|
7199
9701
|
@pulumi.input_type
|
7200
9702
|
class EntityTypeEntityArgs:
|
7201
9703
|
def __init__(__self__, *,
|
@@ -7249,6 +9751,17 @@ class EntityTypeEntityArgs:
|
|
7249
9751
|
pulumi.set(self, "value", value)
|
7250
9752
|
|
7251
9753
|
|
9754
|
+
if not MYPY:
|
9755
|
+
class FulfillmentFeatureArgsDict(TypedDict):
|
9756
|
+
type: pulumi.Input[str]
|
9757
|
+
"""
|
9758
|
+
The type of the feature that enabled for fulfillment.
|
9759
|
+
* SMALLTALK: Fulfillment is enabled for SmallTalk.
|
9760
|
+
Possible values are: `SMALLTALK`.
|
9761
|
+
"""
|
9762
|
+
elif False:
|
9763
|
+
FulfillmentFeatureArgsDict: TypeAlias = Mapping[str, Any]
|
9764
|
+
|
7252
9765
|
@pulumi.input_type
|
7253
9766
|
class FulfillmentFeatureArgs:
|
7254
9767
|
def __init__(__self__, *,
|
@@ -7275,6 +9788,27 @@ class FulfillmentFeatureArgs:
|
|
7275
9788
|
pulumi.set(self, "type", value)
|
7276
9789
|
|
7277
9790
|
|
9791
|
+
if not MYPY:
|
9792
|
+
class FulfillmentGenericWebServiceArgsDict(TypedDict):
|
9793
|
+
uri: pulumi.Input[str]
|
9794
|
+
"""
|
9795
|
+
The fulfillment URI for receiving POST requests. It must use https protocol.
|
9796
|
+
"""
|
9797
|
+
password: NotRequired[pulumi.Input[str]]
|
9798
|
+
"""
|
9799
|
+
The password for HTTP Basic authentication.
|
9800
|
+
"""
|
9801
|
+
request_headers: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9802
|
+
"""
|
9803
|
+
The HTTP request headers to send together with fulfillment requests.
|
9804
|
+
"""
|
9805
|
+
username: NotRequired[pulumi.Input[str]]
|
9806
|
+
"""
|
9807
|
+
The user name for HTTP Basic authentication.
|
9808
|
+
"""
|
9809
|
+
elif False:
|
9810
|
+
FulfillmentGenericWebServiceArgsDict: TypeAlias = Mapping[str, Any]
|
9811
|
+
|
7278
9812
|
@pulumi.input_type
|
7279
9813
|
class FulfillmentGenericWebServiceArgs:
|
7280
9814
|
def __init__(__self__, *,
|
@@ -7345,6 +9879,21 @@ class FulfillmentGenericWebServiceArgs:
|
|
7345
9879
|
pulumi.set(self, "username", value)
|
7346
9880
|
|
7347
9881
|
|
9882
|
+
if not MYPY:
|
9883
|
+
class IntentFollowupIntentInfoArgsDict(TypedDict):
|
9884
|
+
followup_intent_name: NotRequired[pulumi.Input[str]]
|
9885
|
+
"""
|
9886
|
+
The unique identifier of the followup intent.
|
9887
|
+
Format: projects/<Project ID>/agent/intents/<Intent ID>.
|
9888
|
+
"""
|
9889
|
+
parent_followup_intent_name: NotRequired[pulumi.Input[str]]
|
9890
|
+
"""
|
9891
|
+
The unique identifier of the parent intent in the chain of followup intents.
|
9892
|
+
Format: projects/<Project ID>/agent/intents/<Intent ID>.
|
9893
|
+
"""
|
9894
|
+
elif False:
|
9895
|
+
IntentFollowupIntentInfoArgsDict: TypeAlias = Mapping[str, Any]
|
9896
|
+
|
7348
9897
|
@pulumi.input_type
|
7349
9898
|
class IntentFollowupIntentInfoArgs:
|
7350
9899
|
def __init__(__self__, *,
|