pulumi-oci 2.29.0a1744186202__py3-none-any.whl → 2.30.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/__init__.py +46 -0
- pulumi_oci/bigdataservice/bds_instance.py +7 -7
- pulumi_oci/core/_inputs.py +21 -21
- pulumi_oci/core/get_ipv6.py +32 -2
- pulumi_oci/core/get_private_ip.py +33 -3
- pulumi_oci/core/get_private_ips.py +51 -1
- pulumi_oci/core/get_vnic.py +4 -1
- pulumi_oci/core/ipv6.py +155 -44
- pulumi_oci/core/outputs.py +71 -17
- pulumi_oci/core/private_ip.py +124 -20
- pulumi_oci/datascience/__init__.py +9 -0
- pulumi_oci/datascience/_inputs.py +1215 -0
- pulumi_oci/datascience/get_ml_application.py +254 -0
- pulumi_oci/datascience/get_ml_application_implementation.py +389 -0
- pulumi_oci/datascience/get_ml_application_implementations.py +252 -0
- pulumi_oci/datascience/get_ml_application_instance.py +367 -0
- pulumi_oci/datascience/get_ml_application_instances.py +214 -0
- pulumi_oci/datascience/get_ml_applications.py +230 -0
- pulumi_oci/datascience/ml_application.py +564 -0
- pulumi_oci/datascience/ml_application_implementation.py +969 -0
- pulumi_oci/datascience/ml_application_instance.py +832 -0
- pulumi_oci/datascience/outputs.py +7154 -4464
- pulumi_oci/functions/invoke_function.py +52 -3
- pulumi_oci/goldengate/_inputs.py +135 -1
- pulumi_oci/goldengate/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +263 -3
- pulumi_oci/goldengate/pipeline.py +28 -0
- pulumi_oci/kms/_inputs.py +48 -0
- pulumi_oci/kms/outputs.py +48 -0
- pulumi_oci/kms/vault_verification.py +37 -1
- pulumi_oci/lustre/__init__.py +13 -0
- pulumi_oci/lustre/_inputs.py +219 -0
- pulumi_oci/lustre/file_storage_lustre_file_system.py +1184 -0
- pulumi_oci/lustre/get_file_storage_lustre_file_system.py +451 -0
- pulumi_oci/lustre/get_file_storage_lustre_file_systems.py +222 -0
- pulumi_oci/lustre/outputs.py +639 -0
- pulumi_oci/oci/__init__.py +13 -0
- pulumi_oci/oci/_inputs.py +219 -0
- pulumi_oci/oci/get_lustre_file_storage_lustre_file_system.py +455 -0
- pulumi_oci/oci/get_lustre_file_storage_lustre_file_systems.py +226 -0
- pulumi_oci/oci/lustre_file_storage_lustre_file_system.py +1188 -0
- pulumi_oci/oci/outputs.py +639 -0
- pulumi_oci/opsi/get_operations_insights_warehouse.py +16 -2
- pulumi_oci/opsi/operations_insights_warehouse.py +56 -7
- pulumi_oci/opsi/outputs.py +13 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- pulumi_oci/stackmonitoring/_inputs.py +1423 -51
- pulumi_oci/stackmonitoring/get_monitored_resource_task.py +16 -2
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +58 -2
- pulumi_oci/stackmonitoring/get_monitored_resource_types.py +46 -2
- pulumi_oci/stackmonitoring/monitored_resource_task.py +116 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +119 -7
- pulumi_oci/stackmonitoring/outputs.py +6195 -3496
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/RECORD +60 -39
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.29.0a1744186202.dist-info → pulumi_oci-2.30.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -152,6 +152,8 @@ if typing.TYPE_CHECKING:
|
|
152
152
|
loganalytics = __loganalytics
|
153
153
|
import pulumi_oci.logging as __logging
|
154
154
|
logging = __logging
|
155
|
+
import pulumi_oci.lustre as __lustre
|
156
|
+
lustre = __lustre
|
155
157
|
import pulumi_oci.managementagent as __managementagent
|
156
158
|
managementagent = __managementagent
|
157
159
|
import pulumi_oci.managementdashboard as __managementdashboard
|
@@ -176,6 +178,8 @@ if typing.TYPE_CHECKING:
|
|
176
178
|
objectstorage = __objectstorage
|
177
179
|
import pulumi_oci.oce as __oce
|
178
180
|
oce = __oce
|
181
|
+
import pulumi_oci.oci as __oci
|
182
|
+
oci = __oci
|
179
183
|
import pulumi_oci.ocvp as __ocvp
|
180
184
|
ocvp = __ocvp
|
181
185
|
import pulumi_oci.oda as __oda
|
@@ -330,6 +334,7 @@ else:
|
|
330
334
|
loadbalancer = _utilities.lazy_import('pulumi_oci.loadbalancer')
|
331
335
|
loganalytics = _utilities.lazy_import('pulumi_oci.loganalytics')
|
332
336
|
logging = _utilities.lazy_import('pulumi_oci.logging')
|
337
|
+
lustre = _utilities.lazy_import('pulumi_oci.lustre')
|
333
338
|
managementagent = _utilities.lazy_import('pulumi_oci.managementagent')
|
334
339
|
managementdashboard = _utilities.lazy_import('pulumi_oci.managementdashboard')
|
335
340
|
marketplace = _utilities.lazy_import('pulumi_oci.marketplace')
|
@@ -342,6 +347,7 @@ else:
|
|
342
347
|
nosql = _utilities.lazy_import('pulumi_oci.nosql')
|
343
348
|
objectstorage = _utilities.lazy_import('pulumi_oci.objectstorage')
|
344
349
|
oce = _utilities.lazy_import('pulumi_oci.oce')
|
350
|
+
oci = _utilities.lazy_import('pulumi_oci.oci')
|
345
351
|
ocvp = _utilities.lazy_import('pulumi_oci.ocvp')
|
346
352
|
oda = _utilities.lazy_import('pulumi_oci.oda')
|
347
353
|
onesubsription = _utilities.lazy_import('pulumi_oci.onesubsription')
|
@@ -2459,6 +2465,30 @@ _utilities.register(
|
|
2459
2465
|
"oci:DataScience/jobRun:JobRun": "JobRun"
|
2460
2466
|
}
|
2461
2467
|
},
|
2468
|
+
{
|
2469
|
+
"pkg": "oci",
|
2470
|
+
"mod": "DataScience/mlApplication",
|
2471
|
+
"fqn": "pulumi_oci.datascience",
|
2472
|
+
"classes": {
|
2473
|
+
"oci:DataScience/mlApplication:MlApplication": "MlApplication"
|
2474
|
+
}
|
2475
|
+
},
|
2476
|
+
{
|
2477
|
+
"pkg": "oci",
|
2478
|
+
"mod": "DataScience/mlApplicationImplementation",
|
2479
|
+
"fqn": "pulumi_oci.datascience",
|
2480
|
+
"classes": {
|
2481
|
+
"oci:DataScience/mlApplicationImplementation:MlApplicationImplementation": "MlApplicationImplementation"
|
2482
|
+
}
|
2483
|
+
},
|
2484
|
+
{
|
2485
|
+
"pkg": "oci",
|
2486
|
+
"mod": "DataScience/mlApplicationInstance",
|
2487
|
+
"fqn": "pulumi_oci.datascience",
|
2488
|
+
"classes": {
|
2489
|
+
"oci:DataScience/mlApplicationInstance:MlApplicationInstance": "MlApplicationInstance"
|
2490
|
+
}
|
2491
|
+
},
|
2462
2492
|
{
|
2463
2493
|
"pkg": "oci",
|
2464
2494
|
"mod": "DataScience/model",
|
@@ -5155,6 +5185,14 @@ _utilities.register(
|
|
5155
5185
|
"oci:Logging/unifiedAgentConfiguration:UnifiedAgentConfiguration": "UnifiedAgentConfiguration"
|
5156
5186
|
}
|
5157
5187
|
},
|
5188
|
+
{
|
5189
|
+
"pkg": "oci",
|
5190
|
+
"mod": "Lustre/fileStorageLustreFileSystem",
|
5191
|
+
"fqn": "pulumi_oci.lustre",
|
5192
|
+
"classes": {
|
5193
|
+
"oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem": "FileStorageLustreFileSystem"
|
5194
|
+
}
|
5195
|
+
},
|
5158
5196
|
{
|
5159
5197
|
"pkg": "oci",
|
5160
5198
|
"mod": "ManagementAgent/managementAgent",
|
@@ -6834,6 +6872,14 @@ _utilities.register(
|
|
6834
6872
|
"classes": {
|
6835
6873
|
"oci:Zpr/zprPolicy:ZprPolicy": "ZprPolicy"
|
6836
6874
|
}
|
6875
|
+
},
|
6876
|
+
{
|
6877
|
+
"pkg": "oci",
|
6878
|
+
"mod": "oci/lustreFileStorageLustreFileSystem",
|
6879
|
+
"fqn": "pulumi_oci.oci",
|
6880
|
+
"classes": {
|
6881
|
+
"oci:oci/lustreFileStorageLustreFileSystem:LustreFileStorageLustreFileSystem": "LustreFileStorageLustreFileSystem"
|
6882
|
+
}
|
6837
6883
|
}
|
6838
6884
|
]
|
6839
6885
|
""",
|
@@ -79,7 +79,7 @@ class BdsInstanceArgs:
|
|
79
79
|
:param pulumi.Input[builtins.str] kms_key_id: (Updatable) The OCID of the Key Management master encryption key.
|
80
80
|
:param pulumi.Input['BdsInstanceNetworkConfigArgs'] network_config: (Updatable) Additional configuration of the user's network.
|
81
81
|
:param pulumi.Input[builtins.str] os_patch_version: (Updatable) The version of the patch to be upated.
|
82
|
-
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
82
|
+
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
83
83
|
:param pulumi.Input[builtins.str] state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
|
84
84
|
"""
|
85
85
|
pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
|
@@ -463,7 +463,7 @@ class BdsInstanceArgs:
|
|
463
463
|
@pulumi.getter(name="removeNode")
|
464
464
|
def remove_node(self) -> Optional[pulumi.Input[builtins.str]]:
|
465
465
|
"""
|
466
|
-
(Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
466
|
+
(Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
467
467
|
"""
|
468
468
|
return pulumi.get(self, "remove_node")
|
469
469
|
|
@@ -564,7 +564,7 @@ class _BdsInstanceState:
|
|
564
564
|
:param pulumi.Input[builtins.int] number_of_nodes: Number of nodes that forming the cluster
|
565
565
|
:param pulumi.Input[builtins.int] number_of_nodes_requiring_maintenance_reboot: Number of nodes that require a maintenance reboot
|
566
566
|
:param pulumi.Input[builtins.str] os_patch_version: (Updatable) The version of the patch to be upated.
|
567
|
-
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
567
|
+
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
568
568
|
:param pulumi.Input[builtins.str] state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
|
569
569
|
:param pulumi.Input[builtins.str] time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
|
570
570
|
:param pulumi.Input[builtins.str] time_updated: The time the BDS instance was updated. An RFC3339 formatted datetime string
|
@@ -1014,7 +1014,7 @@ class _BdsInstanceState:
|
|
1014
1014
|
@pulumi.getter(name="removeNode")
|
1015
1015
|
def remove_node(self) -> Optional[pulumi.Input[builtins.str]]:
|
1016
1016
|
"""
|
1017
|
-
(Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
1017
|
+
(Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
1018
1018
|
"""
|
1019
1019
|
return pulumi.get(self, "remove_node")
|
1020
1020
|
|
@@ -1164,7 +1164,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1164
1164
|
:param pulumi.Input[Union['BdsInstanceMasterNodeArgs', 'BdsInstanceMasterNodeArgsDict']] master_node: The master node in the BDS instance
|
1165
1165
|
:param pulumi.Input[Union['BdsInstanceNetworkConfigArgs', 'BdsInstanceNetworkConfigArgsDict']] network_config: (Updatable) Additional configuration of the user's network.
|
1166
1166
|
:param pulumi.Input[builtins.str] os_patch_version: (Updatable) The version of the patch to be upated.
|
1167
|
-
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
1167
|
+
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
1168
1168
|
:param pulumi.Input[builtins.str] state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
|
1169
1169
|
:param pulumi.Input[Union['BdsInstanceUtilNodeArgs', 'BdsInstanceUtilNodeArgsDict']] util_node: The utility node in the BDS instance
|
1170
1170
|
"""
|
@@ -1385,7 +1385,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1385
1385
|
:param pulumi.Input[builtins.int] number_of_nodes: Number of nodes that forming the cluster
|
1386
1386
|
:param pulumi.Input[builtins.int] number_of_nodes_requiring_maintenance_reboot: Number of nodes that require a maintenance reboot
|
1387
1387
|
:param pulumi.Input[builtins.str] os_patch_version: (Updatable) The version of the patch to be upated.
|
1388
|
-
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
1388
|
+
:param pulumi.Input[builtins.str] remove_node: (Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
1389
1389
|
:param pulumi.Input[builtins.str] state: (Updatable) The target state for the Bds Instance. Could be set to `ACTIVE` or `INACTIVE` to start/stop the bds instance.
|
1390
1390
|
:param pulumi.Input[builtins.str] time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
|
1391
1391
|
:param pulumi.Input[builtins.str] time_updated: The time the BDS instance was updated. An RFC3339 formatted datetime string
|
@@ -1678,7 +1678,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1678
1678
|
@pulumi.getter(name="removeNode")
|
1679
1679
|
def remove_node(self) -> pulumi.Output[Optional[builtins.str]]:
|
1680
1680
|
"""
|
1681
|
-
(Updatable) An optional property when used triggers Remove Node. Takes the node ocid as input
|
1681
|
+
(Updatable) An optional property when used triggers Remove Node from an Active Cluster. Takes the node ocid as input
|
1682
1682
|
"""
|
1683
1683
|
return pulumi.get(self, "remove_node")
|
1684
1684
|
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -12916,11 +12916,11 @@ if not MYPY:
|
|
12916
12916
|
"""
|
12917
12917
|
hostname_label: NotRequired[pulumi.Input[builtins.str]]
|
12918
12918
|
"""
|
12919
|
-
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
12919
|
+
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
12920
12920
|
|
12921
12921
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
12922
12922
|
|
12923
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
12923
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
12924
12924
|
|
12925
12925
|
Example: `bminstance1`
|
12926
12926
|
|
@@ -12938,7 +12938,7 @@ if not MYPY:
|
|
12938
12938
|
"""
|
12939
12939
|
private_ip: NotRequired[pulumi.Input[builtins.str]]
|
12940
12940
|
"""
|
12941
|
-
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
12941
|
+
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
12942
12942
|
|
12943
12943
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
12944
12944
|
|
@@ -13004,11 +13004,11 @@ class InstanceCreateVnicDetailsArgs:
|
|
13004
13004
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
13005
13005
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
13006
13006
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
13007
|
-
:param pulumi.Input[builtins.str] hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
13007
|
+
:param pulumi.Input[builtins.str] hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
13008
13008
|
|
13009
13009
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
13010
13010
|
|
13011
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
13011
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
13012
13012
|
|
13013
13013
|
Example: `bminstance1`
|
13014
13014
|
|
@@ -13017,7 +13017,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
13017
13017
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
13018
13018
|
|
13019
13019
|
If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
13020
|
-
:param pulumi.Input[builtins.str] private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
13020
|
+
:param pulumi.Input[builtins.str] private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
13021
13021
|
|
13022
13022
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
13023
13023
|
|
@@ -13149,11 +13149,11 @@ class InstanceCreateVnicDetailsArgs:
|
|
13149
13149
|
@pulumi.getter(name="hostnameLabel")
|
13150
13150
|
def hostname_label(self) -> Optional[pulumi.Input[builtins.str]]:
|
13151
13151
|
"""
|
13152
|
-
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
13152
|
+
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
13153
13153
|
|
13154
13154
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
13155
13155
|
|
13156
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
13156
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
13157
13157
|
|
13158
13158
|
Example: `bminstance1`
|
13159
13159
|
|
@@ -13195,7 +13195,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
13195
13195
|
@pulumi.getter(name="privateIp")
|
13196
13196
|
def private_ip(self) -> Optional[pulumi.Input[builtins.str]]:
|
13197
13197
|
"""
|
13198
|
-
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
13198
|
+
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
13199
13199
|
|
13200
13200
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
13201
13201
|
|
@@ -13513,7 +13513,7 @@ if not MYPY:
|
|
13513
13513
|
class InstanceLaunchVolumeAttachmentArgsDict(TypedDict):
|
13514
13514
|
type: pulumi.Input[builtins.str]
|
13515
13515
|
"""
|
13516
|
-
The type of volume. Currently, the only supported
|
13516
|
+
The type of volume attachment. Currently, the only supported values are "iscsi" and "paravirtualized".
|
13517
13517
|
"""
|
13518
13518
|
device: NotRequired[pulumi.Input[builtins.str]]
|
13519
13519
|
"""
|
@@ -13573,7 +13573,7 @@ class InstanceLaunchVolumeAttachmentArgs:
|
|
13573
13573
|
use_chap: Optional[pulumi.Input[builtins.bool]] = None,
|
13574
13574
|
volume_id: Optional[pulumi.Input[builtins.str]] = None):
|
13575
13575
|
"""
|
13576
|
-
:param pulumi.Input[builtins.str] type: The type of volume. Currently, the only supported
|
13576
|
+
:param pulumi.Input[builtins.str] type: The type of volume attachment. Currently, the only supported values are "iscsi" and "paravirtualized".
|
13577
13577
|
:param pulumi.Input[builtins.str] device: The device name. To retrieve a list of devices for a given instance, see [ListInstanceDevices](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Device/ListInstanceDevices).
|
13578
13578
|
:param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
13579
13579
|
:param pulumi.Input[builtins.str] encryption_in_transit_type: Refer the top-level definition of encryptionInTransitType. The default value is NONE.
|
@@ -13611,7 +13611,7 @@ class InstanceLaunchVolumeAttachmentArgs:
|
|
13611
13611
|
@pulumi.getter
|
13612
13612
|
def type(self) -> pulumi.Input[builtins.str]:
|
13613
13613
|
"""
|
13614
|
-
The type of volume. Currently, the only supported
|
13614
|
+
The type of volume attachment. Currently, the only supported values are "iscsi" and "paravirtualized".
|
13615
13615
|
"""
|
13616
13616
|
return pulumi.get(self, "type")
|
13617
13617
|
|
@@ -18412,11 +18412,11 @@ if not MYPY:
|
|
18412
18412
|
"""
|
18413
18413
|
hostname_label: NotRequired[pulumi.Input[builtins.str]]
|
18414
18414
|
"""
|
18415
|
-
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
18415
|
+
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18416
18416
|
|
18417
18417
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
18418
18418
|
|
18419
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
18419
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
18420
18420
|
|
18421
18421
|
Example: `bminstance1`
|
18422
18422
|
|
@@ -18434,7 +18434,7 @@ if not MYPY:
|
|
18434
18434
|
"""
|
18435
18435
|
private_ip: NotRequired[pulumi.Input[builtins.str]]
|
18436
18436
|
"""
|
18437
|
-
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
18437
|
+
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18438
18438
|
|
18439
18439
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
18440
18440
|
|
@@ -18503,11 +18503,11 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18503
18503
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
18504
18504
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
18505
18505
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
18506
|
-
:param pulumi.Input[builtins.str] hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
18506
|
+
:param pulumi.Input[builtins.str] hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18507
18507
|
|
18508
18508
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
18509
18509
|
|
18510
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
18510
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
18511
18511
|
|
18512
18512
|
Example: `bminstance1`
|
18513
18513
|
|
@@ -18516,7 +18516,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18516
18516
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
18517
18517
|
|
18518
18518
|
If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
18519
|
-
:param pulumi.Input[builtins.str] private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
18519
|
+
:param pulumi.Input[builtins.str] private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18520
18520
|
|
18521
18521
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
18522
18522
|
|
@@ -18651,11 +18651,11 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18651
18651
|
@pulumi.getter(name="hostnameLabel")
|
18652
18652
|
def hostname_label(self) -> Optional[pulumi.Input[builtins.str]]:
|
18653
18653
|
"""
|
18654
|
-
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the
|
18654
|
+
(Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18655
18655
|
|
18656
18656
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
18657
18657
|
|
18658
|
-
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in
|
18658
|
+
When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
|
18659
18659
|
|
18660
18660
|
Example: `bminstance1`
|
18661
18661
|
|
@@ -18697,7 +18697,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18697
18697
|
@pulumi.getter(name="privateIp")
|
18698
18698
|
def private_ip(self) -> Optional[pulumi.Input[builtins.str]]:
|
18699
18699
|
"""
|
18700
|
-
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the
|
18700
|
+
A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
18701
18701
|
|
18702
18702
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
18703
18703
|
|
pulumi_oci/core/get_ipv6.py
CHANGED
@@ -27,7 +27,7 @@ class GetIpv6Result:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getIpv6.
|
29
29
|
"""
|
30
|
-
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
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_address=None, ip_state=None, ipv6id=None, ipv6subnet_cidr=None, lifetime=None, route_table_id=None, state=None, subnet_id=None, time_created=None, vnic_id=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -46,12 +46,18 @@ class GetIpv6Result:
|
|
46
46
|
if ip_address and not isinstance(ip_address, str):
|
47
47
|
raise TypeError("Expected argument 'ip_address' to be a str")
|
48
48
|
pulumi.set(__self__, "ip_address", ip_address)
|
49
|
+
if ip_state and not isinstance(ip_state, str):
|
50
|
+
raise TypeError("Expected argument 'ip_state' to be a str")
|
51
|
+
pulumi.set(__self__, "ip_state", ip_state)
|
49
52
|
if ipv6id and not isinstance(ipv6id, str):
|
50
53
|
raise TypeError("Expected argument 'ipv6id' to be a str")
|
51
54
|
pulumi.set(__self__, "ipv6id", ipv6id)
|
52
55
|
if ipv6subnet_cidr and not isinstance(ipv6subnet_cidr, str):
|
53
56
|
raise TypeError("Expected argument 'ipv6subnet_cidr' to be a str")
|
54
57
|
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
58
|
+
if lifetime and not isinstance(lifetime, str):
|
59
|
+
raise TypeError("Expected argument 'lifetime' to be a str")
|
60
|
+
pulumi.set(__self__, "lifetime", lifetime)
|
55
61
|
if route_table_id and not isinstance(route_table_id, str):
|
56
62
|
raise TypeError("Expected argument 'route_table_id' to be a str")
|
57
63
|
pulumi.set(__self__, "route_table_id", route_table_id)
|
@@ -116,6 +122,14 @@ class GetIpv6Result:
|
|
116
122
|
"""
|
117
123
|
return pulumi.get(self, "ip_address")
|
118
124
|
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="ipState")
|
127
|
+
def ip_state(self) -> builtins.str:
|
128
|
+
"""
|
129
|
+
State of the IP address. If an IP address is assigned to a VNIC it is ASSIGNED, otherwise it is AVAILABLE.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "ip_state")
|
132
|
+
|
119
133
|
@property
|
120
134
|
@pulumi.getter
|
121
135
|
def ipv6id(self) -> builtins.str:
|
@@ -126,11 +140,21 @@ class GetIpv6Result:
|
|
126
140
|
def ipv6subnet_cidr(self) -> builtins.str:
|
127
141
|
return pulumi.get(self, "ipv6subnet_cidr")
|
128
142
|
|
143
|
+
@property
|
144
|
+
@pulumi.getter
|
145
|
+
def lifetime(self) -> builtins.str:
|
146
|
+
"""
|
147
|
+
Lifetime of the IP address. There are two types of IPv6 IPs:
|
148
|
+
* Ephemeral
|
149
|
+
* Reserved
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "lifetime")
|
152
|
+
|
129
153
|
@property
|
130
154
|
@pulumi.getter(name="routeTableId")
|
131
155
|
def route_table_id(self) -> builtins.str:
|
132
156
|
"""
|
133
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the
|
157
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the IP address or VNIC will use. For more information, see [Source Based Routing](https://docs.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#Overview_of_Routing_for_Your_VCN__source_routing).
|
134
158
|
"""
|
135
159
|
return pulumi.get(self, "route_table_id")
|
136
160
|
|
@@ -179,8 +203,10 @@ class AwaitableGetIpv6Result(GetIpv6Result):
|
|
179
203
|
freeform_tags=self.freeform_tags,
|
180
204
|
id=self.id,
|
181
205
|
ip_address=self.ip_address,
|
206
|
+
ip_state=self.ip_state,
|
182
207
|
ipv6id=self.ipv6id,
|
183
208
|
ipv6subnet_cidr=self.ipv6subnet_cidr,
|
209
|
+
lifetime=self.lifetime,
|
184
210
|
route_table_id=self.route_table_id,
|
185
211
|
state=self.state,
|
186
212
|
subnet_id=self.subnet_id,
|
@@ -222,8 +248,10 @@ def get_ipv6(ipv6id: Optional[builtins.str] = None,
|
|
222
248
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
223
249
|
id=pulumi.get(__ret__, 'id'),
|
224
250
|
ip_address=pulumi.get(__ret__, 'ip_address'),
|
251
|
+
ip_state=pulumi.get(__ret__, 'ip_state'),
|
225
252
|
ipv6id=pulumi.get(__ret__, 'ipv6id'),
|
226
253
|
ipv6subnet_cidr=pulumi.get(__ret__, 'ipv6subnet_cidr'),
|
254
|
+
lifetime=pulumi.get(__ret__, 'lifetime'),
|
227
255
|
route_table_id=pulumi.get(__ret__, 'route_table_id'),
|
228
256
|
state=pulumi.get(__ret__, 'state'),
|
229
257
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
@@ -262,8 +290,10 @@ def get_ipv6_output(ipv6id: Optional[pulumi.Input[builtins.str]] = None,
|
|
262
290
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
263
291
|
id=pulumi.get(__response__, 'id'),
|
264
292
|
ip_address=pulumi.get(__response__, 'ip_address'),
|
293
|
+
ip_state=pulumi.get(__response__, 'ip_state'),
|
265
294
|
ipv6id=pulumi.get(__response__, 'ipv6id'),
|
266
295
|
ipv6subnet_cidr=pulumi.get(__response__, 'ipv6subnet_cidr'),
|
296
|
+
lifetime=pulumi.get(__response__, 'lifetime'),
|
267
297
|
route_table_id=pulumi.get(__response__, 'route_table_id'),
|
268
298
|
state=pulumi.get(__response__, 'state'),
|
269
299
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
@@ -27,7 +27,7 @@ class GetPrivateIpResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getPrivateIp.
|
29
29
|
"""
|
30
|
-
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
|
+
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, ip_state=None, is_primary=None, is_reserved=None, lifetime=None, private_ip_id=None, route_table_id=None, subnet_id=None, time_created=None, vlan_id=None, vnic_id=None):
|
31
31
|
if availability_domain and not isinstance(availability_domain, str):
|
32
32
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -52,12 +52,18 @@ class GetPrivateIpResult:
|
|
52
52
|
if ip_address and not isinstance(ip_address, str):
|
53
53
|
raise TypeError("Expected argument 'ip_address' to be a str")
|
54
54
|
pulumi.set(__self__, "ip_address", ip_address)
|
55
|
+
if ip_state and not isinstance(ip_state, str):
|
56
|
+
raise TypeError("Expected argument 'ip_state' to be a str")
|
57
|
+
pulumi.set(__self__, "ip_state", ip_state)
|
55
58
|
if is_primary and not isinstance(is_primary, bool):
|
56
59
|
raise TypeError("Expected argument 'is_primary' to be a bool")
|
57
60
|
pulumi.set(__self__, "is_primary", is_primary)
|
58
61
|
if is_reserved and not isinstance(is_reserved, bool):
|
59
62
|
raise TypeError("Expected argument 'is_reserved' to be a bool")
|
60
63
|
pulumi.set(__self__, "is_reserved", is_reserved)
|
64
|
+
if lifetime and not isinstance(lifetime, str):
|
65
|
+
raise TypeError("Expected argument 'lifetime' to be a str")
|
66
|
+
pulumi.set(__self__, "lifetime", lifetime)
|
61
67
|
if private_ip_id and not isinstance(private_ip_id, str):
|
62
68
|
raise TypeError("Expected argument 'private_ip_id' to be a str")
|
63
69
|
pulumi.set(__self__, "private_ip_id", private_ip_id)
|
@@ -141,6 +147,14 @@ class GetPrivateIpResult:
|
|
141
147
|
"""
|
142
148
|
return pulumi.get(self, "ip_address")
|
143
149
|
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="ipState")
|
152
|
+
def ip_state(self) -> builtins.str:
|
153
|
+
"""
|
154
|
+
State of the IP address. If an IP address is assigned to a VNIC it is ASSIGNED, otherwise it is AVAILABLE.
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "ip_state")
|
157
|
+
|
144
158
|
@property
|
145
159
|
@pulumi.getter(name="isPrimary")
|
146
160
|
def is_primary(self) -> builtins.bool:
|
@@ -152,10 +166,17 @@ class GetPrivateIpResult:
|
|
152
166
|
@property
|
153
167
|
@pulumi.getter(name="isReserved")
|
154
168
|
def is_reserved(self) -> builtins.bool:
|
169
|
+
return pulumi.get(self, "is_reserved")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter
|
173
|
+
def lifetime(self) -> builtins.str:
|
155
174
|
"""
|
156
|
-
|
175
|
+
Lifetime of the IP address. There are two types of IPv6 IPs:
|
176
|
+
* Ephemeral
|
177
|
+
* Reserved
|
157
178
|
"""
|
158
|
-
return pulumi.get(self, "
|
179
|
+
return pulumi.get(self, "lifetime")
|
159
180
|
|
160
181
|
@property
|
161
182
|
@pulumi.getter(name="privateIpId")
|
@@ -165,6 +186,9 @@ class GetPrivateIpResult:
|
|
165
186
|
@property
|
166
187
|
@pulumi.getter(name="routeTableId")
|
167
188
|
def route_table_id(self) -> builtins.str:
|
189
|
+
"""
|
190
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table the IP address or VNIC will use. For more information, see [Source Based Routing](https://docs.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#Overview_of_Routing_for_Your_VCN__source_routing).
|
191
|
+
"""
|
168
192
|
return pulumi.get(self, "route_table_id")
|
169
193
|
|
170
194
|
@property
|
@@ -214,8 +238,10 @@ class AwaitableGetPrivateIpResult(GetPrivateIpResult):
|
|
214
238
|
hostname_label=self.hostname_label,
|
215
239
|
id=self.id,
|
216
240
|
ip_address=self.ip_address,
|
241
|
+
ip_state=self.ip_state,
|
217
242
|
is_primary=self.is_primary,
|
218
243
|
is_reserved=self.is_reserved,
|
244
|
+
lifetime=self.lifetime,
|
219
245
|
private_ip_id=self.private_ip_id,
|
220
246
|
route_table_id=self.route_table_id,
|
221
247
|
subnet_id=self.subnet_id,
|
@@ -260,8 +286,10 @@ def get_private_ip(private_ip_id: Optional[builtins.str] = None,
|
|
260
286
|
hostname_label=pulumi.get(__ret__, 'hostname_label'),
|
261
287
|
id=pulumi.get(__ret__, 'id'),
|
262
288
|
ip_address=pulumi.get(__ret__, 'ip_address'),
|
289
|
+
ip_state=pulumi.get(__ret__, 'ip_state'),
|
263
290
|
is_primary=pulumi.get(__ret__, 'is_primary'),
|
264
291
|
is_reserved=pulumi.get(__ret__, 'is_reserved'),
|
292
|
+
lifetime=pulumi.get(__ret__, 'lifetime'),
|
265
293
|
private_ip_id=pulumi.get(__ret__, 'private_ip_id'),
|
266
294
|
route_table_id=pulumi.get(__ret__, 'route_table_id'),
|
267
295
|
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
@@ -303,8 +331,10 @@ def get_private_ip_output(private_ip_id: Optional[pulumi.Input[builtins.str]] =
|
|
303
331
|
hostname_label=pulumi.get(__response__, 'hostname_label'),
|
304
332
|
id=pulumi.get(__response__, 'id'),
|
305
333
|
ip_address=pulumi.get(__response__, 'ip_address'),
|
334
|
+
ip_state=pulumi.get(__response__, 'ip_state'),
|
306
335
|
is_primary=pulumi.get(__response__, 'is_primary'),
|
307
336
|
is_reserved=pulumi.get(__response__, 'is_reserved'),
|
337
|
+
lifetime=pulumi.get(__response__, 'lifetime'),
|
308
338
|
private_ip_id=pulumi.get(__response__, 'private_ip_id'),
|
309
339
|
route_table_id=pulumi.get(__response__, 'route_table_id'),
|
310
340
|
subnet_id=pulumi.get(__response__, 'subnet_id'),
|