pulumi-oci 1.39.0a1717740308__py3-none-any.whl → 1.39.0a1717785264__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.
- pulumi_oci/__init__.py +11 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/RECORD +35 -28
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/top_level.txt +0 -0
@@ -15,11 +15,13 @@ __all__ = ['ConnectionAssignmentArgs', 'ConnectionAssignment']
|
|
15
15
|
class ConnectionAssignmentArgs:
|
16
16
|
def __init__(__self__, *,
|
17
17
|
connection_id: pulumi.Input[str],
|
18
|
-
deployment_id: pulumi.Input[str]
|
18
|
+
deployment_id: pulumi.Input[str],
|
19
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None):
|
19
20
|
"""
|
20
21
|
The set of arguments for constructing a ConnectionAssignment resource.
|
21
22
|
:param pulumi.Input[str] connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
|
22
|
-
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
23
|
+
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
24
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
23
25
|
|
24
26
|
|
25
27
|
** IMPORTANT **
|
@@ -27,6 +29,8 @@ class ConnectionAssignmentArgs:
|
|
27
29
|
"""
|
28
30
|
pulumi.set(__self__, "connection_id", connection_id)
|
29
31
|
pulumi.set(__self__, "deployment_id", deployment_id)
|
32
|
+
if is_lock_override is not None:
|
33
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
30
34
|
|
31
35
|
@property
|
32
36
|
@pulumi.getter(name="connectionId")
|
@@ -44,11 +48,7 @@ class ConnectionAssignmentArgs:
|
|
44
48
|
@pulumi.getter(name="deploymentId")
|
45
49
|
def deployment_id(self) -> pulumi.Input[str]:
|
46
50
|
"""
|
47
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
48
|
-
|
49
|
-
|
50
|
-
** IMPORTANT **
|
51
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
51
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
52
52
|
"""
|
53
53
|
return pulumi.get(self, "deployment_id")
|
54
54
|
|
@@ -56,6 +56,22 @@ class ConnectionAssignmentArgs:
|
|
56
56
|
def deployment_id(self, value: pulumi.Input[str]):
|
57
57
|
pulumi.set(self, "deployment_id", value)
|
58
58
|
|
59
|
+
@property
|
60
|
+
@pulumi.getter(name="isLockOverride")
|
61
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
62
|
+
"""
|
63
|
+
Whether to override locks (if any exist).
|
64
|
+
|
65
|
+
|
66
|
+
** IMPORTANT **
|
67
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "is_lock_override")
|
70
|
+
|
71
|
+
@is_lock_override.setter
|
72
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
73
|
+
pulumi.set(self, "is_lock_override", value)
|
74
|
+
|
59
75
|
|
60
76
|
@pulumi.input_type
|
61
77
|
class _ConnectionAssignmentState:
|
@@ -64,6 +80,7 @@ class _ConnectionAssignmentState:
|
|
64
80
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
65
81
|
connection_id: Optional[pulumi.Input[str]] = None,
|
66
82
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
83
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
67
84
|
state: Optional[pulumi.Input[str]] = None,
|
68
85
|
time_created: Optional[pulumi.Input[str]] = None,
|
69
86
|
time_updated: Optional[pulumi.Input[str]] = None):
|
@@ -72,7 +89,8 @@ class _ConnectionAssignmentState:
|
|
72
89
|
:param pulumi.Input[str] alias_name: Credential store alias.
|
73
90
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
74
91
|
:param pulumi.Input[str] connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
|
75
|
-
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
92
|
+
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
93
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
76
94
|
|
77
95
|
|
78
96
|
** IMPORTANT **
|
@@ -89,6 +107,8 @@ class _ConnectionAssignmentState:
|
|
89
107
|
pulumi.set(__self__, "connection_id", connection_id)
|
90
108
|
if deployment_id is not None:
|
91
109
|
pulumi.set(__self__, "deployment_id", deployment_id)
|
110
|
+
if is_lock_override is not None:
|
111
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
92
112
|
if state is not None:
|
93
113
|
pulumi.set(__self__, "state", state)
|
94
114
|
if time_created is not None:
|
@@ -136,11 +156,7 @@ class _ConnectionAssignmentState:
|
|
136
156
|
@pulumi.getter(name="deploymentId")
|
137
157
|
def deployment_id(self) -> Optional[pulumi.Input[str]]:
|
138
158
|
"""
|
139
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
140
|
-
|
141
|
-
|
142
|
-
** IMPORTANT **
|
143
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
159
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
144
160
|
"""
|
145
161
|
return pulumi.get(self, "deployment_id")
|
146
162
|
|
@@ -148,6 +164,22 @@ class _ConnectionAssignmentState:
|
|
148
164
|
def deployment_id(self, value: Optional[pulumi.Input[str]]):
|
149
165
|
pulumi.set(self, "deployment_id", value)
|
150
166
|
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="isLockOverride")
|
169
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
170
|
+
"""
|
171
|
+
Whether to override locks (if any exist).
|
172
|
+
|
173
|
+
|
174
|
+
** IMPORTANT **
|
175
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "is_lock_override")
|
178
|
+
|
179
|
+
@is_lock_override.setter
|
180
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
181
|
+
pulumi.set(self, "is_lock_override", value)
|
182
|
+
|
151
183
|
@property
|
152
184
|
@pulumi.getter
|
153
185
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -192,6 +224,7 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
192
224
|
opts: Optional[pulumi.ResourceOptions] = None,
|
193
225
|
connection_id: Optional[pulumi.Input[str]] = None,
|
194
226
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
227
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
195
228
|
__props__=None):
|
196
229
|
"""
|
197
230
|
This resource provides the Connection Assignment resource in Oracle Cloud Infrastructure Golden Gate service.
|
@@ -206,7 +239,8 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
206
239
|
|
207
240
|
test_connection_assignment = oci.golden_gate.ConnectionAssignment("test_connection_assignment",
|
208
241
|
connection_id=test_connection["id"],
|
209
|
-
deployment_id=test_deployment["id"]
|
242
|
+
deployment_id=test_deployment["id"],
|
243
|
+
is_lock_override=connection_assignment_is_lock_override)
|
210
244
|
```
|
211
245
|
|
212
246
|
## Import
|
@@ -220,7 +254,8 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
220
254
|
:param str resource_name: The name of the resource.
|
221
255
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
222
256
|
:param pulumi.Input[str] connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
|
223
|
-
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
257
|
+
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
258
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
224
259
|
|
225
260
|
|
226
261
|
** IMPORTANT **
|
@@ -245,7 +280,8 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
245
280
|
|
246
281
|
test_connection_assignment = oci.golden_gate.ConnectionAssignment("test_connection_assignment",
|
247
282
|
connection_id=test_connection["id"],
|
248
|
-
deployment_id=test_deployment["id"]
|
283
|
+
deployment_id=test_deployment["id"],
|
284
|
+
is_lock_override=connection_assignment_is_lock_override)
|
249
285
|
```
|
250
286
|
|
251
287
|
## Import
|
@@ -273,6 +309,7 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
273
309
|
opts: Optional[pulumi.ResourceOptions] = None,
|
274
310
|
connection_id: Optional[pulumi.Input[str]] = None,
|
275
311
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
312
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
276
313
|
__props__=None):
|
277
314
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
278
315
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -288,6 +325,7 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
288
325
|
if deployment_id is None and not opts.urn:
|
289
326
|
raise TypeError("Missing required property 'deployment_id'")
|
290
327
|
__props__.__dict__["deployment_id"] = deployment_id
|
328
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
291
329
|
__props__.__dict__["alias_name"] = None
|
292
330
|
__props__.__dict__["compartment_id"] = None
|
293
331
|
__props__.__dict__["state"] = None
|
@@ -307,6 +345,7 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
307
345
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
308
346
|
connection_id: Optional[pulumi.Input[str]] = None,
|
309
347
|
deployment_id: Optional[pulumi.Input[str]] = None,
|
348
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
310
349
|
state: Optional[pulumi.Input[str]] = None,
|
311
350
|
time_created: Optional[pulumi.Input[str]] = None,
|
312
351
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'ConnectionAssignment':
|
@@ -320,7 +359,8 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
320
359
|
:param pulumi.Input[str] alias_name: Credential store alias.
|
321
360
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
322
361
|
:param pulumi.Input[str] connection_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the connection being referenced.
|
323
|
-
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
362
|
+
:param pulumi.Input[str] deployment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
363
|
+
:param pulumi.Input[bool] is_lock_override: Whether to override locks (if any exist).
|
324
364
|
|
325
365
|
|
326
366
|
** IMPORTANT **
|
@@ -337,6 +377,7 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
337
377
|
__props__.__dict__["compartment_id"] = compartment_id
|
338
378
|
__props__.__dict__["connection_id"] = connection_id
|
339
379
|
__props__.__dict__["deployment_id"] = deployment_id
|
380
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
340
381
|
__props__.__dict__["state"] = state
|
341
382
|
__props__.__dict__["time_created"] = time_created
|
342
383
|
__props__.__dict__["time_updated"] = time_updated
|
@@ -370,13 +411,21 @@ class ConnectionAssignment(pulumi.CustomResource):
|
|
370
411
|
@pulumi.getter(name="deploymentId")
|
371
412
|
def deployment_id(self) -> pulumi.Output[str]:
|
372
413
|
"""
|
373
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
414
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
415
|
+
"""
|
416
|
+
return pulumi.get(self, "deployment_id")
|
417
|
+
|
418
|
+
@property
|
419
|
+
@pulumi.getter(name="isLockOverride")
|
420
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
421
|
+
"""
|
422
|
+
Whether to override locks (if any exist).
|
374
423
|
|
375
424
|
|
376
425
|
** IMPORTANT **
|
377
426
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
378
427
|
"""
|
379
|
-
return pulumi.get(self, "
|
428
|
+
return pulumi.get(self, "is_lock_override")
|
380
429
|
|
381
430
|
@property
|
382
431
|
@pulumi.getter
|
@@ -28,8 +28,10 @@ class DeploymentArgs:
|
|
28
28
|
description: Optional[pulumi.Input[str]] = None,
|
29
29
|
fqdn: Optional[pulumi.Input[str]] = None,
|
30
30
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
31
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
31
32
|
is_public: Optional[pulumi.Input[bool]] = None,
|
32
33
|
load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
|
34
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]] = None,
|
33
35
|
maintenance_configuration: Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']] = None,
|
34
36
|
maintenance_window: Optional[pulumi.Input['DeploymentMaintenanceWindowArgs']] = None,
|
35
37
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -43,7 +45,7 @@ class DeploymentArgs:
|
|
43
45
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
44
46
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
45
47
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
46
|
-
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
48
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
47
49
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
48
50
|
:param pulumi.Input[str] deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
49
51
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
@@ -51,6 +53,7 @@ class DeploymentArgs:
|
|
51
53
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
52
54
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
53
55
|
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
56
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]] locks: Locks associated with this resource.
|
54
57
|
:param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
55
58
|
:param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
56
59
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
@@ -73,10 +76,14 @@ class DeploymentArgs:
|
|
73
76
|
pulumi.set(__self__, "fqdn", fqdn)
|
74
77
|
if freeform_tags is not None:
|
75
78
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
79
|
+
if is_lock_override is not None:
|
80
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
76
81
|
if is_public is not None:
|
77
82
|
pulumi.set(__self__, "is_public", is_public)
|
78
83
|
if load_balancer_subnet_id is not None:
|
79
84
|
pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
|
85
|
+
if locks is not None:
|
86
|
+
pulumi.set(__self__, "locks", locks)
|
80
87
|
if maintenance_configuration is not None:
|
81
88
|
pulumi.set(__self__, "maintenance_configuration", maintenance_configuration)
|
82
89
|
if maintenance_window is not None:
|
@@ -164,7 +171,7 @@ class DeploymentArgs:
|
|
164
171
|
@pulumi.getter(name="subnetId")
|
165
172
|
def subnet_id(self) -> pulumi.Input[str]:
|
166
173
|
"""
|
167
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
174
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
168
175
|
"""
|
169
176
|
return pulumi.get(self, "subnet_id")
|
170
177
|
|
@@ -232,6 +239,15 @@ class DeploymentArgs:
|
|
232
239
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
233
240
|
pulumi.set(self, "freeform_tags", value)
|
234
241
|
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="isLockOverride")
|
244
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
245
|
+
return pulumi.get(self, "is_lock_override")
|
246
|
+
|
247
|
+
@is_lock_override.setter
|
248
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
249
|
+
pulumi.set(self, "is_lock_override", value)
|
250
|
+
|
235
251
|
@property
|
236
252
|
@pulumi.getter(name="isPublic")
|
237
253
|
def is_public(self) -> Optional[pulumi.Input[bool]]:
|
@@ -256,6 +272,18 @@ class DeploymentArgs:
|
|
256
272
|
def load_balancer_subnet_id(self, value: Optional[pulumi.Input[str]]):
|
257
273
|
pulumi.set(self, "load_balancer_subnet_id", value)
|
258
274
|
|
275
|
+
@property
|
276
|
+
@pulumi.getter
|
277
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]]:
|
278
|
+
"""
|
279
|
+
Locks associated with this resource.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "locks")
|
282
|
+
|
283
|
+
@locks.setter
|
284
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]]):
|
285
|
+
pulumi.set(self, "locks", value)
|
286
|
+
|
259
287
|
@property
|
260
288
|
@pulumi.getter(name="maintenanceConfiguration")
|
261
289
|
def maintenance_configuration(self) -> Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']]:
|
@@ -332,6 +360,7 @@ class _DeploymentState:
|
|
332
360
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
333
361
|
is_healthy: Optional[pulumi.Input[bool]] = None,
|
334
362
|
is_latest_version: Optional[pulumi.Input[bool]] = None,
|
363
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
335
364
|
is_public: Optional[pulumi.Input[bool]] = None,
|
336
365
|
is_storage_utilization_limit_exceeded: Optional[pulumi.Input[bool]] = None,
|
337
366
|
license_model: Optional[pulumi.Input[str]] = None,
|
@@ -339,6 +368,7 @@ class _DeploymentState:
|
|
339
368
|
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
340
369
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
341
370
|
load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
|
371
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]] = None,
|
342
372
|
maintenance_configuration: Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']] = None,
|
343
373
|
maintenance_window: Optional[pulumi.Input['DeploymentMaintenanceWindowArgs']] = None,
|
344
374
|
next_maintenance_action_type: Optional[pulumi.Input[str]] = None,
|
@@ -380,6 +410,7 @@ class _DeploymentState:
|
|
380
410
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
381
411
|
:param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
|
382
412
|
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
413
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]] locks: Locks associated with this resource.
|
383
414
|
:param pulumi.Input['DeploymentMaintenanceConfigurationArgs'] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
384
415
|
:param pulumi.Input['DeploymentMaintenanceWindowArgs'] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
385
416
|
:param pulumi.Input[str] next_maintenance_action_type: Type of the next maintenance.
|
@@ -389,7 +420,7 @@ class _DeploymentState:
|
|
389
420
|
:param pulumi.Input[str] private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
|
390
421
|
:param pulumi.Input[str] public_ip_address: The public IP address representing the access point for the Deployment.
|
391
422
|
:param pulumi.Input[str] storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
|
392
|
-
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
423
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
393
424
|
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
394
425
|
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
395
426
|
:param pulumi.Input[str] time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
@@ -427,6 +458,8 @@ class _DeploymentState:
|
|
427
458
|
pulumi.set(__self__, "is_healthy", is_healthy)
|
428
459
|
if is_latest_version is not None:
|
429
460
|
pulumi.set(__self__, "is_latest_version", is_latest_version)
|
461
|
+
if is_lock_override is not None:
|
462
|
+
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
430
463
|
if is_public is not None:
|
431
464
|
pulumi.set(__self__, "is_public", is_public)
|
432
465
|
if is_storage_utilization_limit_exceeded is not None:
|
@@ -441,6 +474,8 @@ class _DeploymentState:
|
|
441
474
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
442
475
|
if load_balancer_subnet_id is not None:
|
443
476
|
pulumi.set(__self__, "load_balancer_subnet_id", load_balancer_subnet_id)
|
477
|
+
if locks is not None:
|
478
|
+
pulumi.set(__self__, "locks", locks)
|
444
479
|
if maintenance_configuration is not None:
|
445
480
|
pulumi.set(__self__, "maintenance_configuration", maintenance_configuration)
|
446
481
|
if maintenance_window is not None:
|
@@ -656,6 +691,15 @@ class _DeploymentState:
|
|
656
691
|
def is_latest_version(self, value: Optional[pulumi.Input[bool]]):
|
657
692
|
pulumi.set(self, "is_latest_version", value)
|
658
693
|
|
694
|
+
@property
|
695
|
+
@pulumi.getter(name="isLockOverride")
|
696
|
+
def is_lock_override(self) -> Optional[pulumi.Input[bool]]:
|
697
|
+
return pulumi.get(self, "is_lock_override")
|
698
|
+
|
699
|
+
@is_lock_override.setter
|
700
|
+
def is_lock_override(self, value: Optional[pulumi.Input[bool]]):
|
701
|
+
pulumi.set(self, "is_lock_override", value)
|
702
|
+
|
659
703
|
@property
|
660
704
|
@pulumi.getter(name="isPublic")
|
661
705
|
def is_public(self) -> Optional[pulumi.Input[bool]]:
|
@@ -740,6 +784,18 @@ class _DeploymentState:
|
|
740
784
|
def load_balancer_subnet_id(self, value: Optional[pulumi.Input[str]]):
|
741
785
|
pulumi.set(self, "load_balancer_subnet_id", value)
|
742
786
|
|
787
|
+
@property
|
788
|
+
@pulumi.getter
|
789
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]]:
|
790
|
+
"""
|
791
|
+
Locks associated with this resource.
|
792
|
+
"""
|
793
|
+
return pulumi.get(self, "locks")
|
794
|
+
|
795
|
+
@locks.setter
|
796
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentLockArgs']]]]):
|
797
|
+
pulumi.set(self, "locks", value)
|
798
|
+
|
743
799
|
@property
|
744
800
|
@pulumi.getter(name="maintenanceConfiguration")
|
745
801
|
def maintenance_configuration(self) -> Optional[pulumi.Input['DeploymentMaintenanceConfigurationArgs']]:
|
@@ -861,7 +917,7 @@ class _DeploymentState:
|
|
861
917
|
@pulumi.getter(name="subnetId")
|
862
918
|
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
863
919
|
"""
|
864
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
920
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
865
921
|
"""
|
866
922
|
return pulumi.get(self, "subnet_id")
|
867
923
|
|
@@ -957,9 +1013,11 @@ class Deployment(pulumi.CustomResource):
|
|
957
1013
|
fqdn: Optional[pulumi.Input[str]] = None,
|
958
1014
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
959
1015
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
1016
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
960
1017
|
is_public: Optional[pulumi.Input[bool]] = None,
|
961
1018
|
license_model: Optional[pulumi.Input[str]] = None,
|
962
1019
|
load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
|
1020
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentLockArgs']]]]] = None,
|
963
1021
|
maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
|
964
1022
|
maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
|
965
1023
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -995,11 +1053,12 @@ class Deployment(pulumi.CustomResource):
|
|
995
1053
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
996
1054
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
997
1055
|
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
1056
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentLockArgs']]]] locks: Locks associated with this resource.
|
998
1057
|
:param pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
999
1058
|
:param pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
1000
1059
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
|
1001
1060
|
:param pulumi.Input[pulumi.InputType['DeploymentOggDataArgs']] ogg_data: (Updatable) Deployment Data for creating an OggDeployment
|
1002
|
-
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
1061
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
1003
1062
|
"""
|
1004
1063
|
...
|
1005
1064
|
@overload
|
@@ -1045,9 +1104,11 @@ class Deployment(pulumi.CustomResource):
|
|
1045
1104
|
fqdn: Optional[pulumi.Input[str]] = None,
|
1046
1105
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1047
1106
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
1107
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
1048
1108
|
is_public: Optional[pulumi.Input[bool]] = None,
|
1049
1109
|
license_model: Optional[pulumi.Input[str]] = None,
|
1050
1110
|
load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
|
1111
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentLockArgs']]]]] = None,
|
1051
1112
|
maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
|
1052
1113
|
maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
|
1053
1114
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -1083,11 +1144,13 @@ class Deployment(pulumi.CustomResource):
|
|
1083
1144
|
if is_auto_scaling_enabled is None and not opts.urn:
|
1084
1145
|
raise TypeError("Missing required property 'is_auto_scaling_enabled'")
|
1085
1146
|
__props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
|
1147
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
1086
1148
|
__props__.__dict__["is_public"] = is_public
|
1087
1149
|
if license_model is None and not opts.urn:
|
1088
1150
|
raise TypeError("Missing required property 'license_model'")
|
1089
1151
|
__props__.__dict__["license_model"] = license_model
|
1090
1152
|
__props__.__dict__["load_balancer_subnet_id"] = load_balancer_subnet_id
|
1153
|
+
__props__.__dict__["locks"] = locks
|
1091
1154
|
__props__.__dict__["maintenance_configuration"] = maintenance_configuration
|
1092
1155
|
__props__.__dict__["maintenance_window"] = maintenance_window
|
1093
1156
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
@@ -1141,6 +1204,7 @@ class Deployment(pulumi.CustomResource):
|
|
1141
1204
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
1142
1205
|
is_healthy: Optional[pulumi.Input[bool]] = None,
|
1143
1206
|
is_latest_version: Optional[pulumi.Input[bool]] = None,
|
1207
|
+
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
1144
1208
|
is_public: Optional[pulumi.Input[bool]] = None,
|
1145
1209
|
is_storage_utilization_limit_exceeded: Optional[pulumi.Input[bool]] = None,
|
1146
1210
|
license_model: Optional[pulumi.Input[str]] = None,
|
@@ -1148,6 +1212,7 @@ class Deployment(pulumi.CustomResource):
|
|
1148
1212
|
lifecycle_sub_state: Optional[pulumi.Input[str]] = None,
|
1149
1213
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
1150
1214
|
load_balancer_subnet_id: Optional[pulumi.Input[str]] = None,
|
1215
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentLockArgs']]]]] = None,
|
1151
1216
|
maintenance_configuration: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']]] = None,
|
1152
1217
|
maintenance_window: Optional[pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']]] = None,
|
1153
1218
|
next_maintenance_action_type: Optional[pulumi.Input[str]] = None,
|
@@ -1194,6 +1259,7 @@ class Deployment(pulumi.CustomResource):
|
|
1194
1259
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
1195
1260
|
:param pulumi.Input[str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the loadbalancer in the customer's subnet. The loadbalancer of the public deployment created in the customer subnet.
|
1196
1261
|
:param pulumi.Input[str] load_balancer_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a public subnet in the customer tenancy. Can be provided only for public deployments. If provided, the loadbalancer will be created in this subnet instead of the service tenancy. For backward compatiblity this is an optional property for now, but it will become mandatory (for public deployments only) after October 1, 2024.
|
1262
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeploymentLockArgs']]]] locks: Locks associated with this resource.
|
1197
1263
|
:param pulumi.Input[pulumi.InputType['DeploymentMaintenanceConfigurationArgs']] maintenance_configuration: (Updatable) Defines the maintenance configuration for create operation.
|
1198
1264
|
:param pulumi.Input[pulumi.InputType['DeploymentMaintenanceWindowArgs']] maintenance_window: (Updatable) Defines the maintenance window for create operation, when automatic actions can be performed.
|
1199
1265
|
:param pulumi.Input[str] next_maintenance_action_type: Type of the next maintenance.
|
@@ -1203,7 +1269,7 @@ class Deployment(pulumi.CustomResource):
|
|
1203
1269
|
:param pulumi.Input[str] private_ip_address: The private IP address in the customer's VCN representing the access point for the associated endpoint service in the GoldenGate service VCN.
|
1204
1270
|
:param pulumi.Input[str] public_ip_address: The public IP address representing the access point for the Deployment.
|
1205
1271
|
:param pulumi.Input[str] storage_utilization_in_bytes: The amount of storage being utilized (in bytes)
|
1206
|
-
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
1272
|
+
:param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
1207
1273
|
:param pulumi.Input[Mapping[str, Any]] system_tags: The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}`
|
1208
1274
|
:param pulumi.Input[str] time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
1209
1275
|
:param pulumi.Input[str] time_of_next_maintenance: The time of next maintenance schedule. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
@@ -1230,6 +1296,7 @@ class Deployment(pulumi.CustomResource):
|
|
1230
1296
|
__props__.__dict__["is_auto_scaling_enabled"] = is_auto_scaling_enabled
|
1231
1297
|
__props__.__dict__["is_healthy"] = is_healthy
|
1232
1298
|
__props__.__dict__["is_latest_version"] = is_latest_version
|
1299
|
+
__props__.__dict__["is_lock_override"] = is_lock_override
|
1233
1300
|
__props__.__dict__["is_public"] = is_public
|
1234
1301
|
__props__.__dict__["is_storage_utilization_limit_exceeded"] = is_storage_utilization_limit_exceeded
|
1235
1302
|
__props__.__dict__["license_model"] = license_model
|
@@ -1237,6 +1304,7 @@ class Deployment(pulumi.CustomResource):
|
|
1237
1304
|
__props__.__dict__["lifecycle_sub_state"] = lifecycle_sub_state
|
1238
1305
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
1239
1306
|
__props__.__dict__["load_balancer_subnet_id"] = load_balancer_subnet_id
|
1307
|
+
__props__.__dict__["locks"] = locks
|
1240
1308
|
__props__.__dict__["maintenance_configuration"] = maintenance_configuration
|
1241
1309
|
__props__.__dict__["maintenance_window"] = maintenance_window
|
1242
1310
|
__props__.__dict__["next_maintenance_action_type"] = next_maintenance_action_type
|
@@ -1376,6 +1444,11 @@ class Deployment(pulumi.CustomResource):
|
|
1376
1444
|
"""
|
1377
1445
|
return pulumi.get(self, "is_latest_version")
|
1378
1446
|
|
1447
|
+
@property
|
1448
|
+
@pulumi.getter(name="isLockOverride")
|
1449
|
+
def is_lock_override(self) -> pulumi.Output[bool]:
|
1450
|
+
return pulumi.get(self, "is_lock_override")
|
1451
|
+
|
1379
1452
|
@property
|
1380
1453
|
@pulumi.getter(name="isPublic")
|
1381
1454
|
def is_public(self) -> pulumi.Output[bool]:
|
@@ -1432,6 +1505,14 @@ class Deployment(pulumi.CustomResource):
|
|
1432
1505
|
"""
|
1433
1506
|
return pulumi.get(self, "load_balancer_subnet_id")
|
1434
1507
|
|
1508
|
+
@property
|
1509
|
+
@pulumi.getter
|
1510
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.DeploymentLock']]:
|
1511
|
+
"""
|
1512
|
+
Locks associated with this resource.
|
1513
|
+
"""
|
1514
|
+
return pulumi.get(self, "locks")
|
1515
|
+
|
1435
1516
|
@property
|
1436
1517
|
@pulumi.getter(name="maintenanceConfiguration")
|
1437
1518
|
def maintenance_configuration(self) -> pulumi.Output['outputs.DeploymentMaintenanceConfiguration']:
|
@@ -1513,7 +1594,7 @@ class Deployment(pulumi.CustomResource):
|
|
1513
1594
|
@pulumi.getter(name="subnetId")
|
1514
1595
|
def subnet_id(self) -> pulumi.Output[str]:
|
1515
1596
|
"""
|
1516
|
-
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint.
|
1597
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet of the deployment's private endpoint. The subnet must be a private subnet. For backward compatibility, public subnets are allowed until May 31 2025, after which the private subnet will be enforced.
|
1517
1598
|
"""
|
1518
1599
|
return pulumi.get(self, "subnet_id")
|
1519
1600
|
|