pulumi-gcp 8.42.0a1758178363__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.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758178363.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.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/user.py
CHANGED
@@ -27,6 +27,7 @@ class UserArgs:
|
|
27
27
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
28
28
|
password: Optional[pulumi.Input[_builtins.str]] = None,
|
29
29
|
password_policy: Optional[pulumi.Input['UserPasswordPolicyArgs']] = None,
|
30
|
+
password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
|
30
31
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
31
32
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
32
33
|
"""
|
@@ -47,6 +48,9 @@ class UserArgs:
|
|
47
48
|
instances this is a Required field, unless type is set to either CLOUD_IAM_USER
|
48
49
|
or CLOUD_IAM_SERVICE_ACCOUNT. Don't set this field for CLOUD_IAM_USER
|
49
50
|
and CLOUD_IAM_SERVICE_ACCOUNT user types for any Cloud SQL instance.
|
51
|
+
:param pulumi.Input[_builtins.int] password_wo_version: The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
52
|
+
|
53
|
+
- - -
|
50
54
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
|
51
55
|
is not provided, the provider project is used.
|
52
56
|
:param pulumi.Input[_builtins.str] type: The user type. It determines the method to authenticate the
|
@@ -67,6 +71,8 @@ class UserArgs:
|
|
67
71
|
pulumi.set(__self__, "password", password)
|
68
72
|
if password_policy is not None:
|
69
73
|
pulumi.set(__self__, "password_policy", password_policy)
|
74
|
+
if password_wo_version is not None:
|
75
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
70
76
|
if project is not None:
|
71
77
|
pulumi.set(__self__, "project", project)
|
72
78
|
if type is not None:
|
@@ -152,6 +158,20 @@ class UserArgs:
|
|
152
158
|
def password_policy(self, value: Optional[pulumi.Input['UserPasswordPolicyArgs']]):
|
153
159
|
pulumi.set(self, "password_policy", value)
|
154
160
|
|
161
|
+
@_builtins.property
|
162
|
+
@pulumi.getter(name="passwordWoVersion")
|
163
|
+
def password_wo_version(self) -> Optional[pulumi.Input[_builtins.int]]:
|
164
|
+
"""
|
165
|
+
The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
166
|
+
|
167
|
+
- - -
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "password_wo_version")
|
170
|
+
|
171
|
+
@password_wo_version.setter
|
172
|
+
def password_wo_version(self, value: Optional[pulumi.Input[_builtins.int]]):
|
173
|
+
pulumi.set(self, "password_wo_version", value)
|
174
|
+
|
155
175
|
@_builtins.property
|
156
176
|
@pulumi.getter
|
157
177
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -192,6 +212,7 @@ class _UserState:
|
|
192
212
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
193
213
|
password: Optional[pulumi.Input[_builtins.str]] = None,
|
194
214
|
password_policy: Optional[pulumi.Input['UserPasswordPolicyArgs']] = None,
|
215
|
+
password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
|
195
216
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
196
217
|
sql_server_user_details: Optional[pulumi.Input[Sequence[pulumi.Input['UserSqlServerUserDetailArgs']]]] = None,
|
197
218
|
type: Optional[pulumi.Input[_builtins.str]] = None):
|
@@ -213,6 +234,9 @@ class _UserState:
|
|
213
234
|
instances this is a Required field, unless type is set to either CLOUD_IAM_USER
|
214
235
|
or CLOUD_IAM_SERVICE_ACCOUNT. Don't set this field for CLOUD_IAM_USER
|
215
236
|
and CLOUD_IAM_SERVICE_ACCOUNT user types for any Cloud SQL instance.
|
237
|
+
:param pulumi.Input[_builtins.int] password_wo_version: The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
238
|
+
|
239
|
+
- - -
|
216
240
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
|
217
241
|
is not provided, the provider project is used.
|
218
242
|
:param pulumi.Input[_builtins.str] type: The user type. It determines the method to authenticate the
|
@@ -234,6 +258,8 @@ class _UserState:
|
|
234
258
|
pulumi.set(__self__, "password", password)
|
235
259
|
if password_policy is not None:
|
236
260
|
pulumi.set(__self__, "password_policy", password_policy)
|
261
|
+
if password_wo_version is not None:
|
262
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
237
263
|
if project is not None:
|
238
264
|
pulumi.set(__self__, "project", project)
|
239
265
|
if sql_server_user_details is not None:
|
@@ -321,6 +347,20 @@ class _UserState:
|
|
321
347
|
def password_policy(self, value: Optional[pulumi.Input['UserPasswordPolicyArgs']]):
|
322
348
|
pulumi.set(self, "password_policy", value)
|
323
349
|
|
350
|
+
@_builtins.property
|
351
|
+
@pulumi.getter(name="passwordWoVersion")
|
352
|
+
def password_wo_version(self) -> Optional[pulumi.Input[_builtins.int]]:
|
353
|
+
"""
|
354
|
+
The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
355
|
+
|
356
|
+
- - -
|
357
|
+
"""
|
358
|
+
return pulumi.get(self, "password_wo_version")
|
359
|
+
|
360
|
+
@password_wo_version.setter
|
361
|
+
def password_wo_version(self, value: Optional[pulumi.Input[_builtins.int]]):
|
362
|
+
pulumi.set(self, "password_wo_version", value)
|
363
|
+
|
324
364
|
@_builtins.property
|
325
365
|
@pulumi.getter
|
326
366
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -373,6 +413,7 @@ class User(pulumi.CustomResource):
|
|
373
413
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
374
414
|
password: Optional[pulumi.Input[_builtins.str]] = None,
|
375
415
|
password_policy: Optional[pulumi.Input[Union['UserPasswordPolicyArgs', 'UserPasswordPolicyArgsDict']]] = None,
|
416
|
+
password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
|
376
417
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
377
418
|
type: Optional[pulumi.Input[_builtins.str]] = None,
|
378
419
|
__props__=None):
|
@@ -508,6 +549,9 @@ class User(pulumi.CustomResource):
|
|
508
549
|
instances this is a Required field, unless type is set to either CLOUD_IAM_USER
|
509
550
|
or CLOUD_IAM_SERVICE_ACCOUNT. Don't set this field for CLOUD_IAM_USER
|
510
551
|
and CLOUD_IAM_SERVICE_ACCOUNT user types for any Cloud SQL instance.
|
552
|
+
:param pulumi.Input[_builtins.int] password_wo_version: The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
553
|
+
|
554
|
+
- - -
|
511
555
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
|
512
556
|
is not provided, the provider project is used.
|
513
557
|
:param pulumi.Input[_builtins.str] type: The user type. It determines the method to authenticate the
|
@@ -658,6 +702,7 @@ class User(pulumi.CustomResource):
|
|
658
702
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
659
703
|
password: Optional[pulumi.Input[_builtins.str]] = None,
|
660
704
|
password_policy: Optional[pulumi.Input[Union['UserPasswordPolicyArgs', 'UserPasswordPolicyArgsDict']]] = None,
|
705
|
+
password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
|
661
706
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
662
707
|
type: Optional[pulumi.Input[_builtins.str]] = None,
|
663
708
|
__props__=None):
|
@@ -677,6 +722,7 @@ class User(pulumi.CustomResource):
|
|
677
722
|
__props__.__dict__["name"] = name
|
678
723
|
__props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
|
679
724
|
__props__.__dict__["password_policy"] = password_policy
|
725
|
+
__props__.__dict__["password_wo_version"] = password_wo_version
|
680
726
|
__props__.__dict__["project"] = project
|
681
727
|
__props__.__dict__["type"] = type
|
682
728
|
__props__.__dict__["sql_server_user_details"] = None
|
@@ -698,6 +744,7 @@ class User(pulumi.CustomResource):
|
|
698
744
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
699
745
|
password: Optional[pulumi.Input[_builtins.str]] = None,
|
700
746
|
password_policy: Optional[pulumi.Input[Union['UserPasswordPolicyArgs', 'UserPasswordPolicyArgsDict']]] = None,
|
747
|
+
password_wo_version: Optional[pulumi.Input[_builtins.int]] = None,
|
701
748
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
702
749
|
sql_server_user_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['UserSqlServerUserDetailArgs', 'UserSqlServerUserDetailArgsDict']]]]] = None,
|
703
750
|
type: Optional[pulumi.Input[_builtins.str]] = None) -> 'User':
|
@@ -724,6 +771,9 @@ class User(pulumi.CustomResource):
|
|
724
771
|
instances this is a Required field, unless type is set to either CLOUD_IAM_USER
|
725
772
|
or CLOUD_IAM_SERVICE_ACCOUNT. Don't set this field for CLOUD_IAM_USER
|
726
773
|
and CLOUD_IAM_SERVICE_ACCOUNT user types for any Cloud SQL instance.
|
774
|
+
:param pulumi.Input[_builtins.int] password_wo_version: The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
775
|
+
|
776
|
+
- - -
|
727
777
|
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs. If it
|
728
778
|
is not provided, the provider project is used.
|
729
779
|
:param pulumi.Input[_builtins.str] type: The user type. It determines the method to authenticate the
|
@@ -743,6 +793,7 @@ class User(pulumi.CustomResource):
|
|
743
793
|
__props__.__dict__["name"] = name
|
744
794
|
__props__.__dict__["password"] = password
|
745
795
|
__props__.__dict__["password_policy"] = password_policy
|
796
|
+
__props__.__dict__["password_wo_version"] = password_wo_version
|
746
797
|
__props__.__dict__["project"] = project
|
747
798
|
__props__.__dict__["sql_server_user_details"] = sql_server_user_details
|
748
799
|
__props__.__dict__["type"] = type
|
@@ -804,6 +855,16 @@ class User(pulumi.CustomResource):
|
|
804
855
|
def password_policy(self) -> pulumi.Output[Optional['outputs.UserPasswordPolicy']]:
|
805
856
|
return pulumi.get(self, "password_policy")
|
806
857
|
|
858
|
+
@_builtins.property
|
859
|
+
@pulumi.getter(name="passwordWoVersion")
|
860
|
+
def password_wo_version(self) -> pulumi.Output[Optional[_builtins.int]]:
|
861
|
+
"""
|
862
|
+
The version of the password_wo. For more info see [updating write-only attributes](https://www.terraform.io/docs/providers/google/guides/using_write_only_attributes.html#updating-write-only-attributes).
|
863
|
+
|
864
|
+
- - -
|
865
|
+
"""
|
866
|
+
return pulumi.get(self, "password_wo_version")
|
867
|
+
|
807
868
|
@_builtins.property
|
808
869
|
@pulumi.getter
|
809
870
|
def project(self) -> pulumi.Output[_builtins.str]:
|
pulumi_gcp/storage/_inputs.py
CHANGED
@@ -187,6 +187,10 @@ __all__ = [
|
|
187
187
|
'TransferJobScheduleStartTimeOfDayArgsDict',
|
188
188
|
'TransferJobTransferSpecArgs',
|
189
189
|
'TransferJobTransferSpecArgsDict',
|
190
|
+
'TransferJobTransferSpecAwsS3CompatibleDataSourceArgs',
|
191
|
+
'TransferJobTransferSpecAwsS3CompatibleDataSourceArgsDict',
|
192
|
+
'TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs',
|
193
|
+
'TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgsDict',
|
190
194
|
'TransferJobTransferSpecAwsS3DataSourceArgs',
|
191
195
|
'TransferJobTransferSpecAwsS3DataSourceArgsDict',
|
192
196
|
'TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs',
|
@@ -1870,9 +1874,9 @@ class BucketObjectRetentionArgs:
|
|
1870
1874
|
|
1871
1875
|
if not MYPY:
|
1872
1876
|
class BucketRetentionPolicyArgsDict(TypedDict):
|
1873
|
-
retention_period: pulumi.Input[_builtins.
|
1877
|
+
retention_period: pulumi.Input[_builtins.str]
|
1874
1878
|
"""
|
1875
|
-
The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than
|
1879
|
+
The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than 3,155,760,000 seconds.
|
1876
1880
|
"""
|
1877
1881
|
is_locked: NotRequired[pulumi.Input[_builtins.bool]]
|
1878
1882
|
"""
|
@@ -1884,10 +1888,10 @@ elif False:
|
|
1884
1888
|
@pulumi.input_type
|
1885
1889
|
class BucketRetentionPolicyArgs:
|
1886
1890
|
def __init__(__self__, *,
|
1887
|
-
retention_period: pulumi.Input[_builtins.
|
1891
|
+
retention_period: pulumi.Input[_builtins.str],
|
1888
1892
|
is_locked: Optional[pulumi.Input[_builtins.bool]] = None):
|
1889
1893
|
"""
|
1890
|
-
:param pulumi.Input[_builtins.
|
1894
|
+
:param pulumi.Input[_builtins.str] retention_period: The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than 3,155,760,000 seconds.
|
1891
1895
|
:param pulumi.Input[_builtins.bool] is_locked: If set to `true`, the bucket will be [locked](https://cloud.google.com/storage/docs/using-bucket-lock#lock-bucket) and permanently restrict edits to the bucket's retention policy. Caution: Locking a bucket is an irreversible action.
|
1892
1896
|
"""
|
1893
1897
|
pulumi.set(__self__, "retention_period", retention_period)
|
@@ -1896,14 +1900,14 @@ class BucketRetentionPolicyArgs:
|
|
1896
1900
|
|
1897
1901
|
@_builtins.property
|
1898
1902
|
@pulumi.getter(name="retentionPeriod")
|
1899
|
-
def retention_period(self) -> pulumi.Input[_builtins.
|
1903
|
+
def retention_period(self) -> pulumi.Input[_builtins.str]:
|
1900
1904
|
"""
|
1901
|
-
The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than
|
1905
|
+
The period of time, in seconds, that objects in the bucket must be retained and cannot be deleted, overwritten, or archived. The value must be less than 3,155,760,000 seconds.
|
1902
1906
|
"""
|
1903
1907
|
return pulumi.get(self, "retention_period")
|
1904
1908
|
|
1905
1909
|
@retention_period.setter
|
1906
|
-
def retention_period(self, value: pulumi.Input[_builtins.
|
1910
|
+
def retention_period(self, value: pulumi.Input[_builtins.str]):
|
1907
1911
|
pulumi.set(self, "retention_period", value)
|
1908
1912
|
|
1909
1913
|
@_builtins.property
|
@@ -5345,6 +5349,10 @@ class TransferJobScheduleStartTimeOfDayArgs:
|
|
5345
5349
|
|
5346
5350
|
if not MYPY:
|
5347
5351
|
class TransferJobTransferSpecArgsDict(TypedDict):
|
5352
|
+
aws_s3_compatible_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceArgsDict']]
|
5353
|
+
"""
|
5354
|
+
An AWS S3 Compatible data source. Structure documented below.
|
5355
|
+
"""
|
5348
5356
|
aws_s3_data_source: NotRequired[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceArgsDict']]
|
5349
5357
|
"""
|
5350
5358
|
An AWS S3 data source. Structure documented below.
|
@@ -5399,6 +5407,7 @@ elif False:
|
|
5399
5407
|
@pulumi.input_type
|
5400
5408
|
class TransferJobTransferSpecArgs:
|
5401
5409
|
def __init__(__self__, *,
|
5410
|
+
aws_s3_compatible_data_source: Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceArgs']] = None,
|
5402
5411
|
aws_s3_data_source: Optional[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceArgs']] = None,
|
5403
5412
|
azure_blob_storage_data_source: Optional[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceArgs']] = None,
|
5404
5413
|
gcs_data_sink: Optional[pulumi.Input['TransferJobTransferSpecGcsDataSinkArgs']] = None,
|
@@ -5412,6 +5421,7 @@ class TransferJobTransferSpecArgs:
|
|
5412
5421
|
source_agent_pool_name: Optional[pulumi.Input[_builtins.str]] = None,
|
5413
5422
|
transfer_options: Optional[pulumi.Input['TransferJobTransferSpecTransferOptionsArgs']] = None):
|
5414
5423
|
"""
|
5424
|
+
:param pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceArgs'] aws_s3_compatible_data_source: An AWS S3 Compatible data source. Structure documented below.
|
5415
5425
|
:param pulumi.Input['TransferJobTransferSpecAwsS3DataSourceArgs'] aws_s3_data_source: An AWS S3 data source. Structure documented below.
|
5416
5426
|
:param pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceArgs'] azure_blob_storage_data_source: An Azure Blob Storage data source. Structure documented below.
|
5417
5427
|
:param pulumi.Input['TransferJobTransferSpecGcsDataSinkArgs'] gcs_data_sink: A Google Cloud Storage data sink. Structure documented below.
|
@@ -5425,6 +5435,8 @@ class TransferJobTransferSpecArgs:
|
|
5425
5435
|
:param pulumi.Input[_builtins.str] source_agent_pool_name: Specifies the agent pool name associated with the posix data source. When unspecified, the default name is used.
|
5426
5436
|
:param pulumi.Input['TransferJobTransferSpecTransferOptionsArgs'] transfer_options: Characteristics of how to treat files from datasource and sink during job. If the option `delete_objects_unique_in_sink` is true, object conditions based on objects' `last_modification_time` are ignored and do not exclude objects in a data source or a data sink. Structure documented below.
|
5427
5437
|
"""
|
5438
|
+
if aws_s3_compatible_data_source is not None:
|
5439
|
+
pulumi.set(__self__, "aws_s3_compatible_data_source", aws_s3_compatible_data_source)
|
5428
5440
|
if aws_s3_data_source is not None:
|
5429
5441
|
pulumi.set(__self__, "aws_s3_data_source", aws_s3_data_source)
|
5430
5442
|
if azure_blob_storage_data_source is not None:
|
@@ -5450,6 +5462,18 @@ class TransferJobTransferSpecArgs:
|
|
5450
5462
|
if transfer_options is not None:
|
5451
5463
|
pulumi.set(__self__, "transfer_options", transfer_options)
|
5452
5464
|
|
5465
|
+
@_builtins.property
|
5466
|
+
@pulumi.getter(name="awsS3CompatibleDataSource")
|
5467
|
+
def aws_s3_compatible_data_source(self) -> Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceArgs']]:
|
5468
|
+
"""
|
5469
|
+
An AWS S3 Compatible data source. Structure documented below.
|
5470
|
+
"""
|
5471
|
+
return pulumi.get(self, "aws_s3_compatible_data_source")
|
5472
|
+
|
5473
|
+
@aws_s3_compatible_data_source.setter
|
5474
|
+
def aws_s3_compatible_data_source(self, value: Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceArgs']]):
|
5475
|
+
pulumi.set(self, "aws_s3_compatible_data_source", value)
|
5476
|
+
|
5453
5477
|
@_builtins.property
|
5454
5478
|
@pulumi.getter(name="awsS3DataSource")
|
5455
5479
|
def aws_s3_data_source(self) -> Optional[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceArgs']]:
|
@@ -5595,6 +5619,208 @@ class TransferJobTransferSpecArgs:
|
|
5595
5619
|
pulumi.set(self, "transfer_options", value)
|
5596
5620
|
|
5597
5621
|
|
5622
|
+
if not MYPY:
|
5623
|
+
class TransferJobTransferSpecAwsS3CompatibleDataSourceArgsDict(TypedDict):
|
5624
|
+
bucket_name: pulumi.Input[_builtins.str]
|
5625
|
+
"""
|
5626
|
+
Name of the bucket.
|
5627
|
+
"""
|
5628
|
+
endpoint: pulumi.Input[_builtins.str]
|
5629
|
+
"""
|
5630
|
+
Endpoint of the storage service.
|
5631
|
+
"""
|
5632
|
+
path: NotRequired[pulumi.Input[_builtins.str]]
|
5633
|
+
"""
|
5634
|
+
Specifies the path to transfer objects.
|
5635
|
+
"""
|
5636
|
+
region: NotRequired[pulumi.Input[_builtins.str]]
|
5637
|
+
"""
|
5638
|
+
Specifies the region to sign requests with. This can be left blank if requests should be signed with an empty region.
|
5639
|
+
"""
|
5640
|
+
s3_metadata: NotRequired[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgsDict']]
|
5641
|
+
"""
|
5642
|
+
S3 compatible metadata.
|
5643
|
+
"""
|
5644
|
+
elif False:
|
5645
|
+
TransferJobTransferSpecAwsS3CompatibleDataSourceArgsDict: TypeAlias = Mapping[str, Any]
|
5646
|
+
|
5647
|
+
@pulumi.input_type
|
5648
|
+
class TransferJobTransferSpecAwsS3CompatibleDataSourceArgs:
|
5649
|
+
def __init__(__self__, *,
|
5650
|
+
bucket_name: pulumi.Input[_builtins.str],
|
5651
|
+
endpoint: pulumi.Input[_builtins.str],
|
5652
|
+
path: Optional[pulumi.Input[_builtins.str]] = None,
|
5653
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
5654
|
+
s3_metadata: Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs']] = None):
|
5655
|
+
"""
|
5656
|
+
:param pulumi.Input[_builtins.str] bucket_name: Name of the bucket.
|
5657
|
+
:param pulumi.Input[_builtins.str] endpoint: Endpoint of the storage service.
|
5658
|
+
:param pulumi.Input[_builtins.str] path: Specifies the path to transfer objects.
|
5659
|
+
:param pulumi.Input[_builtins.str] region: Specifies the region to sign requests with. This can be left blank if requests should be signed with an empty region.
|
5660
|
+
:param pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs'] s3_metadata: S3 compatible metadata.
|
5661
|
+
"""
|
5662
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
5663
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
5664
|
+
if path is not None:
|
5665
|
+
pulumi.set(__self__, "path", path)
|
5666
|
+
if region is not None:
|
5667
|
+
pulumi.set(__self__, "region", region)
|
5668
|
+
if s3_metadata is not None:
|
5669
|
+
pulumi.set(__self__, "s3_metadata", s3_metadata)
|
5670
|
+
|
5671
|
+
@_builtins.property
|
5672
|
+
@pulumi.getter(name="bucketName")
|
5673
|
+
def bucket_name(self) -> pulumi.Input[_builtins.str]:
|
5674
|
+
"""
|
5675
|
+
Name of the bucket.
|
5676
|
+
"""
|
5677
|
+
return pulumi.get(self, "bucket_name")
|
5678
|
+
|
5679
|
+
@bucket_name.setter
|
5680
|
+
def bucket_name(self, value: pulumi.Input[_builtins.str]):
|
5681
|
+
pulumi.set(self, "bucket_name", value)
|
5682
|
+
|
5683
|
+
@_builtins.property
|
5684
|
+
@pulumi.getter
|
5685
|
+
def endpoint(self) -> pulumi.Input[_builtins.str]:
|
5686
|
+
"""
|
5687
|
+
Endpoint of the storage service.
|
5688
|
+
"""
|
5689
|
+
return pulumi.get(self, "endpoint")
|
5690
|
+
|
5691
|
+
@endpoint.setter
|
5692
|
+
def endpoint(self, value: pulumi.Input[_builtins.str]):
|
5693
|
+
pulumi.set(self, "endpoint", value)
|
5694
|
+
|
5695
|
+
@_builtins.property
|
5696
|
+
@pulumi.getter
|
5697
|
+
def path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5698
|
+
"""
|
5699
|
+
Specifies the path to transfer objects.
|
5700
|
+
"""
|
5701
|
+
return pulumi.get(self, "path")
|
5702
|
+
|
5703
|
+
@path.setter
|
5704
|
+
def path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5705
|
+
pulumi.set(self, "path", value)
|
5706
|
+
|
5707
|
+
@_builtins.property
|
5708
|
+
@pulumi.getter
|
5709
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5710
|
+
"""
|
5711
|
+
Specifies the region to sign requests with. This can be left blank if requests should be signed with an empty region.
|
5712
|
+
"""
|
5713
|
+
return pulumi.get(self, "region")
|
5714
|
+
|
5715
|
+
@region.setter
|
5716
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5717
|
+
pulumi.set(self, "region", value)
|
5718
|
+
|
5719
|
+
@_builtins.property
|
5720
|
+
@pulumi.getter(name="s3Metadata")
|
5721
|
+
def s3_metadata(self) -> Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs']]:
|
5722
|
+
"""
|
5723
|
+
S3 compatible metadata.
|
5724
|
+
"""
|
5725
|
+
return pulumi.get(self, "s3_metadata")
|
5726
|
+
|
5727
|
+
@s3_metadata.setter
|
5728
|
+
def s3_metadata(self, value: Optional[pulumi.Input['TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs']]):
|
5729
|
+
pulumi.set(self, "s3_metadata", value)
|
5730
|
+
|
5731
|
+
|
5732
|
+
if not MYPY:
|
5733
|
+
class TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgsDict(TypedDict):
|
5734
|
+
auth_method: NotRequired[pulumi.Input[_builtins.str]]
|
5735
|
+
"""
|
5736
|
+
Authentication and authorization method used by the storage service. When not specified, Transfer Service will attempt to determine right auth method to use.
|
5737
|
+
"""
|
5738
|
+
list_api: NotRequired[pulumi.Input[_builtins.str]]
|
5739
|
+
"""
|
5740
|
+
The Listing API to use for discovering objects. When not specified, Transfer Service will attempt to determine the right API to use.
|
5741
|
+
"""
|
5742
|
+
protocol: NotRequired[pulumi.Input[_builtins.str]]
|
5743
|
+
"""
|
5744
|
+
The network protocol of the agent. When not specified, the default value of NetworkProtocol NETWORK_PROTOCOL_HTTPS is used.
|
5745
|
+
"""
|
5746
|
+
request_model: NotRequired[pulumi.Input[_builtins.str]]
|
5747
|
+
"""
|
5748
|
+
API request model used to call the storage service. When not specified, the default value of RequestModel REQUEST_MODEL_VIRTUAL_HOSTED_STYLE is used.
|
5749
|
+
"""
|
5750
|
+
elif False:
|
5751
|
+
TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgsDict: TypeAlias = Mapping[str, Any]
|
5752
|
+
|
5753
|
+
@pulumi.input_type
|
5754
|
+
class TransferJobTransferSpecAwsS3CompatibleDataSourceS3MetadataArgs:
|
5755
|
+
def __init__(__self__, *,
|
5756
|
+
auth_method: Optional[pulumi.Input[_builtins.str]] = None,
|
5757
|
+
list_api: Optional[pulumi.Input[_builtins.str]] = None,
|
5758
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
5759
|
+
request_model: Optional[pulumi.Input[_builtins.str]] = None):
|
5760
|
+
"""
|
5761
|
+
:param pulumi.Input[_builtins.str] auth_method: Authentication and authorization method used by the storage service. When not specified, Transfer Service will attempt to determine right auth method to use.
|
5762
|
+
:param pulumi.Input[_builtins.str] list_api: The Listing API to use for discovering objects. When not specified, Transfer Service will attempt to determine the right API to use.
|
5763
|
+
:param pulumi.Input[_builtins.str] protocol: The network protocol of the agent. When not specified, the default value of NetworkProtocol NETWORK_PROTOCOL_HTTPS is used.
|
5764
|
+
:param pulumi.Input[_builtins.str] request_model: API request model used to call the storage service. When not specified, the default value of RequestModel REQUEST_MODEL_VIRTUAL_HOSTED_STYLE is used.
|
5765
|
+
"""
|
5766
|
+
if auth_method is not None:
|
5767
|
+
pulumi.set(__self__, "auth_method", auth_method)
|
5768
|
+
if list_api is not None:
|
5769
|
+
pulumi.set(__self__, "list_api", list_api)
|
5770
|
+
if protocol is not None:
|
5771
|
+
pulumi.set(__self__, "protocol", protocol)
|
5772
|
+
if request_model is not None:
|
5773
|
+
pulumi.set(__self__, "request_model", request_model)
|
5774
|
+
|
5775
|
+
@_builtins.property
|
5776
|
+
@pulumi.getter(name="authMethod")
|
5777
|
+
def auth_method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5778
|
+
"""
|
5779
|
+
Authentication and authorization method used by the storage service. When not specified, Transfer Service will attempt to determine right auth method to use.
|
5780
|
+
"""
|
5781
|
+
return pulumi.get(self, "auth_method")
|
5782
|
+
|
5783
|
+
@auth_method.setter
|
5784
|
+
def auth_method(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5785
|
+
pulumi.set(self, "auth_method", value)
|
5786
|
+
|
5787
|
+
@_builtins.property
|
5788
|
+
@pulumi.getter(name="listApi")
|
5789
|
+
def list_api(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5790
|
+
"""
|
5791
|
+
The Listing API to use for discovering objects. When not specified, Transfer Service will attempt to determine the right API to use.
|
5792
|
+
"""
|
5793
|
+
return pulumi.get(self, "list_api")
|
5794
|
+
|
5795
|
+
@list_api.setter
|
5796
|
+
def list_api(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5797
|
+
pulumi.set(self, "list_api", value)
|
5798
|
+
|
5799
|
+
@_builtins.property
|
5800
|
+
@pulumi.getter
|
5801
|
+
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5802
|
+
"""
|
5803
|
+
The network protocol of the agent. When not specified, the default value of NetworkProtocol NETWORK_PROTOCOL_HTTPS is used.
|
5804
|
+
"""
|
5805
|
+
return pulumi.get(self, "protocol")
|
5806
|
+
|
5807
|
+
@protocol.setter
|
5808
|
+
def protocol(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5809
|
+
pulumi.set(self, "protocol", value)
|
5810
|
+
|
5811
|
+
@_builtins.property
|
5812
|
+
@pulumi.getter(name="requestModel")
|
5813
|
+
def request_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5814
|
+
"""
|
5815
|
+
API request model used to call the storage service. When not specified, the default value of RequestModel REQUEST_MODEL_VIRTUAL_HOSTED_STYLE is used.
|
5816
|
+
"""
|
5817
|
+
return pulumi.get(self, "request_model")
|
5818
|
+
|
5819
|
+
@request_model.setter
|
5820
|
+
def request_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5821
|
+
pulumi.set(self, "request_model", value)
|
5822
|
+
|
5823
|
+
|
5598
5824
|
if not MYPY:
|
5599
5825
|
class TransferJobTransferSpecAwsS3DataSourceArgsDict(TypedDict):
|
5600
5826
|
bucket_name: pulumi.Input[_builtins.str]
|
@@ -5609,6 +5835,10 @@ if not MYPY:
|
|
5609
5835
|
"""
|
5610
5836
|
The CloudFront distribution domain name pointing to this bucket, to use when fetching. See [Transfer from S3 via CloudFront](https://cloud.google.com/storage-transfer/docs/s3-cloudfront) for more information. Format: https://{id}.cloudfront.net or any valid custom domain. Must begin with https://.
|
5611
5837
|
"""
|
5838
|
+
credentials_secret: NotRequired[pulumi.Input[_builtins.str]]
|
5839
|
+
"""
|
5840
|
+
The Resource name of a secret in Secret Manager. AWS credentials must be stored in Secret Manager in JSON format. If credentials_secret is specified, do not specify role_arn or aws_access_key. Format: projects/{projectNumber}/secrets/{secret_name}.
|
5841
|
+
"""
|
5612
5842
|
managed_private_network: NotRequired[pulumi.Input[_builtins.bool]]
|
5613
5843
|
"""
|
5614
5844
|
Egress bytes over a Google-managed private network. This network is shared between other users of Storage Transfer Service.
|
@@ -5630,6 +5860,7 @@ class TransferJobTransferSpecAwsS3DataSourceArgs:
|
|
5630
5860
|
bucket_name: pulumi.Input[_builtins.str],
|
5631
5861
|
aws_access_key: Optional[pulumi.Input['TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs']] = None,
|
5632
5862
|
cloudfront_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
5863
|
+
credentials_secret: Optional[pulumi.Input[_builtins.str]] = None,
|
5633
5864
|
managed_private_network: Optional[pulumi.Input[_builtins.bool]] = None,
|
5634
5865
|
path: Optional[pulumi.Input[_builtins.str]] = None,
|
5635
5866
|
role_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
@@ -5637,6 +5868,7 @@ class TransferJobTransferSpecAwsS3DataSourceArgs:
|
|
5637
5868
|
:param pulumi.Input[_builtins.str] bucket_name: S3 Bucket name.
|
5638
5869
|
:param pulumi.Input['TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs'] aws_access_key: AWS credentials block.
|
5639
5870
|
:param pulumi.Input[_builtins.str] cloudfront_domain: The CloudFront distribution domain name pointing to this bucket, to use when fetching. See [Transfer from S3 via CloudFront](https://cloud.google.com/storage-transfer/docs/s3-cloudfront) for more information. Format: https://{id}.cloudfront.net or any valid custom domain. Must begin with https://.
|
5871
|
+
:param pulumi.Input[_builtins.str] credentials_secret: The Resource name of a secret in Secret Manager. AWS credentials must be stored in Secret Manager in JSON format. If credentials_secret is specified, do not specify role_arn or aws_access_key. Format: projects/{projectNumber}/secrets/{secret_name}.
|
5640
5872
|
:param pulumi.Input[_builtins.bool] managed_private_network: Egress bytes over a Google-managed private network. This network is shared between other users of Storage Transfer Service.
|
5641
5873
|
:param pulumi.Input[_builtins.str] path: S3 Bucket path in bucket to transfer.
|
5642
5874
|
:param pulumi.Input[_builtins.str] role_arn: The Amazon Resource Name (ARN) of the role to support temporary credentials via 'AssumeRoleWithWebIdentity'. For more information about ARNs, see [IAM ARNs](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns). When a role ARN is provided, Transfer Service fetches temporary credentials for the session using a 'AssumeRoleWithWebIdentity' call for the provided role using the [GoogleServiceAccount][] for this project.
|
@@ -5646,6 +5878,8 @@ class TransferJobTransferSpecAwsS3DataSourceArgs:
|
|
5646
5878
|
pulumi.set(__self__, "aws_access_key", aws_access_key)
|
5647
5879
|
if cloudfront_domain is not None:
|
5648
5880
|
pulumi.set(__self__, "cloudfront_domain", cloudfront_domain)
|
5881
|
+
if credentials_secret is not None:
|
5882
|
+
pulumi.set(__self__, "credentials_secret", credentials_secret)
|
5649
5883
|
if managed_private_network is not None:
|
5650
5884
|
pulumi.set(__self__, "managed_private_network", managed_private_network)
|
5651
5885
|
if path is not None:
|
@@ -5689,6 +5923,18 @@ class TransferJobTransferSpecAwsS3DataSourceArgs:
|
|
5689
5923
|
def cloudfront_domain(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5690
5924
|
pulumi.set(self, "cloudfront_domain", value)
|
5691
5925
|
|
5926
|
+
@_builtins.property
|
5927
|
+
@pulumi.getter(name="credentialsSecret")
|
5928
|
+
def credentials_secret(self) -> Optional[pulumi.Input[_builtins.str]]:
|
5929
|
+
"""
|
5930
|
+
The Resource name of a secret in Secret Manager. AWS credentials must be stored in Secret Manager in JSON format. If credentials_secret is specified, do not specify role_arn or aws_access_key. Format: projects/{projectNumber}/secrets/{secret_name}.
|
5931
|
+
"""
|
5932
|
+
return pulumi.get(self, "credentials_secret")
|
5933
|
+
|
5934
|
+
@credentials_secret.setter
|
5935
|
+
def credentials_secret(self, value: Optional[pulumi.Input[_builtins.str]]):
|
5936
|
+
pulumi.set(self, "credentials_secret", value)
|
5937
|
+
|
5692
5938
|
@_builtins.property
|
5693
5939
|
@pulumi.getter(name="managedPrivateNetwork")
|
5694
5940
|
def managed_private_network(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -88,9 +88,6 @@ class BucketObjectArgs:
|
|
88
88
|
pulumi.set(__self__, "customer_encryption", customer_encryption)
|
89
89
|
if deletion_policy is not None:
|
90
90
|
pulumi.set(__self__, "deletion_policy", deletion_policy)
|
91
|
-
if detect_md5hash is not None:
|
92
|
-
warnings.warn("""`detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""", DeprecationWarning)
|
93
|
-
pulumi.log.warn("""detect_md5hash is deprecated: `detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""")
|
94
91
|
if detect_md5hash is not None:
|
95
92
|
pulumi.set(__self__, "detect_md5hash", detect_md5hash)
|
96
93
|
if event_based_hold is not None:
|
@@ -223,7 +220,6 @@ class BucketObjectArgs:
|
|
223
220
|
|
224
221
|
@_builtins.property
|
225
222
|
@pulumi.getter(name="detectMd5hash")
|
226
|
-
@_utilities.deprecated("""`detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""")
|
227
223
|
def detect_md5hash(self) -> Optional[pulumi.Input[_builtins.str]]:
|
228
224
|
return pulumi.get(self, "detect_md5hash")
|
229
225
|
|
@@ -447,9 +443,6 @@ class _BucketObjectState:
|
|
447
443
|
pulumi.set(__self__, "customer_encryption", customer_encryption)
|
448
444
|
if deletion_policy is not None:
|
449
445
|
pulumi.set(__self__, "deletion_policy", deletion_policy)
|
450
|
-
if detect_md5hash is not None:
|
451
|
-
warnings.warn("""`detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""", DeprecationWarning)
|
452
|
-
pulumi.log.warn("""detect_md5hash is deprecated: `detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""")
|
453
446
|
if detect_md5hash is not None:
|
454
447
|
pulumi.set(__self__, "detect_md5hash", detect_md5hash)
|
455
448
|
if event_based_hold is not None:
|
@@ -606,7 +599,6 @@ class _BucketObjectState:
|
|
606
599
|
|
607
600
|
@_builtins.property
|
608
601
|
@pulumi.getter(name="detectMd5hash")
|
609
|
-
@_utilities.deprecated("""`detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""")
|
610
602
|
def detect_md5hash(self) -> Optional[pulumi.Input[_builtins.str]]:
|
611
603
|
return pulumi.get(self, "detect_md5hash")
|
612
604
|
|
@@ -1231,7 +1223,6 @@ class BucketObject(pulumi.CustomResource):
|
|
1231
1223
|
|
1232
1224
|
@_builtins.property
|
1233
1225
|
@pulumi.getter(name="detectMd5hash")
|
1234
|
-
@_utilities.deprecated("""`detect_md5hash` is deprecated and will be removed in future release. Start using `source_md5hash` instead""")
|
1235
1226
|
def detect_md5hash(self) -> pulumi.Output[Optional[_builtins.str]]:
|
1236
1227
|
return pulumi.get(self, "detect_md5hash")
|
1237
1228
|
|