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
@@ -22,15 +22,17 @@ __all__ = ['AutonomousDatabaseArgs', 'AutonomousDatabase']
22
22
  class AutonomousDatabaseArgs:
23
23
  def __init__(__self__, *,
24
24
  autonomous_database_id: pulumi.Input[_builtins.str],
25
- cidr: pulumi.Input[_builtins.str],
26
25
  database: pulumi.Input[_builtins.str],
27
26
  location: pulumi.Input[_builtins.str],
28
- network: pulumi.Input[_builtins.str],
29
27
  properties: pulumi.Input['AutonomousDatabasePropertiesArgs'],
30
28
  admin_password: Optional[pulumi.Input[_builtins.str]] = None,
29
+ cidr: Optional[pulumi.Input[_builtins.str]] = None,
31
30
  deletion_protection: Optional[pulumi.Input[_builtins.bool]] = None,
32
31
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
33
32
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
33
+ network: Optional[pulumi.Input[_builtins.str]] = None,
34
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
35
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
34
36
  project: Optional[pulumi.Input[_builtins.str]] = None):
35
37
  """
36
38
  The set of arguments for constructing a AutonomousDatabase resource.
@@ -38,38 +40,52 @@ class AutonomousDatabaseArgs:
38
40
  to (^a-z?$) and must be a maximum of 63
39
41
  characters in length. The value must start with a letter and end with
40
42
  a letter or a number.
41
- :param pulumi.Input[_builtins.str] cidr: The subnet CIDR range for the Autonmous Database.
42
43
  :param pulumi.Input[_builtins.str] database: The name of the Autonomous Database. The database name must be unique in
43
44
  the project. The name must begin with a letter and can
44
45
  contain a maximum of 30 alphanumeric characters.
45
46
  :param pulumi.Input[_builtins.str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/AutonomousDatabaseBackup`.
46
- :param pulumi.Input[_builtins.str] network: The name of the VPC network used by the Autonomous Database.
47
- Format: projects/{project}/global/networks/{network}
48
47
  :param pulumi.Input['AutonomousDatabasePropertiesArgs'] properties: The properties of an Autonomous Database.
49
48
  Structure is documented below.
50
49
  :param pulumi.Input[_builtins.str] admin_password: The password for the default ADMIN user.
50
+ :param pulumi.Input[_builtins.str] cidr: The subnet CIDR range for the Autonmous Database.
51
51
  :param pulumi.Input[_builtins.str] display_name: The display name for the Autonomous Database. The name does not have to
52
52
  be unique within your project.
53
53
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: The labels or tags associated with the Autonomous Database.
54
54
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
55
55
  Please refer to the field `effective_labels` for all of the labels present on the resource.
56
+ :param pulumi.Input[_builtins.str] network: The name of the VPC network used by the Autonomous Database.
57
+ Format: projects/{project}/global/networks/{network}
58
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the Autonomous Database.
59
+ Format:
60
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
61
+ It is optional but if specified, this should match the parent ODBNetwork of
62
+ the odb_subnet and backup_odb_subnet.
63
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the Autonomous Database for
64
+ IP allocation. Format:
65
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
56
66
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
57
67
  If it is not provided, the provider project is used.
58
68
  """
59
69
  pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
60
- pulumi.set(__self__, "cidr", cidr)
61
70
  pulumi.set(__self__, "database", database)
62
71
  pulumi.set(__self__, "location", location)
63
- pulumi.set(__self__, "network", network)
64
72
  pulumi.set(__self__, "properties", properties)
65
73
  if admin_password is not None:
66
74
  pulumi.set(__self__, "admin_password", admin_password)
75
+ if cidr is not None:
76
+ pulumi.set(__self__, "cidr", cidr)
67
77
  if deletion_protection is not None:
68
78
  pulumi.set(__self__, "deletion_protection", deletion_protection)
69
79
  if display_name is not None:
70
80
  pulumi.set(__self__, "display_name", display_name)
71
81
  if labels is not None:
72
82
  pulumi.set(__self__, "labels", labels)
83
+ if network is not None:
84
+ pulumi.set(__self__, "network", network)
85
+ if odb_network is not None:
86
+ pulumi.set(__self__, "odb_network", odb_network)
87
+ if odb_subnet is not None:
88
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
73
89
  if project is not None:
74
90
  pulumi.set(__self__, "project", project)
75
91
 
@@ -88,18 +104,6 @@ class AutonomousDatabaseArgs:
88
104
  def autonomous_database_id(self, value: pulumi.Input[_builtins.str]):
89
105
  pulumi.set(self, "autonomous_database_id", value)
90
106
 
91
- @_builtins.property
92
- @pulumi.getter
93
- def cidr(self) -> pulumi.Input[_builtins.str]:
94
- """
95
- The subnet CIDR range for the Autonmous Database.
96
- """
97
- return pulumi.get(self, "cidr")
98
-
99
- @cidr.setter
100
- def cidr(self, value: pulumi.Input[_builtins.str]):
101
- pulumi.set(self, "cidr", value)
102
-
103
107
  @_builtins.property
104
108
  @pulumi.getter
105
109
  def database(self) -> pulumi.Input[_builtins.str]:
@@ -126,19 +130,6 @@ class AutonomousDatabaseArgs:
126
130
  def location(self, value: pulumi.Input[_builtins.str]):
127
131
  pulumi.set(self, "location", value)
128
132
 
129
- @_builtins.property
130
- @pulumi.getter
131
- def network(self) -> pulumi.Input[_builtins.str]:
132
- """
133
- The name of the VPC network used by the Autonomous Database.
134
- Format: projects/{project}/global/networks/{network}
135
- """
136
- return pulumi.get(self, "network")
137
-
138
- @network.setter
139
- def network(self, value: pulumi.Input[_builtins.str]):
140
- pulumi.set(self, "network", value)
141
-
142
133
  @_builtins.property
143
134
  @pulumi.getter
144
135
  def properties(self) -> pulumi.Input['AutonomousDatabasePropertiesArgs']:
@@ -164,6 +155,18 @@ class AutonomousDatabaseArgs:
164
155
  def admin_password(self, value: Optional[pulumi.Input[_builtins.str]]):
165
156
  pulumi.set(self, "admin_password", value)
166
157
 
158
+ @_builtins.property
159
+ @pulumi.getter
160
+ def cidr(self) -> Optional[pulumi.Input[_builtins.str]]:
161
+ """
162
+ The subnet CIDR range for the Autonmous Database.
163
+ """
164
+ return pulumi.get(self, "cidr")
165
+
166
+ @cidr.setter
167
+ def cidr(self, value: Optional[pulumi.Input[_builtins.str]]):
168
+ pulumi.set(self, "cidr", value)
169
+
167
170
  @_builtins.property
168
171
  @pulumi.getter(name="deletionProtection")
169
172
  def deletion_protection(self) -> Optional[pulumi.Input[_builtins.bool]]:
@@ -200,6 +203,49 @@ class AutonomousDatabaseArgs:
200
203
  def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
201
204
  pulumi.set(self, "labels", value)
202
205
 
206
+ @_builtins.property
207
+ @pulumi.getter
208
+ def network(self) -> Optional[pulumi.Input[_builtins.str]]:
209
+ """
210
+ The name of the VPC network used by the Autonomous Database.
211
+ Format: projects/{project}/global/networks/{network}
212
+ """
213
+ return pulumi.get(self, "network")
214
+
215
+ @network.setter
216
+ def network(self, value: Optional[pulumi.Input[_builtins.str]]):
217
+ pulumi.set(self, "network", value)
218
+
219
+ @_builtins.property
220
+ @pulumi.getter(name="odbNetwork")
221
+ def odb_network(self) -> Optional[pulumi.Input[_builtins.str]]:
222
+ """
223
+ The name of the OdbNetwork associated with the Autonomous Database.
224
+ Format:
225
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
226
+ It is optional but if specified, this should match the parent ODBNetwork of
227
+ the odb_subnet and backup_odb_subnet.
228
+ """
229
+ return pulumi.get(self, "odb_network")
230
+
231
+ @odb_network.setter
232
+ def odb_network(self, value: Optional[pulumi.Input[_builtins.str]]):
233
+ pulumi.set(self, "odb_network", value)
234
+
235
+ @_builtins.property
236
+ @pulumi.getter(name="odbSubnet")
237
+ def odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
238
+ """
239
+ The name of the OdbSubnet associated with the Autonomous Database for
240
+ IP allocation. Format:
241
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
242
+ """
243
+ return pulumi.get(self, "odb_subnet")
244
+
245
+ @odb_subnet.setter
246
+ def odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
247
+ pulumi.set(self, "odb_subnet", value)
248
+
203
249
  @_builtins.property
204
250
  @pulumi.getter
205
251
  def project(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -230,6 +276,8 @@ class _AutonomousDatabaseState:
230
276
  location: Optional[pulumi.Input[_builtins.str]] = None,
231
277
  name: Optional[pulumi.Input[_builtins.str]] = None,
232
278
  network: Optional[pulumi.Input[_builtins.str]] = None,
279
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
280
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
233
281
  project: Optional[pulumi.Input[_builtins.str]] = None,
234
282
  properties: Optional[pulumi.Input['AutonomousDatabasePropertiesArgs']] = None,
235
283
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
@@ -258,6 +306,14 @@ class _AutonomousDatabaseState:
258
306
  projects/{project}/locations/{region}/autonomousDatabases/{autonomous_database}
259
307
  :param pulumi.Input[_builtins.str] network: The name of the VPC network used by the Autonomous Database.
260
308
  Format: projects/{project}/global/networks/{network}
309
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the Autonomous Database.
310
+ Format:
311
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
312
+ It is optional but if specified, this should match the parent ODBNetwork of
313
+ the odb_subnet and backup_odb_subnet.
314
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the Autonomous Database for
315
+ IP allocation. Format:
316
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
261
317
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
262
318
  If it is not provided, the provider project is used.
263
319
  :param pulumi.Input['AutonomousDatabasePropertiesArgs'] properties: The properties of an Autonomous Database.
@@ -291,6 +347,10 @@ class _AutonomousDatabaseState:
291
347
  pulumi.set(__self__, "name", name)
292
348
  if network is not None:
293
349
  pulumi.set(__self__, "network", network)
350
+ if odb_network is not None:
351
+ pulumi.set(__self__, "odb_network", odb_network)
352
+ if odb_subnet is not None:
353
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
294
354
  if project is not None:
295
355
  pulumi.set(__self__, "project", project)
296
356
  if properties is not None:
@@ -462,6 +522,36 @@ class _AutonomousDatabaseState:
462
522
  def network(self, value: Optional[pulumi.Input[_builtins.str]]):
463
523
  pulumi.set(self, "network", value)
464
524
 
525
+ @_builtins.property
526
+ @pulumi.getter(name="odbNetwork")
527
+ def odb_network(self) -> Optional[pulumi.Input[_builtins.str]]:
528
+ """
529
+ The name of the OdbNetwork associated with the Autonomous Database.
530
+ Format:
531
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
532
+ It is optional but if specified, this should match the parent ODBNetwork of
533
+ the odb_subnet and backup_odb_subnet.
534
+ """
535
+ return pulumi.get(self, "odb_network")
536
+
537
+ @odb_network.setter
538
+ def odb_network(self, value: Optional[pulumi.Input[_builtins.str]]):
539
+ pulumi.set(self, "odb_network", value)
540
+
541
+ @_builtins.property
542
+ @pulumi.getter(name="odbSubnet")
543
+ def odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
544
+ """
545
+ The name of the OdbSubnet associated with the Autonomous Database for
546
+ IP allocation. Format:
547
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
548
+ """
549
+ return pulumi.get(self, "odb_subnet")
550
+
551
+ @odb_subnet.setter
552
+ def odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
553
+ pulumi.set(self, "odb_subnet", value)
554
+
465
555
  @_builtins.property
466
556
  @pulumi.getter
467
557
  def project(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -517,6 +607,8 @@ class AutonomousDatabase(pulumi.CustomResource):
517
607
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
518
608
  location: Optional[pulumi.Input[_builtins.str]] = None,
519
609
  network: Optional[pulumi.Input[_builtins.str]] = None,
610
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
611
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
520
612
  project: Optional[pulumi.Input[_builtins.str]] = None,
521
613
  properties: Optional[pulumi.Input[Union['AutonomousDatabasePropertiesArgs', 'AutonomousDatabasePropertiesArgsDict']]] = None,
522
614
  __props__=None):
@@ -599,6 +691,51 @@ class AutonomousDatabase(pulumi.CustomResource):
599
691
  },
600
692
  deletion_protection=True)
601
693
  ```
694
+ ### Oracledatabase Autonomous Database Odbnetwork
695
+
696
+ ```python
697
+ import pulumi
698
+ import pulumi_gcp as gcp
699
+
700
+ my_adb = gcp.oracledatabase.AutonomousDatabase("myADB",
701
+ autonomous_database_id="my-instance",
702
+ location="europe-west2",
703
+ project="my-project",
704
+ database="mydatabase",
705
+ admin_password="123Abpassword",
706
+ odb_network="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork",
707
+ odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-odbsubnet",
708
+ properties={
709
+ "compute_count": 2,
710
+ "data_storage_size_tb": 1,
711
+ "db_version": "19c",
712
+ "db_workload": "OLTP",
713
+ "license_type": "LICENSE_INCLUDED",
714
+ },
715
+ deletion_protection=True)
716
+ ```
717
+ ### Oracledatabase Autonomous Database Publicip
718
+
719
+ ```python
720
+ import pulumi
721
+ import pulumi_gcp as gcp
722
+
723
+ my_adb = gcp.oracledatabase.AutonomousDatabase("myADB",
724
+ autonomous_database_id="my-instance",
725
+ location="europe-west2",
726
+ project="my-project",
727
+ database="mydatabase",
728
+ admin_password="123Abpassword",
729
+ properties={
730
+ "compute_count": 2,
731
+ "data_storage_size_tb": 1,
732
+ "db_version": "19c",
733
+ "db_workload": "OLTP",
734
+ "license_type": "LICENSE_INCLUDED",
735
+ "mtls_connection_required": True,
736
+ },
737
+ deletion_protection=True)
738
+ ```
602
739
 
603
740
  ## Import
604
741
 
@@ -643,6 +780,14 @@ class AutonomousDatabase(pulumi.CustomResource):
643
780
  :param pulumi.Input[_builtins.str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/AutonomousDatabaseBackup`.
644
781
  :param pulumi.Input[_builtins.str] network: The name of the VPC network used by the Autonomous Database.
645
782
  Format: projects/{project}/global/networks/{network}
783
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the Autonomous Database.
784
+ Format:
785
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
786
+ It is optional but if specified, this should match the parent ODBNetwork of
787
+ the odb_subnet and backup_odb_subnet.
788
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the Autonomous Database for
789
+ IP allocation. Format:
790
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
646
791
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
647
792
  If it is not provided, the provider project is used.
648
793
  :param pulumi.Input[Union['AutonomousDatabasePropertiesArgs', 'AutonomousDatabasePropertiesArgsDict']] properties: The properties of an Autonomous Database.
@@ -733,6 +878,51 @@ class AutonomousDatabase(pulumi.CustomResource):
733
878
  },
734
879
  deletion_protection=True)
735
880
  ```
881
+ ### Oracledatabase Autonomous Database Odbnetwork
882
+
883
+ ```python
884
+ import pulumi
885
+ import pulumi_gcp as gcp
886
+
887
+ my_adb = gcp.oracledatabase.AutonomousDatabase("myADB",
888
+ autonomous_database_id="my-instance",
889
+ location="europe-west2",
890
+ project="my-project",
891
+ database="mydatabase",
892
+ admin_password="123Abpassword",
893
+ odb_network="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork",
894
+ odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-odbsubnet",
895
+ properties={
896
+ "compute_count": 2,
897
+ "data_storage_size_tb": 1,
898
+ "db_version": "19c",
899
+ "db_workload": "OLTP",
900
+ "license_type": "LICENSE_INCLUDED",
901
+ },
902
+ deletion_protection=True)
903
+ ```
904
+ ### Oracledatabase Autonomous Database Publicip
905
+
906
+ ```python
907
+ import pulumi
908
+ import pulumi_gcp as gcp
909
+
910
+ my_adb = gcp.oracledatabase.AutonomousDatabase("myADB",
911
+ autonomous_database_id="my-instance",
912
+ location="europe-west2",
913
+ project="my-project",
914
+ database="mydatabase",
915
+ admin_password="123Abpassword",
916
+ properties={
917
+ "compute_count": 2,
918
+ "data_storage_size_tb": 1,
919
+ "db_version": "19c",
920
+ "db_workload": "OLTP",
921
+ "license_type": "LICENSE_INCLUDED",
922
+ "mtls_connection_required": True,
923
+ },
924
+ deletion_protection=True)
925
+ ```
736
926
 
737
927
  ## Import
738
928
 
@@ -782,6 +972,8 @@ class AutonomousDatabase(pulumi.CustomResource):
782
972
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
783
973
  location: Optional[pulumi.Input[_builtins.str]] = None,
784
974
  network: Optional[pulumi.Input[_builtins.str]] = None,
975
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
976
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
785
977
  project: Optional[pulumi.Input[_builtins.str]] = None,
786
978
  properties: Optional[pulumi.Input[Union['AutonomousDatabasePropertiesArgs', 'AutonomousDatabasePropertiesArgsDict']]] = None,
787
979
  __props__=None):
@@ -797,8 +989,6 @@ class AutonomousDatabase(pulumi.CustomResource):
797
989
  if autonomous_database_id is None and not opts.urn:
798
990
  raise TypeError("Missing required property 'autonomous_database_id'")
799
991
  __props__.__dict__["autonomous_database_id"] = autonomous_database_id
800
- if cidr is None and not opts.urn:
801
- raise TypeError("Missing required property 'cidr'")
802
992
  __props__.__dict__["cidr"] = cidr
803
993
  if database is None and not opts.urn:
804
994
  raise TypeError("Missing required property 'database'")
@@ -809,9 +999,9 @@ class AutonomousDatabase(pulumi.CustomResource):
809
999
  if location is None and not opts.urn:
810
1000
  raise TypeError("Missing required property 'location'")
811
1001
  __props__.__dict__["location"] = location
812
- if network is None and not opts.urn:
813
- raise TypeError("Missing required property 'network'")
814
1002
  __props__.__dict__["network"] = network
1003
+ __props__.__dict__["odb_network"] = odb_network
1004
+ __props__.__dict__["odb_subnet"] = odb_subnet
815
1005
  __props__.__dict__["project"] = project
816
1006
  if properties is None and not opts.urn:
817
1007
  raise TypeError("Missing required property 'properties'")
@@ -846,6 +1036,8 @@ class AutonomousDatabase(pulumi.CustomResource):
846
1036
  location: Optional[pulumi.Input[_builtins.str]] = None,
847
1037
  name: Optional[pulumi.Input[_builtins.str]] = None,
848
1038
  network: Optional[pulumi.Input[_builtins.str]] = None,
1039
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
1040
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
849
1041
  project: Optional[pulumi.Input[_builtins.str]] = None,
850
1042
  properties: Optional[pulumi.Input[Union['AutonomousDatabasePropertiesArgs', 'AutonomousDatabasePropertiesArgsDict']]] = None,
851
1043
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'AutonomousDatabase':
@@ -879,6 +1071,14 @@ class AutonomousDatabase(pulumi.CustomResource):
879
1071
  projects/{project}/locations/{region}/autonomousDatabases/{autonomous_database}
880
1072
  :param pulumi.Input[_builtins.str] network: The name of the VPC network used by the Autonomous Database.
881
1073
  Format: projects/{project}/global/networks/{network}
1074
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the Autonomous Database.
1075
+ Format:
1076
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
1077
+ It is optional but if specified, this should match the parent ODBNetwork of
1078
+ the odb_subnet and backup_odb_subnet.
1079
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the Autonomous Database for
1080
+ IP allocation. Format:
1081
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
882
1082
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
883
1083
  If it is not provided, the provider project is used.
884
1084
  :param pulumi.Input[Union['AutonomousDatabasePropertiesArgs', 'AutonomousDatabasePropertiesArgsDict']] properties: The properties of an Autonomous Database.
@@ -903,6 +1103,8 @@ class AutonomousDatabase(pulumi.CustomResource):
903
1103
  __props__.__dict__["location"] = location
904
1104
  __props__.__dict__["name"] = name
905
1105
  __props__.__dict__["network"] = network
1106
+ __props__.__dict__["odb_network"] = odb_network
1107
+ __props__.__dict__["odb_subnet"] = odb_subnet
906
1108
  __props__.__dict__["project"] = project
907
1109
  __props__.__dict__["properties"] = properties
908
1110
  __props__.__dict__["pulumi_labels"] = pulumi_labels
@@ -929,7 +1131,7 @@ class AutonomousDatabase(pulumi.CustomResource):
929
1131
 
930
1132
  @_builtins.property
931
1133
  @pulumi.getter
932
- def cidr(self) -> pulumi.Output[_builtins.str]:
1134
+ def cidr(self) -> pulumi.Output[Optional[_builtins.str]]:
933
1135
  """
934
1136
  The subnet CIDR range for the Autonmous Database.
935
1137
  """
@@ -1013,13 +1215,35 @@ class AutonomousDatabase(pulumi.CustomResource):
1013
1215
 
1014
1216
  @_builtins.property
1015
1217
  @pulumi.getter
1016
- def network(self) -> pulumi.Output[_builtins.str]:
1218
+ def network(self) -> pulumi.Output[Optional[_builtins.str]]:
1017
1219
  """
1018
1220
  The name of the VPC network used by the Autonomous Database.
1019
1221
  Format: projects/{project}/global/networks/{network}
1020
1222
  """
1021
1223
  return pulumi.get(self, "network")
1022
1224
 
1225
+ @_builtins.property
1226
+ @pulumi.getter(name="odbNetwork")
1227
+ def odb_network(self) -> pulumi.Output[Optional[_builtins.str]]:
1228
+ """
1229
+ The name of the OdbNetwork associated with the Autonomous Database.
1230
+ Format:
1231
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
1232
+ It is optional but if specified, this should match the parent ODBNetwork of
1233
+ the odb_subnet and backup_odb_subnet.
1234
+ """
1235
+ return pulumi.get(self, "odb_network")
1236
+
1237
+ @_builtins.property
1238
+ @pulumi.getter(name="odbSubnet")
1239
+ def odb_subnet(self) -> pulumi.Output[Optional[_builtins.str]]:
1240
+ """
1241
+ The name of the OdbSubnet associated with the Autonomous Database for
1242
+ IP allocation. Format:
1243
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
1244
+ """
1245
+ return pulumi.get(self, "odb_subnet")
1246
+
1023
1247
  @_builtins.property
1024
1248
  @pulumi.getter
1025
1249
  def project(self) -> pulumi.Output[_builtins.str]: