pulumi-gcp 8.1.0a1726492828__py3-none-any.whl → 8.2.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.
Files changed (43) hide show
  1. pulumi_gcp/__init__.py +38 -0
  2. pulumi_gcp/bigquery/__init__.py +1 -0
  3. pulumi_gcp/bigquery/get_tables.py +143 -0
  4. pulumi_gcp/bigquery/outputs.py +30 -0
  5. pulumi_gcp/compute/__init__.py +1 -0
  6. pulumi_gcp/compute/_inputs.py +2208 -285
  7. pulumi_gcp/compute/get_instance.py +3 -0
  8. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  9. pulumi_gcp/compute/outputs.py +1383 -0
  10. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  11. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  12. pulumi_gcp/compute/service_attachment.py +75 -0
  13. pulumi_gcp/compute/target_http_proxy.py +49 -28
  14. pulumi_gcp/compute/target_https_proxy.py +49 -28
  15. pulumi_gcp/config/__init__.pyi +4 -0
  16. pulumi_gcp/config/vars.py +8 -0
  17. pulumi_gcp/container/_inputs.py +96 -0
  18. pulumi_gcp/container/attached_cluster.py +54 -1
  19. pulumi_gcp/container/outputs.py +102 -0
  20. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  21. pulumi_gcp/dataproc/metastore_service.py +2 -0
  22. pulumi_gcp/datastream/stream.py +21 -14
  23. pulumi_gcp/developerconnect/__init__.py +11 -0
  24. pulumi_gcp/developerconnect/_inputs.py +301 -0
  25. pulumi_gcp/developerconnect/connection.py +1034 -0
  26. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  27. pulumi_gcp/developerconnect/outputs.py +247 -0
  28. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  29. pulumi_gcp/gkeonprem/outputs.py +2 -2
  30. pulumi_gcp/memorystore/__init__.py +10 -0
  31. pulumi_gcp/memorystore/_inputs.py +731 -0
  32. pulumi_gcp/memorystore/instance.py +1663 -0
  33. pulumi_gcp/memorystore/outputs.py +598 -0
  34. pulumi_gcp/netapp/volume.py +101 -0
  35. pulumi_gcp/organizations/folder.py +52 -33
  36. pulumi_gcp/provider.py +40 -0
  37. pulumi_gcp/pulumi-plugin.json +1 -1
  38. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  39. pulumi_gcp/vpcaccess/connector.py +21 -28
  40. {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
  41. {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +43 -32
  42. {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +0 -0
  43. {pulumi_gcp-8.1.0a1726492828.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
@@ -32,6 +32,8 @@ class VolumeArgs:
32
32
  export_policy: Optional[pulumi.Input['VolumeExportPolicyArgs']] = None,
33
33
  kerberos_enabled: Optional[pulumi.Input[bool]] = None,
34
34
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
35
+ large_capacity: Optional[pulumi.Input[bool]] = None,
36
+ multiple_endpoints: Optional[pulumi.Input[bool]] = None,
35
37
  name: Optional[pulumi.Input[str]] = None,
36
38
  project: Optional[pulumi.Input[str]] = None,
37
39
  restore_parameters: Optional[pulumi.Input['VolumeRestoreParametersArgs']] = None,
@@ -63,6 +65,9 @@ class VolumeArgs:
63
65
 
64
66
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
65
67
  Please refer to the field `effective_labels` for all of the labels present on the resource.
68
+ :param pulumi.Input[bool] large_capacity: Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
69
+ :param pulumi.Input[bool] multiple_endpoints: Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
70
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
66
71
  :param pulumi.Input[str] name: The name of the volume. Needs to be unique per location.
67
72
 
68
73
 
@@ -101,6 +106,10 @@ class VolumeArgs:
101
106
  pulumi.set(__self__, "kerberos_enabled", kerberos_enabled)
102
107
  if labels is not None:
103
108
  pulumi.set(__self__, "labels", labels)
109
+ if large_capacity is not None:
110
+ pulumi.set(__self__, "large_capacity", large_capacity)
111
+ if multiple_endpoints is not None:
112
+ pulumi.set(__self__, "multiple_endpoints", multiple_endpoints)
104
113
  if name is not None:
105
114
  pulumi.set(__self__, "name", name)
106
115
  if project is not None:
@@ -261,6 +270,31 @@ class VolumeArgs:
261
270
  def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
262
271
  pulumi.set(self, "labels", value)
263
272
 
273
+ @property
274
+ @pulumi.getter(name="largeCapacity")
275
+ def large_capacity(self) -> Optional[pulumi.Input[bool]]:
276
+ """
277
+ Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
278
+ """
279
+ return pulumi.get(self, "large_capacity")
280
+
281
+ @large_capacity.setter
282
+ def large_capacity(self, value: Optional[pulumi.Input[bool]]):
283
+ pulumi.set(self, "large_capacity", value)
284
+
285
+ @property
286
+ @pulumi.getter(name="multipleEndpoints")
287
+ def multiple_endpoints(self) -> Optional[pulumi.Input[bool]]:
288
+ """
289
+ Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
290
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
291
+ """
292
+ return pulumi.get(self, "multiple_endpoints")
293
+
294
+ @multiple_endpoints.setter
295
+ def multiple_endpoints(self, value: Optional[pulumi.Input[bool]]):
296
+ pulumi.set(self, "multiple_endpoints", value)
297
+
264
298
  @property
265
299
  @pulumi.getter
266
300
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -397,9 +431,11 @@ class _VolumeState:
397
431
  kerberos_enabled: Optional[pulumi.Input[bool]] = None,
398
432
  kms_config: Optional[pulumi.Input[str]] = None,
399
433
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
434
+ large_capacity: Optional[pulumi.Input[bool]] = None,
400
435
  ldap_enabled: Optional[pulumi.Input[bool]] = None,
401
436
  location: Optional[pulumi.Input[str]] = None,
402
437
  mount_options: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountOptionArgs']]]] = None,
438
+ multiple_endpoints: Optional[pulumi.Input[bool]] = None,
403
439
  name: Optional[pulumi.Input[str]] = None,
404
440
  network: Optional[pulumi.Input[str]] = None,
405
441
  project: Optional[pulumi.Input[str]] = None,
@@ -444,10 +480,13 @@ class _VolumeState:
444
480
 
445
481
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
446
482
  Please refer to the field `effective_labels` for all of the labels present on the resource.
483
+ :param pulumi.Input[bool] large_capacity: Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
447
484
  :param pulumi.Input[bool] ldap_enabled: Flag indicating if the volume is NFS LDAP enabled or not. Inherited from storage pool.
448
485
  :param pulumi.Input[str] location: Name of the pool location. Usually a region name, expect for some STANDARD service level pools which require a zone name.
449
486
  :param pulumi.Input[Sequence[pulumi.Input['VolumeMountOptionArgs']]] mount_options: Reports mount instructions for this volume.
450
487
  Structure is documented below.
488
+ :param pulumi.Input[bool] multiple_endpoints: Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
489
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
451
490
  :param pulumi.Input[str] name: The name of the volume. Needs to be unique per location.
452
491
 
453
492
 
@@ -509,12 +548,16 @@ class _VolumeState:
509
548
  pulumi.set(__self__, "kms_config", kms_config)
510
549
  if labels is not None:
511
550
  pulumi.set(__self__, "labels", labels)
551
+ if large_capacity is not None:
552
+ pulumi.set(__self__, "large_capacity", large_capacity)
512
553
  if ldap_enabled is not None:
513
554
  pulumi.set(__self__, "ldap_enabled", ldap_enabled)
514
555
  if location is not None:
515
556
  pulumi.set(__self__, "location", location)
516
557
  if mount_options is not None:
517
558
  pulumi.set(__self__, "mount_options", mount_options)
559
+ if multiple_endpoints is not None:
560
+ pulumi.set(__self__, "multiple_endpoints", multiple_endpoints)
518
561
  if name is not None:
519
562
  pulumi.set(__self__, "name", name)
520
563
  if network is not None:
@@ -722,6 +765,18 @@ class _VolumeState:
722
765
  def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
723
766
  pulumi.set(self, "labels", value)
724
767
 
768
+ @property
769
+ @pulumi.getter(name="largeCapacity")
770
+ def large_capacity(self) -> Optional[pulumi.Input[bool]]:
771
+ """
772
+ Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
773
+ """
774
+ return pulumi.get(self, "large_capacity")
775
+
776
+ @large_capacity.setter
777
+ def large_capacity(self, value: Optional[pulumi.Input[bool]]):
778
+ pulumi.set(self, "large_capacity", value)
779
+
725
780
  @property
726
781
  @pulumi.getter(name="ldapEnabled")
727
782
  def ldap_enabled(self) -> Optional[pulumi.Input[bool]]:
@@ -759,6 +814,19 @@ class _VolumeState:
759
814
  def mount_options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountOptionArgs']]]]):
760
815
  pulumi.set(self, "mount_options", value)
761
816
 
817
+ @property
818
+ @pulumi.getter(name="multipleEndpoints")
819
+ def multiple_endpoints(self) -> Optional[pulumi.Input[bool]]:
820
+ """
821
+ Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
822
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
823
+ """
824
+ return pulumi.get(self, "multiple_endpoints")
825
+
826
+ @multiple_endpoints.setter
827
+ def multiple_endpoints(self, value: Optional[pulumi.Input[bool]]):
828
+ pulumi.set(self, "multiple_endpoints", value)
829
+
762
830
  @property
763
831
  @pulumi.getter
764
832
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -1037,7 +1105,9 @@ class Volume(pulumi.CustomResource):
1037
1105
  export_policy: Optional[pulumi.Input[Union['VolumeExportPolicyArgs', 'VolumeExportPolicyArgsDict']]] = None,
1038
1106
  kerberos_enabled: Optional[pulumi.Input[bool]] = None,
1039
1107
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1108
+ large_capacity: Optional[pulumi.Input[bool]] = None,
1040
1109
  location: Optional[pulumi.Input[str]] = None,
1110
+ multiple_endpoints: Optional[pulumi.Input[bool]] = None,
1041
1111
  name: Optional[pulumi.Input[str]] = None,
1042
1112
  project: Optional[pulumi.Input[str]] = None,
1043
1113
  protocols: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1131,7 +1201,10 @@ class Volume(pulumi.CustomResource):
1131
1201
 
1132
1202
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
1133
1203
  Please refer to the field `effective_labels` for all of the labels present on the resource.
1204
+ :param pulumi.Input[bool] large_capacity: Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
1134
1205
  :param pulumi.Input[str] location: Name of the pool location. Usually a region name, expect for some STANDARD service level pools which require a zone name.
1206
+ :param pulumi.Input[bool] multiple_endpoints: Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
1207
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
1135
1208
  :param pulumi.Input[str] name: The name of the volume. Needs to be unique per location.
1136
1209
 
1137
1210
 
@@ -1248,7 +1321,9 @@ class Volume(pulumi.CustomResource):
1248
1321
  export_policy: Optional[pulumi.Input[Union['VolumeExportPolicyArgs', 'VolumeExportPolicyArgsDict']]] = None,
1249
1322
  kerberos_enabled: Optional[pulumi.Input[bool]] = None,
1250
1323
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1324
+ large_capacity: Optional[pulumi.Input[bool]] = None,
1251
1325
  location: Optional[pulumi.Input[str]] = None,
1326
+ multiple_endpoints: Optional[pulumi.Input[bool]] = None,
1252
1327
  name: Optional[pulumi.Input[str]] = None,
1253
1328
  project: Optional[pulumi.Input[str]] = None,
1254
1329
  protocols: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1279,9 +1354,11 @@ class Volume(pulumi.CustomResource):
1279
1354
  __props__.__dict__["export_policy"] = export_policy
1280
1355
  __props__.__dict__["kerberos_enabled"] = kerberos_enabled
1281
1356
  __props__.__dict__["labels"] = labels
1357
+ __props__.__dict__["large_capacity"] = large_capacity
1282
1358
  if location is None and not opts.urn:
1283
1359
  raise TypeError("Missing required property 'location'")
1284
1360
  __props__.__dict__["location"] = location
1361
+ __props__.__dict__["multiple_endpoints"] = multiple_endpoints
1285
1362
  __props__.__dict__["name"] = name
1286
1363
  __props__.__dict__["project"] = project
1287
1364
  if protocols is None and not opts.urn:
@@ -1342,9 +1419,11 @@ class Volume(pulumi.CustomResource):
1342
1419
  kerberos_enabled: Optional[pulumi.Input[bool]] = None,
1343
1420
  kms_config: Optional[pulumi.Input[str]] = None,
1344
1421
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1422
+ large_capacity: Optional[pulumi.Input[bool]] = None,
1345
1423
  ldap_enabled: Optional[pulumi.Input[bool]] = None,
1346
1424
  location: Optional[pulumi.Input[str]] = None,
1347
1425
  mount_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VolumeMountOptionArgs', 'VolumeMountOptionArgsDict']]]]] = None,
1426
+ multiple_endpoints: Optional[pulumi.Input[bool]] = None,
1348
1427
  name: Optional[pulumi.Input[str]] = None,
1349
1428
  network: Optional[pulumi.Input[str]] = None,
1350
1429
  project: Optional[pulumi.Input[str]] = None,
@@ -1394,10 +1473,13 @@ class Volume(pulumi.CustomResource):
1394
1473
 
1395
1474
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
1396
1475
  Please refer to the field `effective_labels` for all of the labels present on the resource.
1476
+ :param pulumi.Input[bool] large_capacity: Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
1397
1477
  :param pulumi.Input[bool] ldap_enabled: Flag indicating if the volume is NFS LDAP enabled or not. Inherited from storage pool.
1398
1478
  :param pulumi.Input[str] location: Name of the pool location. Usually a region name, expect for some STANDARD service level pools which require a zone name.
1399
1479
  :param pulumi.Input[Sequence[pulumi.Input[Union['VolumeMountOptionArgs', 'VolumeMountOptionArgsDict']]]] mount_options: Reports mount instructions for this volume.
1400
1480
  Structure is documented below.
1481
+ :param pulumi.Input[bool] multiple_endpoints: Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
1482
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
1401
1483
  :param pulumi.Input[str] name: The name of the volume. Needs to be unique per location.
1402
1484
 
1403
1485
 
@@ -1450,9 +1532,11 @@ class Volume(pulumi.CustomResource):
1450
1532
  __props__.__dict__["kerberos_enabled"] = kerberos_enabled
1451
1533
  __props__.__dict__["kms_config"] = kms_config
1452
1534
  __props__.__dict__["labels"] = labels
1535
+ __props__.__dict__["large_capacity"] = large_capacity
1453
1536
  __props__.__dict__["ldap_enabled"] = ldap_enabled
1454
1537
  __props__.__dict__["location"] = location
1455
1538
  __props__.__dict__["mount_options"] = mount_options
1539
+ __props__.__dict__["multiple_endpoints"] = multiple_endpoints
1456
1540
  __props__.__dict__["name"] = name
1457
1541
  __props__.__dict__["network"] = network
1458
1542
  __props__.__dict__["project"] = project
@@ -1588,6 +1672,14 @@ class Volume(pulumi.CustomResource):
1588
1672
  """
1589
1673
  return pulumi.get(self, "labels")
1590
1674
 
1675
+ @property
1676
+ @pulumi.getter(name="largeCapacity")
1677
+ def large_capacity(self) -> pulumi.Output[Optional[bool]]:
1678
+ """
1679
+ Optional. Flag indicating if the volume will be a large capacity volume or a regular volume.
1680
+ """
1681
+ return pulumi.get(self, "large_capacity")
1682
+
1591
1683
  @property
1592
1684
  @pulumi.getter(name="ldapEnabled")
1593
1685
  def ldap_enabled(self) -> pulumi.Output[bool]:
@@ -1613,6 +1705,15 @@ class Volume(pulumi.CustomResource):
1613
1705
  """
1614
1706
  return pulumi.get(self, "mount_options")
1615
1707
 
1708
+ @property
1709
+ @pulumi.getter(name="multipleEndpoints")
1710
+ def multiple_endpoints(self) -> pulumi.Output[Optional[bool]]:
1711
+ """
1712
+ Optional. Flag indicating if the volume will have an IP address per node for volumes supporting multiple IP endpoints.
1713
+ Only the volume with largeCapacity will be allowed to have multiple endpoints.
1714
+ """
1715
+ return pulumi.get(self, "multiple_endpoints")
1716
+
1616
1717
  @property
1617
1718
  @pulumi.getter
1618
1719
  def name(self) -> pulumi.Output[str]:
@@ -21,18 +21,22 @@ class FolderArgs:
21
21
  def __init__(__self__, *,
22
22
  display_name: pulumi.Input[str],
23
23
  parent: pulumi.Input[str],
24
- deletion_protection: Optional[pulumi.Input[bool]] = None):
24
+ deletion_protection: Optional[pulumi.Input[bool]] = None,
25
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
25
26
  """
26
27
  The set of arguments for constructing a Folder resource.
27
28
  :param pulumi.Input[str] display_name: The folder’s display name.
28
29
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
29
30
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
30
31
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
32
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
31
33
  """
32
34
  pulumi.set(__self__, "display_name", display_name)
33
35
  pulumi.set(__self__, "parent", parent)
34
36
  if deletion_protection is not None:
35
37
  pulumi.set(__self__, "deletion_protection", deletion_protection)
38
+ if tags is not None:
39
+ pulumi.set(__self__, "tags", tags)
36
40
 
37
41
  @property
38
42
  @pulumi.getter(name="displayName")
@@ -69,6 +73,18 @@ class FolderArgs:
69
73
  def deletion_protection(self, value: Optional[pulumi.Input[bool]]):
70
74
  pulumi.set(self, "deletion_protection", value)
71
75
 
76
+ @property
77
+ @pulumi.getter
78
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
79
+ """
80
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
81
+ """
82
+ return pulumi.get(self, "tags")
83
+
84
+ @tags.setter
85
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
86
+ pulumi.set(self, "tags", value)
87
+
72
88
 
73
89
  @pulumi.input_type
74
90
  class _FolderState:
@@ -79,7 +95,8 @@ class _FolderState:
79
95
  folder_id: Optional[pulumi.Input[str]] = None,
80
96
  lifecycle_state: Optional[pulumi.Input[str]] = None,
81
97
  name: Optional[pulumi.Input[str]] = None,
82
- parent: Optional[pulumi.Input[str]] = None):
98
+ parent: Optional[pulumi.Input[str]] = None,
99
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
83
100
  """
84
101
  Input properties used for looking up and filtering Folder resources.
85
102
  :param pulumi.Input[str] create_time: Timestamp when the Folder was created. Assigned by the server.
@@ -91,6 +108,7 @@ class _FolderState:
91
108
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
92
109
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
93
110
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
111
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
94
112
  """
95
113
  if create_time is not None:
96
114
  pulumi.set(__self__, "create_time", create_time)
@@ -106,6 +124,8 @@ class _FolderState:
106
124
  pulumi.set(__self__, "name", name)
107
125
  if parent is not None:
108
126
  pulumi.set(__self__, "parent", parent)
127
+ if tags is not None:
128
+ pulumi.set(__self__, "tags", tags)
109
129
 
110
130
  @property
111
131
  @pulumi.getter(name="createTime")
@@ -191,6 +211,18 @@ class _FolderState:
191
211
  def parent(self, value: Optional[pulumi.Input[str]]):
192
212
  pulumi.set(self, "parent", value)
193
213
 
214
+ @property
215
+ @pulumi.getter
216
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
217
+ """
218
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
219
+ """
220
+ return pulumi.get(self, "tags")
221
+
222
+ @tags.setter
223
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
224
+ pulumi.set(self, "tags", value)
225
+
194
226
 
195
227
  class Folder(pulumi.CustomResource):
196
228
  @overload
@@ -200,6 +232,7 @@ class Folder(pulumi.CustomResource):
200
232
  deletion_protection: Optional[pulumi.Input[bool]] = None,
201
233
  display_name: Optional[pulumi.Input[str]] = None,
202
234
  parent: Optional[pulumi.Input[str]] = None,
235
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
203
236
  __props__=None):
204
237
  """
205
238
  Allows management of a Google Cloud Platform folder. For more information see
@@ -216,21 +249,7 @@ class Folder(pulumi.CustomResource):
216
249
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
217
250
  doc for more information.
218
251
 
219
- ## Example Usage
220
-
221
- ```python
222
- import pulumi
223
- import pulumi_gcp as gcp
224
-
225
- # Top-level folder under an organization.
226
- department1 = gcp.organizations.Folder("department1",
227
- display_name="Department 1",
228
- parent="organizations/1234567")
229
- # Folder nested under another folder.
230
- team_abc = gcp.organizations.Folder("team-abc",
231
- display_name="Team ABC",
232
- parent=department1.name)
233
- ```
252
+ > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
234
253
 
235
254
  ## Import
236
255
 
@@ -256,6 +275,7 @@ class Folder(pulumi.CustomResource):
256
275
  A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters.
257
276
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
258
277
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
278
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
259
279
  """
260
280
  ...
261
281
  @overload
@@ -278,21 +298,7 @@ class Folder(pulumi.CustomResource):
278
298
  [Access Control for Folders Using IAM](https://cloud.google.com/resource-manager/docs/access-control-folders)
279
299
  doc for more information.
280
300
 
281
- ## Example Usage
282
-
283
- ```python
284
- import pulumi
285
- import pulumi_gcp as gcp
286
-
287
- # Top-level folder under an organization.
288
- department1 = gcp.organizations.Folder("department1",
289
- display_name="Department 1",
290
- parent="organizations/1234567")
291
- # Folder nested under another folder.
292
- team_abc = gcp.organizations.Folder("team-abc",
293
- display_name="Team ABC",
294
- parent=department1.name)
295
- ```
301
+ > It may take a while for the attached tag bindings to be deleted after the folder is scheduled to be deleted.
296
302
 
297
303
  ## Import
298
304
 
@@ -330,6 +336,7 @@ class Folder(pulumi.CustomResource):
330
336
  deletion_protection: Optional[pulumi.Input[bool]] = None,
331
337
  display_name: Optional[pulumi.Input[str]] = None,
332
338
  parent: Optional[pulumi.Input[str]] = None,
339
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
333
340
  __props__=None):
334
341
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
335
342
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -346,6 +353,7 @@ class Folder(pulumi.CustomResource):
346
353
  if parent is None and not opts.urn:
347
354
  raise TypeError("Missing required property 'parent'")
348
355
  __props__.__dict__["parent"] = parent
356
+ __props__.__dict__["tags"] = tags
349
357
  __props__.__dict__["create_time"] = None
350
358
  __props__.__dict__["folder_id"] = None
351
359
  __props__.__dict__["lifecycle_state"] = None
@@ -366,7 +374,8 @@ class Folder(pulumi.CustomResource):
366
374
  folder_id: Optional[pulumi.Input[str]] = None,
367
375
  lifecycle_state: Optional[pulumi.Input[str]] = None,
368
376
  name: Optional[pulumi.Input[str]] = None,
369
- parent: Optional[pulumi.Input[str]] = None) -> 'Folder':
377
+ parent: Optional[pulumi.Input[str]] = None,
378
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Folder':
370
379
  """
371
380
  Get an existing Folder resource's state with the given name, id, and optional extra
372
381
  properties used to qualify the lookup.
@@ -383,6 +392,7 @@ class Folder(pulumi.CustomResource):
383
392
  :param pulumi.Input[str] name: The resource name of the Folder. Its format is folders/{folder_id}.
384
393
  :param pulumi.Input[str] parent: The resource name of the parent Folder or Organization.
385
394
  Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.
395
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
386
396
  """
387
397
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
388
398
 
@@ -395,6 +405,7 @@ class Folder(pulumi.CustomResource):
395
405
  __props__.__dict__["lifecycle_state"] = lifecycle_state
396
406
  __props__.__dict__["name"] = name
397
407
  __props__.__dict__["parent"] = parent
408
+ __props__.__dict__["tags"] = tags
398
409
  return Folder(resource_name, opts=opts, __props__=__props__)
399
410
 
400
411
  @property
@@ -453,3 +464,11 @@ class Folder(pulumi.CustomResource):
453
464
  """
454
465
  return pulumi.get(self, "parent")
455
466
 
467
+ @property
468
+ @pulumi.getter
469
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
470
+ """
471
+ A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored when empty. The field is immutable and causes resource replacement when mutated.
472
+ """
473
+ return pulumi.get(self, "tags")
474
+
pulumi_gcp/provider.py CHANGED
@@ -88,6 +88,7 @@ class ProviderArgs:
88
88
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
89
89
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
90
90
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
91
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
91
92
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
92
93
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
93
94
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -131,6 +132,7 @@ class ProviderArgs:
131
132
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
132
133
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
133
134
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
135
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
134
136
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
135
137
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
136
138
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -331,6 +333,8 @@ class ProviderArgs:
331
333
  pulumi.set(__self__, "default_labels", default_labels)
332
334
  if deployment_manager_custom_endpoint is not None:
333
335
  pulumi.set(__self__, "deployment_manager_custom_endpoint", deployment_manager_custom_endpoint)
336
+ if developer_connect_custom_endpoint is not None:
337
+ pulumi.set(__self__, "developer_connect_custom_endpoint", developer_connect_custom_endpoint)
334
338
  if dialogflow_custom_endpoint is not None:
335
339
  pulumi.set(__self__, "dialogflow_custom_endpoint", dialogflow_custom_endpoint)
336
340
  if dialogflow_cx_custom_endpoint is not None:
@@ -417,6 +421,8 @@ class ProviderArgs:
417
421
  pulumi.set(__self__, "managed_kafka_custom_endpoint", managed_kafka_custom_endpoint)
418
422
  if memcache_custom_endpoint is not None:
419
423
  pulumi.set(__self__, "memcache_custom_endpoint", memcache_custom_endpoint)
424
+ if memorystore_custom_endpoint is not None:
425
+ pulumi.set(__self__, "memorystore_custom_endpoint", memorystore_custom_endpoint)
420
426
  if migration_center_custom_endpoint is not None:
421
427
  pulumi.set(__self__, "migration_center_custom_endpoint", migration_center_custom_endpoint)
422
428
  if ml_engine_custom_endpoint is not None:
@@ -1158,6 +1164,15 @@ class ProviderArgs:
1158
1164
  def deployment_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1159
1165
  pulumi.set(self, "deployment_manager_custom_endpoint", value)
1160
1166
 
1167
+ @property
1168
+ @pulumi.getter(name="developerConnectCustomEndpoint")
1169
+ def developer_connect_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1170
+ return pulumi.get(self, "developer_connect_custom_endpoint")
1171
+
1172
+ @developer_connect_custom_endpoint.setter
1173
+ def developer_connect_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1174
+ pulumi.set(self, "developer_connect_custom_endpoint", value)
1175
+
1161
1176
  @property
1162
1177
  @pulumi.getter(name="dialogflowCustomEndpoint")
1163
1178
  def dialogflow_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -1545,6 +1560,15 @@ class ProviderArgs:
1545
1560
  def memcache_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1546
1561
  pulumi.set(self, "memcache_custom_endpoint", value)
1547
1562
 
1563
+ @property
1564
+ @pulumi.getter(name="memorystoreCustomEndpoint")
1565
+ def memorystore_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
1566
+ return pulumi.get(self, "memorystore_custom_endpoint")
1567
+
1568
+ @memorystore_custom_endpoint.setter
1569
+ def memorystore_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
1570
+ pulumi.set(self, "memorystore_custom_endpoint", value)
1571
+
1548
1572
  @property
1549
1573
  @pulumi.getter(name="migrationCenterCustomEndpoint")
1550
1574
  def migration_center_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2168,6 +2192,7 @@ class Provider(pulumi.ProviderResource):
2168
2192
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2169
2193
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2170
2194
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2195
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2171
2196
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2172
2197
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2173
2198
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2211,6 +2236,7 @@ class Provider(pulumi.ProviderResource):
2211
2236
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2212
2237
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2213
2238
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2239
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2214
2240
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2215
2241
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2216
2242
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2377,6 +2403,7 @@ class Provider(pulumi.ProviderResource):
2377
2403
  datastream_custom_endpoint: Optional[pulumi.Input[str]] = None,
2378
2404
  default_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2379
2405
  deployment_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2406
+ developer_connect_custom_endpoint: Optional[pulumi.Input[str]] = None,
2380
2407
  dialogflow_custom_endpoint: Optional[pulumi.Input[str]] = None,
2381
2408
  dialogflow_cx_custom_endpoint: Optional[pulumi.Input[str]] = None,
2382
2409
  disable_google_partner_name: Optional[pulumi.Input[bool]] = None,
@@ -2420,6 +2447,7 @@ class Provider(pulumi.ProviderResource):
2420
2447
  looker_custom_endpoint: Optional[pulumi.Input[str]] = None,
2421
2448
  managed_kafka_custom_endpoint: Optional[pulumi.Input[str]] = None,
2422
2449
  memcache_custom_endpoint: Optional[pulumi.Input[str]] = None,
2450
+ memorystore_custom_endpoint: Optional[pulumi.Input[str]] = None,
2423
2451
  migration_center_custom_endpoint: Optional[pulumi.Input[str]] = None,
2424
2452
  ml_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2425
2453
  monitoring_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2558,6 +2586,7 @@ class Provider(pulumi.ProviderResource):
2558
2586
  __props__.__dict__["datastream_custom_endpoint"] = datastream_custom_endpoint
2559
2587
  __props__.__dict__["default_labels"] = pulumi.Output.from_input(default_labels).apply(pulumi.runtime.to_json) if default_labels is not None else None
2560
2588
  __props__.__dict__["deployment_manager_custom_endpoint"] = deployment_manager_custom_endpoint
2589
+ __props__.__dict__["developer_connect_custom_endpoint"] = developer_connect_custom_endpoint
2561
2590
  __props__.__dict__["dialogflow_custom_endpoint"] = dialogflow_custom_endpoint
2562
2591
  __props__.__dict__["dialogflow_cx_custom_endpoint"] = dialogflow_cx_custom_endpoint
2563
2592
  __props__.__dict__["disable_google_partner_name"] = pulumi.Output.from_input(disable_google_partner_name).apply(pulumi.runtime.to_json) if disable_google_partner_name is not None else None
@@ -2601,6 +2630,7 @@ class Provider(pulumi.ProviderResource):
2601
2630
  __props__.__dict__["looker_custom_endpoint"] = looker_custom_endpoint
2602
2631
  __props__.__dict__["managed_kafka_custom_endpoint"] = managed_kafka_custom_endpoint
2603
2632
  __props__.__dict__["memcache_custom_endpoint"] = memcache_custom_endpoint
2633
+ __props__.__dict__["memorystore_custom_endpoint"] = memorystore_custom_endpoint
2604
2634
  __props__.__dict__["migration_center_custom_endpoint"] = migration_center_custom_endpoint
2605
2635
  __props__.__dict__["ml_engine_custom_endpoint"] = ml_engine_custom_endpoint
2606
2636
  __props__.__dict__["monitoring_custom_endpoint"] = monitoring_custom_endpoint
@@ -3001,6 +3031,11 @@ class Provider(pulumi.ProviderResource):
3001
3031
  def deployment_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3002
3032
  return pulumi.get(self, "deployment_manager_custom_endpoint")
3003
3033
 
3034
+ @property
3035
+ @pulumi.getter(name="developerConnectCustomEndpoint")
3036
+ def developer_connect_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3037
+ return pulumi.get(self, "developer_connect_custom_endpoint")
3038
+
3004
3039
  @property
3005
3040
  @pulumi.getter(name="dialogflowCustomEndpoint")
3006
3041
  def dialogflow_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -3206,6 +3241,11 @@ class Provider(pulumi.ProviderResource):
3206
3241
  def memcache_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3207
3242
  return pulumi.get(self, "memcache_custom_endpoint")
3208
3243
 
3244
+ @property
3245
+ @pulumi.getter(name="memorystoreCustomEndpoint")
3246
+ def memorystore_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
3247
+ return pulumi.get(self, "memorystore_custom_endpoint")
3248
+
3209
3249
  @property
3210
3250
  @pulumi.getter(name="migrationCenterCustomEndpoint")
3211
3251
  def migration_center_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.1.0-alpha.1726492828"
4
+ "version": "8.2.0"
5
5
  }
@@ -365,7 +365,7 @@ class V2ProjectMuteConfig(pulumi.CustomResource):
365
365
 
366
366
  default = gcp.securitycenter.V2ProjectMuteConfig("default",
367
367
  mute_config_id="my-config",
368
- project="",
368
+ project="my-project-name",
369
369
  location="global",
370
370
  description="My custom Cloud Security Command Center Finding Project mute Configuration",
371
371
  filter="severity = \\"HIGH\\"",
@@ -439,7 +439,7 @@ class V2ProjectMuteConfig(pulumi.CustomResource):
439
439
 
440
440
  default = gcp.securitycenter.V2ProjectMuteConfig("default",
441
441
  mute_config_id="my-config",
442
- project="",
442
+ project="my-project-name",
443
443
  location="global",
444
444
  description="My custom Cloud Security Command Center Finding Project mute Configuration",
445
445
  filter="severity = \\"HIGH\\"",