pulumi-gcp 8.38.0__py3-none-any.whl → 8.39.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 (36) hide show
  1. pulumi_gcp/__init__.py +16 -0
  2. pulumi_gcp/apigee/_inputs.py +62 -0
  3. pulumi_gcp/apigee/instance.py +63 -0
  4. pulumi_gcp/apigee/outputs.py +37 -0
  5. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  6. pulumi_gcp/backupdisasterrecovery/service_config.py +297 -0
  7. pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
  8. pulumi_gcp/bigqueryanalyticshub/_inputs.py +355 -0
  9. pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +1082 -0
  10. pulumi_gcp/bigqueryanalyticshub/listing.py +116 -0
  11. pulumi_gcp/bigqueryanalyticshub/outputs.py +287 -0
  12. pulumi_gcp/compute/__init__.py +1 -0
  13. pulumi_gcp/compute/_inputs.py +699 -19
  14. pulumi_gcp/compute/firewall.py +54 -0
  15. pulumi_gcp/compute/future_reservation.py +124 -0
  16. pulumi_gcp/compute/get_network_attachment.py +288 -0
  17. pulumi_gcp/compute/get_region_disk.py +23 -1
  18. pulumi_gcp/compute/get_reservation.py +45 -1
  19. pulumi_gcp/compute/interconnect.py +108 -0
  20. pulumi_gcp/compute/outputs.py +734 -15
  21. pulumi_gcp/compute/region_disk.py +115 -0
  22. pulumi_gcp/compute/reservation.py +449 -0
  23. pulumi_gcp/firebase/hosting_site.py +50 -2
  24. pulumi_gcp/firestore/__init__.py +1 -0
  25. pulumi_gcp/firestore/database.py +117 -1
  26. pulumi_gcp/firestore/get_document.py +234 -0
  27. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +12 -0
  28. pulumi_gcp/networksecurity/backend_authentication_config.py +12 -0
  29. pulumi_gcp/pulumi-plugin.json +1 -1
  30. pulumi_gcp/storage/bucket_object.py +47 -0
  31. pulumi_gcp/storage/get_bucket_object.py +12 -1
  32. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  33. {pulumi_gcp-8.38.0.dist-info → pulumi_gcp-8.39.0.dist-info}/METADATA +1 -1
  34. {pulumi_gcp-8.38.0.dist-info → pulumi_gcp-8.39.0.dist-info}/RECORD +36 -32
  35. {pulumi_gcp-8.38.0.dist-info → pulumi_gcp-8.39.0.dist-info}/WHEEL +0 -0
  36. {pulumi_gcp-8.38.0.dist-info → pulumi_gcp-8.39.0.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,8 @@ class RegionDiskArgs:
36
36
  name: Optional[pulumi.Input[builtins.str]] = None,
37
37
  physical_block_size_bytes: Optional[pulumi.Input[builtins.int]] = None,
38
38
  project: Optional[pulumi.Input[builtins.str]] = None,
39
+ provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
40
+ provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
39
41
  region: Optional[pulumi.Input[builtins.str]] = None,
40
42
  size: Optional[pulumi.Input[builtins.int]] = None,
41
43
  snapshot: Optional[pulumi.Input[builtins.str]] = None,
@@ -94,6 +96,11 @@ class RegionDiskArgs:
94
96
  the supported values for the caller's project.
95
97
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
96
98
  If it is not provided, the provider project is used.
99
+ :param pulumi.Input[builtins.int] provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
100
+ that the disk can handle. Values must be between 10,000 and 120,000.
101
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
102
+ :param pulumi.Input[builtins.int] provisioned_throughput: Indicates how much throughput to provision for the disk. This sets the number of throughput
103
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
97
104
  :param pulumi.Input[builtins.str] region: A reference to the region where the disk resides.
98
105
  :param pulumi.Input[builtins.int] size: Size of the persistent disk, specified in GB. You can specify this
99
106
  field when creating a persistent disk using the sourceImage or
@@ -153,6 +160,10 @@ class RegionDiskArgs:
153
160
  pulumi.set(__self__, "physical_block_size_bytes", physical_block_size_bytes)
154
161
  if project is not None:
155
162
  pulumi.set(__self__, "project", project)
163
+ if provisioned_iops is not None:
164
+ pulumi.set(__self__, "provisioned_iops", provisioned_iops)
165
+ if provisioned_throughput is not None:
166
+ pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
156
167
  if region is not None:
157
168
  pulumi.set(__self__, "region", region)
158
169
  if size is not None:
@@ -371,6 +382,33 @@ class RegionDiskArgs:
371
382
  def project(self, value: Optional[pulumi.Input[builtins.str]]):
372
383
  pulumi.set(self, "project", value)
373
384
 
385
+ @property
386
+ @pulumi.getter(name="provisionedIops")
387
+ def provisioned_iops(self) -> Optional[pulumi.Input[builtins.int]]:
388
+ """
389
+ Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
390
+ that the disk can handle. Values must be between 10,000 and 120,000.
391
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
392
+ """
393
+ return pulumi.get(self, "provisioned_iops")
394
+
395
+ @provisioned_iops.setter
396
+ def provisioned_iops(self, value: Optional[pulumi.Input[builtins.int]]):
397
+ pulumi.set(self, "provisioned_iops", value)
398
+
399
+ @property
400
+ @pulumi.getter(name="provisionedThroughput")
401
+ def provisioned_throughput(self) -> Optional[pulumi.Input[builtins.int]]:
402
+ """
403
+ Indicates how much throughput to provision for the disk. This sets the number of throughput
404
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
405
+ """
406
+ return pulumi.get(self, "provisioned_throughput")
407
+
408
+ @provisioned_throughput.setter
409
+ def provisioned_throughput(self, value: Optional[pulumi.Input[builtins.int]]):
410
+ pulumi.set(self, "provisioned_throughput", value)
411
+
374
412
  @property
375
413
  @pulumi.getter
376
414
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -488,6 +526,8 @@ class _RegionDiskState:
488
526
  name: Optional[pulumi.Input[builtins.str]] = None,
489
527
  physical_block_size_bytes: Optional[pulumi.Input[builtins.int]] = None,
490
528
  project: Optional[pulumi.Input[builtins.str]] = None,
529
+ provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
530
+ provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
491
531
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
492
532
  region: Optional[pulumi.Input[builtins.str]] = None,
493
533
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -558,6 +598,11 @@ class _RegionDiskState:
558
598
  the supported values for the caller's project.
559
599
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
560
600
  If it is not provided, the provider project is used.
601
+ :param pulumi.Input[builtins.int] provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
602
+ that the disk can handle. Values must be between 10,000 and 120,000.
603
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
604
+ :param pulumi.Input[builtins.int] provisioned_throughput: Indicates how much throughput to provision for the disk. This sets the number of throughput
605
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
561
606
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
562
607
  and default labels configured on the provider.
563
608
  :param pulumi.Input[builtins.str] region: A reference to the region where the disk resides.
@@ -643,6 +688,10 @@ class _RegionDiskState:
643
688
  pulumi.set(__self__, "physical_block_size_bytes", physical_block_size_bytes)
644
689
  if project is not None:
645
690
  pulumi.set(__self__, "project", project)
691
+ if provisioned_iops is not None:
692
+ pulumi.set(__self__, "provisioned_iops", provisioned_iops)
693
+ if provisioned_throughput is not None:
694
+ pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
646
695
  if pulumi_labels is not None:
647
696
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
648
697
  if region is not None:
@@ -934,6 +983,33 @@ class _RegionDiskState:
934
983
  def project(self, value: Optional[pulumi.Input[builtins.str]]):
935
984
  pulumi.set(self, "project", value)
936
985
 
986
+ @property
987
+ @pulumi.getter(name="provisionedIops")
988
+ def provisioned_iops(self) -> Optional[pulumi.Input[builtins.int]]:
989
+ """
990
+ Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
991
+ that the disk can handle. Values must be between 10,000 and 120,000.
992
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
993
+ """
994
+ return pulumi.get(self, "provisioned_iops")
995
+
996
+ @provisioned_iops.setter
997
+ def provisioned_iops(self, value: Optional[pulumi.Input[builtins.int]]):
998
+ pulumi.set(self, "provisioned_iops", value)
999
+
1000
+ @property
1001
+ @pulumi.getter(name="provisionedThroughput")
1002
+ def provisioned_throughput(self) -> Optional[pulumi.Input[builtins.int]]:
1003
+ """
1004
+ Indicates how much throughput to provision for the disk. This sets the number of throughput
1005
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
1006
+ """
1007
+ return pulumi.get(self, "provisioned_throughput")
1008
+
1009
+ @provisioned_throughput.setter
1010
+ def provisioned_throughput(self, value: Optional[pulumi.Input[builtins.int]]):
1011
+ pulumi.set(self, "provisioned_throughput", value)
1012
+
937
1013
  @property
938
1014
  @pulumi.getter(name="pulumiLabels")
939
1015
  def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
@@ -1129,6 +1205,8 @@ class RegionDisk(pulumi.CustomResource):
1129
1205
  name: Optional[pulumi.Input[builtins.str]] = None,
1130
1206
  physical_block_size_bytes: Optional[pulumi.Input[builtins.int]] = None,
1131
1207
  project: Optional[pulumi.Input[builtins.str]] = None,
1208
+ provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
1209
+ provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
1132
1210
  region: Optional[pulumi.Input[builtins.str]] = None,
1133
1211
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1134
1212
  size: Optional[pulumi.Input[builtins.int]] = None,
@@ -1346,6 +1424,11 @@ class RegionDisk(pulumi.CustomResource):
1346
1424
  the supported values for the caller's project.
1347
1425
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
1348
1426
  If it is not provided, the provider project is used.
1427
+ :param pulumi.Input[builtins.int] provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
1428
+ that the disk can handle. Values must be between 10,000 and 120,000.
1429
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
1430
+ :param pulumi.Input[builtins.int] provisioned_throughput: Indicates how much throughput to provision for the disk. This sets the number of throughput
1431
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
1349
1432
  :param pulumi.Input[builtins.str] region: A reference to the region where the disk resides.
1350
1433
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] replica_zones: URLs of the zones where the disk should be replicated to.
1351
1434
  :param pulumi.Input[builtins.int] size: Size of the persistent disk, specified in GB. You can specify this
@@ -1568,6 +1651,8 @@ class RegionDisk(pulumi.CustomResource):
1568
1651
  name: Optional[pulumi.Input[builtins.str]] = None,
1569
1652
  physical_block_size_bytes: Optional[pulumi.Input[builtins.int]] = None,
1570
1653
  project: Optional[pulumi.Input[builtins.str]] = None,
1654
+ provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
1655
+ provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
1571
1656
  region: Optional[pulumi.Input[builtins.str]] = None,
1572
1657
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1573
1658
  size: Optional[pulumi.Input[builtins.int]] = None,
@@ -1597,6 +1682,8 @@ class RegionDisk(pulumi.CustomResource):
1597
1682
  __props__.__dict__["name"] = name
1598
1683
  __props__.__dict__["physical_block_size_bytes"] = physical_block_size_bytes
1599
1684
  __props__.__dict__["project"] = project
1685
+ __props__.__dict__["provisioned_iops"] = provisioned_iops
1686
+ __props__.__dict__["provisioned_throughput"] = provisioned_throughput
1600
1687
  __props__.__dict__["region"] = region
1601
1688
  if replica_zones is None and not opts.urn:
1602
1689
  raise TypeError("Missing required property 'replica_zones'")
@@ -1648,6 +1735,8 @@ class RegionDisk(pulumi.CustomResource):
1648
1735
  name: Optional[pulumi.Input[builtins.str]] = None,
1649
1736
  physical_block_size_bytes: Optional[pulumi.Input[builtins.int]] = None,
1650
1737
  project: Optional[pulumi.Input[builtins.str]] = None,
1738
+ provisioned_iops: Optional[pulumi.Input[builtins.int]] = None,
1739
+ provisioned_throughput: Optional[pulumi.Input[builtins.int]] = None,
1651
1740
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1652
1741
  region: Optional[pulumi.Input[builtins.str]] = None,
1653
1742
  replica_zones: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1723,6 +1812,11 @@ class RegionDisk(pulumi.CustomResource):
1723
1812
  the supported values for the caller's project.
1724
1813
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
1725
1814
  If it is not provided, the provider project is used.
1815
+ :param pulumi.Input[builtins.int] provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
1816
+ that the disk can handle. Values must be between 10,000 and 120,000.
1817
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
1818
+ :param pulumi.Input[builtins.int] provisioned_throughput: Indicates how much throughput to provision for the disk. This sets the number of throughput
1819
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
1726
1820
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
1727
1821
  and default labels configured on the provider.
1728
1822
  :param pulumi.Input[builtins.str] region: A reference to the region where the disk resides.
@@ -1790,6 +1884,8 @@ class RegionDisk(pulumi.CustomResource):
1790
1884
  __props__.__dict__["name"] = name
1791
1885
  __props__.__dict__["physical_block_size_bytes"] = physical_block_size_bytes
1792
1886
  __props__.__dict__["project"] = project
1887
+ __props__.__dict__["provisioned_iops"] = provisioned_iops
1888
+ __props__.__dict__["provisioned_throughput"] = provisioned_throughput
1793
1889
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1794
1890
  __props__.__dict__["region"] = region
1795
1891
  __props__.__dict__["replica_zones"] = replica_zones
@@ -1994,6 +2090,25 @@ class RegionDisk(pulumi.CustomResource):
1994
2090
  """
1995
2091
  return pulumi.get(self, "project")
1996
2092
 
2093
+ @property
2094
+ @pulumi.getter(name="provisionedIops")
2095
+ def provisioned_iops(self) -> pulumi.Output[builtins.int]:
2096
+ """
2097
+ Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second
2098
+ that the disk can handle. Values must be between 10,000 and 120,000.
2099
+ For more details, see the Extreme persistent disk [documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
2100
+ """
2101
+ return pulumi.get(self, "provisioned_iops")
2102
+
2103
+ @property
2104
+ @pulumi.getter(name="provisionedThroughput")
2105
+ def provisioned_throughput(self) -> pulumi.Output[builtins.int]:
2106
+ """
2107
+ Indicates how much throughput to provision for the disk. This sets the number of throughput
2108
+ mb per second that the disk can handle. Values must be greater than or equal to 1.
2109
+ """
2110
+ return pulumi.get(self, "provisioned_throughput")
2111
+
1997
2112
  @property
1998
2113
  @pulumi.getter(name="pulumiLabels")
1999
2114
  def pulumi_labels(self) -> pulumi.Output[Mapping[str, builtins.str]]: