pulumi-gcp 7.21.0a1714002516__py3-none-any.whl → 7.21.0a1714154892__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.
Files changed (59) hide show
  1. pulumi_gcp/alloydb/backup.py +0 -12
  2. pulumi_gcp/alloydb/cluster.py +0 -12
  3. pulumi_gcp/alloydb/instance.py +0 -81
  4. pulumi_gcp/apigee/sharedflow.py +0 -20
  5. pulumi_gcp/appengine/flexible_app_version.py +0 -20
  6. pulumi_gcp/certificateauthority/authority.py +7 -27
  7. pulumi_gcp/cloudbuild/worker_pool.py +0 -12
  8. pulumi_gcp/cloudbuildv2/connection.py +0 -12
  9. pulumi_gcp/cloudbuildv2/repository.py +0 -12
  10. pulumi_gcp/clouddeploy/automation.py +0 -12
  11. pulumi_gcp/clouddeploy/custom_target_type.py +0 -12
  12. pulumi_gcp/clouddeploy/delivery_pipeline.py +0 -12
  13. pulumi_gcp/clouddeploy/target.py +0 -12
  14. pulumi_gcp/cloudrunv2/job.py +0 -12
  15. pulumi_gcp/cloudrunv2/service.py +0 -12
  16. pulumi_gcp/composer/environment.py +35 -47
  17. pulumi_gcp/compute/forwarding_rule.py +0 -13
  18. pulumi_gcp/compute/global_address.py +0 -12
  19. pulumi_gcp/compute/instance_from_machine_image.py +14 -46
  20. pulumi_gcp/compute/instance_from_template.py +14 -46
  21. pulumi_gcp/compute/outputs.py +0 -8
  22. pulumi_gcp/compute/region_instance_template.py +0 -13
  23. pulumi_gcp/container/attached_cluster.py +0 -12
  24. pulumi_gcp/container/aws_cluster.py +0 -12
  25. pulumi_gcp/container/aws_node_pool.py +0 -12
  26. pulumi_gcp/container/azure_cluster.py +0 -12
  27. pulumi_gcp/container/azure_node_pool.py +0 -12
  28. pulumi_gcp/container/cluster.py +0 -20
  29. pulumi_gcp/dataflow/flex_template_job.py +0 -39
  30. pulumi_gcp/dataproc/cluster.py +0 -20
  31. pulumi_gcp/dataproc/workflow_template.py +21 -26
  32. pulumi_gcp/deploymentmanager/deployment.py +0 -34
  33. pulumi_gcp/dns/record_set.py +0 -34
  34. pulumi_gcp/firebase/android_app.py +0 -27
  35. pulumi_gcp/firebase/app_check_service_config.py +0 -125
  36. pulumi_gcp/firebase/apple_app.py +0 -27
  37. pulumi_gcp/firebase/hosting_custom_domain.py +0 -27
  38. pulumi_gcp/firebase/web_app.py +0 -20
  39. pulumi_gcp/firestore/database.py +0 -68
  40. pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +0 -12
  41. pulumi_gcp/gkeonprem/bare_metal_cluster.py +0 -12
  42. pulumi_gcp/gkeonprem/bare_metal_node_pool.py +0 -12
  43. pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -12
  44. pulumi_gcp/gkeonprem/v_mware_node_pool.py +0 -12
  45. pulumi_gcp/netapp/active_directory.py +0 -20
  46. pulumi_gcp/netapp/volume_replication.py +0 -68
  47. pulumi_gcp/provider.py +3 -1
  48. pulumi_gcp/secretmanager/secret.py +0 -12
  49. pulumi_gcp/servicenetworking/connection.py +0 -20
  50. pulumi_gcp/spanner/database.py +0 -41
  51. pulumi_gcp/spanner/instance.py +0 -40
  52. pulumi_gcp/storage/bucket.py +0 -12
  53. pulumi_gcp/workstations/workstation.py +0 -12
  54. pulumi_gcp/workstations/workstation_cluster.py +0 -12
  55. pulumi_gcp/workstations/workstation_config.py +0 -12
  56. {pulumi_gcp-7.21.0a1714002516.dist-info → pulumi_gcp-7.21.0a1714154892.dist-info}/METADATA +1 -1
  57. {pulumi_gcp-7.21.0a1714002516.dist-info → pulumi_gcp-7.21.0a1714154892.dist-info}/RECORD +59 -59
  58. {pulumi_gcp-7.21.0a1714002516.dist-info → pulumi_gcp-7.21.0a1714154892.dist-info}/WHEEL +0 -0
  59. {pulumi_gcp-7.21.0a1714002516.dist-info → pulumi_gcp-7.21.0a1714154892.dist-info}/top_level.txt +0 -0
@@ -40,11 +40,6 @@ class DatabaseArgs:
40
40
  error in any statement, the database is not created.
41
41
  :param pulumi.Input[bool] deletion_protection: Whether or not to allow the provider to destroy the instance. Unless this field is set to false
42
42
  in state, a `destroy` or `update` that would delete the instance will fail.
43
- :param pulumi.Input[bool] enable_drop_protection: Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
44
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
45
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
46
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
47
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
48
43
  :param pulumi.Input['DatabaseEncryptionConfigArgs'] encryption_config: Encryption configuration for the database
49
44
  Structure is documented below.
50
45
  :param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
@@ -135,13 +130,6 @@ class DatabaseArgs:
135
130
  @property
136
131
  @pulumi.getter(name="enableDropProtection")
137
132
  def enable_drop_protection(self) -> Optional[pulumi.Input[bool]]:
138
- """
139
- Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
140
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
141
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
142
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
143
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
144
- """
145
133
  return pulumi.get(self, "enable_drop_protection")
146
134
 
147
135
  @enable_drop_protection.setter
@@ -228,11 +216,6 @@ class _DatabaseState:
228
216
  error in any statement, the database is not created.
229
217
  :param pulumi.Input[bool] deletion_protection: Whether or not to allow the provider to destroy the instance. Unless this field is set to false
230
218
  in state, a `destroy` or `update` that would delete the instance will fail.
231
- :param pulumi.Input[bool] enable_drop_protection: Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
232
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
233
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
234
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
235
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
236
219
  :param pulumi.Input['DatabaseEncryptionConfigArgs'] encryption_config: Encryption configuration for the database
237
220
  Structure is documented below.
238
221
  :param pulumi.Input[str] instance: The instance to create the database on.
@@ -316,13 +299,6 @@ class _DatabaseState:
316
299
  @property
317
300
  @pulumi.getter(name="enableDropProtection")
318
301
  def enable_drop_protection(self) -> Optional[pulumi.Input[bool]]:
319
- """
320
- Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
321
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
322
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
323
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
324
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
325
- """
326
302
  return pulumi.get(self, "enable_drop_protection")
327
303
 
328
304
  @enable_drop_protection.setter
@@ -506,11 +482,6 @@ class Database(pulumi.CustomResource):
506
482
  error in any statement, the database is not created.
507
483
  :param pulumi.Input[bool] deletion_protection: Whether or not to allow the provider to destroy the instance. Unless this field is set to false
508
484
  in state, a `destroy` or `update` that would delete the instance will fail.
509
- :param pulumi.Input[bool] enable_drop_protection: Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
510
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
511
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
512
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
513
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
514
485
  :param pulumi.Input[pulumi.InputType['DatabaseEncryptionConfigArgs']] encryption_config: Encryption configuration for the database
515
486
  Structure is documented below.
516
487
  :param pulumi.Input[str] instance: The instance to create the database on.
@@ -682,11 +653,6 @@ class Database(pulumi.CustomResource):
682
653
  error in any statement, the database is not created.
683
654
  :param pulumi.Input[bool] deletion_protection: Whether or not to allow the provider to destroy the instance. Unless this field is set to false
684
655
  in state, a `destroy` or `update` that would delete the instance will fail.
685
- :param pulumi.Input[bool] enable_drop_protection: Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
686
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
687
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
688
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
689
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
690
656
  :param pulumi.Input[pulumi.InputType['DatabaseEncryptionConfigArgs']] encryption_config: Encryption configuration for the database
691
657
  Structure is documented below.
692
658
  :param pulumi.Input[str] instance: The instance to create the database on.
@@ -753,13 +719,6 @@ class Database(pulumi.CustomResource):
753
719
  @property
754
720
  @pulumi.getter(name="enableDropProtection")
755
721
  def enable_drop_protection(self) -> pulumi.Output[Optional[bool]]:
756
- """
757
- Whether drop protection is enabled for this database. Defaults to false. Drop protection is different from the
758
- "deletion_protection" attribute in the following ways: (1) "deletion_protection" only protects the database from
759
- deletions in Terraform. whereas setting “enableDropProtection” to true protects the database from deletions in all
760
- interfaces. (2) Setting "enableDropProtection" to true also prevents the deletion of the parent instance containing the
761
- database. "deletion_protection" attribute does not provide protection against the deletion of the parent instance.
762
- """
763
722
  return pulumi.get(self, "enable_drop_protection")
764
723
 
765
724
  @property
@@ -55,10 +55,6 @@ class InstanceArgs:
55
55
  in length.
56
56
 
57
57
  If not provided, a random string starting with `tf-` will be selected.
58
- :param pulumi.Input[int] num_nodes: The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
59
- terraform.
60
- :param pulumi.Input[int] processing_units: The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
61
- in terraform.
62
58
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
63
59
  If it is not provided, the provider project is used.
64
60
  """
@@ -176,10 +172,6 @@ class InstanceArgs:
176
172
  @property
177
173
  @pulumi.getter(name="numNodes")
178
174
  def num_nodes(self) -> Optional[pulumi.Input[int]]:
179
- """
180
- The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
181
- terraform.
182
- """
183
175
  return pulumi.get(self, "num_nodes")
184
176
 
185
177
  @num_nodes.setter
@@ -189,10 +181,6 @@ class InstanceArgs:
189
181
  @property
190
182
  @pulumi.getter(name="processingUnits")
191
183
  def processing_units(self) -> Optional[pulumi.Input[int]]:
192
- """
193
- The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
194
- in terraform.
195
- """
196
184
  return pulumi.get(self, "processing_units")
197
185
 
198
186
  @processing_units.setter
@@ -259,10 +247,6 @@ class _InstanceState:
259
247
  in length.
260
248
 
261
249
  If not provided, a random string starting with `tf-` will be selected.
262
- :param pulumi.Input[int] num_nodes: The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
263
- terraform.
264
- :param pulumi.Input[int] processing_units: The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
265
- in terraform.
266
250
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
267
251
  If it is not provided, the provider project is used.
268
252
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -403,10 +387,6 @@ class _InstanceState:
403
387
  @property
404
388
  @pulumi.getter(name="numNodes")
405
389
  def num_nodes(self) -> Optional[pulumi.Input[int]]:
406
- """
407
- The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
408
- terraform.
409
- """
410
390
  return pulumi.get(self, "num_nodes")
411
391
 
412
392
  @num_nodes.setter
@@ -416,10 +396,6 @@ class _InstanceState:
416
396
  @property
417
397
  @pulumi.getter(name="processingUnits")
418
398
  def processing_units(self) -> Optional[pulumi.Input[int]]:
419
- """
420
- The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
421
- in terraform.
422
- """
423
399
  return pulumi.get(self, "processing_units")
424
400
 
425
401
  @processing_units.setter
@@ -612,10 +588,6 @@ class Instance(pulumi.CustomResource):
612
588
  in length.
613
589
 
614
590
  If not provided, a random string starting with `tf-` will be selected.
615
- :param pulumi.Input[int] num_nodes: The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
616
- terraform.
617
- :param pulumi.Input[int] processing_units: The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
618
- in terraform.
619
591
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
620
592
  If it is not provided, the provider project is used.
621
593
  """
@@ -836,10 +808,6 @@ class Instance(pulumi.CustomResource):
836
808
  in length.
837
809
 
838
810
  If not provided, a random string starting with `tf-` will be selected.
839
- :param pulumi.Input[int] num_nodes: The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
840
- terraform.
841
- :param pulumi.Input[int] processing_units: The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
842
- in terraform.
843
811
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
844
812
  If it is not provided, the provider project is used.
845
813
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -945,19 +913,11 @@ class Instance(pulumi.CustomResource):
945
913
  @property
946
914
  @pulumi.getter(name="numNodes")
947
915
  def num_nodes(self) -> pulumi.Output[int]:
948
- """
949
- The number of nodes allocated to this instance. Exactly one of either node_count or processing_units must be present in
950
- terraform.
951
- """
952
916
  return pulumi.get(self, "num_nodes")
953
917
 
954
918
  @property
955
919
  @pulumi.getter(name="processingUnits")
956
920
  def processing_units(self) -> pulumi.Output[int]:
957
- """
958
- The number of processing units allocated to this instance. Exactly one of processing_units or node_count must be present
959
- in terraform.
960
- """
961
921
  return pulumi.get(self, "processing_units")
962
922
 
963
923
  @property
@@ -420,8 +420,6 @@ class _BucketState:
420
420
  :param pulumi.Input[Sequence[pulumi.Input['BucketCorArgs']]] cors: The bucket's [Cross-Origin Resource Sharing (CORS)](https://www.w3.org/TR/cors/) configuration. Multiple blocks of this type are permitted. Structure is documented below.
421
421
  :param pulumi.Input['BucketCustomPlacementConfigArgs'] custom_placement_config: The bucket's custom location configuration, which specifies the individual regions that comprise a dual-region bucket. If the bucket is designated a single or multi-region, the parameters are empty. Structure is documented below.
422
422
  :param pulumi.Input[bool] default_event_based_hold: Whether or not to automatically apply an eventBasedHold to new objects added to the bucket.
423
- :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 Terraform, other
424
- clients and services.
425
423
  :param pulumi.Input[bool] enable_object_retention: Enables [object retention](https://cloud.google.com/storage/docs/object-lock) on a storage bucket.
426
424
  :param pulumi.Input['BucketEncryptionArgs'] encryption: The bucket's encryption configuration. Structure is documented below.
427
425
  :param pulumi.Input[bool] force_destroy: When deleting a bucket, this
@@ -557,10 +555,6 @@ class _BucketState:
557
555
  @property
558
556
  @pulumi.getter(name="effectiveLabels")
559
557
  def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
560
- """
561
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
562
- clients and services.
563
- """
564
558
  return pulumi.get(self, "effective_labels")
565
559
 
566
560
  @effective_labels.setter
@@ -1260,8 +1254,6 @@ class Bucket(pulumi.CustomResource):
1260
1254
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BucketCorArgs']]]] cors: The bucket's [Cross-Origin Resource Sharing (CORS)](https://www.w3.org/TR/cors/) configuration. Multiple blocks of this type are permitted. Structure is documented below.
1261
1255
  :param pulumi.Input[pulumi.InputType['BucketCustomPlacementConfigArgs']] custom_placement_config: The bucket's custom location configuration, which specifies the individual regions that comprise a dual-region bucket. If the bucket is designated a single or multi-region, the parameters are empty. Structure is documented below.
1262
1256
  :param pulumi.Input[bool] default_event_based_hold: Whether or not to automatically apply an eventBasedHold to new objects added to the bucket.
1263
- :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 Terraform, other
1264
- clients and services.
1265
1257
  :param pulumi.Input[bool] enable_object_retention: Enables [object retention](https://cloud.google.com/storage/docs/object-lock) on a storage bucket.
1266
1258
  :param pulumi.Input[pulumi.InputType['BucketEncryptionArgs']] encryption: The bucket's encryption configuration. Structure is documented below.
1267
1259
  :param pulumi.Input[bool] force_destroy: When deleting a bucket, this
@@ -1359,10 +1351,6 @@ class Bucket(pulumi.CustomResource):
1359
1351
  @property
1360
1352
  @pulumi.getter(name="effectiveLabels")
1361
1353
  def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
1362
- """
1363
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
1364
- clients and services.
1365
- """
1366
1354
  return pulumi.get(self, "effective_labels")
1367
1355
 
1368
1356
  @property
@@ -202,8 +202,6 @@ class _WorkstationState:
202
202
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
203
203
  :param pulumi.Input[str] create_time: Time when this resource was created.
204
204
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
205
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
206
- Terraform, other clients and services.
207
205
  :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.
208
206
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] env: 'Client-specified environment variables passed to the workstation container's entrypoint.'
209
207
  :param pulumi.Input[str] host: Host to which clients can send HTTPS traffic that will be received by the workstation.
@@ -303,10 +301,6 @@ class _WorkstationState:
303
301
  @property
304
302
  @pulumi.getter(name="effectiveAnnotations")
305
303
  def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
306
- """
307
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
308
- Terraform, other clients and services.
309
- """
310
304
  return pulumi.get(self, "effective_annotations")
311
305
 
312
306
  @effective_annotations.setter
@@ -777,8 +771,6 @@ class Workstation(pulumi.CustomResource):
777
771
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
778
772
  :param pulumi.Input[str] create_time: Time when this resource was created.
779
773
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
780
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
781
- Terraform, other clients and services.
782
774
  :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.
783
775
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] env: 'Client-specified environment variables passed to the workstation container's entrypoint.'
784
776
  :param pulumi.Input[str] host: Host to which clients can send HTTPS traffic that will be received by the workstation.
@@ -854,10 +846,6 @@ class Workstation(pulumi.CustomResource):
854
846
  @property
855
847
  @pulumi.getter(name="effectiveAnnotations")
856
848
  def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
857
- """
858
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
859
- Terraform, other clients and services.
860
- """
861
849
  return pulumi.get(self, "effective_annotations")
862
850
 
863
851
  @property
@@ -240,8 +240,6 @@ class _WorkstationClusterState:
240
240
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
241
241
  :param pulumi.Input['WorkstationClusterDomainConfigArgs'] domain_config: Configuration options for a custom domain.
242
242
  Structure is documented below.
243
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
244
- Terraform, other clients and services.
245
243
  :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.
246
244
  :param pulumi.Input[str] etag: Checksum computed by the server.
247
245
  May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
@@ -400,10 +398,6 @@ class _WorkstationClusterState:
400
398
  @property
401
399
  @pulumi.getter(name="effectiveAnnotations")
402
400
  def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
403
- """
404
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
405
- Terraform, other clients and services.
406
- """
407
401
  return pulumi.get(self, "effective_annotations")
408
402
 
409
403
  @effective_annotations.setter
@@ -961,8 +955,6 @@ class WorkstationCluster(pulumi.CustomResource):
961
955
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
962
956
  :param pulumi.Input[pulumi.InputType['WorkstationClusterDomainConfigArgs']] domain_config: Configuration options for a custom domain.
963
957
  Structure is documented below.
964
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
965
- Terraform, other clients and services.
966
958
  :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.
967
959
  :param pulumi.Input[str] etag: Checksum computed by the server.
968
960
  May be sent on update and delete requests to ensure that the client has an up-to-date value before proceeding.
@@ -1078,10 +1070,6 @@ class WorkstationCluster(pulumi.CustomResource):
1078
1070
  @property
1079
1071
  @pulumi.getter(name="effectiveAnnotations")
1080
1072
  def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
1081
- """
1082
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
1083
- Terraform, other clients and services.
1084
- """
1085
1073
  return pulumi.get(self, "effective_annotations")
1086
1074
 
1087
1075
  @property
@@ -389,8 +389,6 @@ class _WorkstationConfigState:
389
389
  :param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the conditions field.
390
390
  :param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
391
391
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
392
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
393
- Terraform, other clients and services.
394
392
  :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.
395
393
  :param pulumi.Input[bool] enable_audit_agent: Whether to enable Linux `auditd` logging on the workstation. When enabled, a service account must also be specified that has `logging.buckets.write` permission on the project. Operating system audit logging is distinct from Cloud Audit Logs.
396
394
  :param pulumi.Input['WorkstationConfigEncryptionKeyArgs'] encryption_key: Encrypts resources of this workstation configuration using a customer-managed encryption key.
@@ -576,10 +574,6 @@ class _WorkstationConfigState:
576
574
  @property
577
575
  @pulumi.getter(name="effectiveAnnotations")
578
576
  def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
579
- """
580
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
581
- Terraform, other clients and services.
582
- """
583
577
  return pulumi.get(self, "effective_annotations")
584
578
 
585
579
  @effective_annotations.setter
@@ -1837,8 +1831,6 @@ class WorkstationConfig(pulumi.CustomResource):
1837
1831
  :param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the conditions field.
1838
1832
  :param pulumi.Input[bool] disable_tcp_connections: Disables support for plain TCP connections in the workstation. By default the service supports TCP connections via a websocket relay. Setting this option to true disables that relay, which prevents the usage of services that require plain tcp connections, such as ssh. When enabled, all communication must occur over https or wss.
1839
1833
  :param pulumi.Input[str] display_name: Human-readable name for this resource.
1840
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
1841
- Terraform, other clients and services.
1842
1834
  :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.
1843
1835
  :param pulumi.Input[bool] enable_audit_agent: Whether to enable Linux `auditd` logging on the workstation. When enabled, a service account must also be specified that has `logging.buckets.write` permission on the project. Operating system audit logging is distinct from Cloud Audit Logs.
1844
1836
  :param pulumi.Input[pulumi.InputType['WorkstationConfigEncryptionKeyArgs']] encryption_key: Encrypts resources of this workstation configuration using a customer-managed encryption key.
@@ -1974,10 +1966,6 @@ class WorkstationConfig(pulumi.CustomResource):
1974
1966
  @property
1975
1967
  @pulumi.getter(name="effectiveAnnotations")
1976
1968
  def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
1977
- """
1978
- All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
1979
- Terraform, other clients and services.
1980
- """
1981
1969
  return pulumi.get(self, "effective_annotations")
1982
1970
 
1983
1971
  @property
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.21.0a1714002516
3
+ Version: 7.21.0a1714154892
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io