pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.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 +123 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +214 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +142 -2
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/looker/instance.py +35 -14
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +7 -0
- pulumi_gcp/networksecurity/_inputs.py +2018 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +1463 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +66 -10
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +214 -24
- pulumi_gcp/tpu/outputs.py +182 -16
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/tpu/v2_vm.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
@@ -44,8 +44,12 @@ class RepositoryIamBindingArgs:
|
|
44
44
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
45
45
|
`artifactregistry.RepositoryIamBinding` can be used per role. Note that custom roles must be of the format
|
46
46
|
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
47
|
-
:param pulumi.Input[str] location: The name of the location
|
48
|
-
|
47
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
48
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
49
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
50
|
+
or use the
|
51
|
+
artifactregistry_get_locations
|
52
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
49
53
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
50
54
|
location is specified, it is taken from the provider configuration.
|
51
55
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -122,8 +126,12 @@ class RepositoryIamBindingArgs:
|
|
122
126
|
@pulumi.getter
|
123
127
|
def location(self) -> Optional[pulumi.Input[str]]:
|
124
128
|
"""
|
125
|
-
The name of the location
|
126
|
-
|
129
|
+
The name of the repository's location. In addition to specific regions,
|
130
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
131
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
132
|
+
or use the
|
133
|
+
artifactregistry_get_locations
|
134
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
127
135
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
128
136
|
location is specified, it is taken from the provider configuration.
|
129
137
|
"""
|
@@ -160,8 +168,12 @@ class _RepositoryIamBindingState:
|
|
160
168
|
"""
|
161
169
|
Input properties used for looking up and filtering RepositoryIamBinding resources.
|
162
170
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
163
|
-
:param pulumi.Input[str] location: The name of the location
|
164
|
-
|
171
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
172
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
173
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
174
|
+
or use the
|
175
|
+
artifactregistry_get_locations
|
176
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
165
177
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
166
178
|
location is specified, it is taken from the provider configuration.
|
167
179
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -222,8 +234,12 @@ class _RepositoryIamBindingState:
|
|
222
234
|
@pulumi.getter
|
223
235
|
def location(self) -> Optional[pulumi.Input[str]]:
|
224
236
|
"""
|
225
|
-
The name of the location
|
226
|
-
|
237
|
+
The name of the repository's location. In addition to specific regions,
|
238
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
239
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
240
|
+
or use the
|
241
|
+
artifactregistry_get_locations
|
242
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
227
243
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
228
244
|
location is specified, it is taken from the provider configuration.
|
229
245
|
"""
|
@@ -471,8 +487,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
471
487
|
|
472
488
|
:param str resource_name: The name of the resource.
|
473
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
474
|
-
:param pulumi.Input[str] location: The name of the location
|
475
|
-
|
490
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
491
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
492
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
493
|
+
or use the
|
494
|
+
artifactregistry_get_locations
|
495
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
476
496
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
477
497
|
location is specified, it is taken from the provider configuration.
|
478
498
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -729,8 +749,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
729
749
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
730
750
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
731
751
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
732
|
-
:param pulumi.Input[str] location: The name of the location
|
733
|
-
|
752
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
753
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
754
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
755
|
+
or use the
|
756
|
+
artifactregistry_get_locations
|
757
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
734
758
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
735
759
|
location is specified, it is taken from the provider configuration.
|
736
760
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: Identities that will be granted the privilege in `role`.
|
@@ -781,8 +805,12 @@ class RepositoryIamBinding(pulumi.CustomResource):
|
|
781
805
|
@pulumi.getter
|
782
806
|
def location(self) -> pulumi.Output[str]:
|
783
807
|
"""
|
784
|
-
The name of the location
|
785
|
-
|
808
|
+
The name of the repository's location. In addition to specific regions,
|
809
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
810
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
811
|
+
or use the
|
812
|
+
artifactregistry_get_locations
|
813
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
786
814
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
787
815
|
location is specified, it is taken from the provider configuration.
|
788
816
|
"""
|
@@ -44,8 +44,12 @@ class RepositoryIamMemberArgs:
|
|
44
44
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
45
45
|
`artifactregistry.RepositoryIamBinding` can be used per role. Note that custom roles must be of the format
|
46
46
|
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
47
|
-
:param pulumi.Input[str] location: The name of the location
|
48
|
-
|
47
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
48
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
49
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
50
|
+
or use the
|
51
|
+
artifactregistry_get_locations
|
52
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
49
53
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
50
54
|
location is specified, it is taken from the provider configuration.
|
51
55
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -122,8 +126,12 @@ class RepositoryIamMemberArgs:
|
|
122
126
|
@pulumi.getter
|
123
127
|
def location(self) -> Optional[pulumi.Input[str]]:
|
124
128
|
"""
|
125
|
-
The name of the location
|
126
|
-
|
129
|
+
The name of the repository's location. In addition to specific regions,
|
130
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
131
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
132
|
+
or use the
|
133
|
+
artifactregistry_get_locations
|
134
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
127
135
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
128
136
|
location is specified, it is taken from the provider configuration.
|
129
137
|
"""
|
@@ -160,8 +168,12 @@ class _RepositoryIamMemberState:
|
|
160
168
|
"""
|
161
169
|
Input properties used for looking up and filtering RepositoryIamMember resources.
|
162
170
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
163
|
-
:param pulumi.Input[str] location: The name of the location
|
164
|
-
|
171
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
172
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
173
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
174
|
+
or use the
|
175
|
+
artifactregistry_get_locations
|
176
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
165
177
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
166
178
|
location is specified, it is taken from the provider configuration.
|
167
179
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -222,8 +234,12 @@ class _RepositoryIamMemberState:
|
|
222
234
|
@pulumi.getter
|
223
235
|
def location(self) -> Optional[pulumi.Input[str]]:
|
224
236
|
"""
|
225
|
-
The name of the location
|
226
|
-
|
237
|
+
The name of the repository's location. In addition to specific regions,
|
238
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
239
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
240
|
+
or use the
|
241
|
+
artifactregistry_get_locations
|
242
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
227
243
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
228
244
|
location is specified, it is taken from the provider configuration.
|
229
245
|
"""
|
@@ -471,8 +487,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
471
487
|
|
472
488
|
:param str resource_name: The name of the resource.
|
473
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
474
|
-
:param pulumi.Input[str] location: The name of the location
|
475
|
-
|
490
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
491
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
492
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
493
|
+
or use the
|
494
|
+
artifactregistry_get_locations
|
495
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
476
496
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
477
497
|
location is specified, it is taken from the provider configuration.
|
478
498
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -729,8 +749,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
729
749
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
730
750
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
731
751
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
732
|
-
:param pulumi.Input[str] location: The name of the location
|
733
|
-
|
752
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
753
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
754
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
755
|
+
or use the
|
756
|
+
artifactregistry_get_locations
|
757
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
734
758
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
735
759
|
location is specified, it is taken from the provider configuration.
|
736
760
|
:param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
|
@@ -781,8 +805,12 @@ class RepositoryIamMember(pulumi.CustomResource):
|
|
781
805
|
@pulumi.getter
|
782
806
|
def location(self) -> pulumi.Output[str]:
|
783
807
|
"""
|
784
|
-
The name of the location
|
785
|
-
|
808
|
+
The name of the repository's location. In addition to specific regions,
|
809
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
810
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
811
|
+
or use the
|
812
|
+
artifactregistry_get_locations
|
813
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
786
814
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
787
815
|
location is specified, it is taken from the provider configuration.
|
788
816
|
"""
|
@@ -28,8 +28,12 @@ class RepositoryIamPolicyArgs:
|
|
28
28
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
29
29
|
a `organizations_get_iam_policy` data source.
|
30
30
|
:param pulumi.Input[str] repository: Used to find the parent resource to bind the IAM policy to
|
31
|
-
:param pulumi.Input[str] location: The name of the location
|
32
|
-
|
31
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
32
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
33
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
34
|
+
or use the
|
35
|
+
artifactregistry_get_locations
|
36
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
33
37
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
34
38
|
location is specified, it is taken from the provider configuration.
|
35
39
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -71,8 +75,12 @@ class RepositoryIamPolicyArgs:
|
|
71
75
|
@pulumi.getter
|
72
76
|
def location(self) -> Optional[pulumi.Input[str]]:
|
73
77
|
"""
|
74
|
-
The name of the location
|
75
|
-
|
78
|
+
The name of the repository's location. In addition to specific regions,
|
79
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
80
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
81
|
+
or use the
|
82
|
+
artifactregistry_get_locations
|
83
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
76
84
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
77
85
|
location is specified, it is taken from the provider configuration.
|
78
86
|
"""
|
@@ -107,8 +115,12 @@ class _RepositoryIamPolicyState:
|
|
107
115
|
"""
|
108
116
|
Input properties used for looking up and filtering RepositoryIamPolicy resources.
|
109
117
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
110
|
-
:param pulumi.Input[str] location: The name of the location
|
111
|
-
|
118
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
119
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
120
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
121
|
+
or use the
|
122
|
+
artifactregistry_get_locations
|
123
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
112
124
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
113
125
|
location is specified, it is taken from the provider configuration.
|
114
126
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -144,8 +156,12 @@ class _RepositoryIamPolicyState:
|
|
144
156
|
@pulumi.getter
|
145
157
|
def location(self) -> Optional[pulumi.Input[str]]:
|
146
158
|
"""
|
147
|
-
The name of the location
|
148
|
-
|
159
|
+
The name of the repository's location. In addition to specific regions,
|
160
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
161
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
162
|
+
or use the
|
163
|
+
artifactregistry_get_locations
|
164
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
149
165
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
150
166
|
location is specified, it is taken from the provider configuration.
|
151
167
|
"""
|
@@ -368,8 +384,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
368
384
|
|
369
385
|
:param str resource_name: The name of the resource.
|
370
386
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
371
|
-
:param pulumi.Input[str] location: The name of the location
|
372
|
-
|
387
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
388
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
389
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
390
|
+
or use the
|
391
|
+
artifactregistry_get_locations
|
392
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
373
393
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
374
394
|
location is specified, it is taken from the provider configuration.
|
375
395
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -606,8 +626,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
606
626
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
607
627
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
608
628
|
:param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
|
609
|
-
:param pulumi.Input[str] location: The name of the location
|
610
|
-
|
629
|
+
:param pulumi.Input[str] location: The name of the repository's location. In addition to specific regions,
|
630
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
631
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
632
|
+
or use the
|
633
|
+
artifactregistry_get_locations
|
634
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
611
635
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
612
636
|
location is specified, it is taken from the provider configuration.
|
613
637
|
:param pulumi.Input[str] policy_data: The policy data generated by
|
@@ -639,8 +663,12 @@ class RepositoryIamPolicy(pulumi.CustomResource):
|
|
639
663
|
@pulumi.getter
|
640
664
|
def location(self) -> pulumi.Output[str]:
|
641
665
|
"""
|
642
|
-
The name of the location
|
643
|
-
|
666
|
+
The name of the repository's location. In addition to specific regions,
|
667
|
+
special values for multi-region locations are `asia`, `europe`, and `us`.
|
668
|
+
See [here](https://cloud.google.com/artifact-registry/docs/repositories/repo-locations),
|
669
|
+
or use the
|
670
|
+
artifactregistry_get_locations
|
671
|
+
data source for possible values. Used to find the parent resource to bind the IAM policy to. If not specified,
|
644
672
|
the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
|
645
673
|
location is specified, it is taken from the provider configuration.
|
646
674
|
"""
|
@@ -38,7 +38,7 @@ class WorkloadArgs:
|
|
38
38
|
workload_options: Optional[pulumi.Input['WorkloadWorkloadOptionsArgs']] = None):
|
39
39
|
"""
|
40
40
|
The set of arguments for constructing a Workload resource.
|
41
|
-
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
41
|
+
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
42
42
|
:param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
|
43
43
|
:param pulumi.Input[str] location: The location for the resource
|
44
44
|
:param pulumi.Input[str] organization: The organization for the resource
|
@@ -92,7 +92,7 @@ class WorkloadArgs:
|
|
92
92
|
@pulumi.getter(name="complianceRegime")
|
93
93
|
def compliance_regime(self) -> pulumi.Input[str]:
|
94
94
|
"""
|
95
|
-
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
95
|
+
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
96
96
|
"""
|
97
97
|
return pulumi.get(self, "compliance_regime")
|
98
98
|
|
@@ -307,7 +307,7 @@ class _WorkloadState:
|
|
307
307
|
"""
|
308
308
|
Input properties used for looking up and filtering Workload resources.
|
309
309
|
:param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
|
310
|
-
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
310
|
+
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
311
311
|
:param pulumi.Input[Sequence[pulumi.Input['WorkloadComplianceStatusArgs']]] compliance_statuses: Output only. Count of active Violations in the Workload.
|
312
312
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
|
313
313
|
:param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
|
@@ -406,7 +406,7 @@ class _WorkloadState:
|
|
406
406
|
@pulumi.getter(name="complianceRegime")
|
407
407
|
def compliance_regime(self) -> Optional[pulumi.Input[str]]:
|
408
408
|
"""
|
409
|
-
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
409
|
+
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
410
410
|
"""
|
411
411
|
return pulumi.get(self, "compliance_regime")
|
412
412
|
|
@@ -853,7 +853,7 @@ class Workload(pulumi.CustomResource):
|
|
853
853
|
:param str resource_name: The name of the resource.
|
854
854
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
855
855
|
:param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
|
856
|
-
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
856
|
+
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
857
857
|
:param pulumi.Input[str] display_name: Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
|
858
858
|
:param pulumi.Input[bool] enable_sovereign_controls: Optional. Indicates the sovereignty status of the given workload. Currently meant to be used by Europe/Canada customers.
|
859
859
|
:param pulumi.Input[Union['WorkloadKmsSettingsArgs', 'WorkloadKmsSettingsArgsDict']] kms_settings: **DEPRECATED** Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.
|
@@ -1129,7 +1129,7 @@ class Workload(pulumi.CustomResource):
|
|
1129
1129
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1130
1130
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1131
1131
|
:param pulumi.Input[str] billing_account: Optional. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF`.
|
1132
|
-
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
1132
|
+
:param pulumi.Input[str] compliance_regime: Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
1133
1133
|
:param pulumi.Input[Sequence[pulumi.Input[Union['WorkloadComplianceStatusArgs', 'WorkloadComplianceStatusArgsDict']]]] compliance_statuses: Output only. Count of active Violations in the Workload.
|
1134
1134
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] compliant_but_disallowed_services: Output only. Urls for services which are compliant for this Assured Workload, but which are currently disallowed by the ResourceUsageRestriction org policy. Invoke workloads.restrictAllowedResources endpoint to allow your project developers to use these services in their environment.
|
1135
1135
|
:param pulumi.Input[str] create_time: Output only. Immutable. The Workload creation timestamp.
|
@@ -1204,7 +1204,7 @@ class Workload(pulumi.CustomResource):
|
|
1204
1204
|
@pulumi.getter(name="complianceRegime")
|
1205
1205
|
def compliance_regime(self) -> pulumi.Output[str]:
|
1206
1206
|
"""
|
1207
|
-
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT
|
1207
|
+
Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS, HIPAA, HITRUST, EU_REGIONS_AND_SUPPORT, CA_REGIONS_AND_SUPPORT, ITAR, AU_REGIONS_AND_US_SUPPORT, ASSURED_WORKLOADS_FOR_PARTNERS, ISR_REGIONS, ISR_REGIONS_AND_SUPPORT, CA_PROTECTED_B, IL5, IL2, JP_REGIONS_AND_SUPPORT, KSA_REGIONS_AND_SUPPORT_WITH_SOVEREIGNTY_CONTROLS, REGIONAL_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS, HEALTHCARE_AND_LIFE_SCIENCES_CONTROLS_WITH_US_SUPPORT, IRS_1075
|
1208
1208
|
"""
|
1209
1209
|
return pulumi.get(self, "compliance_regime")
|
1210
1210
|
|
@@ -8,8 +8,10 @@ import typing
|
|
8
8
|
from .backup_plan import *
|
9
9
|
from .backup_plan_association import *
|
10
10
|
from .backup_vault import *
|
11
|
+
from .get_backup import *
|
11
12
|
from .get_backup_plan import *
|
12
13
|
from .get_backup_plan_association import *
|
14
|
+
from .get_backup_vault import *
|
13
15
|
from .get_data_source import *
|
14
16
|
from .get_management_server import *
|
15
17
|
from .management_server import *
|
@@ -337,7 +337,7 @@ class BackupPlan(pulumi.CustomResource):
|
|
337
337
|
|
338
338
|
my_backup_vault = gcp.backupdisasterrecovery.BackupVault("my_backup_vault",
|
339
339
|
location="us-central1",
|
340
|
-
backup_vault_id="
|
340
|
+
backup_vault_id="backup-vault-simple-test",
|
341
341
|
backup_minimum_enforced_retention_duration="100000s")
|
342
342
|
my_backup_plan_1 = gcp.backupdisasterrecovery.BackupPlan("my-backup-plan-1",
|
343
343
|
location="us-central1",
|
@@ -410,7 +410,7 @@ class BackupPlan(pulumi.CustomResource):
|
|
410
410
|
|
411
411
|
my_backup_vault = gcp.backupdisasterrecovery.BackupVault("my_backup_vault",
|
412
412
|
location="us-central1",
|
413
|
-
backup_vault_id="
|
413
|
+
backup_vault_id="backup-vault-simple-test",
|
414
414
|
backup_minimum_enforced_retention_duration="100000s")
|
415
415
|
my_backup_plan_1 = gcp.backupdisasterrecovery.BackupPlan("my-backup-plan-1",
|
416
416
|
location="us-central1",
|
@@ -808,6 +808,8 @@ class BackupVault(pulumi.CustomResource):
|
|
808
808
|
project: Optional[pulumi.Input[str]] = None,
|
809
809
|
__props__=None):
|
810
810
|
"""
|
811
|
+
Container to store and organize immutable and indelible backups.
|
812
|
+
|
811
813
|
## Example Usage
|
812
814
|
|
813
815
|
### Backup Dr Backup Vault Full
|
@@ -821,14 +823,14 @@ class BackupVault(pulumi.CustomResource):
|
|
821
823
|
backup_vault_id="backup-vault-test",
|
822
824
|
description="This is a second backup vault built by Terraform.",
|
823
825
|
backup_minimum_enforced_retention_duration="100000s",
|
824
|
-
labels={
|
825
|
-
"foo": "bar1",
|
826
|
-
"bar": "baz1",
|
827
|
-
},
|
828
826
|
annotations={
|
829
827
|
"annotations1": "bar1",
|
830
828
|
"annotations2": "baz1",
|
831
829
|
},
|
830
|
+
labels={
|
831
|
+
"foo": "bar1",
|
832
|
+
"bar": "baz1",
|
833
|
+
},
|
832
834
|
force_update=True,
|
833
835
|
access_restriction="WITHIN_ORGANIZATION",
|
834
836
|
ignore_inactive_datasources=True,
|
@@ -905,6 +907,8 @@ class BackupVault(pulumi.CustomResource):
|
|
905
907
|
args: BackupVaultArgs,
|
906
908
|
opts: Optional[pulumi.ResourceOptions] = None):
|
907
909
|
"""
|
910
|
+
Container to store and organize immutable and indelible backups.
|
911
|
+
|
908
912
|
## Example Usage
|
909
913
|
|
910
914
|
### Backup Dr Backup Vault Full
|
@@ -918,14 +922,14 @@ class BackupVault(pulumi.CustomResource):
|
|
918
922
|
backup_vault_id="backup-vault-test",
|
919
923
|
description="This is a second backup vault built by Terraform.",
|
920
924
|
backup_minimum_enforced_retention_duration="100000s",
|
921
|
-
labels={
|
922
|
-
"foo": "bar1",
|
923
|
-
"bar": "baz1",
|
924
|
-
},
|
925
925
|
annotations={
|
926
926
|
"annotations1": "bar1",
|
927
927
|
"annotations2": "baz1",
|
928
928
|
},
|
929
|
+
labels={
|
930
|
+
"foo": "bar1",
|
931
|
+
"bar": "baz1",
|
932
|
+
},
|
929
933
|
force_update=True,
|
930
934
|
access_restriction="WITHIN_ORGANIZATION",
|
931
935
|
ignore_inactive_datasources=True,
|