pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.40.0a1754951145__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 (157) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
  3. pulumi_gcp/accesscontextmanager/outputs.py +15 -3
  4. pulumi_gcp/apigee/__init__.py +2 -0
  5. pulumi_gcp/apigee/_inputs.py +1435 -0
  6. pulumi_gcp/apigee/api_product.py +1698 -0
  7. pulumi_gcp/apigee/outputs.py +1081 -0
  8. pulumi_gcp/apigee/security_action.py +1010 -0
  9. pulumi_gcp/artifactregistry/__init__.py +1 -0
  10. pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
  11. pulumi_gcp/artifactregistry/outputs.py +109 -2
  12. pulumi_gcp/artifactregistry/repository.py +6 -6
  13. pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
  15. pulumi_gcp/bigquery/_inputs.py +6 -0
  16. pulumi_gcp/bigquery/get_table.py +23 -1
  17. pulumi_gcp/bigquery/outputs.py +4 -0
  18. pulumi_gcp/bigquery/table.py +62 -0
  19. pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
  20. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
  21. pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
  22. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
  23. pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
  24. pulumi_gcp/bigtable/__init__.py +1 -0
  25. pulumi_gcp/bigtable/_inputs.py +33 -0
  26. pulumi_gcp/bigtable/outputs.py +36 -0
  27. pulumi_gcp/bigtable/schema_bundle.py +568 -0
  28. pulumi_gcp/cloudfunctions/_inputs.py +48 -0
  29. pulumi_gcp/cloudfunctions/function.py +94 -0
  30. pulumi_gcp/cloudfunctions/get_function.py +23 -1
  31. pulumi_gcp/cloudfunctions/outputs.py +70 -0
  32. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  33. pulumi_gcp/cloudrunv2/job.py +2 -0
  34. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  35. pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
  36. pulumi_gcp/compute/__init__.py +1 -0
  37. pulumi_gcp/compute/_inputs.py +713 -22
  38. pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
  39. pulumi_gcp/compute/forwarding_rule.py +0 -21
  40. pulumi_gcp/compute/get_router.py +12 -1
  41. pulumi_gcp/compute/outputs.py +562 -22
  42. pulumi_gcp/compute/preview_feature.py +396 -0
  43. pulumi_gcp/compute/region_url_map.py +392 -0
  44. pulumi_gcp/compute/reservation.py +4 -4
  45. pulumi_gcp/compute/router.py +54 -0
  46. pulumi_gcp/compute/storage_pool.py +154 -0
  47. pulumi_gcp/compute/subnetwork.py +54 -0
  48. pulumi_gcp/config/__init__.pyi +2 -0
  49. pulumi_gcp/config/vars.py +4 -0
  50. pulumi_gcp/container/_inputs.py +278 -8
  51. pulumi_gcp/container/cluster.py +61 -21
  52. pulumi_gcp/container/get_cluster.py +12 -1
  53. pulumi_gcp/container/outputs.py +352 -8
  54. pulumi_gcp/dataproc/_inputs.py +249 -14
  55. pulumi_gcp/dataproc/batch.py +6 -0
  56. pulumi_gcp/dataproc/cluster.py +2 -0
  57. pulumi_gcp/dataproc/outputs.py +215 -12
  58. pulumi_gcp/dataproc/session_template.py +14 -2
  59. pulumi_gcp/developerconnect/__init__.py +1 -0
  60. pulumi_gcp/developerconnect/_inputs.py +583 -0
  61. pulumi_gcp/developerconnect/insights_config.py +895 -0
  62. pulumi_gcp/developerconnect/outputs.py +442 -0
  63. pulumi_gcp/diagflow/__init__.py +1 -0
  64. pulumi_gcp/diagflow/_inputs.py +1165 -58
  65. pulumi_gcp/diagflow/cx_generator.py +636 -0
  66. pulumi_gcp/diagflow/cx_tool.py +2 -2
  67. pulumi_gcp/diagflow/cx_webhook.py +380 -36
  68. pulumi_gcp/diagflow/outputs.py +848 -25
  69. pulumi_gcp/discoveryengine/__init__.py +2 -0
  70. pulumi_gcp/discoveryengine/_inputs.py +465 -0
  71. pulumi_gcp/discoveryengine/cmek_config.py +707 -0
  72. pulumi_gcp/discoveryengine/outputs.py +412 -0
  73. pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
  74. pulumi_gcp/firestore/field.py +6 -6
  75. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
  76. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
  77. pulumi_gcp/gkehub/membership_binding.py +6 -6
  78. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  79. pulumi_gcp/gkehub/namespace.py +4 -4
  80. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  81. pulumi_gcp/iam/__init__.py +4 -0
  82. pulumi_gcp/iam/_inputs.py +98 -0
  83. pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
  84. pulumi_gcp/iam/outputs.py +56 -0
  85. pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
  86. pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
  87. pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
  88. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  89. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  90. pulumi_gcp/looker/instance.py +28 -7
  91. pulumi_gcp/managedkafka/_inputs.py +127 -0
  92. pulumi_gcp/managedkafka/cluster.py +131 -1
  93. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  94. pulumi_gcp/managedkafka/connector.py +4 -4
  95. pulumi_gcp/managedkafka/outputs.py +128 -0
  96. pulumi_gcp/memorystore/instance.py +8 -12
  97. pulumi_gcp/modelarmor/__init__.py +1 -0
  98. pulumi_gcp/modelarmor/_inputs.py +683 -0
  99. pulumi_gcp/modelarmor/floorsetting.py +736 -0
  100. pulumi_gcp/modelarmor/outputs.py +618 -0
  101. pulumi_gcp/networkconnectivity/_inputs.py +60 -0
  102. pulumi_gcp/networkconnectivity/internal_range.py +136 -0
  103. pulumi_gcp/networkconnectivity/outputs.py +55 -0
  104. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  105. pulumi_gcp/oracledatabase/__init__.py +2 -0
  106. pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
  107. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
  108. pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
  109. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
  110. pulumi_gcp/oracledatabase/odb_network.py +721 -0
  111. pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
  112. pulumi_gcp/oracledatabase/outputs.py +83 -0
  113. pulumi_gcp/orgpolicy/policy.py +2 -2
  114. pulumi_gcp/parametermanager/parameter_version.py +62 -0
  115. pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
  116. pulumi_gcp/provider.py +20 -0
  117. pulumi_gcp/pubsub/subscription.py +46 -6
  118. pulumi_gcp/pubsub/topic.py +36 -0
  119. pulumi_gcp/pulumi-plugin.json +1 -1
  120. pulumi_gcp/redis/cluster.py +70 -0
  121. pulumi_gcp/redis/get_cluster.py +12 -1
  122. pulumi_gcp/redis/instance.py +8 -12
  123. pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
  124. pulumi_gcp/secretmanager/get_secret.py +12 -1
  125. pulumi_gcp/secretmanager/outputs.py +30 -0
  126. pulumi_gcp/secretmanager/regional_secret.py +61 -0
  127. pulumi_gcp/secretmanager/secret.py +61 -0
  128. pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
  129. pulumi_gcp/securesourcemanager/instance.py +112 -4
  130. pulumi_gcp/securesourcemanager/repository.py +112 -8
  131. pulumi_gcp/serviceaccount/get_account_key.py +1 -0
  132. pulumi_gcp/sql/_inputs.py +6 -6
  133. pulumi_gcp/sql/database.py +0 -12
  134. pulumi_gcp/sql/outputs.py +4 -4
  135. pulumi_gcp/storage/__init__.py +2 -0
  136. pulumi_gcp/storage/_inputs.py +451 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/bucket_object.py +34 -0
  139. pulumi_gcp/storage/get_bucket_object.py +12 -1
  140. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  141. pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
  142. pulumi_gcp/storage/insights_dataset_config.py +1280 -0
  143. pulumi_gcp/storage/outputs.py +619 -0
  144. pulumi_gcp/vertex/__init__.py +1 -0
  145. pulumi_gcp/vertex/_inputs.py +3646 -3
  146. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  147. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
  148. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  149. pulumi_gcp/vertex/outputs.py +2609 -2
  150. pulumi_gcp/vmwareengine/network_peering.py +7 -7
  151. pulumi_gcp/workbench/_inputs.py +118 -0
  152. pulumi_gcp/workbench/instance.py +171 -2
  153. pulumi_gcp/workbench/outputs.py +91 -0
  154. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetAutonomousDatabaseResult:
27
27
  """
28
28
  A collection of values returned by getAutonomousDatabase.
29
29
  """
30
- def __init__(__self__, admin_password=None, autonomous_database_id=None, cidr=None, create_time=None, database=None, deletion_protection=None, display_name=None, effective_labels=None, entitlement_id=None, id=None, labels=None, location=None, name=None, network=None, project=None, properties=None, pulumi_labels=None):
30
+ def __init__(__self__, admin_password=None, autonomous_database_id=None, cidr=None, create_time=None, database=None, deletion_protection=None, display_name=None, effective_labels=None, entitlement_id=None, id=None, labels=None, location=None, name=None, network=None, odb_network=None, odb_subnet=None, project=None, properties=None, pulumi_labels=None):
31
31
  if admin_password and not isinstance(admin_password, str):
32
32
  raise TypeError("Expected argument 'admin_password' to be a str")
33
33
  pulumi.set(__self__, "admin_password", admin_password)
@@ -70,6 +70,12 @@ class GetAutonomousDatabaseResult:
70
70
  if network and not isinstance(network, str):
71
71
  raise TypeError("Expected argument 'network' to be a str")
72
72
  pulumi.set(__self__, "network", network)
73
+ if odb_network and not isinstance(odb_network, str):
74
+ raise TypeError("Expected argument 'odb_network' to be a str")
75
+ pulumi.set(__self__, "odb_network", odb_network)
76
+ if odb_subnet and not isinstance(odb_subnet, str):
77
+ raise TypeError("Expected argument 'odb_subnet' to be a str")
78
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
73
79
  if project and not isinstance(project, str):
74
80
  raise TypeError("Expected argument 'project' to be a str")
75
81
  pulumi.set(__self__, "project", project)
@@ -153,6 +159,16 @@ class GetAutonomousDatabaseResult:
153
159
  def network(self) -> _builtins.str:
154
160
  return pulumi.get(self, "network")
155
161
 
162
+ @_builtins.property
163
+ @pulumi.getter(name="odbNetwork")
164
+ def odb_network(self) -> _builtins.str:
165
+ return pulumi.get(self, "odb_network")
166
+
167
+ @_builtins.property
168
+ @pulumi.getter(name="odbSubnet")
169
+ def odb_subnet(self) -> _builtins.str:
170
+ return pulumi.get(self, "odb_subnet")
171
+
156
172
  @_builtins.property
157
173
  @pulumi.getter
158
174
  def project(self) -> Optional[_builtins.str]:
@@ -189,6 +205,8 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
189
205
  location=self.location,
190
206
  name=self.name,
191
207
  network=self.network,
208
+ odb_network=self.odb_network,
209
+ odb_subnet=self.odb_subnet,
192
210
  project=self.project,
193
211
  properties=self.properties,
194
212
  pulumi_labels=self.pulumi_labels)
@@ -244,6 +262,8 @@ def get_autonomous_database(autonomous_database_id: Optional[_builtins.str] = No
244
262
  location=pulumi.get(__ret__, 'location'),
245
263
  name=pulumi.get(__ret__, 'name'),
246
264
  network=pulumi.get(__ret__, 'network'),
265
+ odb_network=pulumi.get(__ret__, 'odb_network'),
266
+ odb_subnet=pulumi.get(__ret__, 'odb_subnet'),
247
267
  project=pulumi.get(__ret__, 'project'),
248
268
  properties=pulumi.get(__ret__, 'properties'),
249
269
  pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'))
@@ -296,6 +316,8 @@ def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input
296
316
  location=pulumi.get(__response__, 'location'),
297
317
  name=pulumi.get(__response__, 'name'),
298
318
  network=pulumi.get(__response__, 'network'),
319
+ odb_network=pulumi.get(__response__, 'odb_network'),
320
+ odb_subnet=pulumi.get(__response__, 'odb_subnet'),
299
321
  project=pulumi.get(__response__, 'project'),
300
322
  properties=pulumi.get(__response__, 'properties'),
301
323
  pulumi_labels=pulumi.get(__response__, 'pulumi_labels')))
@@ -27,7 +27,10 @@ class GetCloudVmClusterResult:
27
27
  """
28
28
  A collection of values returned by getCloudVmCluster.
29
29
  """
30
- def __init__(__self__, backup_subnet_cidr=None, cidr=None, cloud_vm_cluster_id=None, create_time=None, deletion_protection=None, display_name=None, effective_labels=None, exadata_infrastructure=None, gcp_oracle_zone=None, id=None, labels=None, location=None, name=None, network=None, project=None, properties=None, pulumi_labels=None):
30
+ def __init__(__self__, backup_odb_subnet=None, backup_subnet_cidr=None, cidr=None, cloud_vm_cluster_id=None, create_time=None, deletion_protection=None, display_name=None, effective_labels=None, exadata_infrastructure=None, gcp_oracle_zone=None, id=None, labels=None, location=None, name=None, network=None, odb_network=None, odb_subnet=None, project=None, properties=None, pulumi_labels=None):
31
+ if backup_odb_subnet and not isinstance(backup_odb_subnet, str):
32
+ raise TypeError("Expected argument 'backup_odb_subnet' to be a str")
33
+ pulumi.set(__self__, "backup_odb_subnet", backup_odb_subnet)
31
34
  if backup_subnet_cidr and not isinstance(backup_subnet_cidr, str):
32
35
  raise TypeError("Expected argument 'backup_subnet_cidr' to be a str")
33
36
  pulumi.set(__self__, "backup_subnet_cidr", backup_subnet_cidr)
@@ -70,6 +73,12 @@ class GetCloudVmClusterResult:
70
73
  if network and not isinstance(network, str):
71
74
  raise TypeError("Expected argument 'network' to be a str")
72
75
  pulumi.set(__self__, "network", network)
76
+ if odb_network and not isinstance(odb_network, str):
77
+ raise TypeError("Expected argument 'odb_network' to be a str")
78
+ pulumi.set(__self__, "odb_network", odb_network)
79
+ if odb_subnet and not isinstance(odb_subnet, str):
80
+ raise TypeError("Expected argument 'odb_subnet' to be a str")
81
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
73
82
  if project and not isinstance(project, str):
74
83
  raise TypeError("Expected argument 'project' to be a str")
75
84
  pulumi.set(__self__, "project", project)
@@ -80,6 +89,11 @@ class GetCloudVmClusterResult:
80
89
  raise TypeError("Expected argument 'pulumi_labels' to be a dict")
81
90
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
82
91
 
92
+ @_builtins.property
93
+ @pulumi.getter(name="backupOdbSubnet")
94
+ def backup_odb_subnet(self) -> _builtins.str:
95
+ return pulumi.get(self, "backup_odb_subnet")
96
+
83
97
  @_builtins.property
84
98
  @pulumi.getter(name="backupSubnetCidr")
85
99
  def backup_subnet_cidr(self) -> _builtins.str:
@@ -153,6 +167,16 @@ class GetCloudVmClusterResult:
153
167
  def network(self) -> _builtins.str:
154
168
  return pulumi.get(self, "network")
155
169
 
170
+ @_builtins.property
171
+ @pulumi.getter(name="odbNetwork")
172
+ def odb_network(self) -> _builtins.str:
173
+ return pulumi.get(self, "odb_network")
174
+
175
+ @_builtins.property
176
+ @pulumi.getter(name="odbSubnet")
177
+ def odb_subnet(self) -> _builtins.str:
178
+ return pulumi.get(self, "odb_subnet")
179
+
156
180
  @_builtins.property
157
181
  @pulumi.getter
158
182
  def project(self) -> Optional[_builtins.str]:
@@ -175,6 +199,7 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
175
199
  if False:
176
200
  yield self
177
201
  return GetCloudVmClusterResult(
202
+ backup_odb_subnet=self.backup_odb_subnet,
178
203
  backup_subnet_cidr=self.backup_subnet_cidr,
179
204
  cidr=self.cidr,
180
205
  cloud_vm_cluster_id=self.cloud_vm_cluster_id,
@@ -189,6 +214,8 @@ class AwaitableGetCloudVmClusterResult(GetCloudVmClusterResult):
189
214
  location=self.location,
190
215
  name=self.name,
191
216
  network=self.network,
217
+ odb_network=self.odb_network,
218
+ odb_subnet=self.odb_subnet,
192
219
  project=self.project,
193
220
  properties=self.properties,
194
221
  pulumi_labels=self.pulumi_labels)
@@ -230,6 +257,7 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[_builtins.str] = None,
230
257
  __ret__ = pulumi.runtime.invoke('gcp:oracledatabase/getCloudVmCluster:getCloudVmCluster', __args__, opts=opts, typ=GetCloudVmClusterResult).value
231
258
 
232
259
  return AwaitableGetCloudVmClusterResult(
260
+ backup_odb_subnet=pulumi.get(__ret__, 'backup_odb_subnet'),
233
261
  backup_subnet_cidr=pulumi.get(__ret__, 'backup_subnet_cidr'),
234
262
  cidr=pulumi.get(__ret__, 'cidr'),
235
263
  cloud_vm_cluster_id=pulumi.get(__ret__, 'cloud_vm_cluster_id'),
@@ -244,6 +272,8 @@ def get_cloud_vm_cluster(cloud_vm_cluster_id: Optional[_builtins.str] = None,
244
272
  location=pulumi.get(__ret__, 'location'),
245
273
  name=pulumi.get(__ret__, 'name'),
246
274
  network=pulumi.get(__ret__, 'network'),
275
+ odb_network=pulumi.get(__ret__, 'odb_network'),
276
+ odb_subnet=pulumi.get(__ret__, 'odb_subnet'),
247
277
  project=pulumi.get(__ret__, 'project'),
248
278
  properties=pulumi.get(__ret__, 'properties'),
249
279
  pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'))
@@ -282,6 +312,7 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[_buil
282
312
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
283
313
  __ret__ = pulumi.runtime.invoke_output('gcp:oracledatabase/getCloudVmCluster:getCloudVmCluster', __args__, opts=opts, typ=GetCloudVmClusterResult)
284
314
  return __ret__.apply(lambda __response__: GetCloudVmClusterResult(
315
+ backup_odb_subnet=pulumi.get(__response__, 'backup_odb_subnet'),
285
316
  backup_subnet_cidr=pulumi.get(__response__, 'backup_subnet_cidr'),
286
317
  cidr=pulumi.get(__response__, 'cidr'),
287
318
  cloud_vm_cluster_id=pulumi.get(__response__, 'cloud_vm_cluster_id'),
@@ -296,6 +327,8 @@ def get_cloud_vm_cluster_output(cloud_vm_cluster_id: Optional[pulumi.Input[_buil
296
327
  location=pulumi.get(__response__, 'location'),
297
328
  name=pulumi.get(__response__, 'name'),
298
329
  network=pulumi.get(__response__, 'network'),
330
+ odb_network=pulumi.get(__response__, 'odb_network'),
331
+ odb_subnet=pulumi.get(__response__, 'odb_subnet'),
299
332
  project=pulumi.get(__response__, 'project'),
300
333
  properties=pulumi.get(__response__, 'properties'),
301
334
  pulumi_labels=pulumi.get(__response__, 'pulumi_labels')))