pulumi-gcp 8.0.0a1726253601__py3-none-any.whl → 8.1.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 +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
@@ -59,12 +59,12 @@ class InstanceArgs:
|
|
59
59
|
FILE_STRIPE_LEVEL_MIN
|
60
60
|
FILE_STRIPE_LEVEL_BALANCED
|
61
61
|
FILE_STRIPE_LEVEL_MAX
|
62
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
63
|
-
resources into groups that reflect a customer's organizational
|
64
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
65
|
-
resources. They can be used to control how resource metrics are aggregated.
|
66
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
67
|
-
|
62
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
63
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
64
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
65
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
66
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
67
|
+
load balancing, etc.).
|
68
68
|
* Label keys must be between 1 and 63 characters long and must conform to
|
69
69
|
the following regular expression: `a-z{0,62}`.
|
70
70
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -75,19 +75,19 @@ class InstanceArgs:
|
|
75
75
|
characters may be allowed in the future. Therefore, you are advised to use
|
76
76
|
an internal label representation, such as JSON, which doesn't rely upon
|
77
77
|
specific characters being disallowed. For example, representing labels
|
78
|
-
as the string: name + "_" + value
|
79
|
-
allow "_" in a future release.
|
78
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
79
|
+
allow `"_"` in a future release. "
|
80
|
+
|
80
81
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
81
82
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
82
|
-
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine
|
83
|
-
|
84
|
-
instance is connected.
|
83
|
+
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
84
|
+
to which the instance is connected.
|
85
85
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
86
86
|
If it is not provided, the provider project is used.
|
87
|
-
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
88
|
-
private service access connection for example, "test-default"
|
89
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
90
|
-
considered.
|
87
|
+
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
88
|
+
associated with the private service access connection for example, \\"test-default\\"
|
89
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
90
|
+
be considered.
|
91
91
|
"""
|
92
92
|
pulumi.set(__self__, "capacity_gib", capacity_gib)
|
93
93
|
pulumi.set(__self__, "instance_id", instance_id)
|
@@ -205,12 +205,12 @@ class InstanceArgs:
|
|
205
205
|
@pulumi.getter
|
206
206
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
207
207
|
"""
|
208
|
-
Cloud Labels are a flexible and lightweight mechanism for
|
209
|
-
resources into groups that reflect a customer's organizational
|
210
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
211
|
-
resources. They can be used to control how resource metrics are aggregated.
|
212
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
213
|
-
|
208
|
+
Cloud Labels are a flexible and lightweight mechanism for
|
209
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
210
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
211
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
212
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
213
|
+
load balancing, etc.).
|
214
214
|
* Label keys must be between 1 and 63 characters long and must conform to
|
215
215
|
the following regular expression: `a-z{0,62}`.
|
216
216
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -221,8 +221,9 @@ class InstanceArgs:
|
|
221
221
|
characters may be allowed in the future. Therefore, you are advised to use
|
222
222
|
an internal label representation, such as JSON, which doesn't rely upon
|
223
223
|
specific characters being disallowed. For example, representing labels
|
224
|
-
as the string: name + "_" + value
|
225
|
-
allow "_" in a future release.
|
224
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
225
|
+
allow `"_"` in a future release. "
|
226
|
+
|
226
227
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
227
228
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
228
229
|
"""
|
@@ -236,9 +237,8 @@ class InstanceArgs:
|
|
236
237
|
@pulumi.getter
|
237
238
|
def network(self) -> Optional[pulumi.Input[str]]:
|
238
239
|
"""
|
239
|
-
Immutable. The name of the Google Compute Engine
|
240
|
-
|
241
|
-
instance is connected.
|
240
|
+
Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
241
|
+
to which the instance is connected.
|
242
242
|
"""
|
243
243
|
return pulumi.get(self, "network")
|
244
244
|
|
@@ -263,10 +263,10 @@ class InstanceArgs:
|
|
263
263
|
@pulumi.getter(name="reservedIpRange")
|
264
264
|
def reserved_ip_range(self) -> Optional[pulumi.Input[str]]:
|
265
265
|
"""
|
266
|
-
Immutable. Contains the id of the allocated IP address range
|
267
|
-
private service access connection for example, "test-default"
|
268
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
269
|
-
considered.
|
266
|
+
Immutable. Contains the id of the allocated IP address range
|
267
|
+
associated with the private service access connection for example, \\"test-default\\"
|
268
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
269
|
+
be considered.
|
270
270
|
"""
|
271
271
|
return pulumi.get(self, "reserved_ip_range")
|
272
272
|
|
@@ -303,7 +303,7 @@ class _InstanceState:
|
|
303
303
|
Contains a list of IPv4 addresses used for client side configuration.
|
304
304
|
:param pulumi.Input[str] capacity_gib: Required. Immutable. Storage capacity of Parallelstore instance in Gibibytes (GiB).
|
305
305
|
:param pulumi.Input[str] create_time: The time when the instance was created.
|
306
|
-
:param pulumi.Input[str] daos_version: The version of DAOS software running in the instance
|
306
|
+
:param pulumi.Input[str] daos_version: The version of DAOS software running in the instance.
|
307
307
|
:param pulumi.Input[str] description: The description of the instance. 2048 characters or less.
|
308
308
|
:param pulumi.Input[str] directory_stripe_level: Stripe level for directories.
|
309
309
|
MIN when directory has a small number of files.
|
@@ -314,9 +314,9 @@ class _InstanceState:
|
|
314
314
|
DIRECTORY_STRIPE_LEVEL_BALANCED
|
315
315
|
DIRECTORY_STRIPE_LEVEL_MAX
|
316
316
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
317
|
-
:param pulumi.Input[str] effective_reserved_ip_range: Immutable. Contains the id of the allocated IP address
|
318
|
-
private service access connection for example, "test-default"
|
319
|
-
with IP range 10.0.0.0/29. This field is populated by the service
|
317
|
+
:param pulumi.Input[str] effective_reserved_ip_range: Immutable. Contains the id of the allocated IP address
|
318
|
+
range associated with the private service access connection for example, \\"test-default\\"
|
319
|
+
associated with IP range 10.0.0.0/29. This field is populated by the service
|
320
320
|
and contains the value currently used by the service.
|
321
321
|
:param pulumi.Input[str] file_stripe_level: Stripe level for files.
|
322
322
|
MIN better suited for small size files.
|
@@ -335,12 +335,12 @@ class _InstanceState:
|
|
335
335
|
|
336
336
|
|
337
337
|
- - -
|
338
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
339
|
-
resources into groups that reflect a customer's organizational
|
340
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
341
|
-
resources. They can be used to control how resource metrics are aggregated.
|
342
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
343
|
-
|
338
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
339
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
340
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
341
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
342
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
343
|
+
load balancing, etc.).
|
344
344
|
* Label keys must be between 1 and 63 characters long and must conform to
|
345
345
|
the following regular expression: `a-z{0,62}`.
|
346
346
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -351,24 +351,24 @@ class _InstanceState:
|
|
351
351
|
characters may be allowed in the future. Therefore, you are advised to use
|
352
352
|
an internal label representation, such as JSON, which doesn't rely upon
|
353
353
|
specific characters being disallowed. For example, representing labels
|
354
|
-
as the string: name + "_" + value
|
355
|
-
allow "_" in a future release.
|
354
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
355
|
+
allow `"_"` in a future release. "
|
356
|
+
|
356
357
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
357
358
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
358
359
|
:param pulumi.Input[str] location: Part of `parent`. See documentation of `projectsId`.
|
359
360
|
:param pulumi.Input[str] name: Identifier. The resource name of the instance, in the format
|
360
361
|
`projects/{project}/locations/{location}/instances/{instance_id}`
|
361
|
-
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine
|
362
|
-
|
363
|
-
instance is connected.
|
362
|
+
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
363
|
+
to which the instance is connected.
|
364
364
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
365
365
|
If it is not provided, the provider project is used.
|
366
366
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
367
367
|
and default labels configured on the provider.
|
368
|
-
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
369
|
-
private service access connection for example, "test-default"
|
370
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
371
|
-
considered.
|
368
|
+
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
369
|
+
associated with the private service access connection for example, \\"test-default\\"
|
370
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
371
|
+
be considered.
|
372
372
|
:param pulumi.Input[str] state: The instance state.
|
373
373
|
Possible values:
|
374
374
|
STATE_UNSPECIFIED
|
@@ -459,7 +459,7 @@ class _InstanceState:
|
|
459
459
|
@pulumi.getter(name="daosVersion")
|
460
460
|
def daos_version(self) -> Optional[pulumi.Input[str]]:
|
461
461
|
"""
|
462
|
-
The version of DAOS software running in the instance
|
462
|
+
The version of DAOS software running in the instance.
|
463
463
|
"""
|
464
464
|
return pulumi.get(self, "daos_version")
|
465
465
|
|
@@ -514,9 +514,9 @@ class _InstanceState:
|
|
514
514
|
@pulumi.getter(name="effectiveReservedIpRange")
|
515
515
|
def effective_reserved_ip_range(self) -> Optional[pulumi.Input[str]]:
|
516
516
|
"""
|
517
|
-
Immutable. Contains the id of the allocated IP address
|
518
|
-
private service access connection for example, "test-default"
|
519
|
-
with IP range 10.0.0.0/29. This field is populated by the service
|
517
|
+
Immutable. Contains the id of the allocated IP address
|
518
|
+
range associated with the private service access connection for example, \\"test-default\\"
|
519
|
+
associated with IP range 10.0.0.0/29. This field is populated by the service
|
520
520
|
and contains the value currently used by the service.
|
521
521
|
"""
|
522
522
|
return pulumi.get(self, "effective_reserved_ip_range")
|
@@ -568,12 +568,12 @@ class _InstanceState:
|
|
568
568
|
@pulumi.getter
|
569
569
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
570
570
|
"""
|
571
|
-
Cloud Labels are a flexible and lightweight mechanism for
|
572
|
-
resources into groups that reflect a customer's organizational
|
573
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
574
|
-
resources. They can be used to control how resource metrics are aggregated.
|
575
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
576
|
-
|
571
|
+
Cloud Labels are a flexible and lightweight mechanism for
|
572
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
573
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
574
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
575
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
576
|
+
load balancing, etc.).
|
577
577
|
* Label keys must be between 1 and 63 characters long and must conform to
|
578
578
|
the following regular expression: `a-z{0,62}`.
|
579
579
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -584,8 +584,9 @@ class _InstanceState:
|
|
584
584
|
characters may be allowed in the future. Therefore, you are advised to use
|
585
585
|
an internal label representation, such as JSON, which doesn't rely upon
|
586
586
|
specific characters being disallowed. For example, representing labels
|
587
|
-
as the string: name + "_" + value
|
588
|
-
allow "_" in a future release.
|
587
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
588
|
+
allow `"_"` in a future release. "
|
589
|
+
|
589
590
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
590
591
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
591
592
|
"""
|
@@ -624,9 +625,8 @@ class _InstanceState:
|
|
624
625
|
@pulumi.getter
|
625
626
|
def network(self) -> Optional[pulumi.Input[str]]:
|
626
627
|
"""
|
627
|
-
Immutable. The name of the Google Compute Engine
|
628
|
-
|
629
|
-
instance is connected.
|
628
|
+
Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
629
|
+
to which the instance is connected.
|
630
630
|
"""
|
631
631
|
return pulumi.get(self, "network")
|
632
632
|
|
@@ -664,10 +664,10 @@ class _InstanceState:
|
|
664
664
|
@pulumi.getter(name="reservedIpRange")
|
665
665
|
def reserved_ip_range(self) -> Optional[pulumi.Input[str]]:
|
666
666
|
"""
|
667
|
-
Immutable. Contains the id of the allocated IP address range
|
668
|
-
private service access connection for example, "test-default"
|
669
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
670
|
-
considered.
|
667
|
+
Immutable. Contains the id of the allocated IP address range
|
668
|
+
associated with the private service access connection for example, \\"test-default\\"
|
669
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
670
|
+
be considered.
|
671
671
|
"""
|
672
672
|
return pulumi.get(self, "reserved_ip_range")
|
673
673
|
|
@@ -815,12 +815,12 @@ class Instance(pulumi.CustomResource):
|
|
815
815
|
|
816
816
|
|
817
817
|
- - -
|
818
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
819
|
-
resources into groups that reflect a customer's organizational
|
820
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
821
|
-
resources. They can be used to control how resource metrics are aggregated.
|
822
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
823
|
-
|
818
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
819
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
820
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
821
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
822
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
823
|
+
load balancing, etc.).
|
824
824
|
* Label keys must be between 1 and 63 characters long and must conform to
|
825
825
|
the following regular expression: `a-z{0,62}`.
|
826
826
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -831,20 +831,20 @@ class Instance(pulumi.CustomResource):
|
|
831
831
|
characters may be allowed in the future. Therefore, you are advised to use
|
832
832
|
an internal label representation, such as JSON, which doesn't rely upon
|
833
833
|
specific characters being disallowed. For example, representing labels
|
834
|
-
as the string: name + "_" + value
|
835
|
-
allow "_" in a future release.
|
834
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
835
|
+
allow `"_"` in a future release. "
|
836
|
+
|
836
837
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
837
838
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
838
839
|
:param pulumi.Input[str] location: Part of `parent`. See documentation of `projectsId`.
|
839
|
-
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine
|
840
|
-
|
841
|
-
instance is connected.
|
840
|
+
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
841
|
+
to which the instance is connected.
|
842
842
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
843
843
|
If it is not provided, the provider project is used.
|
844
|
-
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
845
|
-
private service access connection for example, "test-default"
|
846
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
847
|
-
considered.
|
844
|
+
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
845
|
+
associated with the private service access connection for example, \\"test-default\\"
|
846
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
847
|
+
be considered.
|
848
848
|
"""
|
849
849
|
...
|
850
850
|
@overload
|
@@ -1016,7 +1016,7 @@ class Instance(pulumi.CustomResource):
|
|
1016
1016
|
Contains a list of IPv4 addresses used for client side configuration.
|
1017
1017
|
:param pulumi.Input[str] capacity_gib: Required. Immutable. Storage capacity of Parallelstore instance in Gibibytes (GiB).
|
1018
1018
|
:param pulumi.Input[str] create_time: The time when the instance was created.
|
1019
|
-
:param pulumi.Input[str] daos_version: The version of DAOS software running in the instance
|
1019
|
+
:param pulumi.Input[str] daos_version: The version of DAOS software running in the instance.
|
1020
1020
|
:param pulumi.Input[str] description: The description of the instance. 2048 characters or less.
|
1021
1021
|
:param pulumi.Input[str] directory_stripe_level: Stripe level for directories.
|
1022
1022
|
MIN when directory has a small number of files.
|
@@ -1027,9 +1027,9 @@ class Instance(pulumi.CustomResource):
|
|
1027
1027
|
DIRECTORY_STRIPE_LEVEL_BALANCED
|
1028
1028
|
DIRECTORY_STRIPE_LEVEL_MAX
|
1029
1029
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1030
|
-
:param pulumi.Input[str] effective_reserved_ip_range: Immutable. Contains the id of the allocated IP address
|
1031
|
-
private service access connection for example, "test-default"
|
1032
|
-
with IP range 10.0.0.0/29. This field is populated by the service
|
1030
|
+
:param pulumi.Input[str] effective_reserved_ip_range: Immutable. Contains the id of the allocated IP address
|
1031
|
+
range associated with the private service access connection for example, \\"test-default\\"
|
1032
|
+
associated with IP range 10.0.0.0/29. This field is populated by the service
|
1033
1033
|
and contains the value currently used by the service.
|
1034
1034
|
:param pulumi.Input[str] file_stripe_level: Stripe level for files.
|
1035
1035
|
MIN better suited for small size files.
|
@@ -1048,12 +1048,12 @@ class Instance(pulumi.CustomResource):
|
|
1048
1048
|
|
1049
1049
|
|
1050
1050
|
- - -
|
1051
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
1052
|
-
resources into groups that reflect a customer's organizational
|
1053
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
1054
|
-
resources. They can be used to control how resource metrics are aggregated.
|
1055
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
1056
|
-
|
1051
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Cloud Labels are a flexible and lightweight mechanism for
|
1052
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
1053
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
1054
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
1055
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
1056
|
+
load balancing, etc.).
|
1057
1057
|
* Label keys must be between 1 and 63 characters long and must conform to
|
1058
1058
|
the following regular expression: `a-z{0,62}`.
|
1059
1059
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -1064,24 +1064,24 @@ class Instance(pulumi.CustomResource):
|
|
1064
1064
|
characters may be allowed in the future. Therefore, you are advised to use
|
1065
1065
|
an internal label representation, such as JSON, which doesn't rely upon
|
1066
1066
|
specific characters being disallowed. For example, representing labels
|
1067
|
-
as the string: name + "_" + value
|
1068
|
-
allow "_" in a future release.
|
1067
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
1068
|
+
allow `"_"` in a future release. "
|
1069
|
+
|
1069
1070
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1070
1071
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
1071
1072
|
:param pulumi.Input[str] location: Part of `parent`. See documentation of `projectsId`.
|
1072
1073
|
:param pulumi.Input[str] name: Identifier. The resource name of the instance, in the format
|
1073
1074
|
`projects/{project}/locations/{location}/instances/{instance_id}`
|
1074
|
-
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine
|
1075
|
-
|
1076
|
-
instance is connected.
|
1075
|
+
:param pulumi.Input[str] network: Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
1076
|
+
to which the instance is connected.
|
1077
1077
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1078
1078
|
If it is not provided, the provider project is used.
|
1079
1079
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
1080
1080
|
and default labels configured on the provider.
|
1081
|
-
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
1082
|
-
private service access connection for example, "test-default"
|
1083
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
1084
|
-
considered.
|
1081
|
+
:param pulumi.Input[str] reserved_ip_range: Immutable. Contains the id of the allocated IP address range
|
1082
|
+
associated with the private service access connection for example, \\"test-default\\"
|
1083
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
1084
|
+
be considered.
|
1085
1085
|
:param pulumi.Input[str] state: The instance state.
|
1086
1086
|
Possible values:
|
1087
1087
|
STATE_UNSPECIFIED
|
@@ -1146,7 +1146,7 @@ class Instance(pulumi.CustomResource):
|
|
1146
1146
|
@pulumi.getter(name="daosVersion")
|
1147
1147
|
def daos_version(self) -> pulumi.Output[str]:
|
1148
1148
|
"""
|
1149
|
-
The version of DAOS software running in the instance
|
1149
|
+
The version of DAOS software running in the instance.
|
1150
1150
|
"""
|
1151
1151
|
return pulumi.get(self, "daos_version")
|
1152
1152
|
|
@@ -1185,9 +1185,9 @@ class Instance(pulumi.CustomResource):
|
|
1185
1185
|
@pulumi.getter(name="effectiveReservedIpRange")
|
1186
1186
|
def effective_reserved_ip_range(self) -> pulumi.Output[str]:
|
1187
1187
|
"""
|
1188
|
-
Immutable. Contains the id of the allocated IP address
|
1189
|
-
private service access connection for example, "test-default"
|
1190
|
-
with IP range 10.0.0.0/29. This field is populated by the service
|
1188
|
+
Immutable. Contains the id of the allocated IP address
|
1189
|
+
range associated with the private service access connection for example, \\"test-default\\"
|
1190
|
+
associated with IP range 10.0.0.0/29. This field is populated by the service
|
1191
1191
|
and contains the value currently used by the service.
|
1192
1192
|
"""
|
1193
1193
|
return pulumi.get(self, "effective_reserved_ip_range")
|
@@ -1227,12 +1227,12 @@ class Instance(pulumi.CustomResource):
|
|
1227
1227
|
@pulumi.getter
|
1228
1228
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1229
1229
|
"""
|
1230
|
-
Cloud Labels are a flexible and lightweight mechanism for
|
1231
|
-
resources into groups that reflect a customer's organizational
|
1232
|
-
deployment strategies. Cloud Labels can be used to filter collections
|
1233
|
-
resources. They can be used to control how resource metrics are aggregated.
|
1234
|
-
And they can be used as arguments to policy management rules (e.g. route,
|
1235
|
-
|
1230
|
+
Cloud Labels are a flexible and lightweight mechanism for
|
1231
|
+
organizing cloud resources into groups that reflect a customer's organizational
|
1232
|
+
needs and deployment strategies. Cloud Labels can be used to filter collections
|
1233
|
+
of resources. They can be used to control how resource metrics are aggregated.
|
1234
|
+
And they can be used as arguments to policy management rules (e.g. route, firewall,
|
1235
|
+
load balancing, etc.).
|
1236
1236
|
* Label keys must be between 1 and 63 characters long and must conform to
|
1237
1237
|
the following regular expression: `a-z{0,62}`.
|
1238
1238
|
* Label values must be between 0 and 63 characters long and must conform
|
@@ -1243,8 +1243,9 @@ class Instance(pulumi.CustomResource):
|
|
1243
1243
|
characters may be allowed in the future. Therefore, you are advised to use
|
1244
1244
|
an internal label representation, such as JSON, which doesn't rely upon
|
1245
1245
|
specific characters being disallowed. For example, representing labels
|
1246
|
-
as the string: name + "_" + value
|
1247
|
-
allow "_" in a future release.
|
1246
|
+
as the string: `name + "_" + value` would prove problematic if we were to
|
1247
|
+
allow `"_"` in a future release. "
|
1248
|
+
|
1248
1249
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1249
1250
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
1250
1251
|
"""
|
@@ -1271,9 +1272,8 @@ class Instance(pulumi.CustomResource):
|
|
1271
1272
|
@pulumi.getter
|
1272
1273
|
def network(self) -> pulumi.Output[Optional[str]]:
|
1273
1274
|
"""
|
1274
|
-
Immutable. The name of the Google Compute Engine
|
1275
|
-
|
1276
|
-
instance is connected.
|
1275
|
+
Immutable. The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc)
|
1276
|
+
to which the instance is connected.
|
1277
1277
|
"""
|
1278
1278
|
return pulumi.get(self, "network")
|
1279
1279
|
|
@@ -1299,10 +1299,10 @@ class Instance(pulumi.CustomResource):
|
|
1299
1299
|
@pulumi.getter(name="reservedIpRange")
|
1300
1300
|
def reserved_ip_range(self) -> pulumi.Output[Optional[str]]:
|
1301
1301
|
"""
|
1302
|
-
Immutable. Contains the id of the allocated IP address range
|
1303
|
-
private service access connection for example, "test-default"
|
1304
|
-
with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
1305
|
-
considered.
|
1302
|
+
Immutable. Contains the id of the allocated IP address range
|
1303
|
+
associated with the private service access connection for example, \\"test-default\\"
|
1304
|
+
associated with IP range 10.0.0.0/29. If no range id is provided all ranges will
|
1305
|
+
be considered.
|
1306
1306
|
"""
|
1307
1307
|
return pulumi.get(self, "reserved_ip_range")
|
1308
1308
|
|
@@ -175,6 +175,19 @@ class IamMemberRemove(pulumi.CustomResource):
|
|
175
175
|
and
|
176
176
|
[API reference](https://cloud.google.com/resource-manager/reference/rest/v1/projects/setIamPolicy).
|
177
177
|
|
178
|
+
## Example Usage
|
179
|
+
|
180
|
+
```python
|
181
|
+
import pulumi
|
182
|
+
import pulumi_gcp as gcp
|
183
|
+
|
184
|
+
target_project = gcp.organizations.get_project()
|
185
|
+
foo = gcp.projects.IamMemberRemove("foo",
|
186
|
+
role="roles/editor",
|
187
|
+
project=target_project_google_project["projectId"],
|
188
|
+
member=f"serviceAccount:{target_project_google_project['number']}-compute@developer.gserviceaccount.com")
|
189
|
+
```
|
190
|
+
|
178
191
|
:param str resource_name: The name of the resource.
|
179
192
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
180
193
|
:param pulumi.Input[str] member: The IAM principal that should not have the target role.
|
@@ -213,6 +226,19 @@ class IamMemberRemove(pulumi.CustomResource):
|
|
213
226
|
and
|
214
227
|
[API reference](https://cloud.google.com/resource-manager/reference/rest/v1/projects/setIamPolicy).
|
215
228
|
|
229
|
+
## Example Usage
|
230
|
+
|
231
|
+
```python
|
232
|
+
import pulumi
|
233
|
+
import pulumi_gcp as gcp
|
234
|
+
|
235
|
+
target_project = gcp.organizations.get_project()
|
236
|
+
foo = gcp.projects.IamMemberRemove("foo",
|
237
|
+
role="roles/editor",
|
238
|
+
project=target_project_google_project["projectId"],
|
239
|
+
member=f"serviceAccount:{target_project_google_project['number']}-compute@developer.gserviceaccount.com")
|
240
|
+
```
|
241
|
+
|
216
242
|
:param str resource_name: The name of the resource.
|
217
243
|
:param IamMemberRemoveArgs args: The arguments to use to populate this resource's properties.
|
218
244
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -149,6 +149,10 @@ class UsageExportBucket(pulumi.CustomResource):
|
|
149
149
|
|
150
150
|
> This resource reads the specified billing account on every pulumi up and plan operation so you must have permissions on the specified billing account.
|
151
151
|
|
152
|
+
> It is recommended to use the `constraints/compute.skipDefaultNetworkCreation` [constraint](https://www.terraform.io/docs/providers/google/r/google_organization_policy.html) to remove the default network instead of setting `auto_create_network` to false, when possible.
|
153
|
+
|
154
|
+
> It may take a while for the attached tag bindings to be deleted after the project is scheduled to be deleted.
|
155
|
+
|
152
156
|
To get more information about projects, see:
|
153
157
|
|
154
158
|
* [API documentation](https://cloud.google.com/resource-manager/reference/rest/v1/projects)
|
@@ -182,6 +186,21 @@ class UsageExportBucket(pulumi.CustomResource):
|
|
182
186
|
folder_id=department1.name)
|
183
187
|
```
|
184
188
|
|
189
|
+
To create a project with a tag
|
190
|
+
|
191
|
+
```python
|
192
|
+
import pulumi
|
193
|
+
import pulumi_gcp as gcp
|
194
|
+
|
195
|
+
my_project = gcp.organizations.Project("my_project",
|
196
|
+
name="My Project",
|
197
|
+
project_id="your-project-id",
|
198
|
+
org_id="1234567",
|
199
|
+
tags={
|
200
|
+
"1234567/env": "staging",
|
201
|
+
})
|
202
|
+
```
|
203
|
+
|
185
204
|
## Import
|
186
205
|
|
187
206
|
Projects can be imported using the `project_id`, e.g.
|
@@ -219,6 +238,10 @@ class UsageExportBucket(pulumi.CustomResource):
|
|
219
238
|
|
220
239
|
> This resource reads the specified billing account on every pulumi up and plan operation so you must have permissions on the specified billing account.
|
221
240
|
|
241
|
+
> It is recommended to use the `constraints/compute.skipDefaultNetworkCreation` [constraint](https://www.terraform.io/docs/providers/google/r/google_organization_policy.html) to remove the default network instead of setting `auto_create_network` to false, when possible.
|
242
|
+
|
243
|
+
> It may take a while for the attached tag bindings to be deleted after the project is scheduled to be deleted.
|
244
|
+
|
222
245
|
To get more information about projects, see:
|
223
246
|
|
224
247
|
* [API documentation](https://cloud.google.com/resource-manager/reference/rest/v1/projects)
|
@@ -252,6 +275,21 @@ class UsageExportBucket(pulumi.CustomResource):
|
|
252
275
|
folder_id=department1.name)
|
253
276
|
```
|
254
277
|
|
278
|
+
To create a project with a tag
|
279
|
+
|
280
|
+
```python
|
281
|
+
import pulumi
|
282
|
+
import pulumi_gcp as gcp
|
283
|
+
|
284
|
+
my_project = gcp.organizations.Project("my_project",
|
285
|
+
name="My Project",
|
286
|
+
project_id="your-project-id",
|
287
|
+
org_id="1234567",
|
288
|
+
tags={
|
289
|
+
"1234567/env": "staging",
|
290
|
+
})
|
291
|
+
```
|
292
|
+
|
255
293
|
## Import
|
256
294
|
|
257
295
|
Projects can be imported using the `project_id`, e.g.
|