pulumi-oci 2.21.0a1736852431__py3-none-any.whl → 2.21.0a1737573335__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/core/_inputs.py +271 -21
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +47 -0
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +562 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/METADATA +7 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/RECORD +22 -22
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.21.0a1737573335.dist-info}/top_level.txt +0 -0
pulumi_oci/core/_inputs.py
CHANGED
@@ -183,6 +183,8 @@ __all__ = [
|
|
183
183
|
'InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgsDict',
|
184
184
|
'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs',
|
185
185
|
'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgsDict',
|
186
|
+
'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs',
|
187
|
+
'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict',
|
186
188
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs',
|
187
189
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict',
|
188
190
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs',
|
@@ -225,6 +227,8 @@ __all__ = [
|
|
225
227
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsInstanceOptionsArgsDict',
|
226
228
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs',
|
227
229
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgsDict',
|
230
|
+
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs',
|
231
|
+
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict',
|
228
232
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs',
|
229
233
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict',
|
230
234
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs',
|
@@ -261,6 +265,8 @@ __all__ = [
|
|
261
265
|
'InstanceLaunchVolumeAttachmentArgsDict',
|
262
266
|
'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs',
|
263
267
|
'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgsDict',
|
268
|
+
'InstanceLicensingConfigsArgs',
|
269
|
+
'InstanceLicensingConfigsArgsDict',
|
264
270
|
'InstancePlatformConfigArgs',
|
265
271
|
'InstancePlatformConfigArgsDict',
|
266
272
|
'InstancePoolInstanceLoadBalancerBackendArgs',
|
@@ -7069,6 +7075,10 @@ if not MYPY:
|
|
7069
7075
|
"""
|
7070
7076
|
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
7071
7077
|
"""
|
7078
|
+
licensing_configs: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict']]
|
7079
|
+
"""
|
7080
|
+
List of licensing configurations associated with target launch values.
|
7081
|
+
"""
|
7072
7082
|
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7073
7083
|
"""
|
7074
7084
|
Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
@@ -7117,7 +7127,7 @@ if not MYPY:
|
|
7117
7127
|
"""
|
7118
7128
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7119
7129
|
"""
|
7120
|
-
Security
|
7130
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7121
7131
|
"""
|
7122
7132
|
shape: NotRequired[pulumi.Input[str]]
|
7123
7133
|
"""
|
@@ -7158,6 +7168,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7158
7168
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
7159
7169
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
7160
7170
|
launch_options: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs']] = None,
|
7171
|
+
licensing_configs: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']] = None,
|
7161
7172
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
7162
7173
|
platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']] = None,
|
7163
7174
|
preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
|
@@ -7211,6 +7222,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7211
7222
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
7212
7223
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
7213
7224
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
7225
|
+
:param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
7214
7226
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
7215
7227
|
|
7216
7228
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -7245,7 +7257,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7245
7257
|
:param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
7246
7258
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
7247
7259
|
* `REBOOT` - Run maintenance using a reboot.
|
7248
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
7260
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7249
7261
|
:param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
7250
7262
|
|
7251
7263
|
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
@@ -7291,6 +7303,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7291
7303
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
7292
7304
|
if launch_options is not None:
|
7293
7305
|
pulumi.set(__self__, "launch_options", launch_options)
|
7306
|
+
if licensing_configs is not None:
|
7307
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
7294
7308
|
if metadata is not None:
|
7295
7309
|
pulumi.set(__self__, "metadata", metadata)
|
7296
7310
|
if platform_config is not None:
|
@@ -7550,6 +7564,18 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7550
7564
|
def launch_options(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs']]):
|
7551
7565
|
pulumi.set(self, "launch_options", value)
|
7552
7566
|
|
7567
|
+
@property
|
7568
|
+
@pulumi.getter(name="licensingConfigs")
|
7569
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']]:
|
7570
|
+
"""
|
7571
|
+
List of licensing configurations associated with target launch values.
|
7572
|
+
"""
|
7573
|
+
return pulumi.get(self, "licensing_configs")
|
7574
|
+
|
7575
|
+
@licensing_configs.setter
|
7576
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']]):
|
7577
|
+
pulumi.set(self, "licensing_configs", value)
|
7578
|
+
|
7553
7579
|
@property
|
7554
7580
|
@pulumi.getter
|
7555
7581
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -7632,7 +7658,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7632
7658
|
@pulumi.getter(name="securityAttributes")
|
7633
7659
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
7634
7660
|
"""
|
7635
|
-
Security
|
7661
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7636
7662
|
"""
|
7637
7663
|
return pulumi.get(self, "security_attributes")
|
7638
7664
|
|
@@ -7932,7 +7958,7 @@ if not MYPY:
|
|
7932
7958
|
"""
|
7933
7959
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7934
7960
|
"""
|
7935
|
-
Security
|
7961
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7936
7962
|
"""
|
7937
7963
|
skip_source_dest_check: NotRequired[pulumi.Input[bool]]
|
7938
7964
|
"""
|
@@ -7972,7 +7998,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
|
|
7972
7998
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
|
7973
7999
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: 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/).
|
7974
8000
|
:param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7975
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
8001
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7976
8002
|
:param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7977
8003
|
:param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7978
8004
|
"""
|
@@ -8127,7 +8153,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
|
|
8127
8153
|
@pulumi.getter(name="securityAttributes")
|
8128
8154
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
8129
8155
|
"""
|
8130
|
-
Security
|
8156
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
8131
8157
|
"""
|
8132
8158
|
return pulumi.get(self, "security_attributes")
|
8133
8159
|
|
@@ -8421,6 +8447,63 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs:
|
|
8421
8447
|
pulumi.set(self, "remote_data_volume_type", value)
|
8422
8448
|
|
8423
8449
|
|
8450
|
+
if not MYPY:
|
8451
|
+
class InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict(TypedDict):
|
8452
|
+
type: pulumi.Input[str]
|
8453
|
+
"""
|
8454
|
+
The type of action to run when the instance is interrupted for eviction.
|
8455
|
+
"""
|
8456
|
+
license_type: NotRequired[pulumi.Input[str]]
|
8457
|
+
"""
|
8458
|
+
License Type for the OS license.
|
8459
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8460
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8461
|
+
"""
|
8462
|
+
elif False:
|
8463
|
+
InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
8464
|
+
|
8465
|
+
@pulumi.input_type
|
8466
|
+
class InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs:
|
8467
|
+
def __init__(__self__, *,
|
8468
|
+
type: pulumi.Input[str],
|
8469
|
+
license_type: Optional[pulumi.Input[str]] = None):
|
8470
|
+
"""
|
8471
|
+
:param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
|
8472
|
+
:param pulumi.Input[str] license_type: License Type for the OS license.
|
8473
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8474
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8475
|
+
"""
|
8476
|
+
pulumi.set(__self__, "type", type)
|
8477
|
+
if license_type is not None:
|
8478
|
+
pulumi.set(__self__, "license_type", license_type)
|
8479
|
+
|
8480
|
+
@property
|
8481
|
+
@pulumi.getter
|
8482
|
+
def type(self) -> pulumi.Input[str]:
|
8483
|
+
"""
|
8484
|
+
The type of action to run when the instance is interrupted for eviction.
|
8485
|
+
"""
|
8486
|
+
return pulumi.get(self, "type")
|
8487
|
+
|
8488
|
+
@type.setter
|
8489
|
+
def type(self, value: pulumi.Input[str]):
|
8490
|
+
pulumi.set(self, "type", value)
|
8491
|
+
|
8492
|
+
@property
|
8493
|
+
@pulumi.getter(name="licenseType")
|
8494
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
8495
|
+
"""
|
8496
|
+
License Type for the OS license.
|
8497
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8498
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8499
|
+
"""
|
8500
|
+
return pulumi.get(self, "license_type")
|
8501
|
+
|
8502
|
+
@license_type.setter
|
8503
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
8504
|
+
pulumi.set(self, "license_type", value)
|
8505
|
+
|
8506
|
+
|
8424
8507
|
if not MYPY:
|
8425
8508
|
class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict(TypedDict):
|
8426
8509
|
type: pulumi.Input[str]
|
@@ -9986,6 +10069,10 @@ if not MYPY:
|
|
9986
10069
|
"""
|
9987
10070
|
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
9988
10071
|
"""
|
10072
|
+
licensing_configs: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict']]
|
10073
|
+
"""
|
10074
|
+
List of licensing configurations associated with target launch values.
|
10075
|
+
"""
|
9989
10076
|
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9990
10077
|
"""
|
9991
10078
|
Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
@@ -10006,7 +10093,7 @@ if not MYPY:
|
|
10006
10093
|
"""
|
10007
10094
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10008
10095
|
"""
|
10009
|
-
Security
|
10096
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10010
10097
|
"""
|
10011
10098
|
shape: NotRequired[pulumi.Input[str]]
|
10012
10099
|
"""
|
@@ -10041,6 +10128,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10041
10128
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
10042
10129
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
10043
10130
|
launch_options: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs']] = None,
|
10131
|
+
licensing_configs: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']] = None,
|
10044
10132
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
10045
10133
|
platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs']] = None,
|
10046
10134
|
preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
|
@@ -10072,13 +10160,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10072
10160
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
10073
10161
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
10074
10162
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
10163
|
+
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
10075
10164
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
10076
10165
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs'] platform_config: The platform configuration requested for the instance.
|
10077
10166
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
|
10078
10167
|
:param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
10079
10168
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
10080
10169
|
* `REBOOT` - Run maintenance using a reboot.
|
10081
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
10170
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10082
10171
|
:param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
10083
10172
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
|
10084
10173
|
"""
|
@@ -10118,6 +10207,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10118
10207
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
10119
10208
|
if launch_options is not None:
|
10120
10209
|
pulumi.set(__self__, "launch_options", launch_options)
|
10210
|
+
if licensing_configs is not None:
|
10211
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
10121
10212
|
if metadata is not None:
|
10122
10213
|
pulumi.set(__self__, "metadata", metadata)
|
10123
10214
|
if platform_config is not None:
|
@@ -10355,6 +10446,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10355
10446
|
def launch_options(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs']]):
|
10356
10447
|
pulumi.set(self, "launch_options", value)
|
10357
10448
|
|
10449
|
+
@property
|
10450
|
+
@pulumi.getter(name="licensingConfigs")
|
10451
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']]:
|
10452
|
+
"""
|
10453
|
+
List of licensing configurations associated with target launch values.
|
10454
|
+
"""
|
10455
|
+
return pulumi.get(self, "licensing_configs")
|
10456
|
+
|
10457
|
+
@licensing_configs.setter
|
10458
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']]):
|
10459
|
+
pulumi.set(self, "licensing_configs", value)
|
10460
|
+
|
10358
10461
|
@property
|
10359
10462
|
@pulumi.getter
|
10360
10463
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -10409,7 +10512,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10409
10512
|
@pulumi.getter(name="securityAttributes")
|
10410
10513
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
10411
10514
|
"""
|
10412
|
-
Security
|
10515
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10413
10516
|
"""
|
10414
10517
|
return pulumi.get(self, "security_attributes")
|
10415
10518
|
|
@@ -10742,7 +10845,7 @@ if not MYPY:
|
|
10742
10845
|
"""
|
10743
10846
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10744
10847
|
"""
|
10745
|
-
Security
|
10848
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10746
10849
|
"""
|
10747
10850
|
skip_source_dest_check: NotRequired[pulumi.Input[bool]]
|
10748
10851
|
"""
|
@@ -10781,7 +10884,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
|
|
10781
10884
|
:param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10782
10885
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: 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/).
|
10783
10886
|
:param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10784
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
10887
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10785
10888
|
:param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10786
10889
|
:param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10787
10890
|
"""
|
@@ -10933,7 +11036,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
|
|
10933
11036
|
@pulumi.getter(name="securityAttributes")
|
10934
11037
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
10935
11038
|
"""
|
10936
|
-
Security
|
11039
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10937
11040
|
"""
|
10938
11041
|
return pulumi.get(self, "security_attributes")
|
10939
11042
|
|
@@ -11211,6 +11314,63 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs:
|
|
11211
11314
|
pulumi.set(self, "remote_data_volume_type", value)
|
11212
11315
|
|
11213
11316
|
|
11317
|
+
if not MYPY:
|
11318
|
+
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict(TypedDict):
|
11319
|
+
type: pulumi.Input[str]
|
11320
|
+
"""
|
11321
|
+
The type of action to run when the instance is interrupted for eviction.
|
11322
|
+
"""
|
11323
|
+
license_type: NotRequired[pulumi.Input[str]]
|
11324
|
+
"""
|
11325
|
+
License Type for the OS license.
|
11326
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11327
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11328
|
+
"""
|
11329
|
+
elif False:
|
11330
|
+
InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
11331
|
+
|
11332
|
+
@pulumi.input_type
|
11333
|
+
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs:
|
11334
|
+
def __init__(__self__, *,
|
11335
|
+
type: pulumi.Input[str],
|
11336
|
+
license_type: Optional[pulumi.Input[str]] = None):
|
11337
|
+
"""
|
11338
|
+
:param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
|
11339
|
+
:param pulumi.Input[str] license_type: License Type for the OS license.
|
11340
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11341
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11342
|
+
"""
|
11343
|
+
pulumi.set(__self__, "type", type)
|
11344
|
+
if license_type is not None:
|
11345
|
+
pulumi.set(__self__, "license_type", license_type)
|
11346
|
+
|
11347
|
+
@property
|
11348
|
+
@pulumi.getter
|
11349
|
+
def type(self) -> pulumi.Input[str]:
|
11350
|
+
"""
|
11351
|
+
The type of action to run when the instance is interrupted for eviction.
|
11352
|
+
"""
|
11353
|
+
return pulumi.get(self, "type")
|
11354
|
+
|
11355
|
+
@type.setter
|
11356
|
+
def type(self, value: pulumi.Input[str]):
|
11357
|
+
pulumi.set(self, "type", value)
|
11358
|
+
|
11359
|
+
@property
|
11360
|
+
@pulumi.getter(name="licenseType")
|
11361
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
11362
|
+
"""
|
11363
|
+
License Type for the OS license.
|
11364
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11365
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11366
|
+
"""
|
11367
|
+
return pulumi.get(self, "license_type")
|
11368
|
+
|
11369
|
+
@license_type.setter
|
11370
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
11371
|
+
pulumi.set(self, "license_type", value)
|
11372
|
+
|
11373
|
+
|
11214
11374
|
if not MYPY:
|
11215
11375
|
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict(TypedDict):
|
11216
11376
|
type: pulumi.Input[str]
|
@@ -13623,6 +13783,83 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs:
|
|
13623
13783
|
pulumi.set(self, "vpus_per_gb", value)
|
13624
13784
|
|
13625
13785
|
|
13786
|
+
if not MYPY:
|
13787
|
+
class InstanceLicensingConfigsArgsDict(TypedDict):
|
13788
|
+
type: pulumi.Input[str]
|
13789
|
+
"""
|
13790
|
+
(Updatable) Operating System type of the Configuration.
|
13791
|
+
"""
|
13792
|
+
license_type: NotRequired[pulumi.Input[str]]
|
13793
|
+
"""
|
13794
|
+
(Updatable) License Type for the OS license.
|
13795
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13796
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13797
|
+
"""
|
13798
|
+
os_version: NotRequired[pulumi.Input[str]]
|
13799
|
+
"""
|
13800
|
+
The Operating System version of the license config.
|
13801
|
+
"""
|
13802
|
+
elif False:
|
13803
|
+
InstanceLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
13804
|
+
|
13805
|
+
@pulumi.input_type
|
13806
|
+
class InstanceLicensingConfigsArgs:
|
13807
|
+
def __init__(__self__, *,
|
13808
|
+
type: pulumi.Input[str],
|
13809
|
+
license_type: Optional[pulumi.Input[str]] = None,
|
13810
|
+
os_version: Optional[pulumi.Input[str]] = None):
|
13811
|
+
"""
|
13812
|
+
:param pulumi.Input[str] type: (Updatable) Operating System type of the Configuration.
|
13813
|
+
:param pulumi.Input[str] license_type: (Updatable) License Type for the OS license.
|
13814
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13815
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13816
|
+
:param pulumi.Input[str] os_version: The Operating System version of the license config.
|
13817
|
+
"""
|
13818
|
+
pulumi.set(__self__, "type", type)
|
13819
|
+
if license_type is not None:
|
13820
|
+
pulumi.set(__self__, "license_type", license_type)
|
13821
|
+
if os_version is not None:
|
13822
|
+
pulumi.set(__self__, "os_version", os_version)
|
13823
|
+
|
13824
|
+
@property
|
13825
|
+
@pulumi.getter
|
13826
|
+
def type(self) -> pulumi.Input[str]:
|
13827
|
+
"""
|
13828
|
+
(Updatable) Operating System type of the Configuration.
|
13829
|
+
"""
|
13830
|
+
return pulumi.get(self, "type")
|
13831
|
+
|
13832
|
+
@type.setter
|
13833
|
+
def type(self, value: pulumi.Input[str]):
|
13834
|
+
pulumi.set(self, "type", value)
|
13835
|
+
|
13836
|
+
@property
|
13837
|
+
@pulumi.getter(name="licenseType")
|
13838
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
13839
|
+
"""
|
13840
|
+
(Updatable) License Type for the OS license.
|
13841
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13842
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13843
|
+
"""
|
13844
|
+
return pulumi.get(self, "license_type")
|
13845
|
+
|
13846
|
+
@license_type.setter
|
13847
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
13848
|
+
pulumi.set(self, "license_type", value)
|
13849
|
+
|
13850
|
+
@property
|
13851
|
+
@pulumi.getter(name="osVersion")
|
13852
|
+
def os_version(self) -> Optional[pulumi.Input[str]]:
|
13853
|
+
"""
|
13854
|
+
The Operating System version of the license config.
|
13855
|
+
"""
|
13856
|
+
return pulumi.get(self, "os_version")
|
13857
|
+
|
13858
|
+
@os_version.setter
|
13859
|
+
def os_version(self, value: Optional[pulumi.Input[str]]):
|
13860
|
+
pulumi.set(self, "os_version", value)
|
13861
|
+
|
13862
|
+
|
13626
13863
|
if not MYPY:
|
13627
13864
|
class InstancePlatformConfigArgsDict(TypedDict):
|
13628
13865
|
type: pulumi.Input[str]
|
@@ -17942,15 +18179,15 @@ if not MYPY:
|
|
17942
18179
|
class VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict(TypedDict):
|
17943
18180
|
configured_redundancy_level: NotRequired[pulumi.Input[str]]
|
17944
18181
|
"""
|
17945
|
-
The configured redundancy level of the virtual circuit
|
18182
|
+
The configured redundancy level of the virtual circuit.
|
17946
18183
|
"""
|
17947
18184
|
ipv4bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17948
18185
|
"""
|
17949
|
-
|
18186
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
17950
18187
|
"""
|
17951
18188
|
ipv6bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17952
18189
|
"""
|
17953
|
-
|
18190
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
17954
18191
|
"""
|
17955
18192
|
elif False:
|
17956
18193
|
VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -17962,9 +18199,9 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17962
18199
|
ipv4bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None,
|
17963
18200
|
ipv6bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None):
|
17964
18201
|
"""
|
17965
|
-
:param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit
|
17966
|
-
:param pulumi.Input[str] ipv4bgp_session_redundancy_status:
|
17967
|
-
:param pulumi.Input[str] ipv6bgp_session_redundancy_status:
|
18202
|
+
:param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit.
|
18203
|
+
:param pulumi.Input[str] ipv4bgp_session_redundancy_status: Indicates if the configured level is met for IPv4 BGP redundancy.
|
18204
|
+
:param pulumi.Input[str] ipv6bgp_session_redundancy_status: Indicates if the configured level is met for IPv6 BGP redundancy.
|
17968
18205
|
"""
|
17969
18206
|
if configured_redundancy_level is not None:
|
17970
18207
|
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
@@ -17977,7 +18214,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17977
18214
|
@pulumi.getter(name="configuredRedundancyLevel")
|
17978
18215
|
def configured_redundancy_level(self) -> Optional[pulumi.Input[str]]:
|
17979
18216
|
"""
|
17980
|
-
The configured redundancy level of the virtual circuit
|
18217
|
+
The configured redundancy level of the virtual circuit.
|
17981
18218
|
"""
|
17982
18219
|
return pulumi.get(self, "configured_redundancy_level")
|
17983
18220
|
|
@@ -17989,7 +18226,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17989
18226
|
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
17990
18227
|
def ipv4bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
17991
18228
|
"""
|
17992
|
-
|
18229
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
17993
18230
|
"""
|
17994
18231
|
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
17995
18232
|
|
@@ -18001,7 +18238,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
18001
18238
|
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
18002
18239
|
def ipv6bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
18003
18240
|
"""
|
18004
|
-
|
18241
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
18005
18242
|
"""
|
18006
18243
|
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
18007
18244
|
|
@@ -18110,6 +18347,7 @@ if not MYPY:
|
|
18110
18347
|
|
18111
18348
|
Example: `10.0.3.3`
|
18112
18349
|
"""
|
18350
|
+
route_table_id: NotRequired[pulumi.Input[str]]
|
18113
18351
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
18114
18352
|
"""
|
18115
18353
|
Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
@@ -18150,6 +18388,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18150
18388
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
|
18151
18389
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
18152
18390
|
private_ip: Optional[pulumi.Input[str]] = None,
|
18391
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
18153
18392
|
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
18154
18393
|
skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
|
18155
18394
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -18222,6 +18461,8 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18222
18461
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
18223
18462
|
if private_ip is not None:
|
18224
18463
|
pulumi.set(__self__, "private_ip", private_ip)
|
18464
|
+
if route_table_id is not None:
|
18465
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
18225
18466
|
if security_attributes is not None:
|
18226
18467
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
18227
18468
|
if skip_source_dest_check is not None:
|
@@ -18375,6 +18616,15 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18375
18616
|
def private_ip(self, value: Optional[pulumi.Input[str]]):
|
18376
18617
|
pulumi.set(self, "private_ip", value)
|
18377
18618
|
|
18619
|
+
@property
|
18620
|
+
@pulumi.getter(name="routeTableId")
|
18621
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
18622
|
+
return pulumi.get(self, "route_table_id")
|
18623
|
+
|
18624
|
+
@route_table_id.setter
|
18625
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
18626
|
+
pulumi.set(self, "route_table_id", value)
|
18627
|
+
|
18378
18628
|
@property
|
18379
18629
|
@pulumi.getter(name="securityAttributes")
|
18380
18630
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
pulumi_oci/core/get_instance.py
CHANGED
@@ -27,7 +27,7 @@ class GetInstanceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getInstance.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, agent_configs=None, async_=None, availability_configs=None, availability_domain=None, boot_volume_id=None, capacity_reservation_id=None, cluster_placement_group_id=None, compartment_id=None, compute_cluster_id=None, create_vnic_details=None, dedicated_vm_host_id=None, defined_tags=None, display_name=None, extended_metadata=None, fault_domain=None, freeform_tags=None, hostname_label=None, id=None, image=None, instance_configuration_id=None, instance_id=None, instance_options=None, ipxe_script=None, is_cross_numa_node=None, is_pv_encryption_in_transit_enabled=None, launch_mode=None, launch_options=None, launch_volume_attachments=None, metadata=None, platform_configs=None, preemptible_instance_configs=None, preserve_boot_volume=None, preserve_data_volumes_created_at_launch=None, private_ip=None, public_ip=None, region=None, security_attributes=None, security_attributes_state=None, shape=None, shape_configs=None, source_details=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_maintenance_reboot_due=None, update_operation_constraint=None):
|
30
|
+
def __init__(__self__, agent_configs=None, async_=None, availability_configs=None, availability_domain=None, boot_volume_id=None, capacity_reservation_id=None, cluster_placement_group_id=None, compartment_id=None, compute_cluster_id=None, create_vnic_details=None, dedicated_vm_host_id=None, defined_tags=None, display_name=None, extended_metadata=None, fault_domain=None, freeform_tags=None, hostname_label=None, id=None, image=None, instance_configuration_id=None, instance_id=None, instance_options=None, ipxe_script=None, is_cross_numa_node=None, is_pv_encryption_in_transit_enabled=None, launch_mode=None, launch_options=None, launch_volume_attachments=None, licensing_configs=None, metadata=None, platform_configs=None, preemptible_instance_configs=None, preserve_boot_volume=None, preserve_data_volumes_created_at_launch=None, private_ip=None, public_ip=None, region=None, security_attributes=None, security_attributes_state=None, shape=None, shape_configs=None, source_details=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_maintenance_reboot_due=None, update_operation_constraint=None):
|
31
31
|
if agent_configs and not isinstance(agent_configs, list):
|
32
32
|
raise TypeError("Expected argument 'agent_configs' to be a list")
|
33
33
|
pulumi.set(__self__, "agent_configs", agent_configs)
|
@@ -112,6 +112,9 @@ class GetInstanceResult:
|
|
112
112
|
if launch_volume_attachments and not isinstance(launch_volume_attachments, list):
|
113
113
|
raise TypeError("Expected argument 'launch_volume_attachments' to be a list")
|
114
114
|
pulumi.set(__self__, "launch_volume_attachments", launch_volume_attachments)
|
115
|
+
if licensing_configs and not isinstance(licensing_configs, list):
|
116
|
+
raise TypeError("Expected argument 'licensing_configs' to be a list")
|
117
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
115
118
|
if metadata and not isinstance(metadata, dict):
|
116
119
|
raise TypeError("Expected argument 'metadata' to be a dict")
|
117
120
|
pulumi.set(__self__, "metadata", metadata)
|
@@ -385,6 +388,14 @@ class GetInstanceResult:
|
|
385
388
|
def launch_volume_attachments(self) -> Sequence['outputs.GetInstanceLaunchVolumeAttachmentResult']:
|
386
389
|
return pulumi.get(self, "launch_volume_attachments")
|
387
390
|
|
391
|
+
@property
|
392
|
+
@pulumi.getter(name="licensingConfigs")
|
393
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstanceLicensingConfigResult']:
|
394
|
+
"""
|
395
|
+
List of licensing configurations associated with the instance.
|
396
|
+
"""
|
397
|
+
return pulumi.get(self, "licensing_configs")
|
398
|
+
|
388
399
|
@property
|
389
400
|
@pulumi.getter
|
390
401
|
def metadata(self) -> Mapping[str, str]:
|
@@ -561,6 +572,7 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
561
572
|
launch_mode=self.launch_mode,
|
562
573
|
launch_options=self.launch_options,
|
563
574
|
launch_volume_attachments=self.launch_volume_attachments,
|
575
|
+
licensing_configs=self.licensing_configs,
|
564
576
|
metadata=self.metadata,
|
565
577
|
platform_configs=self.platform_configs,
|
566
578
|
preemptible_instance_configs=self.preemptible_instance_configs,
|
@@ -638,6 +650,7 @@ def get_instance(instance_id: Optional[str] = None,
|
|
638
650
|
launch_mode=pulumi.get(__ret__, 'launch_mode'),
|
639
651
|
launch_options=pulumi.get(__ret__, 'launch_options'),
|
640
652
|
launch_volume_attachments=pulumi.get(__ret__, 'launch_volume_attachments'),
|
653
|
+
licensing_configs=pulumi.get(__ret__, 'licensing_configs'),
|
641
654
|
metadata=pulumi.get(__ret__, 'metadata'),
|
642
655
|
platform_configs=pulumi.get(__ret__, 'platform_configs'),
|
643
656
|
preemptible_instance_configs=pulumi.get(__ret__, 'preemptible_instance_configs'),
|
@@ -712,6 +725,7 @@ def get_instance_output(instance_id: Optional[pulumi.Input[str]] = None,
|
|
712
725
|
launch_mode=pulumi.get(__response__, 'launch_mode'),
|
713
726
|
launch_options=pulumi.get(__response__, 'launch_options'),
|
714
727
|
launch_volume_attachments=pulumi.get(__response__, 'launch_volume_attachments'),
|
728
|
+
licensing_configs=pulumi.get(__response__, 'licensing_configs'),
|
715
729
|
metadata=pulumi.get(__response__, 'metadata'),
|
716
730
|
platform_configs=pulumi.get(__response__, 'platform_configs'),
|
717
731
|
preemptible_instance_configs=pulumi.get(__response__, 'preemptible_instance_configs'),
|