pulumi-gcp 8.42.0a1758133038__py3-none-any.whl → 9.0.0__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/__init__.py +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
@@ -879,7 +879,8 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
879
879
|
initial_user={
|
880
880
|
"user": "destination-alloydb",
|
881
881
|
"password": "destination-alloydb",
|
882
|
-
}
|
882
|
+
},
|
883
|
+
deletion_protection=False)
|
883
884
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
884
885
|
name="destination-alloydb",
|
885
886
|
address_type="INTERNAL",
|
@@ -1320,7 +1321,8 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
1320
1321
|
initial_user={
|
1321
1322
|
"user": "destination-alloydb",
|
1322
1323
|
"password": "destination-alloydb",
|
1323
|
-
}
|
1324
|
+
},
|
1325
|
+
deletion_protection=False)
|
1324
1326
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
1325
1327
|
name="destination-alloydb",
|
1326
1328
|
address_type="INTERNAL",
|
@@ -944,7 +944,8 @@ class MigrationJob(pulumi.CustomResource):
|
|
944
944
|
initial_user={
|
945
945
|
"user": "destination-alloydb",
|
946
946
|
"password": "destination-alloydb",
|
947
|
-
}
|
947
|
+
},
|
948
|
+
deletion_protection=False)
|
948
949
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
949
950
|
name="destination-alloydb",
|
950
951
|
address_type="INTERNAL",
|
@@ -1283,7 +1284,8 @@ class MigrationJob(pulumi.CustomResource):
|
|
1283
1284
|
initial_user={
|
1284
1285
|
"user": "destination-alloydb",
|
1285
1286
|
"password": "destination-alloydb",
|
1286
|
-
}
|
1287
|
+
},
|
1288
|
+
deletion_protection=False)
|
1287
1289
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
1288
1290
|
name="destination-alloydb",
|
1289
1291
|
address_type="INTERNAL",
|
@@ -984,6 +984,11 @@ class FlexTemplateJob(pulumi.CustomResource):
|
|
984
984
|
transform_name_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
985
985
|
__props__=None):
|
986
986
|
"""
|
987
|
+
Creates a [Flex Template](https://cloud.google.com/dataflow/docs/guides/templates/using-flex-templates)
|
988
|
+
job on Dataflow, which is an implementation of Apache Beam running on Google
|
989
|
+
Compute Engine. For more information see the official documentation for [Beam](https://beam.apache.org)
|
990
|
+
and [Dataflow](https://cloud.google.com/dataflow/).
|
991
|
+
|
987
992
|
## Example Usage
|
988
993
|
|
989
994
|
```python
|
@@ -1103,6 +1108,11 @@ class FlexTemplateJob(pulumi.CustomResource):
|
|
1103
1108
|
args: FlexTemplateJobArgs,
|
1104
1109
|
opts: Optional[pulumi.ResourceOptions] = None):
|
1105
1110
|
"""
|
1111
|
+
Creates a [Flex Template](https://cloud.google.com/dataflow/docs/guides/templates/using-flex-templates)
|
1112
|
+
job on Dataflow, which is an implementation of Apache Beam running on Google
|
1113
|
+
Compute Engine. For more information see the official documentation for [Beam](https://beam.apache.org)
|
1114
|
+
and [Dataflow](https://cloud.google.com/dataflow/).
|
1115
|
+
|
1106
1116
|
## Example Usage
|
1107
1117
|
|
1108
1118
|
```python
|
@@ -471,6 +471,14 @@ class Repository(pulumi.CustomResource):
|
|
471
471
|
workspace_compilation_overrides: Optional[pulumi.Input[Union['RepositoryWorkspaceCompilationOverridesArgs', 'RepositoryWorkspaceCompilationOverridesArgsDict']]] = None,
|
472
472
|
__props__=None):
|
473
473
|
"""
|
474
|
+
A resource represents a Dataform Git repository
|
475
|
+
|
476
|
+
To get more information about Repository, see:
|
477
|
+
|
478
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories)
|
479
|
+
* How-to Guides
|
480
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/)
|
481
|
+
|
474
482
|
## Example Usage
|
475
483
|
|
476
484
|
### Dataform Repository
|
@@ -578,6 +586,14 @@ class Repository(pulumi.CustomResource):
|
|
578
586
|
args: Optional[RepositoryArgs] = None,
|
579
587
|
opts: Optional[pulumi.ResourceOptions] = None):
|
580
588
|
"""
|
589
|
+
A resource represents a Dataform Git repository
|
590
|
+
|
591
|
+
To get more information about Repository, see:
|
592
|
+
|
593
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories)
|
594
|
+
* How-to Guides
|
595
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/)
|
596
|
+
|
581
597
|
## Example Usage
|
582
598
|
|
583
599
|
### Dataform Repository
|
@@ -331,6 +331,14 @@ class RepositoryReleaseConfig(pulumi.CustomResource):
|
|
331
331
|
time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
332
332
|
__props__=None):
|
333
333
|
"""
|
334
|
+
A resource represents a Dataform release configuration
|
335
|
+
|
336
|
+
To get more information about RepositoryReleaseConfig, see:
|
337
|
+
|
338
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories.releaseConfigs)
|
339
|
+
* How-to Guides
|
340
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/release-configurations)
|
341
|
+
|
334
342
|
## Example Usage
|
335
343
|
|
336
344
|
### Dataform Repository Release Config
|
@@ -433,6 +441,14 @@ class RepositoryReleaseConfig(pulumi.CustomResource):
|
|
433
441
|
args: RepositoryReleaseConfigArgs,
|
434
442
|
opts: Optional[pulumi.ResourceOptions] = None):
|
435
443
|
"""
|
444
|
+
A resource represents a Dataform release configuration
|
445
|
+
|
446
|
+
To get more information about RepositoryReleaseConfig, see:
|
447
|
+
|
448
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories.releaseConfigs)
|
449
|
+
* How-to Guides
|
450
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/release-configurations)
|
451
|
+
|
436
452
|
## Example Usage
|
437
453
|
|
438
454
|
### Dataform Repository Release Config
|
@@ -331,6 +331,14 @@ class RepositoryWorkflowConfig(pulumi.CustomResource):
|
|
331
331
|
time_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
332
332
|
__props__=None):
|
333
333
|
"""
|
334
|
+
A resource represents a Dataform workflow configuration
|
335
|
+
|
336
|
+
To get more information about RepositoryWorkflowConfig, see:
|
337
|
+
|
338
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories.workflowConfigs)
|
339
|
+
* How-to Guides
|
340
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/workflow-configurations)
|
341
|
+
|
334
342
|
## Example Usage
|
335
343
|
|
336
344
|
### Dataform Repository Workflow Config
|
@@ -463,6 +471,14 @@ class RepositoryWorkflowConfig(pulumi.CustomResource):
|
|
463
471
|
args: RepositoryWorkflowConfigArgs,
|
464
472
|
opts: Optional[pulumi.ResourceOptions] = None):
|
465
473
|
"""
|
474
|
+
A resource represents a Dataform workflow configuration
|
475
|
+
|
476
|
+
To get more information about RepositoryWorkflowConfig, see:
|
477
|
+
|
478
|
+
* [API documentation](https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories.workflowConfigs)
|
479
|
+
* How-to Guides
|
480
|
+
* [Official Documentation](https://cloud.google.com/dataform/docs/workflow-configurations)
|
481
|
+
|
466
482
|
## Example Usage
|
467
483
|
|
468
484
|
### Dataform Repository Workflow Config
|
pulumi_gcp/diagflow/_inputs.py
CHANGED
@@ -97,12 +97,18 @@ __all__ = [
|
|
97
97
|
'CxAgentAdvancedSettingsLoggingSettingsArgsDict',
|
98
98
|
'CxAgentAdvancedSettingsSpeechSettingsArgs',
|
99
99
|
'CxAgentAdvancedSettingsSpeechSettingsArgsDict',
|
100
|
+
'CxAgentAnswerFeedbackSettingsArgs',
|
101
|
+
'CxAgentAnswerFeedbackSettingsArgsDict',
|
102
|
+
'CxAgentClientCertificateSettingsArgs',
|
103
|
+
'CxAgentClientCertificateSettingsArgsDict',
|
100
104
|
'CxAgentGenAppBuilderSettingsArgs',
|
101
105
|
'CxAgentGenAppBuilderSettingsArgsDict',
|
102
106
|
'CxAgentGitIntegrationSettingsArgs',
|
103
107
|
'CxAgentGitIntegrationSettingsArgsDict',
|
104
108
|
'CxAgentGitIntegrationSettingsGithubSettingsArgs',
|
105
109
|
'CxAgentGitIntegrationSettingsGithubSettingsArgsDict',
|
110
|
+
'CxAgentPersonalizationSettingsArgs',
|
111
|
+
'CxAgentPersonalizationSettingsArgsDict',
|
106
112
|
'CxAgentSpeechToTextSettingsArgs',
|
107
113
|
'CxAgentSpeechToTextSettingsArgsDict',
|
108
114
|
'CxAgentTextToSpeechSettingsArgs',
|
@@ -3512,6 +3518,111 @@ class CxAgentAdvancedSettingsSpeechSettingsArgs:
|
|
3512
3518
|
pulumi.set(self, "use_timeout_based_endpointing", value)
|
3513
3519
|
|
3514
3520
|
|
3521
|
+
if not MYPY:
|
3522
|
+
class CxAgentAnswerFeedbackSettingsArgsDict(TypedDict):
|
3523
|
+
enable_answer_feedback: NotRequired[pulumi.Input[_builtins.bool]]
|
3524
|
+
"""
|
3525
|
+
If enabled, end users will be able to provide [answer feedback](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/submitAnswerFeedback#body.AnswerFeedback)
|
3526
|
+
to Dialogflow responses. Feature works only if interaction logging is enabled in the Dialogflow agent.
|
3527
|
+
"""
|
3528
|
+
elif False:
|
3529
|
+
CxAgentAnswerFeedbackSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
3530
|
+
|
3531
|
+
@pulumi.input_type
|
3532
|
+
class CxAgentAnswerFeedbackSettingsArgs:
|
3533
|
+
def __init__(__self__, *,
|
3534
|
+
enable_answer_feedback: Optional[pulumi.Input[_builtins.bool]] = None):
|
3535
|
+
"""
|
3536
|
+
:param pulumi.Input[_builtins.bool] enable_answer_feedback: If enabled, end users will be able to provide [answer feedback](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/submitAnswerFeedback#body.AnswerFeedback)
|
3537
|
+
to Dialogflow responses. Feature works only if interaction logging is enabled in the Dialogflow agent.
|
3538
|
+
"""
|
3539
|
+
if enable_answer_feedback is not None:
|
3540
|
+
pulumi.set(__self__, "enable_answer_feedback", enable_answer_feedback)
|
3541
|
+
|
3542
|
+
@_builtins.property
|
3543
|
+
@pulumi.getter(name="enableAnswerFeedback")
|
3544
|
+
def enable_answer_feedback(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
3545
|
+
"""
|
3546
|
+
If enabled, end users will be able to provide [answer feedback](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/submitAnswerFeedback#body.AnswerFeedback)
|
3547
|
+
to Dialogflow responses. Feature works only if interaction logging is enabled in the Dialogflow agent.
|
3548
|
+
"""
|
3549
|
+
return pulumi.get(self, "enable_answer_feedback")
|
3550
|
+
|
3551
|
+
@enable_answer_feedback.setter
|
3552
|
+
def enable_answer_feedback(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
3553
|
+
pulumi.set(self, "enable_answer_feedback", value)
|
3554
|
+
|
3555
|
+
|
3556
|
+
if not MYPY:
|
3557
|
+
class CxAgentClientCertificateSettingsArgsDict(TypedDict):
|
3558
|
+
private_key: pulumi.Input[_builtins.str]
|
3559
|
+
"""
|
3560
|
+
The name of the SecretManager secret version resource storing the private key encoded in PEM format. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3561
|
+
"""
|
3562
|
+
ssl_certificate: pulumi.Input[_builtins.str]
|
3563
|
+
"""
|
3564
|
+
The ssl certificate encoded in PEM format. This string must include the begin header and end footer lines.
|
3565
|
+
"""
|
3566
|
+
passphrase: NotRequired[pulumi.Input[_builtins.str]]
|
3567
|
+
"""
|
3568
|
+
The name of the SecretManager secret version resource storing the passphrase. 'passphrase' should be left unset if the private key is not encrypted. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3569
|
+
"""
|
3570
|
+
elif False:
|
3571
|
+
CxAgentClientCertificateSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
3572
|
+
|
3573
|
+
@pulumi.input_type
|
3574
|
+
class CxAgentClientCertificateSettingsArgs:
|
3575
|
+
def __init__(__self__, *,
|
3576
|
+
private_key: pulumi.Input[_builtins.str],
|
3577
|
+
ssl_certificate: pulumi.Input[_builtins.str],
|
3578
|
+
passphrase: Optional[pulumi.Input[_builtins.str]] = None):
|
3579
|
+
"""
|
3580
|
+
:param pulumi.Input[_builtins.str] private_key: The name of the SecretManager secret version resource storing the private key encoded in PEM format. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3581
|
+
:param pulumi.Input[_builtins.str] ssl_certificate: The ssl certificate encoded in PEM format. This string must include the begin header and end footer lines.
|
3582
|
+
:param pulumi.Input[_builtins.str] passphrase: The name of the SecretManager secret version resource storing the passphrase. 'passphrase' should be left unset if the private key is not encrypted. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3583
|
+
"""
|
3584
|
+
pulumi.set(__self__, "private_key", private_key)
|
3585
|
+
pulumi.set(__self__, "ssl_certificate", ssl_certificate)
|
3586
|
+
if passphrase is not None:
|
3587
|
+
pulumi.set(__self__, "passphrase", passphrase)
|
3588
|
+
|
3589
|
+
@_builtins.property
|
3590
|
+
@pulumi.getter(name="privateKey")
|
3591
|
+
def private_key(self) -> pulumi.Input[_builtins.str]:
|
3592
|
+
"""
|
3593
|
+
The name of the SecretManager secret version resource storing the private key encoded in PEM format. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3594
|
+
"""
|
3595
|
+
return pulumi.get(self, "private_key")
|
3596
|
+
|
3597
|
+
@private_key.setter
|
3598
|
+
def private_key(self, value: pulumi.Input[_builtins.str]):
|
3599
|
+
pulumi.set(self, "private_key", value)
|
3600
|
+
|
3601
|
+
@_builtins.property
|
3602
|
+
@pulumi.getter(name="sslCertificate")
|
3603
|
+
def ssl_certificate(self) -> pulumi.Input[_builtins.str]:
|
3604
|
+
"""
|
3605
|
+
The ssl certificate encoded in PEM format. This string must include the begin header and end footer lines.
|
3606
|
+
"""
|
3607
|
+
return pulumi.get(self, "ssl_certificate")
|
3608
|
+
|
3609
|
+
@ssl_certificate.setter
|
3610
|
+
def ssl_certificate(self, value: pulumi.Input[_builtins.str]):
|
3611
|
+
pulumi.set(self, "ssl_certificate", value)
|
3612
|
+
|
3613
|
+
@_builtins.property
|
3614
|
+
@pulumi.getter
|
3615
|
+
def passphrase(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3616
|
+
"""
|
3617
|
+
The name of the SecretManager secret version resource storing the passphrase. 'passphrase' should be left unset if the private key is not encrypted. Format: **projects/{project}/secrets/{secret}/versions/{version}**
|
3618
|
+
"""
|
3619
|
+
return pulumi.get(self, "passphrase")
|
3620
|
+
|
3621
|
+
@passphrase.setter
|
3622
|
+
def passphrase(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3623
|
+
pulumi.set(self, "passphrase", value)
|
3624
|
+
|
3625
|
+
|
3515
3626
|
if not MYPY:
|
3516
3627
|
class CxAgentGenAppBuilderSettingsArgsDict(TypedDict):
|
3517
3628
|
engine: pulumi.Input[_builtins.str]
|
@@ -3696,6 +3807,47 @@ class CxAgentGitIntegrationSettingsGithubSettingsArgs:
|
|
3696
3807
|
pulumi.set(self, "tracking_branch", value)
|
3697
3808
|
|
3698
3809
|
|
3810
|
+
if not MYPY:
|
3811
|
+
class CxAgentPersonalizationSettingsArgsDict(TypedDict):
|
3812
|
+
default_end_user_metadata: NotRequired[pulumi.Input[_builtins.str]]
|
3813
|
+
"""
|
3814
|
+
Default end user metadata, used when processing DetectIntent requests. Recommended to be filled as a template instead of hard-coded value, for example { "age": "$session.params.age" }.
|
3815
|
+
The data will be merged with the [QueryParameters.end_user_metadata](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/QueryParameters#FIELDS.end_user_metadata)
|
3816
|
+
in [DetectIntentRequest.query_params](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/detectIntent#body.request_body.FIELDS.query_params) during query processing.
|
3817
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Struct](https://protobuf.dev/reference/protobuf/google.protobuf/#struct).
|
3818
|
+
"""
|
3819
|
+
elif False:
|
3820
|
+
CxAgentPersonalizationSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
3821
|
+
|
3822
|
+
@pulumi.input_type
|
3823
|
+
class CxAgentPersonalizationSettingsArgs:
|
3824
|
+
def __init__(__self__, *,
|
3825
|
+
default_end_user_metadata: Optional[pulumi.Input[_builtins.str]] = None):
|
3826
|
+
"""
|
3827
|
+
:param pulumi.Input[_builtins.str] default_end_user_metadata: Default end user metadata, used when processing DetectIntent requests. Recommended to be filled as a template instead of hard-coded value, for example { "age": "$session.params.age" }.
|
3828
|
+
The data will be merged with the [QueryParameters.end_user_metadata](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/QueryParameters#FIELDS.end_user_metadata)
|
3829
|
+
in [DetectIntentRequest.query_params](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/detectIntent#body.request_body.FIELDS.query_params) during query processing.
|
3830
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Struct](https://protobuf.dev/reference/protobuf/google.protobuf/#struct).
|
3831
|
+
"""
|
3832
|
+
if default_end_user_metadata is not None:
|
3833
|
+
pulumi.set(__self__, "default_end_user_metadata", default_end_user_metadata)
|
3834
|
+
|
3835
|
+
@_builtins.property
|
3836
|
+
@pulumi.getter(name="defaultEndUserMetadata")
|
3837
|
+
def default_end_user_metadata(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3838
|
+
"""
|
3839
|
+
Default end user metadata, used when processing DetectIntent requests. Recommended to be filled as a template instead of hard-coded value, for example { "age": "$session.params.age" }.
|
3840
|
+
The data will be merged with the [QueryParameters.end_user_metadata](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/QueryParameters#FIELDS.end_user_metadata)
|
3841
|
+
in [DetectIntentRequest.query_params](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.sessions/detectIntent#body.request_body.FIELDS.query_params) during query processing.
|
3842
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Struct](https://protobuf.dev/reference/protobuf/google.protobuf/#struct).
|
3843
|
+
"""
|
3844
|
+
return pulumi.get(self, "default_end_user_metadata")
|
3845
|
+
|
3846
|
+
@default_end_user_metadata.setter
|
3847
|
+
def default_end_user_metadata(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3848
|
+
pulumi.set(self, "default_end_user_metadata", value)
|
3849
|
+
|
3850
|
+
|
3699
3851
|
if not MYPY:
|
3700
3852
|
class CxAgentSpeechToTextSettingsArgsDict(TypedDict):
|
3701
3853
|
enable_speech_adaptation: NotRequired[pulumi.Input[_builtins.bool]]
|