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