pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.0a1736263433__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 (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/WHEEL +0 -0
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/top_level.txt +0 -0
pulumi_gcp/provider.py CHANGED
@@ -49,6 +49,7 @@ class ProviderArgs:
49
49
  binary_authorization_custom_endpoint: Optional[pulumi.Input[str]] = None,
50
50
  blockchain_node_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
51
51
  certificate_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
52
+ chronicle_custom_endpoint: Optional[pulumi.Input[str]] = None,
52
53
  cloud_asset_custom_endpoint: Optional[pulumi.Input[str]] = None,
53
54
  cloud_billing_custom_endpoint: Optional[pulumi.Input[str]] = None,
54
55
  cloud_build_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -261,6 +262,8 @@ class ProviderArgs:
261
262
  pulumi.set(__self__, "blockchain_node_engine_custom_endpoint", blockchain_node_engine_custom_endpoint)
262
263
  if certificate_manager_custom_endpoint is not None:
263
264
  pulumi.set(__self__, "certificate_manager_custom_endpoint", certificate_manager_custom_endpoint)
265
+ if chronicle_custom_endpoint is not None:
266
+ pulumi.set(__self__, "chronicle_custom_endpoint", chronicle_custom_endpoint)
264
267
  if cloud_asset_custom_endpoint is not None:
265
268
  pulumi.set(__self__, "cloud_asset_custom_endpoint", cloud_asset_custom_endpoint)
266
269
  if cloud_billing_custom_endpoint is not None:
@@ -831,6 +834,15 @@ class ProviderArgs:
831
834
  def certificate_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
832
835
  pulumi.set(self, "certificate_manager_custom_endpoint", value)
833
836
 
837
+ @property
838
+ @pulumi.getter(name="chronicleCustomEndpoint")
839
+ def chronicle_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
840
+ return pulumi.get(self, "chronicle_custom_endpoint")
841
+
842
+ @chronicle_custom_endpoint.setter
843
+ def chronicle_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
844
+ pulumi.set(self, "chronicle_custom_endpoint", value)
845
+
834
846
  @property
835
847
  @pulumi.getter(name="cloudAssetCustomEndpoint")
836
848
  def cloud_asset_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
@@ -2225,6 +2237,7 @@ class Provider(pulumi.ProviderResource):
2225
2237
  binary_authorization_custom_endpoint: Optional[pulumi.Input[str]] = None,
2226
2238
  blockchain_node_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2227
2239
  certificate_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2240
+ chronicle_custom_endpoint: Optional[pulumi.Input[str]] = None,
2228
2241
  cloud_asset_custom_endpoint: Optional[pulumi.Input[str]] = None,
2229
2242
  cloud_billing_custom_endpoint: Optional[pulumi.Input[str]] = None,
2230
2243
  cloud_build_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2442,6 +2455,7 @@ class Provider(pulumi.ProviderResource):
2442
2455
  binary_authorization_custom_endpoint: Optional[pulumi.Input[str]] = None,
2443
2456
  blockchain_node_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
2444
2457
  certificate_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
2458
+ chronicle_custom_endpoint: Optional[pulumi.Input[str]] = None,
2445
2459
  cloud_asset_custom_endpoint: Optional[pulumi.Input[str]] = None,
2446
2460
  cloud_billing_custom_endpoint: Optional[pulumi.Input[str]] = None,
2447
2461
  cloud_build_custom_endpoint: Optional[pulumi.Input[str]] = None,
@@ -2631,6 +2645,7 @@ class Provider(pulumi.ProviderResource):
2631
2645
  __props__.__dict__["binary_authorization_custom_endpoint"] = binary_authorization_custom_endpoint
2632
2646
  __props__.__dict__["blockchain_node_engine_custom_endpoint"] = blockchain_node_engine_custom_endpoint
2633
2647
  __props__.__dict__["certificate_manager_custom_endpoint"] = certificate_manager_custom_endpoint
2648
+ __props__.__dict__["chronicle_custom_endpoint"] = chronicle_custom_endpoint
2634
2649
  __props__.__dict__["cloud_asset_custom_endpoint"] = cloud_asset_custom_endpoint
2635
2650
  __props__.__dict__["cloud_billing_custom_endpoint"] = cloud_billing_custom_endpoint
2636
2651
  __props__.__dict__["cloud_build_custom_endpoint"] = cloud_build_custom_endpoint
@@ -2931,6 +2946,11 @@ class Provider(pulumi.ProviderResource):
2931
2946
  def certificate_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2932
2947
  return pulumi.get(self, "certificate_manager_custom_endpoint")
2933
2948
 
2949
+ @property
2950
+ @pulumi.getter(name="chronicleCustomEndpoint")
2951
+ def chronicle_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
2952
+ return pulumi.get(self, "chronicle_custom_endpoint")
2953
+
2934
2954
  @property
2935
2955
  @pulumi.getter(name="cloudAssetCustomEndpoint")
2936
2956
  def cloud_asset_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
@@ -1113,7 +1113,7 @@ class Subscription(pulumi.CustomResource):
1113
1113
  cloud_storage_config={
1114
1114
  "bucket": example.name,
1115
1115
  "filename_prefix": "pre-",
1116
- "filename_suffix": "-_33395",
1116
+ "filename_suffix": "-_69391",
1117
1117
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1118
1118
  "max_bytes": 1000,
1119
1119
  "max_duration": "300s",
@@ -1146,7 +1146,7 @@ class Subscription(pulumi.CustomResource):
1146
1146
  cloud_storage_config={
1147
1147
  "bucket": example.name,
1148
1148
  "filename_prefix": "pre-",
1149
- "filename_suffix": "-_76044",
1149
+ "filename_suffix": "-_8270",
1150
1150
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1151
1151
  "max_bytes": 1000,
1152
1152
  "max_duration": "300s",
@@ -1185,7 +1185,7 @@ class Subscription(pulumi.CustomResource):
1185
1185
  cloud_storage_config={
1186
1186
  "bucket": example.name,
1187
1187
  "filename_prefix": "pre-",
1188
- "filename_suffix": "-_69391",
1188
+ "filename_suffix": "-_41150",
1189
1189
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1190
1190
  "max_bytes": 1000,
1191
1191
  "max_duration": "300s",
@@ -1553,7 +1553,7 @@ class Subscription(pulumi.CustomResource):
1553
1553
  cloud_storage_config={
1554
1554
  "bucket": example.name,
1555
1555
  "filename_prefix": "pre-",
1556
- "filename_suffix": "-_33395",
1556
+ "filename_suffix": "-_69391",
1557
1557
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1558
1558
  "max_bytes": 1000,
1559
1559
  "max_duration": "300s",
@@ -1586,7 +1586,7 @@ class Subscription(pulumi.CustomResource):
1586
1586
  cloud_storage_config={
1587
1587
  "bucket": example.name,
1588
1588
  "filename_prefix": "pre-",
1589
- "filename_suffix": "-_76044",
1589
+ "filename_suffix": "-_8270",
1590
1590
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1591
1591
  "max_bytes": 1000,
1592
1592
  "max_duration": "300s",
@@ -1625,7 +1625,7 @@ class Subscription(pulumi.CustomResource):
1625
1625
  cloud_storage_config={
1626
1626
  "bucket": example.name,
1627
1627
  "filename_prefix": "pre-",
1628
- "filename_suffix": "-_69391",
1628
+ "filename_suffix": "-_41150",
1629
1629
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1630
1630
  "max_bytes": 1000,
1631
1631
  "max_duration": "300s",
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.13.0-alpha.1736231082"
4
+ "version": "8.13.0-alpha.1736263433"
5
5
  }
@@ -471,21 +471,15 @@ class Instance(pulumi.CustomResource):
471
471
  import pulumi
472
472
  import pulumi_gcp as gcp
473
473
 
474
- key_ring = gcp.kms.KeyRing("key_ring",
475
- name="my-keyring",
476
- location="us-central1")
477
- crypto_key = gcp.kms.CryptoKey("crypto_key",
478
- name="my-key",
479
- key_ring=key_ring.id)
480
474
  project = gcp.organizations.get_project()
481
475
  crypto_key_binding = gcp.kms.CryptoKeyIAMMember("crypto_key_binding",
482
- crypto_key_id=crypto_key.id,
476
+ crypto_key_id="my-key",
483
477
  role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
484
478
  member=f"serviceAccount:service-{project.number}@gcp-sa-sourcemanager.iam.gserviceaccount.com")
485
479
  default = gcp.securesourcemanager.Instance("default",
486
480
  location="us-central1",
487
481
  instance_id="my-instance",
488
- kms_key=crypto_key.id,
482
+ kms_key="my-key",
489
483
  opts = pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
490
484
  ```
491
485
  ### Secure Source Manager Instance Private
@@ -917,21 +911,15 @@ class Instance(pulumi.CustomResource):
917
911
  import pulumi
918
912
  import pulumi_gcp as gcp
919
913
 
920
- key_ring = gcp.kms.KeyRing("key_ring",
921
- name="my-keyring",
922
- location="us-central1")
923
- crypto_key = gcp.kms.CryptoKey("crypto_key",
924
- name="my-key",
925
- key_ring=key_ring.id)
926
914
  project = gcp.organizations.get_project()
927
915
  crypto_key_binding = gcp.kms.CryptoKeyIAMMember("crypto_key_binding",
928
- crypto_key_id=crypto_key.id,
916
+ crypto_key_id="my-key",
929
917
  role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
930
918
  member=f"serviceAccount:service-{project.number}@gcp-sa-sourcemanager.iam.gserviceaccount.com")
931
919
  default = gcp.securesourcemanager.Instance("default",
932
920
  location="us-central1",
933
921
  instance_id="my-instance",
934
- kms_key=crypto_key.id,
922
+ kms_key="my-key",
935
923
  opts = pulumi.ResourceOptions(depends_on=[crypto_key_binding]))
936
924
  ```
937
925
  ### Secure Source Manager Instance Private
@@ -35,6 +35,8 @@ class InstanceIAMBindingArgs:
35
35
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
36
36
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
37
37
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
38
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
39
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
38
40
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
39
41
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
40
42
  :param pulumi.Input[str] role: The role that should be applied. Only one
@@ -73,6 +75,8 @@ class InstanceIAMBindingArgs:
73
75
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
74
76
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
75
77
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
78
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
79
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
76
80
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
77
81
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
78
82
  """
@@ -138,6 +142,8 @@ class _InstanceIAMBindingState:
138
142
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
139
143
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
140
144
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
145
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
146
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
141
147
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
142
148
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
143
149
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -202,6 +208,8 @@ class _InstanceIAMBindingState:
202
208
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
203
209
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
204
210
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
211
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
212
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
205
213
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
206
214
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
207
215
  """
@@ -362,6 +370,8 @@ class InstanceIAMBinding(pulumi.CustomResource):
362
370
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
363
371
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
364
372
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
373
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
374
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
365
375
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
366
376
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
367
377
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -551,6 +561,8 @@ class InstanceIAMBinding(pulumi.CustomResource):
551
561
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
552
562
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
553
563
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
564
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
565
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
554
566
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
555
567
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
556
568
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -602,6 +614,8 @@ class InstanceIAMBinding(pulumi.CustomResource):
602
614
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
603
615
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
604
616
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
617
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
618
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
605
619
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
606
620
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
607
621
  """
@@ -35,6 +35,8 @@ class InstanceIAMMemberArgs:
35
35
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
36
36
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
37
37
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
38
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
39
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
38
40
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
39
41
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
40
42
  :param pulumi.Input[str] role: The role that should be applied. Only one
@@ -73,6 +75,8 @@ class InstanceIAMMemberArgs:
73
75
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
74
76
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
75
77
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
78
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
79
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
76
80
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
77
81
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
78
82
  """
@@ -138,6 +142,8 @@ class _InstanceIAMMemberState:
138
142
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
139
143
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
140
144
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
145
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
146
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
141
147
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
142
148
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
143
149
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -202,6 +208,8 @@ class _InstanceIAMMemberState:
202
208
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
203
209
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
204
210
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
211
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
212
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
205
213
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
206
214
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
207
215
  """
@@ -362,6 +370,8 @@ class InstanceIAMMember(pulumi.CustomResource):
362
370
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
363
371
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
364
372
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
373
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
374
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
365
375
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
366
376
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
367
377
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -551,6 +561,8 @@ class InstanceIAMMember(pulumi.CustomResource):
551
561
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
552
562
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
553
563
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
564
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
565
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
554
566
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
555
567
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
556
568
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
@@ -602,6 +614,8 @@ class InstanceIAMMember(pulumi.CustomResource):
602
614
  * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
603
615
  * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
604
616
  * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
617
+ * **principal:{principal}**: Federated single identity. For example, principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/subject/ns/NAMESPACE/sa/SERVICEACCOUNT
618
+ * **principalSet:{principalSet}**: Federated identity group. For example, principalSet://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/PROJECT_ID.svc.id.goog/namespace/NAMESPACE
605
619
  * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
606
620
  * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
607
621
  """
@@ -40,7 +40,7 @@ class DatabaseInstanceArgs:
40
40
  The set of arguments for constructing a DatabaseInstance resource.
41
41
  :param pulumi.Input[str] database_version: The MySQL, PostgreSQL or
42
42
  SQL Server version to use. Supported values include `MYSQL_5_6`,
43
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
43
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
44
44
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
45
45
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
46
46
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -122,7 +122,7 @@ class DatabaseInstanceArgs:
122
122
  """
123
123
  The MySQL, PostgreSQL or
124
124
  SQL Server version to use. Supported values include `MYSQL_5_6`,
125
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
125
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
126
126
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
127
127
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
128
128
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -368,7 +368,7 @@ class _DatabaseInstanceState:
368
368
  connection strings. For example, when connecting with [Cloud SQL Proxy](https://cloud.google.com/sql/docs/mysql/connect-admin-proxy).
369
369
  :param pulumi.Input[str] database_version: The MySQL, PostgreSQL or
370
370
  SQL Server version to use. Supported values include `MYSQL_5_6`,
371
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
371
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
372
372
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
373
373
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
374
374
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -517,7 +517,7 @@ class _DatabaseInstanceState:
517
517
  """
518
518
  The MySQL, PostgreSQL or
519
519
  SQL Server version to use. Supported values include `MYSQL_5_6`,
520
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
520
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
521
521
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
522
522
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
523
523
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -1043,7 +1043,7 @@ class DatabaseInstance(pulumi.CustomResource):
1043
1043
  configuration is detailed below.
1044
1044
  :param pulumi.Input[str] database_version: The MySQL, PostgreSQL or
1045
1045
  SQL Server version to use. Supported values include `MYSQL_5_6`,
1046
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1046
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1047
1047
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
1048
1048
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
1049
1049
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -1414,7 +1414,7 @@ class DatabaseInstance(pulumi.CustomResource):
1414
1414
  connection strings. For example, when connecting with [Cloud SQL Proxy](https://cloud.google.com/sql/docs/mysql/connect-admin-proxy).
1415
1415
  :param pulumi.Input[str] database_version: The MySQL, PostgreSQL or
1416
1416
  SQL Server version to use. Supported values include `MYSQL_5_6`,
1417
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1417
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1418
1418
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
1419
1419
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
1420
1420
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -1530,7 +1530,7 @@ class DatabaseInstance(pulumi.CustomResource):
1530
1530
  """
1531
1531
  The MySQL, PostgreSQL or
1532
1532
  SQL Server version to use. Supported values include `MYSQL_5_6`,
1533
- `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1533
+ `MYSQL_5_7`, `MYSQL_8_0`, `MYSQL_8_4`, `POSTGRES_9_6`,`POSTGRES_10`, `POSTGRES_11`,
1534
1534
  `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`, `POSTGRES_15`, `POSTGRES_16`, `POSTGRES_17`,
1535
1535
  `SQLSERVER_2017_STANDARD`, `SQLSERVER_2017_ENTERPRISE`, `SQLSERVER_2017_EXPRESS`, `SQLSERVER_2017_WEB`.
1536
1536
  `SQLSERVER_2019_STANDARD`, `SQLSERVER_2019_ENTERPRISE`, `SQLSERVER_2019_EXPRESS`,
@@ -14,6 +14,7 @@ from .bucket_iam_policy import *
14
14
  from .bucket_object import *
15
15
  from .default_object_access_control import *
16
16
  from .default_object_acl import *
17
+ from .folder import *
17
18
  from .get_bucket import *
18
19
  from .get_bucket_iam_policy import *
19
20
  from .get_bucket_object import *