pulumi-oci 2.30.0a1744439401__py3-none-any.whl → 2.31.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/containerengine/_inputs.py +20 -19
- pulumi_oci/containerengine/container_instance.py +2 -2
- pulumi_oci/containerengine/outputs.py +12 -11
- 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/functions/invoke_function.py +52 -3
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +238 -1
- pulumi_oci/goldengate/deployment.py +308 -68
- pulumi_oci/goldengate/get_deployment.py +85 -1
- pulumi_oci/goldengate/get_deployment_peers.py +192 -0
- pulumi_oci/goldengate/get_pipeline.py +15 -1
- pulumi_oci/goldengate/get_pipeline_running_processes.py +2 -2
- pulumi_oci/goldengate/outputs.py +627 -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/loadbalancer/load_balancer.py +49 -0
- pulumi_oci/loadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/sch/_inputs.py +223 -1
- pulumi_oci/sch/outputs.py +472 -31
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/RECORD +33 -32
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.30.0a1744439401.dist-info → pulumi_oci-2.31.0.dist-info}/top_level.txt +0 -0
@@ -2061,10 +2061,6 @@ if not MYPY:
|
|
2061
2061
|
"""
|
2062
2062
|
Container health check type.
|
2063
2063
|
"""
|
2064
|
-
port: pulumi.Input[builtins.int]
|
2065
|
-
"""
|
2066
|
-
Container health check HTTP port.
|
2067
|
-
"""
|
2068
2064
|
failure_action: NotRequired[pulumi.Input[builtins.str]]
|
2069
2065
|
"""
|
2070
2066
|
The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.
|
@@ -2093,6 +2089,10 @@ if not MYPY:
|
|
2093
2089
|
"""
|
2094
2090
|
Container health check HTTP path.
|
2095
2091
|
"""
|
2092
|
+
port: NotRequired[pulumi.Input[builtins.int]]
|
2093
|
+
"""
|
2094
|
+
Container health check HTTP port.
|
2095
|
+
"""
|
2096
2096
|
status: NotRequired[pulumi.Input[builtins.str]]
|
2097
2097
|
status_details: NotRequired[pulumi.Input[builtins.str]]
|
2098
2098
|
success_threshold: NotRequired[pulumi.Input[builtins.int]]
|
@@ -2110,7 +2110,6 @@ elif False:
|
|
2110
2110
|
class ContainerInstanceContainerHealthCheckArgs:
|
2111
2111
|
def __init__(__self__, *,
|
2112
2112
|
health_check_type: pulumi.Input[builtins.str],
|
2113
|
-
port: pulumi.Input[builtins.int],
|
2114
2113
|
failure_action: Optional[pulumi.Input[builtins.str]] = None,
|
2115
2114
|
failure_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
2116
2115
|
headers: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerInstanceContainerHealthCheckHeaderArgs']]]] = None,
|
@@ -2118,13 +2117,13 @@ class ContainerInstanceContainerHealthCheckArgs:
|
|
2118
2117
|
interval_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
2119
2118
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
2120
2119
|
path: Optional[pulumi.Input[builtins.str]] = None,
|
2120
|
+
port: Optional[pulumi.Input[builtins.int]] = None,
|
2121
2121
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
2122
2122
|
status_details: Optional[pulumi.Input[builtins.str]] = None,
|
2123
2123
|
success_threshold: Optional[pulumi.Input[builtins.int]] = None,
|
2124
2124
|
timeout_in_seconds: Optional[pulumi.Input[builtins.int]] = None):
|
2125
2125
|
"""
|
2126
2126
|
:param pulumi.Input[builtins.str] health_check_type: Container health check type.
|
2127
|
-
:param pulumi.Input[builtins.int] port: Container health check HTTP port.
|
2128
2127
|
:param pulumi.Input[builtins.str] failure_action: The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.
|
2129
2128
|
:param pulumi.Input[builtins.int] failure_threshold: Number of consecutive failures at which we consider the check failed.
|
2130
2129
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerInstanceContainerHealthCheckHeaderArgs']]] headers: Container health check HTTP headers.
|
@@ -2132,11 +2131,11 @@ class ContainerInstanceContainerHealthCheckArgs:
|
|
2132
2131
|
:param pulumi.Input[builtins.int] interval_in_seconds: Number of seconds between two consecutive runs for checking container health.
|
2133
2132
|
:param pulumi.Input[builtins.str] name: Health check name.
|
2134
2133
|
:param pulumi.Input[builtins.str] path: Container health check HTTP path.
|
2134
|
+
:param pulumi.Input[builtins.int] port: Container health check HTTP port.
|
2135
2135
|
:param pulumi.Input[builtins.int] success_threshold: Number of consecutive successes at which we consider the check succeeded again after it was in failure state.
|
2136
2136
|
:param pulumi.Input[builtins.int] timeout_in_seconds: Length of waiting time in seconds before marking health check failed.
|
2137
2137
|
"""
|
2138
2138
|
pulumi.set(__self__, "health_check_type", health_check_type)
|
2139
|
-
pulumi.set(__self__, "port", port)
|
2140
2139
|
if failure_action is not None:
|
2141
2140
|
pulumi.set(__self__, "failure_action", failure_action)
|
2142
2141
|
if failure_threshold is not None:
|
@@ -2151,6 +2150,8 @@ class ContainerInstanceContainerHealthCheckArgs:
|
|
2151
2150
|
pulumi.set(__self__, "name", name)
|
2152
2151
|
if path is not None:
|
2153
2152
|
pulumi.set(__self__, "path", path)
|
2153
|
+
if port is not None:
|
2154
|
+
pulumi.set(__self__, "port", port)
|
2154
2155
|
if status is not None:
|
2155
2156
|
pulumi.set(__self__, "status", status)
|
2156
2157
|
if status_details is not None:
|
@@ -2172,18 +2173,6 @@ class ContainerInstanceContainerHealthCheckArgs:
|
|
2172
2173
|
def health_check_type(self, value: pulumi.Input[builtins.str]):
|
2173
2174
|
pulumi.set(self, "health_check_type", value)
|
2174
2175
|
|
2175
|
-
@property
|
2176
|
-
@pulumi.getter
|
2177
|
-
def port(self) -> pulumi.Input[builtins.int]:
|
2178
|
-
"""
|
2179
|
-
Container health check HTTP port.
|
2180
|
-
"""
|
2181
|
-
return pulumi.get(self, "port")
|
2182
|
-
|
2183
|
-
@port.setter
|
2184
|
-
def port(self, value: pulumi.Input[builtins.int]):
|
2185
|
-
pulumi.set(self, "port", value)
|
2186
|
-
|
2187
2176
|
@property
|
2188
2177
|
@pulumi.getter(name="failureAction")
|
2189
2178
|
def failure_action(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -2268,6 +2257,18 @@ class ContainerInstanceContainerHealthCheckArgs:
|
|
2268
2257
|
def path(self, value: Optional[pulumi.Input[builtins.str]]):
|
2269
2258
|
pulumi.set(self, "path", value)
|
2270
2259
|
|
2260
|
+
@property
|
2261
|
+
@pulumi.getter
|
2262
|
+
def port(self) -> Optional[pulumi.Input[builtins.int]]:
|
2263
|
+
"""
|
2264
|
+
Container health check HTTP port.
|
2265
|
+
"""
|
2266
|
+
return pulumi.get(self, "port")
|
2267
|
+
|
2268
|
+
@port.setter
|
2269
|
+
def port(self, value: Optional[pulumi.Input[builtins.int]]):
|
2270
|
+
pulumi.set(self, "port", value)
|
2271
|
+
|
2271
2272
|
@property
|
2272
2273
|
@pulumi.getter
|
2273
2274
|
def status(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -707,7 +707,6 @@ class ContainerInstance(pulumi.CustomResource):
|
|
707
707
|
"freeform_tags": container_instance_containers_freeform_tags,
|
708
708
|
"health_checks": [{
|
709
709
|
"health_check_type": container_instance_containers_health_checks_health_check_type,
|
710
|
-
"port": container_instance_containers_health_checks_port,
|
711
710
|
"failure_action": container_instance_containers_health_checks_failure_action,
|
712
711
|
"failure_threshold": container_instance_containers_health_checks_failure_threshold,
|
713
712
|
"headers": [{
|
@@ -718,6 +717,7 @@ class ContainerInstance(pulumi.CustomResource):
|
|
718
717
|
"interval_in_seconds": container_instance_containers_health_checks_interval_in_seconds,
|
719
718
|
"name": container_instance_containers_health_checks_name,
|
720
719
|
"path": container_instance_containers_health_checks_path,
|
720
|
+
"port": container_instance_containers_health_checks_port,
|
721
721
|
"success_threshold": container_instance_containers_health_checks_success_threshold,
|
722
722
|
"timeout_in_seconds": container_instance_containers_health_checks_timeout_in_seconds,
|
723
723
|
}],
|
@@ -859,7 +859,6 @@ class ContainerInstance(pulumi.CustomResource):
|
|
859
859
|
"freeform_tags": container_instance_containers_freeform_tags,
|
860
860
|
"health_checks": [{
|
861
861
|
"health_check_type": container_instance_containers_health_checks_health_check_type,
|
862
|
-
"port": container_instance_containers_health_checks_port,
|
863
862
|
"failure_action": container_instance_containers_health_checks_failure_action,
|
864
863
|
"failure_threshold": container_instance_containers_health_checks_failure_threshold,
|
865
864
|
"headers": [{
|
@@ -870,6 +869,7 @@ class ContainerInstance(pulumi.CustomResource):
|
|
870
869
|
"interval_in_seconds": container_instance_containers_health_checks_interval_in_seconds,
|
871
870
|
"name": container_instance_containers_health_checks_name,
|
872
871
|
"path": container_instance_containers_health_checks_path,
|
872
|
+
"port": container_instance_containers_health_checks_port,
|
873
873
|
"success_threshold": container_instance_containers_health_checks_success_threshold,
|
874
874
|
"timeout_in_seconds": container_instance_containers_health_checks_timeout_in_seconds,
|
875
875
|
}],
|
@@ -1720,7 +1720,6 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1720
1720
|
|
1721
1721
|
def __init__(__self__, *,
|
1722
1722
|
health_check_type: builtins.str,
|
1723
|
-
port: builtins.int,
|
1724
1723
|
failure_action: Optional[builtins.str] = None,
|
1725
1724
|
failure_threshold: Optional[builtins.int] = None,
|
1726
1725
|
headers: Optional[Sequence['outputs.ContainerInstanceContainerHealthCheckHeader']] = None,
|
@@ -1728,13 +1727,13 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1728
1727
|
interval_in_seconds: Optional[builtins.int] = None,
|
1729
1728
|
name: Optional[builtins.str] = None,
|
1730
1729
|
path: Optional[builtins.str] = None,
|
1730
|
+
port: Optional[builtins.int] = None,
|
1731
1731
|
status: Optional[builtins.str] = None,
|
1732
1732
|
status_details: Optional[builtins.str] = None,
|
1733
1733
|
success_threshold: Optional[builtins.int] = None,
|
1734
1734
|
timeout_in_seconds: Optional[builtins.int] = None):
|
1735
1735
|
"""
|
1736
1736
|
:param builtins.str health_check_type: Container health check type.
|
1737
|
-
:param builtins.int port: Container health check HTTP port.
|
1738
1737
|
:param builtins.str failure_action: The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.
|
1739
1738
|
:param builtins.int failure_threshold: Number of consecutive failures at which we consider the check failed.
|
1740
1739
|
:param Sequence['ContainerInstanceContainerHealthCheckHeaderArgs'] headers: Container health check HTTP headers.
|
@@ -1742,11 +1741,11 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1742
1741
|
:param builtins.int interval_in_seconds: Number of seconds between two consecutive runs for checking container health.
|
1743
1742
|
:param builtins.str name: Health check name.
|
1744
1743
|
:param builtins.str path: Container health check HTTP path.
|
1744
|
+
:param builtins.int port: Container health check HTTP port.
|
1745
1745
|
:param builtins.int success_threshold: Number of consecutive successes at which we consider the check succeeded again after it was in failure state.
|
1746
1746
|
:param builtins.int timeout_in_seconds: Length of waiting time in seconds before marking health check failed.
|
1747
1747
|
"""
|
1748
1748
|
pulumi.set(__self__, "health_check_type", health_check_type)
|
1749
|
-
pulumi.set(__self__, "port", port)
|
1750
1749
|
if failure_action is not None:
|
1751
1750
|
pulumi.set(__self__, "failure_action", failure_action)
|
1752
1751
|
if failure_threshold is not None:
|
@@ -1761,6 +1760,8 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1761
1760
|
pulumi.set(__self__, "name", name)
|
1762
1761
|
if path is not None:
|
1763
1762
|
pulumi.set(__self__, "path", path)
|
1763
|
+
if port is not None:
|
1764
|
+
pulumi.set(__self__, "port", port)
|
1764
1765
|
if status is not None:
|
1765
1766
|
pulumi.set(__self__, "status", status)
|
1766
1767
|
if status_details is not None:
|
@@ -1778,14 +1779,6 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1778
1779
|
"""
|
1779
1780
|
return pulumi.get(self, "health_check_type")
|
1780
1781
|
|
1781
|
-
@property
|
1782
|
-
@pulumi.getter
|
1783
|
-
def port(self) -> builtins.int:
|
1784
|
-
"""
|
1785
|
-
Container health check HTTP port.
|
1786
|
-
"""
|
1787
|
-
return pulumi.get(self, "port")
|
1788
|
-
|
1789
1782
|
@property
|
1790
1783
|
@pulumi.getter(name="failureAction")
|
1791
1784
|
def failure_action(self) -> Optional[builtins.str]:
|
@@ -1842,6 +1835,14 @@ class ContainerInstanceContainerHealthCheck(dict):
|
|
1842
1835
|
"""
|
1843
1836
|
return pulumi.get(self, "path")
|
1844
1837
|
|
1838
|
+
@property
|
1839
|
+
@pulumi.getter
|
1840
|
+
def port(self) -> Optional[builtins.int]:
|
1841
|
+
"""
|
1842
|
+
Container health check HTTP port.
|
1843
|
+
"""
|
1844
|
+
return pulumi.get(self, "port")
|
1845
|
+
|
1845
1846
|
@property
|
1846
1847
|
@pulumi.getter
|
1847
1848
|
def status(self) -> Optional[builtins.str]:
|
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'),
|