pulumi-gcp 8.3.1a1727284265__py3-none-any.whl → 8.4.0a1727795436__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 (49) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/apigee/nat_address.py +155 -2
  3. pulumi_gcp/bigquery/_inputs.py +102 -0
  4. pulumi_gcp/bigquery/outputs.py +83 -0
  5. pulumi_gcp/bigquery/table.py +47 -0
  6. pulumi_gcp/cloudrun/_inputs.py +26 -0
  7. pulumi_gcp/cloudrun/outputs.py +33 -0
  8. pulumi_gcp/cloudrun/service.py +76 -0
  9. pulumi_gcp/cloudrunv2/_inputs.py +65 -9
  10. pulumi_gcp/cloudrunv2/outputs.py +73 -8
  11. pulumi_gcp/cloudrunv2/service.py +64 -0
  12. pulumi_gcp/compute/__init__.py +3 -0
  13. pulumi_gcp/compute/_inputs.py +1941 -2
  14. pulumi_gcp/compute/get_region_instance_group_manager.py +438 -0
  15. pulumi_gcp/compute/get_router_nat.py +11 -1
  16. pulumi_gcp/compute/instance.py +7 -7
  17. pulumi_gcp/compute/instance_from_machine_image.py +7 -7
  18. pulumi_gcp/compute/instance_from_template.py +7 -7
  19. pulumi_gcp/compute/interconnect.py +76 -64
  20. pulumi_gcp/compute/outputs.py +4637 -2640
  21. pulumi_gcp/compute/region_commitment.py +47 -0
  22. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +835 -0
  23. pulumi_gcp/compute/router_nat.py +56 -2
  24. pulumi_gcp/compute/router_nat_address.py +514 -0
  25. pulumi_gcp/compute/subnetwork.py +14 -14
  26. pulumi_gcp/container/_inputs.py +222 -0
  27. pulumi_gcp/container/outputs.py +279 -2
  28. pulumi_gcp/logging/__init__.py +1 -0
  29. pulumi_gcp/logging/log_scope.py +492 -0
  30. pulumi_gcp/looker/_inputs.py +157 -0
  31. pulumi_gcp/looker/instance.py +143 -0
  32. pulumi_gcp/looker/outputs.py +136 -0
  33. pulumi_gcp/networkconnectivity/_inputs.py +72 -3
  34. pulumi_gcp/networkconnectivity/outputs.py +51 -3
  35. pulumi_gcp/networkconnectivity/spoke.py +310 -0
  36. pulumi_gcp/networksecurity/security_profile.py +2 -2
  37. pulumi_gcp/privilegedaccessmanager/__init__.py +1 -0
  38. pulumi_gcp/privilegedaccessmanager/get_entitlement.py +219 -0
  39. pulumi_gcp/privilegedaccessmanager/outputs.py +312 -0
  40. pulumi_gcp/pulumi-plugin.json +1 -1
  41. pulumi_gcp/secretmanager/__init__.py +2 -0
  42. pulumi_gcp/secretmanager/get_regional_secret_version.py +2 -2
  43. pulumi_gcp/secretmanager/get_regional_secret_version_access.py +188 -0
  44. pulumi_gcp/secretmanager/get_regional_secrets.py +156 -0
  45. pulumi_gcp/secretmanager/outputs.py +265 -0
  46. {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/METADATA +1 -1
  47. {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/RECORD +49 -42
  48. {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/WHEEL +0 -0
  49. {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ class RegionCommitmentArgs:
25
25
  auto_renew: Optional[pulumi.Input[bool]] = None,
26
26
  category: Optional[pulumi.Input[str]] = None,
27
27
  description: Optional[pulumi.Input[str]] = None,
28
+ existing_reservations: Optional[pulumi.Input[str]] = None,
28
29
  license_resource: Optional[pulumi.Input['RegionCommitmentLicenseResourceArgs']] = None,
29
30
  name: Optional[pulumi.Input[str]] = None,
30
31
  project: Optional[pulumi.Input[str]] = None,
@@ -49,6 +50,7 @@ class RegionCommitmentArgs:
49
50
  Note that only MACHINE commitments should have a Type specified.
50
51
  Possible values are: `LICENSE`, `MACHINE`.
51
52
  :param pulumi.Input[str] description: An optional description of this resource.
53
+ :param pulumi.Input[str] existing_reservations: Specifies the already existing reservations to attach to the Commitment.
52
54
  :param pulumi.Input['RegionCommitmentLicenseResourceArgs'] license_resource: The license specification required as part of a license commitment.
53
55
  Structure is documented below.
54
56
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -75,6 +77,8 @@ class RegionCommitmentArgs:
75
77
  pulumi.set(__self__, "category", category)
76
78
  if description is not None:
77
79
  pulumi.set(__self__, "description", description)
80
+ if existing_reservations is not None:
81
+ pulumi.set(__self__, "existing_reservations", existing_reservations)
78
82
  if license_resource is not None:
79
83
  pulumi.set(__self__, "license_resource", license_resource)
80
84
  if name is not None:
@@ -148,6 +152,18 @@ class RegionCommitmentArgs:
148
152
  def description(self, value: Optional[pulumi.Input[str]]):
149
153
  pulumi.set(self, "description", value)
150
154
 
155
+ @property
156
+ @pulumi.getter(name="existingReservations")
157
+ def existing_reservations(self) -> Optional[pulumi.Input[str]]:
158
+ """
159
+ Specifies the already existing reservations to attach to the Commitment.
160
+ """
161
+ return pulumi.get(self, "existing_reservations")
162
+
163
+ @existing_reservations.setter
164
+ def existing_reservations(self, value: Optional[pulumi.Input[str]]):
165
+ pulumi.set(self, "existing_reservations", value)
166
+
151
167
  @property
152
168
  @pulumi.getter(name="licenseResource")
153
169
  def license_resource(self) -> Optional[pulumi.Input['RegionCommitmentLicenseResourceArgs']]:
@@ -242,6 +258,7 @@ class _RegionCommitmentState:
242
258
  creation_timestamp: Optional[pulumi.Input[str]] = None,
243
259
  description: Optional[pulumi.Input[str]] = None,
244
260
  end_timestamp: Optional[pulumi.Input[str]] = None,
261
+ existing_reservations: Optional[pulumi.Input[str]] = None,
245
262
  license_resource: Optional[pulumi.Input['RegionCommitmentLicenseResourceArgs']] = None,
246
263
  name: Optional[pulumi.Input[str]] = None,
247
264
  plan: Optional[pulumi.Input[str]] = None,
@@ -268,6 +285,7 @@ class _RegionCommitmentState:
268
285
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
269
286
  :param pulumi.Input[str] description: An optional description of this resource.
270
287
  :param pulumi.Input[str] end_timestamp: Commitment end time in RFC3339 text format.
288
+ :param pulumi.Input[str] existing_reservations: Specifies the already existing reservations to attach to the Commitment.
271
289
  :param pulumi.Input['RegionCommitmentLicenseResourceArgs'] license_resource: The license specification required as part of a license commitment.
272
290
  Structure is documented below.
273
291
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -310,6 +328,8 @@ class _RegionCommitmentState:
310
328
  pulumi.set(__self__, "description", description)
311
329
  if end_timestamp is not None:
312
330
  pulumi.set(__self__, "end_timestamp", end_timestamp)
331
+ if existing_reservations is not None:
332
+ pulumi.set(__self__, "existing_reservations", existing_reservations)
313
333
  if license_resource is not None:
314
334
  pulumi.set(__self__, "license_resource", license_resource)
315
335
  if name is not None:
@@ -412,6 +432,18 @@ class _RegionCommitmentState:
412
432
  def end_timestamp(self, value: Optional[pulumi.Input[str]]):
413
433
  pulumi.set(self, "end_timestamp", value)
414
434
 
435
+ @property
436
+ @pulumi.getter(name="existingReservations")
437
+ def existing_reservations(self) -> Optional[pulumi.Input[str]]:
438
+ """
439
+ Specifies the already existing reservations to attach to the Commitment.
440
+ """
441
+ return pulumi.get(self, "existing_reservations")
442
+
443
+ @existing_reservations.setter
444
+ def existing_reservations(self, value: Optional[pulumi.Input[str]]):
445
+ pulumi.set(self, "existing_reservations", value)
446
+
415
447
  @property
416
448
  @pulumi.getter(name="licenseResource")
417
449
  def license_resource(self) -> Optional[pulumi.Input['RegionCommitmentLicenseResourceArgs']]:
@@ -571,6 +603,7 @@ class RegionCommitment(pulumi.CustomResource):
571
603
  auto_renew: Optional[pulumi.Input[bool]] = None,
572
604
  category: Optional[pulumi.Input[str]] = None,
573
605
  description: Optional[pulumi.Input[str]] = None,
606
+ existing_reservations: Optional[pulumi.Input[str]] = None,
574
607
  license_resource: Optional[pulumi.Input[Union['RegionCommitmentLicenseResourceArgs', 'RegionCommitmentLicenseResourceArgsDict']]] = None,
575
608
  name: Optional[pulumi.Input[str]] = None,
576
609
  plan: Optional[pulumi.Input[str]] = None,
@@ -681,6 +714,7 @@ class RegionCommitment(pulumi.CustomResource):
681
714
  Note that only MACHINE commitments should have a Type specified.
682
715
  Possible values are: `LICENSE`, `MACHINE`.
683
716
  :param pulumi.Input[str] description: An optional description of this resource.
717
+ :param pulumi.Input[str] existing_reservations: Specifies the already existing reservations to attach to the Commitment.
684
718
  :param pulumi.Input[Union['RegionCommitmentLicenseResourceArgs', 'RegionCommitmentLicenseResourceArgsDict']] license_resource: The license specification required as part of a license commitment.
685
719
  Structure is documented below.
686
720
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -820,6 +854,7 @@ class RegionCommitment(pulumi.CustomResource):
820
854
  auto_renew: Optional[pulumi.Input[bool]] = None,
821
855
  category: Optional[pulumi.Input[str]] = None,
822
856
  description: Optional[pulumi.Input[str]] = None,
857
+ existing_reservations: Optional[pulumi.Input[str]] = None,
823
858
  license_resource: Optional[pulumi.Input[Union['RegionCommitmentLicenseResourceArgs', 'RegionCommitmentLicenseResourceArgsDict']]] = None,
824
859
  name: Optional[pulumi.Input[str]] = None,
825
860
  plan: Optional[pulumi.Input[str]] = None,
@@ -839,6 +874,7 @@ class RegionCommitment(pulumi.CustomResource):
839
874
  __props__.__dict__["auto_renew"] = auto_renew
840
875
  __props__.__dict__["category"] = category
841
876
  __props__.__dict__["description"] = description
877
+ __props__.__dict__["existing_reservations"] = existing_reservations
842
878
  __props__.__dict__["license_resource"] = license_resource
843
879
  __props__.__dict__["name"] = name
844
880
  if plan is None and not opts.urn:
@@ -871,6 +907,7 @@ class RegionCommitment(pulumi.CustomResource):
871
907
  creation_timestamp: Optional[pulumi.Input[str]] = None,
872
908
  description: Optional[pulumi.Input[str]] = None,
873
909
  end_timestamp: Optional[pulumi.Input[str]] = None,
910
+ existing_reservations: Optional[pulumi.Input[str]] = None,
874
911
  license_resource: Optional[pulumi.Input[Union['RegionCommitmentLicenseResourceArgs', 'RegionCommitmentLicenseResourceArgsDict']]] = None,
875
912
  name: Optional[pulumi.Input[str]] = None,
876
913
  plan: Optional[pulumi.Input[str]] = None,
@@ -902,6 +939,7 @@ class RegionCommitment(pulumi.CustomResource):
902
939
  :param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
903
940
  :param pulumi.Input[str] description: An optional description of this resource.
904
941
  :param pulumi.Input[str] end_timestamp: Commitment end time in RFC3339 text format.
942
+ :param pulumi.Input[str] existing_reservations: Specifies the already existing reservations to attach to the Commitment.
905
943
  :param pulumi.Input[Union['RegionCommitmentLicenseResourceArgs', 'RegionCommitmentLicenseResourceArgsDict']] license_resource: The license specification required as part of a license commitment.
906
944
  Structure is documented below.
907
945
  :param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long and match
@@ -942,6 +980,7 @@ class RegionCommitment(pulumi.CustomResource):
942
980
  __props__.__dict__["creation_timestamp"] = creation_timestamp
943
981
  __props__.__dict__["description"] = description
944
982
  __props__.__dict__["end_timestamp"] = end_timestamp
983
+ __props__.__dict__["existing_reservations"] = existing_reservations
945
984
  __props__.__dict__["license_resource"] = license_resource
946
985
  __props__.__dict__["name"] = name
947
986
  __props__.__dict__["plan"] = plan
@@ -1010,6 +1049,14 @@ class RegionCommitment(pulumi.CustomResource):
1010
1049
  """
1011
1050
  return pulumi.get(self, "end_timestamp")
1012
1051
 
1052
+ @property
1053
+ @pulumi.getter(name="existingReservations")
1054
+ def existing_reservations(self) -> pulumi.Output[str]:
1055
+ """
1056
+ Specifies the already existing reservations to attach to the Commitment.
1057
+ """
1058
+ return pulumi.get(self, "existing_reservations")
1059
+
1013
1060
  @property
1014
1061
  @pulumi.getter(name="licenseResource")
1015
1062
  def license_resource(self) -> pulumi.Output[Optional['outputs.RegionCommitmentLicenseResource']]: