pulumi-oci 2.20.0a1734744214__py3-none-any.whl → 2.21.0__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/core/_inputs.py +271 -21
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +47 -0
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +562 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.20.0a1734744214.dist-info → pulumi_oci-2.21.0.dist-info}/METADATA +8 -2
- {pulumi_oci-2.20.0a1734744214.dist-info → pulumi_oci-2.21.0.dist-info}/RECORD +22 -22
- {pulumi_oci-2.20.0a1734744214.dist-info → pulumi_oci-2.21.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.20.0a1734744214.dist-info → pulumi_oci-2.21.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/get_ipv6.py
CHANGED
@@ -26,7 +26,7 @@ class GetIpv6Result:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getIpv6.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_address=None, ipv6id=None, ipv6subnet_cidr=None, state=None, subnet_id=None, time_created=None, vnic_id=None):
|
29
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_address=None, ipv6id=None, ipv6subnet_cidr=None, route_table_id=None, state=None, subnet_id=None, time_created=None, vnic_id=None):
|
30
30
|
if compartment_id and not isinstance(compartment_id, str):
|
31
31
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
32
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -51,6 +51,9 @@ class GetIpv6Result:
|
|
51
51
|
if ipv6subnet_cidr and not isinstance(ipv6subnet_cidr, str):
|
52
52
|
raise TypeError("Expected argument 'ipv6subnet_cidr' to be a str")
|
53
53
|
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
54
|
+
if route_table_id and not isinstance(route_table_id, str):
|
55
|
+
raise TypeError("Expected argument 'route_table_id' to be a str")
|
56
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
54
57
|
if state and not isinstance(state, str):
|
55
58
|
raise TypeError("Expected argument 'state' to be a str")
|
56
59
|
pulumi.set(__self__, "state", state)
|
@@ -122,6 +125,14 @@ class GetIpv6Result:
|
|
122
125
|
def ipv6subnet_cidr(self) -> str:
|
123
126
|
return pulumi.get(self, "ipv6subnet_cidr")
|
124
127
|
|
128
|
+
@property
|
129
|
+
@pulumi.getter(name="routeTableId")
|
130
|
+
def route_table_id(self) -> str:
|
131
|
+
"""
|
132
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "route_table_id")
|
135
|
+
|
125
136
|
@property
|
126
137
|
@pulumi.getter
|
127
138
|
def state(self) -> str:
|
@@ -169,6 +180,7 @@ class AwaitableGetIpv6Result(GetIpv6Result):
|
|
169
180
|
ip_address=self.ip_address,
|
170
181
|
ipv6id=self.ipv6id,
|
171
182
|
ipv6subnet_cidr=self.ipv6subnet_cidr,
|
183
|
+
route_table_id=self.route_table_id,
|
172
184
|
state=self.state,
|
173
185
|
subnet_id=self.subnet_id,
|
174
186
|
time_created=self.time_created,
|
@@ -211,6 +223,7 @@ def get_ipv6(ipv6id: Optional[str] = None,
|
|
211
223
|
ip_address=pulumi.get(__ret__, 'ip_address'),
|
212
224
|
ipv6id=pulumi.get(__ret__, 'ipv6id'),
|
213
225
|
ipv6subnet_cidr=pulumi.get(__ret__, 'ipv6subnet_cidr'),
|
226
|
+
route_table_id=pulumi.get(__ret__, 'route_table_id'),
|
214
227
|
state=pulumi.get(__ret__, 'state'),
|
215
228
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
216
229
|
time_created=pulumi.get(__ret__, 'time_created'),
|
@@ -250,6 +263,7 @@ def get_ipv6_output(ipv6id: Optional[pulumi.Input[str]] = None,
|
|
250
263
|
ip_address=pulumi.get(__response__, 'ip_address'),
|
251
264
|
ipv6id=pulumi.get(__response__, 'ipv6id'),
|
252
265
|
ipv6subnet_cidr=pulumi.get(__response__, 'ipv6subnet_cidr'),
|
266
|
+
route_table_id=pulumi.get(__response__, 'route_table_id'),
|
253
267
|
state=pulumi.get(__response__, 'state'),
|
254
268
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
255
269
|
time_created=pulumi.get(__response__, 'time_created'),
|
@@ -26,7 +26,7 @@ class GetPrivateIpResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getPrivateIp.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, hostname_label=None, id=None, ip_address=None, is_primary=None, is_reserved=None, private_ip_id=None, subnet_id=None, time_created=None, vlan_id=None, vnic_id=None):
|
29
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, hostname_label=None, id=None, ip_address=None, is_primary=None, is_reserved=None, private_ip_id=None, route_table_id=None, subnet_id=None, time_created=None, vlan_id=None, vnic_id=None):
|
30
30
|
if availability_domain and not isinstance(availability_domain, str):
|
31
31
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
32
32
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -60,6 +60,9 @@ class GetPrivateIpResult:
|
|
60
60
|
if private_ip_id and not isinstance(private_ip_id, str):
|
61
61
|
raise TypeError("Expected argument 'private_ip_id' to be a str")
|
62
62
|
pulumi.set(__self__, "private_ip_id", private_ip_id)
|
63
|
+
if route_table_id and not isinstance(route_table_id, str):
|
64
|
+
raise TypeError("Expected argument 'route_table_id' to be a str")
|
65
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
63
66
|
if subnet_id and not isinstance(subnet_id, str):
|
64
67
|
raise TypeError("Expected argument 'subnet_id' to be a str")
|
65
68
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -158,6 +161,11 @@ class GetPrivateIpResult:
|
|
158
161
|
def private_ip_id(self) -> str:
|
159
162
|
return pulumi.get(self, "private_ip_id")
|
160
163
|
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="routeTableId")
|
166
|
+
def route_table_id(self) -> str:
|
167
|
+
return pulumi.get(self, "route_table_id")
|
168
|
+
|
161
169
|
@property
|
162
170
|
@pulumi.getter(name="subnetId")
|
163
171
|
def subnet_id(self) -> str:
|
@@ -208,6 +216,7 @@ class AwaitableGetPrivateIpResult(GetPrivateIpResult):
|
|
208
216
|
is_primary=self.is_primary,
|
209
217
|
is_reserved=self.is_reserved,
|
210
218
|
private_ip_id=self.private_ip_id,
|
219
|
+
route_table_id=self.route_table_id,
|
211
220
|
subnet_id=self.subnet_id,
|
212
221
|
time_created=self.time_created,
|
213
222
|
vlan_id=self.vlan_id,
|
@@ -253,6 +262,7 @@ def get_private_ip(private_ip_id: Optional[str] = None,
|
|
253
262
|
is_primary=pulumi.get(__ret__, 'is_primary'),
|
254
263
|
is_reserved=pulumi.get(__ret__, 'is_reserved'),
|
255
264
|
private_ip_id=pulumi.get(__ret__, 'private_ip_id'),
|
265
|
+
route_table_id=pulumi.get(__ret__, 'route_table_id'),
|
256
266
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
257
267
|
time_created=pulumi.get(__ret__, 'time_created'),
|
258
268
|
vlan_id=pulumi.get(__ret__, 'vlan_id'),
|
@@ -295,6 +305,7 @@ def get_private_ip_output(private_ip_id: Optional[pulumi.Input[str]] = None,
|
|
295
305
|
is_primary=pulumi.get(__response__, 'is_primary'),
|
296
306
|
is_reserved=pulumi.get(__response__, 'is_reserved'),
|
297
307
|
private_ip_id=pulumi.get(__response__, 'private_ip_id'),
|
308
|
+
route_table_id=pulumi.get(__response__, 'route_table_id'),
|
298
309
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
299
310
|
time_created=pulumi.get(__response__, 'time_created'),
|
300
311
|
vlan_id=pulumi.get(__response__, 'vlan_id'),
|
@@ -365,7 +365,7 @@ class GetVirtualCircuitResult:
|
|
365
365
|
@pulumi.getter(name="virtualCircuitRedundancyMetadatas")
|
366
366
|
def virtual_circuit_redundancy_metadatas(self) -> Sequence['outputs.GetVirtualCircuitVirtualCircuitRedundancyMetadataResult']:
|
367
367
|
"""
|
368
|
-
|
368
|
+
This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
369
369
|
"""
|
370
370
|
return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
|
371
371
|
|
pulumi_oci/core/get_vnic.py
CHANGED
@@ -26,7 +26,7 @@ class GetVnicResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getVnic.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, hostname_label=None, id=None, ipv6addresses=None, is_primary=None, mac_address=None, nsg_ids=None, private_ip_address=None, public_ip_address=None, security_attributes=None, skip_source_dest_check=None, state=None, subnet_id=None, time_created=None, vlan_id=None, vnic_id=None):
|
29
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, hostname_label=None, id=None, ipv6addresses=None, is_primary=None, mac_address=None, nsg_ids=None, private_ip_address=None, public_ip_address=None, route_table_id=None, security_attributes=None, skip_source_dest_check=None, state=None, subnet_id=None, time_created=None, vlan_id=None, vnic_id=None):
|
30
30
|
if availability_domain and not isinstance(availability_domain, str):
|
31
31
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
32
32
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -66,6 +66,9 @@ class GetVnicResult:
|
|
66
66
|
if public_ip_address and not isinstance(public_ip_address, str):
|
67
67
|
raise TypeError("Expected argument 'public_ip_address' to be a str")
|
68
68
|
pulumi.set(__self__, "public_ip_address", public_ip_address)
|
69
|
+
if route_table_id and not isinstance(route_table_id, str):
|
70
|
+
raise TypeError("Expected argument 'route_table_id' to be a str")
|
71
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
69
72
|
if security_attributes and not isinstance(security_attributes, dict):
|
70
73
|
raise TypeError("Expected argument 'security_attributes' to be a dict")
|
71
74
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
@@ -192,6 +195,11 @@ class GetVnicResult:
|
|
192
195
|
"""
|
193
196
|
return pulumi.get(self, "public_ip_address")
|
194
197
|
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="routeTableId")
|
200
|
+
def route_table_id(self) -> str:
|
201
|
+
return pulumi.get(self, "route_table_id")
|
202
|
+
|
195
203
|
@property
|
196
204
|
@pulumi.getter(name="securityAttributes")
|
197
205
|
def security_attributes(self) -> Mapping[str, str]:
|
@@ -265,6 +273,7 @@ class AwaitableGetVnicResult(GetVnicResult):
|
|
265
273
|
nsg_ids=self.nsg_ids,
|
266
274
|
private_ip_address=self.private_ip_address,
|
267
275
|
public_ip_address=self.public_ip_address,
|
276
|
+
route_table_id=self.route_table_id,
|
268
277
|
security_attributes=self.security_attributes,
|
269
278
|
skip_source_dest_check=self.skip_source_dest_check,
|
270
279
|
state=self.state,
|
@@ -315,6 +324,7 @@ def get_vnic(vnic_id: Optional[str] = None,
|
|
315
324
|
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
316
325
|
private_ip_address=pulumi.get(__ret__, 'private_ip_address'),
|
317
326
|
public_ip_address=pulumi.get(__ret__, 'public_ip_address'),
|
327
|
+
route_table_id=pulumi.get(__ret__, 'route_table_id'),
|
318
328
|
security_attributes=pulumi.get(__ret__, 'security_attributes'),
|
319
329
|
skip_source_dest_check=pulumi.get(__ret__, 'skip_source_dest_check'),
|
320
330
|
state=pulumi.get(__ret__, 'state'),
|
@@ -362,6 +372,7 @@ def get_vnic_output(vnic_id: Optional[pulumi.Input[str]] = None,
|
|
362
372
|
nsg_ids=pulumi.get(__response__, 'nsg_ids'),
|
363
373
|
private_ip_address=pulumi.get(__response__, 'private_ip_address'),
|
364
374
|
public_ip_address=pulumi.get(__response__, 'public_ip_address'),
|
375
|
+
route_table_id=pulumi.get(__response__, 'route_table_id'),
|
365
376
|
security_attributes=pulumi.get(__response__, 'security_attributes'),
|
366
377
|
skip_source_dest_check=pulumi.get(__response__, 'skip_source_dest_check'),
|
367
378
|
state=pulumi.get(__response__, 'state'),
|
pulumi_oci/core/instance.py
CHANGED
@@ -44,6 +44,7 @@ class InstanceArgs:
|
|
44
44
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
45
45
|
launch_options: Optional[pulumi.Input['InstanceLaunchOptionsArgs']] = None,
|
46
46
|
launch_volume_attachments: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]]] = None,
|
47
|
+
licensing_configs: Optional[pulumi.Input['InstanceLicensingConfigsArgs']] = None,
|
47
48
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
48
49
|
platform_config: Optional[pulumi.Input['InstancePlatformConfigArgs']] = None,
|
49
50
|
preemptible_instance_config: Optional[pulumi.Input['InstancePreemptibleInstanceConfigArgs']] = None,
|
@@ -99,6 +100,7 @@ class InstanceArgs:
|
|
99
100
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]] launch_volume_attachments: Volume attachments to create as part of the launch instance operation.
|
100
101
|
|
101
102
|
**Note:** This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use `Core.VolumeAttachment`. To update volume details, user should use `Core.Volume`
|
103
|
+
:param pulumi.Input['InstanceLicensingConfigsArgs'] licensing_configs: (Updatable) List of licensing configurations associated with target launch values.
|
102
104
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
103
105
|
|
104
106
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -211,6 +213,8 @@ class InstanceArgs:
|
|
211
213
|
pulumi.set(__self__, "launch_options", launch_options)
|
212
214
|
if launch_volume_attachments is not None:
|
213
215
|
pulumi.set(__self__, "launch_volume_attachments", launch_volume_attachments)
|
216
|
+
if licensing_configs is not None:
|
217
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
214
218
|
if metadata is not None:
|
215
219
|
pulumi.set(__self__, "metadata", metadata)
|
216
220
|
if platform_config is not None:
|
@@ -531,6 +535,18 @@ class InstanceArgs:
|
|
531
535
|
def launch_volume_attachments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]]]):
|
532
536
|
pulumi.set(self, "launch_volume_attachments", value)
|
533
537
|
|
538
|
+
@property
|
539
|
+
@pulumi.getter(name="licensingConfigs")
|
540
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceLicensingConfigsArgs']]:
|
541
|
+
"""
|
542
|
+
(Updatable) List of licensing configurations associated with target launch values.
|
543
|
+
"""
|
544
|
+
return pulumi.get(self, "licensing_configs")
|
545
|
+
|
546
|
+
@licensing_configs.setter
|
547
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceLicensingConfigsArgs']]):
|
548
|
+
pulumi.set(self, "licensing_configs", value)
|
549
|
+
|
534
550
|
@property
|
535
551
|
@pulumi.getter
|
536
552
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -751,6 +767,7 @@ class _InstanceState:
|
|
751
767
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
752
768
|
launch_options: Optional[pulumi.Input['InstanceLaunchOptionsArgs']] = None,
|
753
769
|
launch_volume_attachments: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]]] = None,
|
770
|
+
licensing_configs: Optional[pulumi.Input['InstanceLicensingConfigsArgs']] = None,
|
754
771
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
755
772
|
platform_config: Optional[pulumi.Input['InstancePlatformConfigArgs']] = None,
|
756
773
|
preemptible_instance_config: Optional[pulumi.Input['InstancePreemptibleInstanceConfigArgs']] = None,
|
@@ -820,6 +837,7 @@ class _InstanceState:
|
|
820
837
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]] launch_volume_attachments: Volume attachments to create as part of the launch instance operation.
|
821
838
|
|
822
839
|
**Note:** This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use `Core.VolumeAttachment`. To update volume details, user should use `Core.Volume`
|
840
|
+
:param pulumi.Input['InstanceLicensingConfigsArgs'] licensing_configs: (Updatable) List of licensing configurations associated with target launch values.
|
823
841
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
824
842
|
|
825
843
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -947,6 +965,8 @@ class _InstanceState:
|
|
947
965
|
pulumi.set(__self__, "launch_options", launch_options)
|
948
966
|
if launch_volume_attachments is not None:
|
949
967
|
pulumi.set(__self__, "launch_volume_attachments", launch_volume_attachments)
|
968
|
+
if licensing_configs is not None:
|
969
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
950
970
|
if metadata is not None:
|
951
971
|
pulumi.set(__self__, "metadata", metadata)
|
952
972
|
if platform_config is not None:
|
@@ -1321,6 +1341,18 @@ class _InstanceState:
|
|
1321
1341
|
def launch_volume_attachments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceLaunchVolumeAttachmentArgs']]]]):
|
1322
1342
|
pulumi.set(self, "launch_volume_attachments", value)
|
1323
1343
|
|
1344
|
+
@property
|
1345
|
+
@pulumi.getter(name="licensingConfigs")
|
1346
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceLicensingConfigsArgs']]:
|
1347
|
+
"""
|
1348
|
+
(Updatable) List of licensing configurations associated with target launch values.
|
1349
|
+
"""
|
1350
|
+
return pulumi.get(self, "licensing_configs")
|
1351
|
+
|
1352
|
+
@licensing_configs.setter
|
1353
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceLicensingConfigsArgs']]):
|
1354
|
+
pulumi.set(self, "licensing_configs", value)
|
1355
|
+
|
1324
1356
|
@property
|
1325
1357
|
@pulumi.getter
|
1326
1358
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -1624,6 +1656,7 @@ class Instance(pulumi.CustomResource):
|
|
1624
1656
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
1625
1657
|
launch_options: Optional[pulumi.Input[Union['InstanceLaunchOptionsArgs', 'InstanceLaunchOptionsArgsDict']]] = None,
|
1626
1658
|
launch_volume_attachments: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceLaunchVolumeAttachmentArgs', 'InstanceLaunchVolumeAttachmentArgsDict']]]]] = None,
|
1659
|
+
licensing_configs: Optional[pulumi.Input[Union['InstanceLicensingConfigsArgs', 'InstanceLicensingConfigsArgsDict']]] = None,
|
1627
1660
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1628
1661
|
platform_config: Optional[pulumi.Input[Union['InstancePlatformConfigArgs', 'InstancePlatformConfigArgsDict']]] = None,
|
1629
1662
|
preemptible_instance_config: Optional[pulumi.Input[Union['InstancePreemptibleInstanceConfigArgs', 'InstancePreemptibleInstanceConfigArgsDict']]] = None,
|
@@ -1741,6 +1774,7 @@ class Instance(pulumi.CustomResource):
|
|
1741
1774
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceLaunchVolumeAttachmentArgs', 'InstanceLaunchVolumeAttachmentArgsDict']]]] launch_volume_attachments: Volume attachments to create as part of the launch instance operation.
|
1742
1775
|
|
1743
1776
|
**Note:** This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use `Core.VolumeAttachment`. To update volume details, user should use `Core.Volume`
|
1777
|
+
:param pulumi.Input[Union['InstanceLicensingConfigsArgs', 'InstanceLicensingConfigsArgsDict']] licensing_configs: (Updatable) List of licensing configurations associated with target launch values.
|
1744
1778
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
1745
1779
|
|
1746
1780
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -1908,6 +1942,7 @@ class Instance(pulumi.CustomResource):
|
|
1908
1942
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
1909
1943
|
launch_options: Optional[pulumi.Input[Union['InstanceLaunchOptionsArgs', 'InstanceLaunchOptionsArgsDict']]] = None,
|
1910
1944
|
launch_volume_attachments: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceLaunchVolumeAttachmentArgs', 'InstanceLaunchVolumeAttachmentArgsDict']]]]] = None,
|
1945
|
+
licensing_configs: Optional[pulumi.Input[Union['InstanceLicensingConfigsArgs', 'InstanceLicensingConfigsArgsDict']]] = None,
|
1911
1946
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1912
1947
|
platform_config: Optional[pulumi.Input[Union['InstancePlatformConfigArgs', 'InstancePlatformConfigArgsDict']]] = None,
|
1913
1948
|
preemptible_instance_config: Optional[pulumi.Input[Union['InstancePreemptibleInstanceConfigArgs', 'InstancePreemptibleInstanceConfigArgsDict']]] = None,
|
@@ -1956,6 +1991,7 @@ class Instance(pulumi.CustomResource):
|
|
1956
1991
|
__props__.__dict__["is_pv_encryption_in_transit_enabled"] = is_pv_encryption_in_transit_enabled
|
1957
1992
|
__props__.__dict__["launch_options"] = launch_options
|
1958
1993
|
__props__.__dict__["launch_volume_attachments"] = launch_volume_attachments
|
1994
|
+
__props__.__dict__["licensing_configs"] = licensing_configs
|
1959
1995
|
__props__.__dict__["metadata"] = metadata
|
1960
1996
|
__props__.__dict__["platform_config"] = platform_config
|
1961
1997
|
__props__.__dict__["preemptible_instance_config"] = preemptible_instance_config
|
@@ -2014,6 +2050,7 @@ class Instance(pulumi.CustomResource):
|
|
2014
2050
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
2015
2051
|
launch_options: Optional[pulumi.Input[Union['InstanceLaunchOptionsArgs', 'InstanceLaunchOptionsArgsDict']]] = None,
|
2016
2052
|
launch_volume_attachments: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceLaunchVolumeAttachmentArgs', 'InstanceLaunchVolumeAttachmentArgsDict']]]]] = None,
|
2053
|
+
licensing_configs: Optional[pulumi.Input[Union['InstanceLicensingConfigsArgs', 'InstanceLicensingConfigsArgsDict']]] = None,
|
2017
2054
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
2018
2055
|
platform_config: Optional[pulumi.Input[Union['InstancePlatformConfigArgs', 'InstancePlatformConfigArgsDict']]] = None,
|
2019
2056
|
preemptible_instance_config: Optional[pulumi.Input[Union['InstancePreemptibleInstanceConfigArgs', 'InstancePreemptibleInstanceConfigArgsDict']]] = None,
|
@@ -2088,6 +2125,7 @@ class Instance(pulumi.CustomResource):
|
|
2088
2125
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceLaunchVolumeAttachmentArgs', 'InstanceLaunchVolumeAttachmentArgsDict']]]] launch_volume_attachments: Volume attachments to create as part of the launch instance operation.
|
2089
2126
|
|
2090
2127
|
**Note:** This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use `Core.VolumeAttachment`. To update volume details, user should use `Core.Volume`
|
2128
|
+
:param pulumi.Input[Union['InstanceLicensingConfigsArgs', 'InstanceLicensingConfigsArgsDict']] licensing_configs: (Updatable) List of licensing configurations associated with target launch values.
|
2091
2129
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: (Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
2092
2130
|
|
2093
2131
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -2187,6 +2225,7 @@ class Instance(pulumi.CustomResource):
|
|
2187
2225
|
__props__.__dict__["launch_mode"] = launch_mode
|
2188
2226
|
__props__.__dict__["launch_options"] = launch_options
|
2189
2227
|
__props__.__dict__["launch_volume_attachments"] = launch_volume_attachments
|
2228
|
+
__props__.__dict__["licensing_configs"] = licensing_configs
|
2190
2229
|
__props__.__dict__["metadata"] = metadata
|
2191
2230
|
__props__.__dict__["platform_config"] = platform_config
|
2192
2231
|
__props__.__dict__["preemptible_instance_config"] = preemptible_instance_config
|
@@ -2436,6 +2475,14 @@ class Instance(pulumi.CustomResource):
|
|
2436
2475
|
"""
|
2437
2476
|
return pulumi.get(self, "launch_volume_attachments")
|
2438
2477
|
|
2478
|
+
@property
|
2479
|
+
@pulumi.getter(name="licensingConfigs")
|
2480
|
+
def licensing_configs(self) -> pulumi.Output['outputs.InstanceLicensingConfigs']:
|
2481
|
+
"""
|
2482
|
+
(Updatable) List of licensing configurations associated with target launch values.
|
2483
|
+
"""
|
2484
|
+
return pulumi.get(self, "licensing_configs")
|
2485
|
+
|
2439
2486
|
@property
|
2440
2487
|
@pulumi.getter
|
2441
2488
|
def metadata(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -479,6 +479,10 @@ class InstanceConfiguration(pulumi.CustomResource):
|
|
479
479
|
"network_type": instance_configuration_instance_details_launch_details_launch_options_network_type,
|
480
480
|
"remote_data_volume_type": instance_configuration_instance_details_launch_details_launch_options_remote_data_volume_type,
|
481
481
|
},
|
482
|
+
"licensing_configs": {
|
483
|
+
"type": instance_configuration_instance_details_launch_details_licensing_configs_type,
|
484
|
+
"license_type": instance_configuration_instance_details_launch_details_licensing_configs_license_type,
|
485
|
+
},
|
482
486
|
"metadata": instance_configuration_instance_details_launch_details_metadata,
|
483
487
|
"platform_config": {
|
484
488
|
"type": instance_configuration_instance_details_launch_details_platform_config_type,
|
@@ -626,6 +630,10 @@ class InstanceConfiguration(pulumi.CustomResource):
|
|
626
630
|
"network_type": instance_configuration_instance_details_options_launch_details_launch_options_network_type,
|
627
631
|
"remote_data_volume_type": instance_configuration_instance_details_options_launch_details_launch_options_remote_data_volume_type,
|
628
632
|
},
|
633
|
+
"licensing_configs": {
|
634
|
+
"type": instance_configuration_instance_details_options_launch_details_licensing_configs_type,
|
635
|
+
"license_type": instance_configuration_instance_details_options_launch_details_licensing_configs_license_type,
|
636
|
+
},
|
629
637
|
"metadata": instance_configuration_instance_details_options_launch_details_metadata,
|
630
638
|
"platform_config": {
|
631
639
|
"type": instance_configuration_instance_details_options_launch_details_platform_config_type,
|
@@ -889,6 +897,10 @@ class InstanceConfiguration(pulumi.CustomResource):
|
|
889
897
|
"network_type": instance_configuration_instance_details_launch_details_launch_options_network_type,
|
890
898
|
"remote_data_volume_type": instance_configuration_instance_details_launch_details_launch_options_remote_data_volume_type,
|
891
899
|
},
|
900
|
+
"licensing_configs": {
|
901
|
+
"type": instance_configuration_instance_details_launch_details_licensing_configs_type,
|
902
|
+
"license_type": instance_configuration_instance_details_launch_details_licensing_configs_license_type,
|
903
|
+
},
|
892
904
|
"metadata": instance_configuration_instance_details_launch_details_metadata,
|
893
905
|
"platform_config": {
|
894
906
|
"type": instance_configuration_instance_details_launch_details_platform_config_type,
|
@@ -1036,6 +1048,10 @@ class InstanceConfiguration(pulumi.CustomResource):
|
|
1036
1048
|
"network_type": instance_configuration_instance_details_options_launch_details_launch_options_network_type,
|
1037
1049
|
"remote_data_volume_type": instance_configuration_instance_details_options_launch_details_launch_options_remote_data_volume_type,
|
1038
1050
|
},
|
1051
|
+
"licensing_configs": {
|
1052
|
+
"type": instance_configuration_instance_details_options_launch_details_licensing_configs_type,
|
1053
|
+
"license_type": instance_configuration_instance_details_options_launch_details_licensing_configs_license_type,
|
1054
|
+
},
|
1039
1055
|
"metadata": instance_configuration_instance_details_options_launch_details_metadata,
|
1040
1056
|
"platform_config": {
|
1041
1057
|
"type": instance_configuration_instance_details_options_launch_details_platform_config_type,
|
pulumi_oci/core/ipv6.py
CHANGED
@@ -24,7 +24,8 @@ class Ipv6Args:
|
|
24
24
|
display_name: Optional[pulumi.Input[str]] = None,
|
25
25
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
26
|
ip_address: Optional[pulumi.Input[str]] = None,
|
27
|
-
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None
|
27
|
+
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None,
|
28
|
+
route_table_id: Optional[pulumi.Input[str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a Ipv6 resource.
|
30
31
|
:param pulumi.Input[str] vnic_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VNIC to assign the IPv6 to. The IPv6 will be in the VNIC's subnet.
|
@@ -37,6 +38,7 @@ class Ipv6Args:
|
|
37
38
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
38
39
|
:param pulumi.Input[str] ip_address: An IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns an IPv6 address from the subnet. The subnet is the one that contains the VNIC you specify in `vnicId`. Example: `2001:DB8::`
|
39
40
|
:param pulumi.Input[str] ipv6subnet_cidr: The IPv6 prefix allocated to the subnet. This is required if more than one IPv6 prefix exists on the subnet.
|
41
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
40
42
|
"""
|
41
43
|
pulumi.set(__self__, "vnic_id", vnic_id)
|
42
44
|
if defined_tags is not None:
|
@@ -49,6 +51,8 @@ class Ipv6Args:
|
|
49
51
|
pulumi.set(__self__, "ip_address", ip_address)
|
50
52
|
if ipv6subnet_cidr is not None:
|
51
53
|
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
54
|
+
if route_table_id is not None:
|
55
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
52
56
|
|
53
57
|
@property
|
54
58
|
@pulumi.getter(name="vnicId")
|
@@ -126,6 +130,18 @@ class Ipv6Args:
|
|
126
130
|
def ipv6subnet_cidr(self, value: Optional[pulumi.Input[str]]):
|
127
131
|
pulumi.set(self, "ipv6subnet_cidr", value)
|
128
132
|
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="routeTableId")
|
135
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
136
|
+
"""
|
137
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "route_table_id")
|
140
|
+
|
141
|
+
@route_table_id.setter
|
142
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
143
|
+
pulumi.set(self, "route_table_id", value)
|
144
|
+
|
129
145
|
|
130
146
|
@pulumi.input_type
|
131
147
|
class _Ipv6State:
|
@@ -136,6 +152,7 @@ class _Ipv6State:
|
|
136
152
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
137
153
|
ip_address: Optional[pulumi.Input[str]] = None,
|
138
154
|
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None,
|
155
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
139
156
|
state: Optional[pulumi.Input[str]] = None,
|
140
157
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
141
158
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -148,6 +165,7 @@ class _Ipv6State:
|
|
148
165
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
149
166
|
:param pulumi.Input[str] ip_address: An IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns an IPv6 address from the subnet. The subnet is the one that contains the VNIC you specify in `vnicId`. Example: `2001:DB8::`
|
150
167
|
:param pulumi.Input[str] ipv6subnet_cidr: The IPv6 prefix allocated to the subnet. This is required if more than one IPv6 prefix exists on the subnet.
|
168
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
151
169
|
:param pulumi.Input[str] state: The IPv6's current state.
|
152
170
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
|
153
171
|
:param pulumi.Input[str] time_created: The date and time the IPv6 was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -169,6 +187,8 @@ class _Ipv6State:
|
|
169
187
|
pulumi.set(__self__, "ip_address", ip_address)
|
170
188
|
if ipv6subnet_cidr is not None:
|
171
189
|
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
190
|
+
if route_table_id is not None:
|
191
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
172
192
|
if state is not None:
|
173
193
|
pulumi.set(__self__, "state", state)
|
174
194
|
if subnet_id is not None:
|
@@ -250,6 +270,18 @@ class _Ipv6State:
|
|
250
270
|
def ipv6subnet_cidr(self, value: Optional[pulumi.Input[str]]):
|
251
271
|
pulumi.set(self, "ipv6subnet_cidr", value)
|
252
272
|
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="routeTableId")
|
275
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
276
|
+
"""
|
277
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "route_table_id")
|
280
|
+
|
281
|
+
@route_table_id.setter
|
282
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
283
|
+
pulumi.set(self, "route_table_id", value)
|
284
|
+
|
253
285
|
@property
|
254
286
|
@pulumi.getter
|
255
287
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -313,6 +345,7 @@ class Ipv6(pulumi.CustomResource):
|
|
313
345
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
314
346
|
ip_address: Optional[pulumi.Input[str]] = None,
|
315
347
|
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None,
|
348
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
316
349
|
vnic_id: Optional[pulumi.Input[str]] = None,
|
317
350
|
__props__=None):
|
318
351
|
"""
|
@@ -336,7 +369,8 @@ class Ipv6(pulumi.CustomResource):
|
|
336
369
|
"Department": "Finance",
|
337
370
|
},
|
338
371
|
ip_address=ipv6_ip_address,
|
339
|
-
ipv6subnet_cidr=ipv6_ipv6subnet_cidr
|
372
|
+
ipv6subnet_cidr=ipv6_ipv6subnet_cidr,
|
373
|
+
route_table_id=test_route_table["id"])
|
340
374
|
```
|
341
375
|
|
342
376
|
## Import
|
@@ -354,6 +388,7 @@ class Ipv6(pulumi.CustomResource):
|
|
354
388
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
355
389
|
:param pulumi.Input[str] ip_address: An IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns an IPv6 address from the subnet. The subnet is the one that contains the VNIC you specify in `vnicId`. Example: `2001:DB8::`
|
356
390
|
:param pulumi.Input[str] ipv6subnet_cidr: The IPv6 prefix allocated to the subnet. This is required if more than one IPv6 prefix exists on the subnet.
|
391
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
357
392
|
:param pulumi.Input[str] vnic_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VNIC to assign the IPv6 to. The IPv6 will be in the VNIC's subnet.
|
358
393
|
|
359
394
|
|
@@ -387,7 +422,8 @@ class Ipv6(pulumi.CustomResource):
|
|
387
422
|
"Department": "Finance",
|
388
423
|
},
|
389
424
|
ip_address=ipv6_ip_address,
|
390
|
-
ipv6subnet_cidr=ipv6_ipv6subnet_cidr
|
425
|
+
ipv6subnet_cidr=ipv6_ipv6subnet_cidr,
|
426
|
+
route_table_id=test_route_table["id"])
|
391
427
|
```
|
392
428
|
|
393
429
|
## Import
|
@@ -418,6 +454,7 @@ class Ipv6(pulumi.CustomResource):
|
|
418
454
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
419
455
|
ip_address: Optional[pulumi.Input[str]] = None,
|
420
456
|
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None,
|
457
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
421
458
|
vnic_id: Optional[pulumi.Input[str]] = None,
|
422
459
|
__props__=None):
|
423
460
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -433,6 +470,7 @@ class Ipv6(pulumi.CustomResource):
|
|
433
470
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
434
471
|
__props__.__dict__["ip_address"] = ip_address
|
435
472
|
__props__.__dict__["ipv6subnet_cidr"] = ipv6subnet_cidr
|
473
|
+
__props__.__dict__["route_table_id"] = route_table_id
|
436
474
|
if vnic_id is None and not opts.urn:
|
437
475
|
raise TypeError("Missing required property 'vnic_id'")
|
438
476
|
__props__.__dict__["vnic_id"] = vnic_id
|
@@ -456,6 +494,7 @@ class Ipv6(pulumi.CustomResource):
|
|
456
494
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
457
495
|
ip_address: Optional[pulumi.Input[str]] = None,
|
458
496
|
ipv6subnet_cidr: Optional[pulumi.Input[str]] = None,
|
497
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
459
498
|
state: Optional[pulumi.Input[str]] = None,
|
460
499
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
461
500
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -473,6 +512,7 @@ class Ipv6(pulumi.CustomResource):
|
|
473
512
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
474
513
|
:param pulumi.Input[str] ip_address: An IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns an IPv6 address from the subnet. The subnet is the one that contains the VNIC you specify in `vnicId`. Example: `2001:DB8::`
|
475
514
|
:param pulumi.Input[str] ipv6subnet_cidr: The IPv6 prefix allocated to the subnet. This is required if more than one IPv6 prefix exists on the subnet.
|
515
|
+
:param pulumi.Input[str] route_table_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
476
516
|
:param pulumi.Input[str] state: The IPv6's current state.
|
477
517
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in.
|
478
518
|
:param pulumi.Input[str] time_created: The date and time the IPv6 was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -492,6 +532,7 @@ class Ipv6(pulumi.CustomResource):
|
|
492
532
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
493
533
|
__props__.__dict__["ip_address"] = ip_address
|
494
534
|
__props__.__dict__["ipv6subnet_cidr"] = ipv6subnet_cidr
|
535
|
+
__props__.__dict__["route_table_id"] = route_table_id
|
495
536
|
__props__.__dict__["state"] = state
|
496
537
|
__props__.__dict__["subnet_id"] = subnet_id
|
497
538
|
__props__.__dict__["time_created"] = time_created
|
@@ -546,6 +587,14 @@ class Ipv6(pulumi.CustomResource):
|
|
546
587
|
"""
|
547
588
|
return pulumi.get(self, "ipv6subnet_cidr")
|
548
589
|
|
590
|
+
@property
|
591
|
+
@pulumi.getter(name="routeTableId")
|
592
|
+
def route_table_id(self) -> pulumi.Output[Optional[str]]:
|
593
|
+
"""
|
594
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the PrivateIp will use.
|
595
|
+
"""
|
596
|
+
return pulumi.get(self, "route_table_id")
|
597
|
+
|
549
598
|
@property
|
550
599
|
@pulumi.getter
|
551
600
|
def state(self) -> pulumi.Output[str]:
|