pulumi-gcp 8.40.0a1754636117__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.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -21,21 +21,22 @@ __all__ = ['CloudVmClusterArgs', 'CloudVmCluster']
21
21
  @pulumi.input_type
22
22
  class CloudVmClusterArgs:
23
23
  def __init__(__self__, *,
24
- backup_subnet_cidr: pulumi.Input[_builtins.str],
25
- cidr: pulumi.Input[_builtins.str],
26
24
  cloud_vm_cluster_id: pulumi.Input[_builtins.str],
27
25
  exadata_infrastructure: pulumi.Input[_builtins.str],
28
26
  location: pulumi.Input[_builtins.str],
29
- network: pulumi.Input[_builtins.str],
27
+ backup_odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
28
+ backup_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
29
+ cidr: Optional[pulumi.Input[_builtins.str]] = None,
30
30
  deletion_protection: Optional[pulumi.Input[_builtins.bool]] = None,
31
31
  display_name: Optional[pulumi.Input[_builtins.str]] = None,
32
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,
33
36
  project: Optional[pulumi.Input[_builtins.str]] = None,
34
37
  properties: Optional[pulumi.Input['CloudVmClusterPropertiesArgs']] = None):
35
38
  """
36
39
  The set of arguments for constructing a CloudVmCluster resource.
37
- :param pulumi.Input[_builtins.str] backup_subnet_cidr: CIDR range of the backup subnet.
38
- :param pulumi.Input[_builtins.str] cidr: Network settings. CIDR to use for cluster IP allocation.
39
40
  :param pulumi.Input[_builtins.str] cloud_vm_cluster_id: The ID of the VM Cluster to create. This value is restricted
40
41
  to (^a-z?$) and must be a maximum of 63
41
42
  characters in length. The value must start with a letter and end with
@@ -44,58 +45,56 @@ class CloudVmClusterArgs:
44
45
  resource is created, in the following format:
45
46
  projects/{project}/locations/{region}/cloudExadataInfrastuctures/{cloud_extradata_infrastructure}
46
47
  :param pulumi.Input[_builtins.str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbNode`.
47
- :param pulumi.Input[_builtins.str] network: The name of the VPC network.
48
- Format: projects/{project}/global/networks/{network}
48
+ :param pulumi.Input[_builtins.str] backup_odb_subnet: The name of the backup OdbSubnet associated with the VM Cluster.
49
+ Format:
50
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
51
+ :param pulumi.Input[_builtins.str] backup_subnet_cidr: CIDR range of the backup subnet.
52
+ :param pulumi.Input[_builtins.str] cidr: Network settings. CIDR to use for cluster IP allocation.
49
53
  :param pulumi.Input[_builtins.str] display_name: User friendly name for this resource.
50
54
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Labels or tags associated with the VM Cluster.
51
55
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
52
56
  Please refer to the field `effective_labels` for all of the labels present on the resource.
57
+ :param pulumi.Input[_builtins.str] network: The name of the VPC network.
58
+ Format: projects/{project}/global/networks/{network}
59
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the VM Cluster.
60
+ Format:
61
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
62
+ It is optional but if specified, this should match the parent ODBNetwork of
63
+ the odb_subnet and backup_odb_subnet.
64
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the VM Cluster for
65
+ IP allocation. Format:
66
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
53
67
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
54
68
  If it is not provided, the provider project is used.
55
69
  :param pulumi.Input['CloudVmClusterPropertiesArgs'] properties: Various properties and settings associated with Exadata VM cluster.
56
70
  Structure is documented below.
57
71
  """
58
- pulumi.set(__self__, "backup_subnet_cidr", backup_subnet_cidr)
59
- pulumi.set(__self__, "cidr", cidr)
60
72
  pulumi.set(__self__, "cloud_vm_cluster_id", cloud_vm_cluster_id)
61
73
  pulumi.set(__self__, "exadata_infrastructure", exadata_infrastructure)
62
74
  pulumi.set(__self__, "location", location)
63
- pulumi.set(__self__, "network", network)
75
+ if backup_odb_subnet is not None:
76
+ pulumi.set(__self__, "backup_odb_subnet", backup_odb_subnet)
77
+ if backup_subnet_cidr is not None:
78
+ pulumi.set(__self__, "backup_subnet_cidr", backup_subnet_cidr)
79
+ if cidr is not None:
80
+ pulumi.set(__self__, "cidr", cidr)
64
81
  if deletion_protection is not None:
65
82
  pulumi.set(__self__, "deletion_protection", deletion_protection)
66
83
  if display_name is not None:
67
84
  pulumi.set(__self__, "display_name", display_name)
68
85
  if labels is not None:
69
86
  pulumi.set(__self__, "labels", labels)
87
+ if network is not None:
88
+ pulumi.set(__self__, "network", network)
89
+ if odb_network is not None:
90
+ pulumi.set(__self__, "odb_network", odb_network)
91
+ if odb_subnet is not None:
92
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
70
93
  if project is not None:
71
94
  pulumi.set(__self__, "project", project)
72
95
  if properties is not None:
73
96
  pulumi.set(__self__, "properties", properties)
74
97
 
75
- @_builtins.property
76
- @pulumi.getter(name="backupSubnetCidr")
77
- def backup_subnet_cidr(self) -> pulumi.Input[_builtins.str]:
78
- """
79
- CIDR range of the backup subnet.
80
- """
81
- return pulumi.get(self, "backup_subnet_cidr")
82
-
83
- @backup_subnet_cidr.setter
84
- def backup_subnet_cidr(self, value: pulumi.Input[_builtins.str]):
85
- pulumi.set(self, "backup_subnet_cidr", value)
86
-
87
- @_builtins.property
88
- @pulumi.getter
89
- def cidr(self) -> pulumi.Input[_builtins.str]:
90
- """
91
- Network settings. CIDR to use for cluster IP allocation.
92
- """
93
- return pulumi.get(self, "cidr")
94
-
95
- @cidr.setter
96
- def cidr(self, value: pulumi.Input[_builtins.str]):
97
- pulumi.set(self, "cidr", value)
98
-
99
98
  @_builtins.property
100
99
  @pulumi.getter(name="cloudVmClusterId")
101
100
  def cloud_vm_cluster_id(self) -> pulumi.Input[_builtins.str]:
@@ -137,18 +136,43 @@ class CloudVmClusterArgs:
137
136
  def location(self, value: pulumi.Input[_builtins.str]):
138
137
  pulumi.set(self, "location", value)
139
138
 
139
+ @_builtins.property
140
+ @pulumi.getter(name="backupOdbSubnet")
141
+ def backup_odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
142
+ """
143
+ The name of the backup OdbSubnet associated with the VM Cluster.
144
+ Format:
145
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
146
+ """
147
+ return pulumi.get(self, "backup_odb_subnet")
148
+
149
+ @backup_odb_subnet.setter
150
+ def backup_odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
151
+ pulumi.set(self, "backup_odb_subnet", value)
152
+
153
+ @_builtins.property
154
+ @pulumi.getter(name="backupSubnetCidr")
155
+ def backup_subnet_cidr(self) -> Optional[pulumi.Input[_builtins.str]]:
156
+ """
157
+ CIDR range of the backup subnet.
158
+ """
159
+ return pulumi.get(self, "backup_subnet_cidr")
160
+
161
+ @backup_subnet_cidr.setter
162
+ def backup_subnet_cidr(self, value: Optional[pulumi.Input[_builtins.str]]):
163
+ pulumi.set(self, "backup_subnet_cidr", value)
164
+
140
165
  @_builtins.property
141
166
  @pulumi.getter
142
- def network(self) -> pulumi.Input[_builtins.str]:
167
+ def cidr(self) -> Optional[pulumi.Input[_builtins.str]]:
143
168
  """
144
- The name of the VPC network.
145
- Format: projects/{project}/global/networks/{network}
169
+ Network settings. CIDR to use for cluster IP allocation.
146
170
  """
147
- return pulumi.get(self, "network")
171
+ return pulumi.get(self, "cidr")
148
172
 
149
- @network.setter
150
- def network(self, value: pulumi.Input[_builtins.str]):
151
- pulumi.set(self, "network", value)
173
+ @cidr.setter
174
+ def cidr(self, value: Optional[pulumi.Input[_builtins.str]]):
175
+ pulumi.set(self, "cidr", value)
152
176
 
153
177
  @_builtins.property
154
178
  @pulumi.getter(name="deletionProtection")
@@ -185,6 +209,49 @@ class CloudVmClusterArgs:
185
209
  def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
186
210
  pulumi.set(self, "labels", value)
187
211
 
212
+ @_builtins.property
213
+ @pulumi.getter
214
+ def network(self) -> Optional[pulumi.Input[_builtins.str]]:
215
+ """
216
+ The name of the VPC network.
217
+ Format: projects/{project}/global/networks/{network}
218
+ """
219
+ return pulumi.get(self, "network")
220
+
221
+ @network.setter
222
+ def network(self, value: Optional[pulumi.Input[_builtins.str]]):
223
+ pulumi.set(self, "network", value)
224
+
225
+ @_builtins.property
226
+ @pulumi.getter(name="odbNetwork")
227
+ def odb_network(self) -> Optional[pulumi.Input[_builtins.str]]:
228
+ """
229
+ The name of the OdbNetwork associated with the VM Cluster.
230
+ Format:
231
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
232
+ It is optional but if specified, this should match the parent ODBNetwork of
233
+ the odb_subnet and backup_odb_subnet.
234
+ """
235
+ return pulumi.get(self, "odb_network")
236
+
237
+ @odb_network.setter
238
+ def odb_network(self, value: Optional[pulumi.Input[_builtins.str]]):
239
+ pulumi.set(self, "odb_network", value)
240
+
241
+ @_builtins.property
242
+ @pulumi.getter(name="odbSubnet")
243
+ def odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
244
+ """
245
+ The name of the OdbSubnet associated with the VM Cluster for
246
+ IP allocation. Format:
247
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
248
+ """
249
+ return pulumi.get(self, "odb_subnet")
250
+
251
+ @odb_subnet.setter
252
+ def odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
253
+ pulumi.set(self, "odb_subnet", value)
254
+
188
255
  @_builtins.property
189
256
  @pulumi.getter
190
257
  def project(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -215,6 +282,7 @@ class CloudVmClusterArgs:
215
282
  @pulumi.input_type
216
283
  class _CloudVmClusterState:
217
284
  def __init__(__self__, *,
285
+ backup_odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
218
286
  backup_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
219
287
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
220
288
  cloud_vm_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -228,11 +296,16 @@ class _CloudVmClusterState:
228
296
  location: Optional[pulumi.Input[_builtins.str]] = None,
229
297
  name: Optional[pulumi.Input[_builtins.str]] = None,
230
298
  network: Optional[pulumi.Input[_builtins.str]] = None,
299
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
300
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
231
301
  project: Optional[pulumi.Input[_builtins.str]] = None,
232
302
  properties: Optional[pulumi.Input['CloudVmClusterPropertiesArgs']] = None,
233
303
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
234
304
  """
235
305
  Input properties used for looking up and filtering CloudVmCluster resources.
306
+ :param pulumi.Input[_builtins.str] backup_odb_subnet: The name of the backup OdbSubnet associated with the VM Cluster.
307
+ Format:
308
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
236
309
  :param pulumi.Input[_builtins.str] backup_subnet_cidr: CIDR range of the backup subnet.
237
310
  :param pulumi.Input[_builtins.str] cidr: Network settings. CIDR to use for cluster IP allocation.
238
311
  :param pulumi.Input[_builtins.str] cloud_vm_cluster_id: The ID of the VM Cluster to create. This value is restricted
@@ -255,6 +328,14 @@ class _CloudVmClusterState:
255
328
  projects/{project}/locations/{region}/cloudVmClusters/{cloud_vm_cluster}
256
329
  :param pulumi.Input[_builtins.str] network: The name of the VPC network.
257
330
  Format: projects/{project}/global/networks/{network}
331
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the VM Cluster.
332
+ Format:
333
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
334
+ It is optional but if specified, this should match the parent ODBNetwork of
335
+ the odb_subnet and backup_odb_subnet.
336
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the VM Cluster for
337
+ IP allocation. Format:
338
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
258
339
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
259
340
  If it is not provided, the provider project is used.
260
341
  :param pulumi.Input['CloudVmClusterPropertiesArgs'] properties: Various properties and settings associated with Exadata VM cluster.
@@ -262,6 +343,8 @@ class _CloudVmClusterState:
262
343
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
263
344
  and default labels configured on the provider.
264
345
  """
346
+ if backup_odb_subnet is not None:
347
+ pulumi.set(__self__, "backup_odb_subnet", backup_odb_subnet)
265
348
  if backup_subnet_cidr is not None:
266
349
  pulumi.set(__self__, "backup_subnet_cidr", backup_subnet_cidr)
267
350
  if cidr is not None:
@@ -288,6 +371,10 @@ class _CloudVmClusterState:
288
371
  pulumi.set(__self__, "name", name)
289
372
  if network is not None:
290
373
  pulumi.set(__self__, "network", network)
374
+ if odb_network is not None:
375
+ pulumi.set(__self__, "odb_network", odb_network)
376
+ if odb_subnet is not None:
377
+ pulumi.set(__self__, "odb_subnet", odb_subnet)
291
378
  if project is not None:
292
379
  pulumi.set(__self__, "project", project)
293
380
  if properties is not None:
@@ -295,6 +382,20 @@ class _CloudVmClusterState:
295
382
  if pulumi_labels is not None:
296
383
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
297
384
 
385
+ @_builtins.property
386
+ @pulumi.getter(name="backupOdbSubnet")
387
+ def backup_odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
388
+ """
389
+ The name of the backup OdbSubnet associated with the VM Cluster.
390
+ Format:
391
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
392
+ """
393
+ return pulumi.get(self, "backup_odb_subnet")
394
+
395
+ @backup_odb_subnet.setter
396
+ def backup_odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
397
+ pulumi.set(self, "backup_odb_subnet", value)
398
+
298
399
  @_builtins.property
299
400
  @pulumi.getter(name="backupSubnetCidr")
300
401
  def backup_subnet_cidr(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -458,6 +559,36 @@ class _CloudVmClusterState:
458
559
  def network(self, value: Optional[pulumi.Input[_builtins.str]]):
459
560
  pulumi.set(self, "network", value)
460
561
 
562
+ @_builtins.property
563
+ @pulumi.getter(name="odbNetwork")
564
+ def odb_network(self) -> Optional[pulumi.Input[_builtins.str]]:
565
+ """
566
+ The name of the OdbNetwork associated with the VM Cluster.
567
+ Format:
568
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
569
+ It is optional but if specified, this should match the parent ODBNetwork of
570
+ the odb_subnet and backup_odb_subnet.
571
+ """
572
+ return pulumi.get(self, "odb_network")
573
+
574
+ @odb_network.setter
575
+ def odb_network(self, value: Optional[pulumi.Input[_builtins.str]]):
576
+ pulumi.set(self, "odb_network", value)
577
+
578
+ @_builtins.property
579
+ @pulumi.getter(name="odbSubnet")
580
+ def odb_subnet(self) -> Optional[pulumi.Input[_builtins.str]]:
581
+ """
582
+ The name of the OdbSubnet associated with the VM Cluster for
583
+ IP allocation. Format:
584
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
585
+ """
586
+ return pulumi.get(self, "odb_subnet")
587
+
588
+ @odb_subnet.setter
589
+ def odb_subnet(self, value: Optional[pulumi.Input[_builtins.str]]):
590
+ pulumi.set(self, "odb_subnet", value)
591
+
461
592
  @_builtins.property
462
593
  @pulumi.getter
463
594
  def project(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -504,6 +635,7 @@ class CloudVmCluster(pulumi.CustomResource):
504
635
  def __init__(__self__,
505
636
  resource_name: str,
506
637
  opts: Optional[pulumi.ResourceOptions] = None,
638
+ backup_odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
507
639
  backup_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
508
640
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
509
641
  cloud_vm_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -513,6 +645,8 @@ class CloudVmCluster(pulumi.CustomResource):
513
645
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
514
646
  location: Optional[pulumi.Input[_builtins.str]] = None,
515
647
  network: Optional[pulumi.Input[_builtins.str]] = None,
648
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
649
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
516
650
  project: Optional[pulumi.Input[_builtins.str]] = None,
517
651
  properties: Optional[pulumi.Input[Union['CloudVmClusterPropertiesArgs', 'CloudVmClusterPropertiesArgsDict']]] = None,
518
652
  __props__=None):
@@ -564,6 +698,41 @@ class CloudVmCluster(pulumi.CustomResource):
564
698
  },
565
699
  deletion_protection=True)
566
700
  ```
701
+ ### Oracledatabase Cloud Vmcluster Odbnetwork
702
+
703
+ ```python
704
+ import pulumi
705
+ import pulumi_gcp as gcp
706
+
707
+ cloud_exadata_infrastructures = gcp.oracledatabase.CloudExadataInfrastructure("cloudExadataInfrastructures",
708
+ cloud_exadata_infrastructure_id="my-exadata",
709
+ display_name="my-exadata displayname",
710
+ location="europe-west2",
711
+ project="my-project",
712
+ properties={
713
+ "shape": "Exadata.X9M",
714
+ "compute_count": 2,
715
+ "storage_count": 3,
716
+ },
717
+ deletion_protection=True)
718
+ my_vmcluster = gcp.oracledatabase.CloudVmCluster("my_vmcluster",
719
+ cloud_vm_cluster_id="my-instance",
720
+ display_name="my-instance displayname",
721
+ location="europe-west2",
722
+ project="my-project",
723
+ exadata_infrastructure=cloud_exadata_infrastructures.id,
724
+ odb_network="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork",
725
+ odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-odbsubnet",
726
+ backup_odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-backup-odbsubnet",
727
+ properties={
728
+ "license_type": "LICENSE_INCLUDED",
729
+ "ssh_public_keys": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCz1X2744t+6vRLmE5u6nHi6/QWh8bQDgHmd+OIxRQIGA/IWUtCs2FnaCNZcqvZkaeyjk5v0lTA/n+9jvO42Ipib53athrfVG8gRt8fzPL66C6ZqHq+6zZophhrCdfJh/0G4x9xJh5gdMprlaCR1P8yAaVvhBQSKGc4SiIkyMNBcHJ5YTtMQMTfxaB4G1sHZ6SDAY9a6Cq/zNjDwfPapWLsiP4mRhE5SSjJX6l6EYbkm0JeLQg+AbJiNEPvrvDp1wtTxzlPJtIivthmLMThFxK7+DkrYFuLvN5AHUdo9KTDLvHtDCvV70r8v0gafsrKkM/OE9Jtzoo0e1N/5K/ZdyFRbAkFT4QSF3nwpbmBWLf2Evg//YyEuxnz4CwPqFST2mucnrCCGCVWp1vnHZ0y30nM35njLOmWdRDFy5l27pKUTwLp02y3UYiiZyP7d3/u5pKiN4vC27VuvzprSdJxWoAvluOiDeRh+/oeQDowxoT/Oop8DzB9uJmjktXw8jyMW2+Rpg+ENQqeNgF1OGlEzypaWiRskEFlkpLb4v/s3ZDYkL1oW0Nv/J8LTjTOTEaYt2Udjoe9x2xWiGnQixhdChWuG+MaoWffzUgx1tsVj/DBXijR5DjkPkrA1GA98zd3q8GKEaAdcDenJjHhNYSd4+rE9pIsnYn7fo5X/tFfcQH1XQ== nobody@google.com"],
730
+ "cpu_core_count": 4,
731
+ "gi_version": "19.0.0.0",
732
+ "hostname_prefix": "hostname1",
733
+ },
734
+ deletion_protection=True)
735
+ ```
567
736
  ### Oracledatabase Cloud Vmcluster Full
568
737
 
569
738
  ```python
@@ -655,6 +824,9 @@ class CloudVmCluster(pulumi.CustomResource):
655
824
 
656
825
  :param str resource_name: The name of the resource.
657
826
  :param pulumi.ResourceOptions opts: Options for the resource.
827
+ :param pulumi.Input[_builtins.str] backup_odb_subnet: The name of the backup OdbSubnet associated with the VM Cluster.
828
+ Format:
829
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
658
830
  :param pulumi.Input[_builtins.str] backup_subnet_cidr: CIDR range of the backup subnet.
659
831
  :param pulumi.Input[_builtins.str] cidr: Network settings. CIDR to use for cluster IP allocation.
660
832
  :param pulumi.Input[_builtins.str] cloud_vm_cluster_id: The ID of the VM Cluster to create. This value is restricted
@@ -671,6 +843,14 @@ class CloudVmCluster(pulumi.CustomResource):
671
843
  :param pulumi.Input[_builtins.str] location: Resource ID segment making up resource `name`. See documentation for resource type `oracledatabase.googleapis.com/DbNode`.
672
844
  :param pulumi.Input[_builtins.str] network: The name of the VPC network.
673
845
  Format: projects/{project}/global/networks/{network}
846
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the VM Cluster.
847
+ Format:
848
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
849
+ It is optional but if specified, this should match the parent ODBNetwork of
850
+ the odb_subnet and backup_odb_subnet.
851
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the VM Cluster for
852
+ IP allocation. Format:
853
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
674
854
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
675
855
  If it is not provided, the provider project is used.
676
856
  :param pulumi.Input[Union['CloudVmClusterPropertiesArgs', 'CloudVmClusterPropertiesArgsDict']] properties: Various properties and settings associated with Exadata VM cluster.
@@ -730,6 +910,41 @@ class CloudVmCluster(pulumi.CustomResource):
730
910
  },
731
911
  deletion_protection=True)
732
912
  ```
913
+ ### Oracledatabase Cloud Vmcluster Odbnetwork
914
+
915
+ ```python
916
+ import pulumi
917
+ import pulumi_gcp as gcp
918
+
919
+ cloud_exadata_infrastructures = gcp.oracledatabase.CloudExadataInfrastructure("cloudExadataInfrastructures",
920
+ cloud_exadata_infrastructure_id="my-exadata",
921
+ display_name="my-exadata displayname",
922
+ location="europe-west2",
923
+ project="my-project",
924
+ properties={
925
+ "shape": "Exadata.X9M",
926
+ "compute_count": 2,
927
+ "storage_count": 3,
928
+ },
929
+ deletion_protection=True)
930
+ my_vmcluster = gcp.oracledatabase.CloudVmCluster("my_vmcluster",
931
+ cloud_vm_cluster_id="my-instance",
932
+ display_name="my-instance displayname",
933
+ location="europe-west2",
934
+ project="my-project",
935
+ exadata_infrastructure=cloud_exadata_infrastructures.id,
936
+ odb_network="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork",
937
+ odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-odbsubnet",
938
+ backup_odb_subnet="projects/my-project/locations/europe-west2/odbNetworks/my-odbnetwork/odbSubnets/my-backup-odbsubnet",
939
+ properties={
940
+ "license_type": "LICENSE_INCLUDED",
941
+ "ssh_public_keys": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCz1X2744t+6vRLmE5u6nHi6/QWh8bQDgHmd+OIxRQIGA/IWUtCs2FnaCNZcqvZkaeyjk5v0lTA/n+9jvO42Ipib53athrfVG8gRt8fzPL66C6ZqHq+6zZophhrCdfJh/0G4x9xJh5gdMprlaCR1P8yAaVvhBQSKGc4SiIkyMNBcHJ5YTtMQMTfxaB4G1sHZ6SDAY9a6Cq/zNjDwfPapWLsiP4mRhE5SSjJX6l6EYbkm0JeLQg+AbJiNEPvrvDp1wtTxzlPJtIivthmLMThFxK7+DkrYFuLvN5AHUdo9KTDLvHtDCvV70r8v0gafsrKkM/OE9Jtzoo0e1N/5K/ZdyFRbAkFT4QSF3nwpbmBWLf2Evg//YyEuxnz4CwPqFST2mucnrCCGCVWp1vnHZ0y30nM35njLOmWdRDFy5l27pKUTwLp02y3UYiiZyP7d3/u5pKiN4vC27VuvzprSdJxWoAvluOiDeRh+/oeQDowxoT/Oop8DzB9uJmjktXw8jyMW2+Rpg+ENQqeNgF1OGlEzypaWiRskEFlkpLb4v/s3ZDYkL1oW0Nv/J8LTjTOTEaYt2Udjoe9x2xWiGnQixhdChWuG+MaoWffzUgx1tsVj/DBXijR5DjkPkrA1GA98zd3q8GKEaAdcDenJjHhNYSd4+rE9pIsnYn7fo5X/tFfcQH1XQ== nobody@google.com"],
942
+ "cpu_core_count": 4,
943
+ "gi_version": "19.0.0.0",
944
+ "hostname_prefix": "hostname1",
945
+ },
946
+ deletion_protection=True)
947
+ ```
733
948
  ### Oracledatabase Cloud Vmcluster Full
734
949
 
735
950
  ```python
@@ -834,6 +1049,7 @@ class CloudVmCluster(pulumi.CustomResource):
834
1049
  def _internal_init(__self__,
835
1050
  resource_name: str,
836
1051
  opts: Optional[pulumi.ResourceOptions] = None,
1052
+ backup_odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
837
1053
  backup_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
838
1054
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
839
1055
  cloud_vm_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -843,6 +1059,8 @@ class CloudVmCluster(pulumi.CustomResource):
843
1059
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
844
1060
  location: Optional[pulumi.Input[_builtins.str]] = None,
845
1061
  network: Optional[pulumi.Input[_builtins.str]] = None,
1062
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
1063
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
846
1064
  project: Optional[pulumi.Input[_builtins.str]] = None,
847
1065
  properties: Optional[pulumi.Input[Union['CloudVmClusterPropertiesArgs', 'CloudVmClusterPropertiesArgsDict']]] = None,
848
1066
  __props__=None):
@@ -854,11 +1072,8 @@ class CloudVmCluster(pulumi.CustomResource):
854
1072
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
855
1073
  __props__ = CloudVmClusterArgs.__new__(CloudVmClusterArgs)
856
1074
 
857
- if backup_subnet_cidr is None and not opts.urn:
858
- raise TypeError("Missing required property 'backup_subnet_cidr'")
1075
+ __props__.__dict__["backup_odb_subnet"] = backup_odb_subnet
859
1076
  __props__.__dict__["backup_subnet_cidr"] = backup_subnet_cidr
860
- if cidr is None and not opts.urn:
861
- raise TypeError("Missing required property 'cidr'")
862
1077
  __props__.__dict__["cidr"] = cidr
863
1078
  if cloud_vm_cluster_id is None and not opts.urn:
864
1079
  raise TypeError("Missing required property 'cloud_vm_cluster_id'")
@@ -872,9 +1087,9 @@ class CloudVmCluster(pulumi.CustomResource):
872
1087
  if location is None and not opts.urn:
873
1088
  raise TypeError("Missing required property 'location'")
874
1089
  __props__.__dict__["location"] = location
875
- if network is None and not opts.urn:
876
- raise TypeError("Missing required property 'network'")
877
1090
  __props__.__dict__["network"] = network
1091
+ __props__.__dict__["odb_network"] = odb_network
1092
+ __props__.__dict__["odb_subnet"] = odb_subnet
878
1093
  __props__.__dict__["project"] = project
879
1094
  __props__.__dict__["properties"] = properties
880
1095
  __props__.__dict__["create_time"] = None
@@ -894,6 +1109,7 @@ class CloudVmCluster(pulumi.CustomResource):
894
1109
  def get(resource_name: str,
895
1110
  id: pulumi.Input[str],
896
1111
  opts: Optional[pulumi.ResourceOptions] = None,
1112
+ backup_odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
897
1113
  backup_subnet_cidr: Optional[pulumi.Input[_builtins.str]] = None,
898
1114
  cidr: Optional[pulumi.Input[_builtins.str]] = None,
899
1115
  cloud_vm_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -907,6 +1123,8 @@ class CloudVmCluster(pulumi.CustomResource):
907
1123
  location: Optional[pulumi.Input[_builtins.str]] = None,
908
1124
  name: Optional[pulumi.Input[_builtins.str]] = None,
909
1125
  network: Optional[pulumi.Input[_builtins.str]] = None,
1126
+ odb_network: Optional[pulumi.Input[_builtins.str]] = None,
1127
+ odb_subnet: Optional[pulumi.Input[_builtins.str]] = None,
910
1128
  project: Optional[pulumi.Input[_builtins.str]] = None,
911
1129
  properties: Optional[pulumi.Input[Union['CloudVmClusterPropertiesArgs', 'CloudVmClusterPropertiesArgsDict']]] = None,
912
1130
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'CloudVmCluster':
@@ -917,6 +1135,9 @@ class CloudVmCluster(pulumi.CustomResource):
917
1135
  :param str resource_name: The unique name of the resulting resource.
918
1136
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
919
1137
  :param pulumi.ResourceOptions opts: Options for the resource.
1138
+ :param pulumi.Input[_builtins.str] backup_odb_subnet: The name of the backup OdbSubnet associated with the VM Cluster.
1139
+ Format:
1140
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
920
1141
  :param pulumi.Input[_builtins.str] backup_subnet_cidr: CIDR range of the backup subnet.
921
1142
  :param pulumi.Input[_builtins.str] cidr: Network settings. CIDR to use for cluster IP allocation.
922
1143
  :param pulumi.Input[_builtins.str] cloud_vm_cluster_id: The ID of the VM Cluster to create. This value is restricted
@@ -939,6 +1160,14 @@ class CloudVmCluster(pulumi.CustomResource):
939
1160
  projects/{project}/locations/{region}/cloudVmClusters/{cloud_vm_cluster}
940
1161
  :param pulumi.Input[_builtins.str] network: The name of the VPC network.
941
1162
  Format: projects/{project}/global/networks/{network}
1163
+ :param pulumi.Input[_builtins.str] odb_network: The name of the OdbNetwork associated with the VM Cluster.
1164
+ Format:
1165
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
1166
+ It is optional but if specified, this should match the parent ODBNetwork of
1167
+ the odb_subnet and backup_odb_subnet.
1168
+ :param pulumi.Input[_builtins.str] odb_subnet: The name of the OdbSubnet associated with the VM Cluster for
1169
+ IP allocation. Format:
1170
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
942
1171
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
943
1172
  If it is not provided, the provider project is used.
944
1173
  :param pulumi.Input[Union['CloudVmClusterPropertiesArgs', 'CloudVmClusterPropertiesArgsDict']] properties: Various properties and settings associated with Exadata VM cluster.
@@ -950,6 +1179,7 @@ class CloudVmCluster(pulumi.CustomResource):
950
1179
 
951
1180
  __props__ = _CloudVmClusterState.__new__(_CloudVmClusterState)
952
1181
 
1182
+ __props__.__dict__["backup_odb_subnet"] = backup_odb_subnet
953
1183
  __props__.__dict__["backup_subnet_cidr"] = backup_subnet_cidr
954
1184
  __props__.__dict__["cidr"] = cidr
955
1185
  __props__.__dict__["cloud_vm_cluster_id"] = cloud_vm_cluster_id
@@ -963,14 +1193,26 @@ class CloudVmCluster(pulumi.CustomResource):
963
1193
  __props__.__dict__["location"] = location
964
1194
  __props__.__dict__["name"] = name
965
1195
  __props__.__dict__["network"] = network
1196
+ __props__.__dict__["odb_network"] = odb_network
1197
+ __props__.__dict__["odb_subnet"] = odb_subnet
966
1198
  __props__.__dict__["project"] = project
967
1199
  __props__.__dict__["properties"] = properties
968
1200
  __props__.__dict__["pulumi_labels"] = pulumi_labels
969
1201
  return CloudVmCluster(resource_name, opts=opts, __props__=__props__)
970
1202
 
1203
+ @_builtins.property
1204
+ @pulumi.getter(name="backupOdbSubnet")
1205
+ def backup_odb_subnet(self) -> pulumi.Output[Optional[_builtins.str]]:
1206
+ """
1207
+ The name of the backup OdbSubnet associated with the VM Cluster.
1208
+ Format:
1209
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
1210
+ """
1211
+ return pulumi.get(self, "backup_odb_subnet")
1212
+
971
1213
  @_builtins.property
972
1214
  @pulumi.getter(name="backupSubnetCidr")
973
- def backup_subnet_cidr(self) -> pulumi.Output[_builtins.str]:
1215
+ def backup_subnet_cidr(self) -> pulumi.Output[Optional[_builtins.str]]:
974
1216
  """
975
1217
  CIDR range of the backup subnet.
976
1218
  """
@@ -978,7 +1220,7 @@ class CloudVmCluster(pulumi.CustomResource):
978
1220
 
979
1221
  @_builtins.property
980
1222
  @pulumi.getter
981
- def cidr(self) -> pulumi.Output[_builtins.str]:
1223
+ def cidr(self) -> pulumi.Output[Optional[_builtins.str]]:
982
1224
  """
983
1225
  Network settings. CIDR to use for cluster IP allocation.
984
1226
  """
@@ -1072,13 +1314,35 @@ class CloudVmCluster(pulumi.CustomResource):
1072
1314
 
1073
1315
  @_builtins.property
1074
1316
  @pulumi.getter
1075
- def network(self) -> pulumi.Output[_builtins.str]:
1317
+ def network(self) -> pulumi.Output[Optional[_builtins.str]]:
1076
1318
  """
1077
1319
  The name of the VPC network.
1078
1320
  Format: projects/{project}/global/networks/{network}
1079
1321
  """
1080
1322
  return pulumi.get(self, "network")
1081
1323
 
1324
+ @_builtins.property
1325
+ @pulumi.getter(name="odbNetwork")
1326
+ def odb_network(self) -> pulumi.Output[Optional[_builtins.str]]:
1327
+ """
1328
+ The name of the OdbNetwork associated with the VM Cluster.
1329
+ Format:
1330
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}
1331
+ It is optional but if specified, this should match the parent ODBNetwork of
1332
+ the odb_subnet and backup_odb_subnet.
1333
+ """
1334
+ return pulumi.get(self, "odb_network")
1335
+
1336
+ @_builtins.property
1337
+ @pulumi.getter(name="odbSubnet")
1338
+ def odb_subnet(self) -> pulumi.Output[Optional[_builtins.str]]:
1339
+ """
1340
+ The name of the OdbSubnet associated with the VM Cluster for
1341
+ IP allocation. Format:
1342
+ projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}
1343
+ """
1344
+ return pulumi.get(self, "odb_subnet")
1345
+
1082
1346
  @_builtins.property
1083
1347
  @pulumi.getter
1084
1348
  def project(self) -> pulumi.Output[_builtins.str]: