pulumi-oci 2.21.0a1736852431__py3-none-any.whl → 2.22.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +8 -0
- pulumi_oci/bigdataservice/bds_instance_api_key.py +0 -14
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +0 -2
- pulumi_oci/bigdataservice/outputs.py +0 -4
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +414 -21
- pulumi_oci/core/byoasn.py +595 -0
- pulumi_oci/core/get_byoasn.py +268 -0
- pulumi_oci/core/get_byoasns.py +131 -0
- pulumi_oci/core/get_byoip_range.py +15 -1
- 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 +54 -7
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +1019 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/database/_inputs.py +696 -89
- pulumi_oci/database/autonomous_database.py +98 -4
- pulumi_oci/database/autonomous_exadata_infrastructure.py +0 -2
- pulumi_oci/database/autonomous_vm_cluster.py +0 -2
- pulumi_oci/database/cloud_exadata_infrastructure.py +0 -2
- pulumi_oci/database/data_guard_association.py +75 -28
- pulumi_oci/database/database.py +147 -32
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +0 -2
- pulumi_oci/database/get_autonomous_database.py +30 -2
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_database.py +40 -1
- pulumi_oci/database/outputs.py +994 -114
- pulumi_oci/networkloadbalancer/__init__.py +1 -0
- pulumi_oci/networkloadbalancer/_inputs.py +6 -6
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +105 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +30 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py +165 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +105 -7
- pulumi_oci/networkloadbalancer/outputs.py +34 -12
- 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.22.0.dist-info}/METADATA +7 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/RECORD +53 -49
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/outputs.py
CHANGED
@@ -20,6 +20,7 @@ __all__ = [
|
|
20
20
|
'BootVolumeBackupSourceDetails',
|
21
21
|
'BootVolumeBootVolumeReplica',
|
22
22
|
'BootVolumeSourceDetails',
|
23
|
+
'ByoasnByoipRange',
|
23
24
|
'CaptureFilterFlowLogCaptureFilterRule',
|
24
25
|
'CaptureFilterFlowLogCaptureFilterRuleIcmpOptions',
|
25
26
|
'CaptureFilterFlowLogCaptureFilterRuleTcpOptions',
|
@@ -100,6 +101,7 @@ __all__ = [
|
|
100
101
|
'InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail',
|
101
102
|
'InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptions',
|
102
103
|
'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptions',
|
104
|
+
'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs',
|
103
105
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig',
|
104
106
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfig',
|
105
107
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigPreemptionAction',
|
@@ -121,6 +123,7 @@ __all__ = [
|
|
121
123
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail',
|
122
124
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsInstanceOptions',
|
123
125
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptions',
|
126
|
+
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs',
|
124
127
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig',
|
125
128
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfig',
|
126
129
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigPreemptionAction',
|
@@ -139,6 +142,7 @@ __all__ = [
|
|
139
142
|
'InstanceLaunchOptions',
|
140
143
|
'InstanceLaunchVolumeAttachment',
|
141
144
|
'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails',
|
145
|
+
'InstanceLicensingConfigs',
|
142
146
|
'InstancePlatformConfig',
|
143
147
|
'InstancePoolInstanceLoadBalancerBackend',
|
144
148
|
'InstancePoolLoadBalancer',
|
@@ -219,13 +223,20 @@ __all__ = [
|
|
219
223
|
'GetBootVolumesBootVolumeBootVolumeReplicaResult',
|
220
224
|
'GetBootVolumesBootVolumeSourceDetailResult',
|
221
225
|
'GetBootVolumesFilterResult',
|
226
|
+
'GetByoasnByoipRangeResult',
|
227
|
+
'GetByoasnsByoasnCollectionResult',
|
228
|
+
'GetByoasnsByoasnCollectionItemResult',
|
229
|
+
'GetByoasnsByoasnCollectionItemByoipRangeResult',
|
230
|
+
'GetByoasnsFilterResult',
|
222
231
|
'GetByoipAllocatedRangesByoipAllocatedRangeCollectionResult',
|
223
232
|
'GetByoipAllocatedRangesByoipAllocatedRangeCollectionItemResult',
|
224
233
|
'GetByoipAllocatedRangesFilterResult',
|
225
234
|
'GetByoipRangeByoipRangeVcnIpv6allocationResult',
|
235
|
+
'GetByoipRangeOriginAsnResult',
|
226
236
|
'GetByoipRangesByoipRangeCollectionResult',
|
227
237
|
'GetByoipRangesByoipRangeCollectionItemResult',
|
228
238
|
'GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocationResult',
|
239
|
+
'GetByoipRangesByoipRangeCollectionItemOriginAsnResult',
|
229
240
|
'GetByoipRangesFilterResult',
|
230
241
|
'GetCaptureFilterFlowLogCaptureFilterRuleResult',
|
231
242
|
'GetCaptureFilterFlowLogCaptureFilterRuleIcmpOptionResult',
|
@@ -413,6 +424,7 @@ __all__ = [
|
|
413
424
|
'GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult',
|
414
425
|
'GetInstanceConfigurationInstanceDetailLaunchDetailInstanceOptionResult',
|
415
426
|
'GetInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionResult',
|
427
|
+
'GetInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult',
|
416
428
|
'GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult',
|
417
429
|
'GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult',
|
418
430
|
'GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigPreemptionActionResult',
|
@@ -434,6 +446,7 @@ __all__ = [
|
|
434
446
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult',
|
435
447
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailInstanceOptionResult',
|
436
448
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionResult',
|
449
|
+
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult',
|
437
450
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult',
|
438
451
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult',
|
439
452
|
'GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigPreemptionActionResult',
|
@@ -463,6 +476,7 @@ __all__ = [
|
|
463
476
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult',
|
464
477
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailInstanceOptionResult',
|
465
478
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionResult',
|
479
|
+
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult',
|
466
480
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult',
|
467
481
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult',
|
468
482
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigPreemptionActionResult',
|
@@ -484,6 +498,7 @@ __all__ = [
|
|
484
498
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult',
|
485
499
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailInstanceOptionResult',
|
486
500
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionResult',
|
501
|
+
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult',
|
487
502
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult',
|
488
503
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult',
|
489
504
|
'GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigPreemptionActionResult',
|
@@ -506,6 +521,7 @@ __all__ = [
|
|
506
521
|
'GetInstanceLaunchOptionResult',
|
507
522
|
'GetInstanceLaunchVolumeAttachmentResult',
|
508
523
|
'GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult',
|
524
|
+
'GetInstanceLicensingConfigResult',
|
509
525
|
'GetInstanceMaintenanceEventsFilterResult',
|
510
526
|
'GetInstanceMaintenanceEventsInstanceMaintenanceEventResult',
|
511
527
|
'GetInstanceMeasuredBootReportMeasurementResult',
|
@@ -545,6 +561,7 @@ __all__ = [
|
|
545
561
|
'GetInstancesInstanceLaunchOptionResult',
|
546
562
|
'GetInstancesInstanceLaunchVolumeAttachmentResult',
|
547
563
|
'GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult',
|
564
|
+
'GetInstancesInstanceLicensingConfigResult',
|
548
565
|
'GetInstancesInstancePlatformConfigResult',
|
549
566
|
'GetInstancesInstancePreemptibleInstanceConfigResult',
|
550
567
|
'GetInstancesInstancePreemptibleInstanceConfigPreemptionActionResult',
|
@@ -1020,6 +1037,84 @@ class BootVolumeSourceDetails(dict):
|
|
1020
1037
|
return pulumi.get(self, "second_backup_id")
|
1021
1038
|
|
1022
1039
|
|
1040
|
+
@pulumi.output_type
|
1041
|
+
class ByoasnByoipRange(dict):
|
1042
|
+
@staticmethod
|
1043
|
+
def __key_warning(key: str):
|
1044
|
+
suggest = None
|
1045
|
+
if key == "asPathPrependLength":
|
1046
|
+
suggest = "as_path_prepend_length"
|
1047
|
+
elif key == "byoipRangeId":
|
1048
|
+
suggest = "byoip_range_id"
|
1049
|
+
elif key == "cidrBlock":
|
1050
|
+
suggest = "cidr_block"
|
1051
|
+
elif key == "ipv6cidrBlock":
|
1052
|
+
suggest = "ipv6cidr_block"
|
1053
|
+
|
1054
|
+
if suggest:
|
1055
|
+
pulumi.log.warn(f"Key '{key}' not found in ByoasnByoipRange. Access the value via the '{suggest}' property getter instead.")
|
1056
|
+
|
1057
|
+
def __getitem__(self, key: str) -> Any:
|
1058
|
+
ByoasnByoipRange.__key_warning(key)
|
1059
|
+
return super().__getitem__(key)
|
1060
|
+
|
1061
|
+
def get(self, key: str, default = None) -> Any:
|
1062
|
+
ByoasnByoipRange.__key_warning(key)
|
1063
|
+
return super().get(key, default)
|
1064
|
+
|
1065
|
+
def __init__(__self__, *,
|
1066
|
+
as_path_prepend_length: Optional[int] = None,
|
1067
|
+
byoip_range_id: Optional[str] = None,
|
1068
|
+
cidr_block: Optional[str] = None,
|
1069
|
+
ipv6cidr_block: Optional[str] = None):
|
1070
|
+
"""
|
1071
|
+
:param int as_path_prepend_length: The as path prepend length.
|
1072
|
+
:param str byoip_range_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
1073
|
+
:param str cidr_block: The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
1074
|
+
:param str ipv6cidr_block: The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
1075
|
+
"""
|
1076
|
+
if as_path_prepend_length is not None:
|
1077
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
1078
|
+
if byoip_range_id is not None:
|
1079
|
+
pulumi.set(__self__, "byoip_range_id", byoip_range_id)
|
1080
|
+
if cidr_block is not None:
|
1081
|
+
pulumi.set(__self__, "cidr_block", cidr_block)
|
1082
|
+
if ipv6cidr_block is not None:
|
1083
|
+
pulumi.set(__self__, "ipv6cidr_block", ipv6cidr_block)
|
1084
|
+
|
1085
|
+
@property
|
1086
|
+
@pulumi.getter(name="asPathPrependLength")
|
1087
|
+
def as_path_prepend_length(self) -> Optional[int]:
|
1088
|
+
"""
|
1089
|
+
The as path prepend length.
|
1090
|
+
"""
|
1091
|
+
return pulumi.get(self, "as_path_prepend_length")
|
1092
|
+
|
1093
|
+
@property
|
1094
|
+
@pulumi.getter(name="byoipRangeId")
|
1095
|
+
def byoip_range_id(self) -> Optional[str]:
|
1096
|
+
"""
|
1097
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
1098
|
+
"""
|
1099
|
+
return pulumi.get(self, "byoip_range_id")
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
@pulumi.getter(name="cidrBlock")
|
1103
|
+
def cidr_block(self) -> Optional[str]:
|
1104
|
+
"""
|
1105
|
+
The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
1106
|
+
"""
|
1107
|
+
return pulumi.get(self, "cidr_block")
|
1108
|
+
|
1109
|
+
@property
|
1110
|
+
@pulumi.getter(name="ipv6cidrBlock")
|
1111
|
+
def ipv6cidr_block(self) -> Optional[str]:
|
1112
|
+
"""
|
1113
|
+
The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
1114
|
+
"""
|
1115
|
+
return pulumi.get(self, "ipv6cidr_block")
|
1116
|
+
|
1117
|
+
|
1023
1118
|
@pulumi.output_type
|
1024
1119
|
class CaptureFilterFlowLogCaptureFilterRule(dict):
|
1025
1120
|
@staticmethod
|
@@ -5864,6 +5959,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5864
5959
|
suggest = "launch_mode"
|
5865
5960
|
elif key == "launchOptions":
|
5866
5961
|
suggest = "launch_options"
|
5962
|
+
elif key == "licensingConfigs":
|
5963
|
+
suggest = "licensing_configs"
|
5867
5964
|
elif key == "platformConfig":
|
5868
5965
|
suggest = "platform_config"
|
5869
5966
|
elif key == "preemptibleInstanceConfig":
|
@@ -5907,6 +6004,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5907
6004
|
is_pv_encryption_in_transit_enabled: Optional[bool] = None,
|
5908
6005
|
launch_mode: Optional[str] = None,
|
5909
6006
|
launch_options: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptions'] = None,
|
6007
|
+
licensing_configs: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs'] = None,
|
5910
6008
|
metadata: Optional[Mapping[str, str]] = None,
|
5911
6009
|
platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig'] = None,
|
5912
6010
|
preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfig'] = None,
|
@@ -5960,6 +6058,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5960
6058
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
5961
6059
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
5962
6060
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs' launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
6061
|
+
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs' licensing_configs: List of licensing configurations associated with target launch values.
|
5963
6062
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
5964
6063
|
|
5965
6064
|
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:
|
@@ -5994,7 +6093,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5994
6093
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
5995
6094
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
5996
6095
|
* `REBOOT` - Run maintenance using a reboot.
|
5997
|
-
:param Mapping[str, str] security_attributes: Security
|
6096
|
+
:param Mapping[str, 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"}}}`
|
5998
6097
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
5999
6098
|
|
6000
6099
|
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
@@ -6040,6 +6139,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6040
6139
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
6041
6140
|
if launch_options is not None:
|
6042
6141
|
pulumi.set(__self__, "launch_options", launch_options)
|
6142
|
+
if licensing_configs is not None:
|
6143
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
6043
6144
|
if metadata is not None:
|
6044
6145
|
pulumi.set(__self__, "metadata", metadata)
|
6045
6146
|
if platform_config is not None:
|
@@ -6227,6 +6328,14 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6227
6328
|
"""
|
6228
6329
|
return pulumi.get(self, "launch_options")
|
6229
6330
|
|
6331
|
+
@property
|
6332
|
+
@pulumi.getter(name="licensingConfigs")
|
6333
|
+
def licensing_configs(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs']:
|
6334
|
+
"""
|
6335
|
+
List of licensing configurations associated with target launch values.
|
6336
|
+
"""
|
6337
|
+
return pulumi.get(self, "licensing_configs")
|
6338
|
+
|
6230
6339
|
@property
|
6231
6340
|
@pulumi.getter
|
6232
6341
|
def metadata(self) -> Optional[Mapping[str, str]]:
|
@@ -6293,7 +6402,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6293
6402
|
@pulumi.getter(name="securityAttributes")
|
6294
6403
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
6295
6404
|
"""
|
6296
|
-
Security
|
6405
|
+
[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"}}}`
|
6297
6406
|
"""
|
6298
6407
|
return pulumi.get(self, "security_attributes")
|
6299
6408
|
|
@@ -6577,7 +6686,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6577
6686
|
:param Sequence['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.
|
6578
6687
|
:param Sequence[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/).
|
6579
6688
|
:param 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.
|
6580
|
-
:param Mapping[str, str] security_attributes: Security
|
6689
|
+
:param Mapping[str, 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"}}}`
|
6581
6690
|
:param 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.
|
6582
6691
|
:param 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.
|
6583
6692
|
"""
|
@@ -6692,7 +6801,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6692
6801
|
@pulumi.getter(name="securityAttributes")
|
6693
6802
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
6694
6803
|
"""
|
6695
|
-
Security
|
6804
|
+
[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"}}}`
|
6696
6805
|
"""
|
6697
6806
|
return pulumi.get(self, "security_attributes")
|
6698
6807
|
|
@@ -6931,6 +7040,57 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptions(dict):
|
|
6931
7040
|
return pulumi.get(self, "remote_data_volume_type")
|
6932
7041
|
|
6933
7042
|
|
7043
|
+
@pulumi.output_type
|
7044
|
+
class InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs(dict):
|
7045
|
+
@staticmethod
|
7046
|
+
def __key_warning(key: str):
|
7047
|
+
suggest = None
|
7048
|
+
if key == "licenseType":
|
7049
|
+
suggest = "license_type"
|
7050
|
+
|
7051
|
+
if suggest:
|
7052
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs. Access the value via the '{suggest}' property getter instead.")
|
7053
|
+
|
7054
|
+
def __getitem__(self, key: str) -> Any:
|
7055
|
+
InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs.__key_warning(key)
|
7056
|
+
return super().__getitem__(key)
|
7057
|
+
|
7058
|
+
def get(self, key: str, default = None) -> Any:
|
7059
|
+
InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigs.__key_warning(key)
|
7060
|
+
return super().get(key, default)
|
7061
|
+
|
7062
|
+
def __init__(__self__, *,
|
7063
|
+
type: str,
|
7064
|
+
license_type: Optional[str] = None):
|
7065
|
+
"""
|
7066
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
7067
|
+
:param str license_type: License Type for the OS license.
|
7068
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
7069
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
7070
|
+
"""
|
7071
|
+
pulumi.set(__self__, "type", type)
|
7072
|
+
if license_type is not None:
|
7073
|
+
pulumi.set(__self__, "license_type", license_type)
|
7074
|
+
|
7075
|
+
@property
|
7076
|
+
@pulumi.getter
|
7077
|
+
def type(self) -> str:
|
7078
|
+
"""
|
7079
|
+
The type of action to run when the instance is interrupted for eviction.
|
7080
|
+
"""
|
7081
|
+
return pulumi.get(self, "type")
|
7082
|
+
|
7083
|
+
@property
|
7084
|
+
@pulumi.getter(name="licenseType")
|
7085
|
+
def license_type(self) -> Optional[str]:
|
7086
|
+
"""
|
7087
|
+
License Type for the OS license.
|
7088
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
7089
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
7090
|
+
"""
|
7091
|
+
return pulumi.get(self, "license_type")
|
7092
|
+
|
7093
|
+
|
6934
7094
|
@pulumi.output_type
|
6935
7095
|
class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
6936
7096
|
@staticmethod
|
@@ -8154,6 +8314,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8154
8314
|
suggest = "launch_mode"
|
8155
8315
|
elif key == "launchOptions":
|
8156
8316
|
suggest = "launch_options"
|
8317
|
+
elif key == "licensingConfigs":
|
8318
|
+
suggest = "licensing_configs"
|
8157
8319
|
elif key == "platformConfig":
|
8158
8320
|
suggest = "platform_config"
|
8159
8321
|
elif key == "preemptibleInstanceConfig":
|
@@ -8197,6 +8359,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8197
8359
|
is_pv_encryption_in_transit_enabled: Optional[bool] = None,
|
8198
8360
|
launch_mode: Optional[str] = None,
|
8199
8361
|
launch_options: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptions'] = None,
|
8362
|
+
licensing_configs: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs'] = None,
|
8200
8363
|
metadata: Optional[Mapping[str, str]] = None,
|
8201
8364
|
platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig'] = None,
|
8202
8365
|
preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfig'] = None,
|
@@ -8228,13 +8391,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8228
8391
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
8229
8392
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
8230
8393
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs' launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
8394
|
+
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs' licensing_configs: List of licensing configurations associated with target launch values.
|
8231
8395
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
8232
8396
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs' platform_config: The platform configuration requested for the instance.
|
8233
8397
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs' preemptible_instance_config: Configuration options for preemptible instances.
|
8234
8398
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
8235
8399
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
8236
8400
|
* `REBOOT` - Run maintenance using a reboot.
|
8237
|
-
:param Mapping[str, str] security_attributes: Security
|
8401
|
+
:param Mapping[str, 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"}}}`
|
8238
8402
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
8239
8403
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs' shape_config: The shape configuration requested for the instance.
|
8240
8404
|
"""
|
@@ -8274,6 +8438,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8274
8438
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
8275
8439
|
if launch_options is not None:
|
8276
8440
|
pulumi.set(__self__, "launch_options", launch_options)
|
8441
|
+
if licensing_configs is not None:
|
8442
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
8277
8443
|
if metadata is not None:
|
8278
8444
|
pulumi.set(__self__, "metadata", metadata)
|
8279
8445
|
if platform_config is not None:
|
@@ -8439,6 +8605,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8439
8605
|
"""
|
8440
8606
|
return pulumi.get(self, "launch_options")
|
8441
8607
|
|
8608
|
+
@property
|
8609
|
+
@pulumi.getter(name="licensingConfigs")
|
8610
|
+
def licensing_configs(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs']:
|
8611
|
+
"""
|
8612
|
+
List of licensing configurations associated with target launch values.
|
8613
|
+
"""
|
8614
|
+
return pulumi.get(self, "licensing_configs")
|
8615
|
+
|
8442
8616
|
@property
|
8443
8617
|
@pulumi.getter
|
8444
8618
|
def metadata(self) -> Optional[Mapping[str, str]]:
|
@@ -8477,7 +8651,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8477
8651
|
@pulumi.getter(name="securityAttributes")
|
8478
8652
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
8479
8653
|
"""
|
8480
|
-
Security
|
8654
|
+
[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"}}}`
|
8481
8655
|
"""
|
8482
8656
|
return pulumi.get(self, "security_attributes")
|
8483
8657
|
|
@@ -8782,7 +8956,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8782
8956
|
:param 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.
|
8783
8957
|
:param Sequence[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/).
|
8784
8958
|
:param 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.
|
8785
|
-
:param Mapping[str, str] security_attributes: Security
|
8959
|
+
:param Mapping[str, 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"}}}`
|
8786
8960
|
:param 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.
|
8787
8961
|
:param 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.
|
8788
8962
|
"""
|
@@ -8894,7 +9068,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8894
9068
|
@pulumi.getter(name="securityAttributes")
|
8895
9069
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
8896
9070
|
"""
|
8897
|
-
Security
|
9071
|
+
[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"}}}`
|
8898
9072
|
"""
|
8899
9073
|
return pulumi.get(self, "security_attributes")
|
8900
9074
|
|
@@ -9123,6 +9297,57 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptions(dict)
|
|
9123
9297
|
return pulumi.get(self, "remote_data_volume_type")
|
9124
9298
|
|
9125
9299
|
|
9300
|
+
@pulumi.output_type
|
9301
|
+
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs(dict):
|
9302
|
+
@staticmethod
|
9303
|
+
def __key_warning(key: str):
|
9304
|
+
suggest = None
|
9305
|
+
if key == "licenseType":
|
9306
|
+
suggest = "license_type"
|
9307
|
+
|
9308
|
+
if suggest:
|
9309
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs. Access the value via the '{suggest}' property getter instead.")
|
9310
|
+
|
9311
|
+
def __getitem__(self, key: str) -> Any:
|
9312
|
+
InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs.__key_warning(key)
|
9313
|
+
return super().__getitem__(key)
|
9314
|
+
|
9315
|
+
def get(self, key: str, default = None) -> Any:
|
9316
|
+
InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigs.__key_warning(key)
|
9317
|
+
return super().get(key, default)
|
9318
|
+
|
9319
|
+
def __init__(__self__, *,
|
9320
|
+
type: str,
|
9321
|
+
license_type: Optional[str] = None):
|
9322
|
+
"""
|
9323
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
9324
|
+
:param str license_type: License Type for the OS license.
|
9325
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
9326
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
9327
|
+
"""
|
9328
|
+
pulumi.set(__self__, "type", type)
|
9329
|
+
if license_type is not None:
|
9330
|
+
pulumi.set(__self__, "license_type", license_type)
|
9331
|
+
|
9332
|
+
@property
|
9333
|
+
@pulumi.getter
|
9334
|
+
def type(self) -> str:
|
9335
|
+
"""
|
9336
|
+
The type of action to run when the instance is interrupted for eviction.
|
9337
|
+
"""
|
9338
|
+
return pulumi.get(self, "type")
|
9339
|
+
|
9340
|
+
@property
|
9341
|
+
@pulumi.getter(name="licenseType")
|
9342
|
+
def license_type(self) -> Optional[str]:
|
9343
|
+
"""
|
9344
|
+
License Type for the OS license.
|
9345
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
9346
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
9347
|
+
"""
|
9348
|
+
return pulumi.get(self, "license_type")
|
9349
|
+
|
9350
|
+
|
9126
9351
|
@pulumi.output_type
|
9127
9352
|
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict):
|
9128
9353
|
@staticmethod
|
@@ -11033,6 +11258,71 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails(dict):
|
|
11033
11258
|
return pulumi.get(self, "vpus_per_gb")
|
11034
11259
|
|
11035
11260
|
|
11261
|
+
@pulumi.output_type
|
11262
|
+
class InstanceLicensingConfigs(dict):
|
11263
|
+
@staticmethod
|
11264
|
+
def __key_warning(key: str):
|
11265
|
+
suggest = None
|
11266
|
+
if key == "licenseType":
|
11267
|
+
suggest = "license_type"
|
11268
|
+
elif key == "osVersion":
|
11269
|
+
suggest = "os_version"
|
11270
|
+
|
11271
|
+
if suggest:
|
11272
|
+
pulumi.log.warn(f"Key '{key}' not found in InstanceLicensingConfigs. Access the value via the '{suggest}' property getter instead.")
|
11273
|
+
|
11274
|
+
def __getitem__(self, key: str) -> Any:
|
11275
|
+
InstanceLicensingConfigs.__key_warning(key)
|
11276
|
+
return super().__getitem__(key)
|
11277
|
+
|
11278
|
+
def get(self, key: str, default = None) -> Any:
|
11279
|
+
InstanceLicensingConfigs.__key_warning(key)
|
11280
|
+
return super().get(key, default)
|
11281
|
+
|
11282
|
+
def __init__(__self__, *,
|
11283
|
+
type: str,
|
11284
|
+
license_type: Optional[str] = None,
|
11285
|
+
os_version: Optional[str] = None):
|
11286
|
+
"""
|
11287
|
+
:param str type: (Updatable) Operating System type of the Configuration.
|
11288
|
+
:param str license_type: (Updatable) License Type for the OS license.
|
11289
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11290
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11291
|
+
:param str os_version: The Operating System version of the license config.
|
11292
|
+
"""
|
11293
|
+
pulumi.set(__self__, "type", type)
|
11294
|
+
if license_type is not None:
|
11295
|
+
pulumi.set(__self__, "license_type", license_type)
|
11296
|
+
if os_version is not None:
|
11297
|
+
pulumi.set(__self__, "os_version", os_version)
|
11298
|
+
|
11299
|
+
@property
|
11300
|
+
@pulumi.getter
|
11301
|
+
def type(self) -> str:
|
11302
|
+
"""
|
11303
|
+
(Updatable) Operating System type of the Configuration.
|
11304
|
+
"""
|
11305
|
+
return pulumi.get(self, "type")
|
11306
|
+
|
11307
|
+
@property
|
11308
|
+
@pulumi.getter(name="licenseType")
|
11309
|
+
def license_type(self) -> Optional[str]:
|
11310
|
+
"""
|
11311
|
+
(Updatable) License Type for the OS license.
|
11312
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11313
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11314
|
+
"""
|
11315
|
+
return pulumi.get(self, "license_type")
|
11316
|
+
|
11317
|
+
@property
|
11318
|
+
@pulumi.getter(name="osVersion")
|
11319
|
+
def os_version(self) -> Optional[str]:
|
11320
|
+
"""
|
11321
|
+
The Operating System version of the license config.
|
11322
|
+
"""
|
11323
|
+
return pulumi.get(self, "os_version")
|
11324
|
+
|
11325
|
+
|
11036
11326
|
@pulumi.output_type
|
11037
11327
|
class InstancePlatformConfig(dict):
|
11038
11328
|
@staticmethod
|
@@ -14372,9 +14662,9 @@ class VirtualCircuitVirtualCircuitRedundancyMetadata(dict):
|
|
14372
14662
|
ipv4bgp_session_redundancy_status: Optional[str] = None,
|
14373
14663
|
ipv6bgp_session_redundancy_status: Optional[str] = None):
|
14374
14664
|
"""
|
14375
|
-
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit
|
14376
|
-
:param str ipv4bgp_session_redundancy_status:
|
14377
|
-
:param str ipv6bgp_session_redundancy_status:
|
14665
|
+
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit.
|
14666
|
+
:param str ipv4bgp_session_redundancy_status: Indicates if the configured level is met for IPv4 BGP redundancy.
|
14667
|
+
:param str ipv6bgp_session_redundancy_status: Indicates if the configured level is met for IPv6 BGP redundancy.
|
14378
14668
|
"""
|
14379
14669
|
if configured_redundancy_level is not None:
|
14380
14670
|
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
@@ -14387,7 +14677,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadata(dict):
|
|
14387
14677
|
@pulumi.getter(name="configuredRedundancyLevel")
|
14388
14678
|
def configured_redundancy_level(self) -> Optional[str]:
|
14389
14679
|
"""
|
14390
|
-
The configured redundancy level of the virtual circuit
|
14680
|
+
The configured redundancy level of the virtual circuit.
|
14391
14681
|
"""
|
14392
14682
|
return pulumi.get(self, "configured_redundancy_level")
|
14393
14683
|
|
@@ -14395,7 +14685,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadata(dict):
|
|
14395
14685
|
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
14396
14686
|
def ipv4bgp_session_redundancy_status(self) -> Optional[str]:
|
14397
14687
|
"""
|
14398
|
-
|
14688
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
14399
14689
|
"""
|
14400
14690
|
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
14401
14691
|
|
@@ -14403,7 +14693,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadata(dict):
|
|
14403
14693
|
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
14404
14694
|
def ipv6bgp_session_redundancy_status(self) -> Optional[str]:
|
14405
14695
|
"""
|
14406
|
-
|
14696
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
14407
14697
|
"""
|
14408
14698
|
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
14409
14699
|
|
@@ -14471,6 +14761,8 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14471
14761
|
suggest = "nsg_ids"
|
14472
14762
|
elif key == "privateIp":
|
14473
14763
|
suggest = "private_ip"
|
14764
|
+
elif key == "routeTableId":
|
14765
|
+
suggest = "route_table_id"
|
14474
14766
|
elif key == "securityAttributes":
|
14475
14767
|
suggest = "security_attributes"
|
14476
14768
|
elif key == "skipSourceDestCheck":
|
@@ -14502,6 +14794,7 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14502
14794
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
14503
14795
|
nsg_ids: Optional[Sequence[str]] = None,
|
14504
14796
|
private_ip: Optional[str] = None,
|
14797
|
+
route_table_id: Optional[str] = None,
|
14505
14798
|
security_attributes: Optional[Mapping[str, str]] = None,
|
14506
14799
|
skip_source_dest_check: Optional[bool] = None,
|
14507
14800
|
subnet_id: Optional[str] = None,
|
@@ -14574,6 +14867,8 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14574
14867
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
14575
14868
|
if private_ip is not None:
|
14576
14869
|
pulumi.set(__self__, "private_ip", private_ip)
|
14870
|
+
if route_table_id is not None:
|
14871
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
14577
14872
|
if security_attributes is not None:
|
14578
14873
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
14579
14874
|
if skip_source_dest_check is not None:
|
@@ -14687,6 +14982,11 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14687
14982
|
"""
|
14688
14983
|
return pulumi.get(self, "private_ip")
|
14689
14984
|
|
14985
|
+
@property
|
14986
|
+
@pulumi.getter(name="routeTableId")
|
14987
|
+
def route_table_id(self) -> Optional[str]:
|
14988
|
+
return pulumi.get(self, "route_table_id")
|
14989
|
+
|
14690
14990
|
@property
|
14691
14991
|
@pulumi.getter(name="securityAttributes")
|
14692
14992
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
@@ -17353,6 +17653,286 @@ class GetBootVolumesFilterResult(dict):
|
|
17353
17653
|
return pulumi.get(self, "regex")
|
17354
17654
|
|
17355
17655
|
|
17656
|
+
@pulumi.output_type
|
17657
|
+
class GetByoasnByoipRangeResult(dict):
|
17658
|
+
def __init__(__self__, *,
|
17659
|
+
as_path_prepend_length: int,
|
17660
|
+
byoip_range_id: str,
|
17661
|
+
cidr_block: str,
|
17662
|
+
ipv6cidr_block: str):
|
17663
|
+
"""
|
17664
|
+
:param int as_path_prepend_length: The as path prepend length.
|
17665
|
+
:param str byoip_range_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
17666
|
+
:param str cidr_block: The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
17667
|
+
:param str ipv6cidr_block: The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
17668
|
+
"""
|
17669
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
17670
|
+
pulumi.set(__self__, "byoip_range_id", byoip_range_id)
|
17671
|
+
pulumi.set(__self__, "cidr_block", cidr_block)
|
17672
|
+
pulumi.set(__self__, "ipv6cidr_block", ipv6cidr_block)
|
17673
|
+
|
17674
|
+
@property
|
17675
|
+
@pulumi.getter(name="asPathPrependLength")
|
17676
|
+
def as_path_prepend_length(self) -> int:
|
17677
|
+
"""
|
17678
|
+
The as path prepend length.
|
17679
|
+
"""
|
17680
|
+
return pulumi.get(self, "as_path_prepend_length")
|
17681
|
+
|
17682
|
+
@property
|
17683
|
+
@pulumi.getter(name="byoipRangeId")
|
17684
|
+
def byoip_range_id(self) -> str:
|
17685
|
+
"""
|
17686
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
17687
|
+
"""
|
17688
|
+
return pulumi.get(self, "byoip_range_id")
|
17689
|
+
|
17690
|
+
@property
|
17691
|
+
@pulumi.getter(name="cidrBlock")
|
17692
|
+
def cidr_block(self) -> str:
|
17693
|
+
"""
|
17694
|
+
The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
17695
|
+
"""
|
17696
|
+
return pulumi.get(self, "cidr_block")
|
17697
|
+
|
17698
|
+
@property
|
17699
|
+
@pulumi.getter(name="ipv6cidrBlock")
|
17700
|
+
def ipv6cidr_block(self) -> str:
|
17701
|
+
"""
|
17702
|
+
The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
17703
|
+
"""
|
17704
|
+
return pulumi.get(self, "ipv6cidr_block")
|
17705
|
+
|
17706
|
+
|
17707
|
+
@pulumi.output_type
|
17708
|
+
class GetByoasnsByoasnCollectionResult(dict):
|
17709
|
+
def __init__(__self__, *,
|
17710
|
+
items: Sequence['outputs.GetByoasnsByoasnCollectionItemResult']):
|
17711
|
+
pulumi.set(__self__, "items", items)
|
17712
|
+
|
17713
|
+
@property
|
17714
|
+
@pulumi.getter
|
17715
|
+
def items(self) -> Sequence['outputs.GetByoasnsByoasnCollectionItemResult']:
|
17716
|
+
return pulumi.get(self, "items")
|
17717
|
+
|
17718
|
+
|
17719
|
+
@pulumi.output_type
|
17720
|
+
class GetByoasnsByoasnCollectionItemResult(dict):
|
17721
|
+
def __init__(__self__, *,
|
17722
|
+
asn: str,
|
17723
|
+
byoip_ranges: Sequence['outputs.GetByoasnsByoasnCollectionItemByoipRangeResult'],
|
17724
|
+
compartment_id: str,
|
17725
|
+
defined_tags: Mapping[str, str],
|
17726
|
+
display_name: str,
|
17727
|
+
freeform_tags: Mapping[str, str],
|
17728
|
+
id: str,
|
17729
|
+
state: str,
|
17730
|
+
time_created: str,
|
17731
|
+
time_updated: str,
|
17732
|
+
time_validated: str,
|
17733
|
+
validation_token: str):
|
17734
|
+
"""
|
17735
|
+
:param str asn: The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
17736
|
+
:param Sequence['GetByoasnsByoasnCollectionItemByoipRangeArgs'] byoip_ranges: The BYOIP Ranges that has the `Byoasn` as origin.
|
17737
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
17738
|
+
:param Mapping[str, str] defined_tags: 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"}`
|
17739
|
+
:param str display_name: A filter to return only resources that match the given display name exactly.
|
17740
|
+
:param Mapping[str, str] freeform_tags: 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"}`
|
17741
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
17742
|
+
:param str state: A filter to return only resources that match the given lifecycle state name exactly.
|
17743
|
+
:param str time_created: The date and time the `Byoasn` resource was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17744
|
+
:param str time_updated: The date and time the `Byoasn` resource was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17745
|
+
:param str time_validated: The date and time the `Byoasn` resource was validated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17746
|
+
:param str validation_token: The validation token is an internally-generated ASCII string used in the validation process. See [Importing a Byoasn](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/BYOASN.htm) for details.
|
17747
|
+
"""
|
17748
|
+
pulumi.set(__self__, "asn", asn)
|
17749
|
+
pulumi.set(__self__, "byoip_ranges", byoip_ranges)
|
17750
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
17751
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
17752
|
+
pulumi.set(__self__, "display_name", display_name)
|
17753
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
17754
|
+
pulumi.set(__self__, "id", id)
|
17755
|
+
pulumi.set(__self__, "state", state)
|
17756
|
+
pulumi.set(__self__, "time_created", time_created)
|
17757
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
17758
|
+
pulumi.set(__self__, "time_validated", time_validated)
|
17759
|
+
pulumi.set(__self__, "validation_token", validation_token)
|
17760
|
+
|
17761
|
+
@property
|
17762
|
+
@pulumi.getter
|
17763
|
+
def asn(self) -> str:
|
17764
|
+
"""
|
17765
|
+
The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
17766
|
+
"""
|
17767
|
+
return pulumi.get(self, "asn")
|
17768
|
+
|
17769
|
+
@property
|
17770
|
+
@pulumi.getter(name="byoipRanges")
|
17771
|
+
def byoip_ranges(self) -> Sequence['outputs.GetByoasnsByoasnCollectionItemByoipRangeResult']:
|
17772
|
+
"""
|
17773
|
+
The BYOIP Ranges that has the `Byoasn` as origin.
|
17774
|
+
"""
|
17775
|
+
return pulumi.get(self, "byoip_ranges")
|
17776
|
+
|
17777
|
+
@property
|
17778
|
+
@pulumi.getter(name="compartmentId")
|
17779
|
+
def compartment_id(self) -> str:
|
17780
|
+
"""
|
17781
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
17782
|
+
"""
|
17783
|
+
return pulumi.get(self, "compartment_id")
|
17784
|
+
|
17785
|
+
@property
|
17786
|
+
@pulumi.getter(name="definedTags")
|
17787
|
+
def defined_tags(self) -> Mapping[str, str]:
|
17788
|
+
"""
|
17789
|
+
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"}`
|
17790
|
+
"""
|
17791
|
+
return pulumi.get(self, "defined_tags")
|
17792
|
+
|
17793
|
+
@property
|
17794
|
+
@pulumi.getter(name="displayName")
|
17795
|
+
def display_name(self) -> str:
|
17796
|
+
"""
|
17797
|
+
A filter to return only resources that match the given display name exactly.
|
17798
|
+
"""
|
17799
|
+
return pulumi.get(self, "display_name")
|
17800
|
+
|
17801
|
+
@property
|
17802
|
+
@pulumi.getter(name="freeformTags")
|
17803
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
17804
|
+
"""
|
17805
|
+
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"}`
|
17806
|
+
"""
|
17807
|
+
return pulumi.get(self, "freeform_tags")
|
17808
|
+
|
17809
|
+
@property
|
17810
|
+
@pulumi.getter
|
17811
|
+
def id(self) -> str:
|
17812
|
+
"""
|
17813
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
17814
|
+
"""
|
17815
|
+
return pulumi.get(self, "id")
|
17816
|
+
|
17817
|
+
@property
|
17818
|
+
@pulumi.getter
|
17819
|
+
def state(self) -> str:
|
17820
|
+
"""
|
17821
|
+
A filter to return only resources that match the given lifecycle state name exactly.
|
17822
|
+
"""
|
17823
|
+
return pulumi.get(self, "state")
|
17824
|
+
|
17825
|
+
@property
|
17826
|
+
@pulumi.getter(name="timeCreated")
|
17827
|
+
def time_created(self) -> str:
|
17828
|
+
"""
|
17829
|
+
The date and time the `Byoasn` resource was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17830
|
+
"""
|
17831
|
+
return pulumi.get(self, "time_created")
|
17832
|
+
|
17833
|
+
@property
|
17834
|
+
@pulumi.getter(name="timeUpdated")
|
17835
|
+
def time_updated(self) -> str:
|
17836
|
+
"""
|
17837
|
+
The date and time the `Byoasn` resource was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17838
|
+
"""
|
17839
|
+
return pulumi.get(self, "time_updated")
|
17840
|
+
|
17841
|
+
@property
|
17842
|
+
@pulumi.getter(name="timeValidated")
|
17843
|
+
def time_validated(self) -> str:
|
17844
|
+
"""
|
17845
|
+
The date and time the `Byoasn` resource was validated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17846
|
+
"""
|
17847
|
+
return pulumi.get(self, "time_validated")
|
17848
|
+
|
17849
|
+
@property
|
17850
|
+
@pulumi.getter(name="validationToken")
|
17851
|
+
def validation_token(self) -> str:
|
17852
|
+
"""
|
17853
|
+
The validation token is an internally-generated ASCII string used in the validation process. See [Importing a Byoasn](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/BYOASN.htm) for details.
|
17854
|
+
"""
|
17855
|
+
return pulumi.get(self, "validation_token")
|
17856
|
+
|
17857
|
+
|
17858
|
+
@pulumi.output_type
|
17859
|
+
class GetByoasnsByoasnCollectionItemByoipRangeResult(dict):
|
17860
|
+
def __init__(__self__, *,
|
17861
|
+
as_path_prepend_length: int,
|
17862
|
+
byoip_range_id: str,
|
17863
|
+
cidr_block: str,
|
17864
|
+
ipv6cidr_block: str):
|
17865
|
+
"""
|
17866
|
+
:param int as_path_prepend_length: The as path prepend length.
|
17867
|
+
:param str byoip_range_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
17868
|
+
:param str cidr_block: The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
17869
|
+
:param str ipv6cidr_block: The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
17870
|
+
"""
|
17871
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
17872
|
+
pulumi.set(__self__, "byoip_range_id", byoip_range_id)
|
17873
|
+
pulumi.set(__self__, "cidr_block", cidr_block)
|
17874
|
+
pulumi.set(__self__, "ipv6cidr_block", ipv6cidr_block)
|
17875
|
+
|
17876
|
+
@property
|
17877
|
+
@pulumi.getter(name="asPathPrependLength")
|
17878
|
+
def as_path_prepend_length(self) -> int:
|
17879
|
+
"""
|
17880
|
+
The as path prepend length.
|
17881
|
+
"""
|
17882
|
+
return pulumi.get(self, "as_path_prepend_length")
|
17883
|
+
|
17884
|
+
@property
|
17885
|
+
@pulumi.getter(name="byoipRangeId")
|
17886
|
+
def byoip_range_id(self) -> str:
|
17887
|
+
"""
|
17888
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
17889
|
+
"""
|
17890
|
+
return pulumi.get(self, "byoip_range_id")
|
17891
|
+
|
17892
|
+
@property
|
17893
|
+
@pulumi.getter(name="cidrBlock")
|
17894
|
+
def cidr_block(self) -> str:
|
17895
|
+
"""
|
17896
|
+
The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
17897
|
+
"""
|
17898
|
+
return pulumi.get(self, "cidr_block")
|
17899
|
+
|
17900
|
+
@property
|
17901
|
+
@pulumi.getter(name="ipv6cidrBlock")
|
17902
|
+
def ipv6cidr_block(self) -> str:
|
17903
|
+
"""
|
17904
|
+
The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
17905
|
+
"""
|
17906
|
+
return pulumi.get(self, "ipv6cidr_block")
|
17907
|
+
|
17908
|
+
|
17909
|
+
@pulumi.output_type
|
17910
|
+
class GetByoasnsFilterResult(dict):
|
17911
|
+
def __init__(__self__, *,
|
17912
|
+
name: str,
|
17913
|
+
values: Sequence[str],
|
17914
|
+
regex: Optional[bool] = None):
|
17915
|
+
pulumi.set(__self__, "name", name)
|
17916
|
+
pulumi.set(__self__, "values", values)
|
17917
|
+
if regex is not None:
|
17918
|
+
pulumi.set(__self__, "regex", regex)
|
17919
|
+
|
17920
|
+
@property
|
17921
|
+
@pulumi.getter
|
17922
|
+
def name(self) -> str:
|
17923
|
+
return pulumi.get(self, "name")
|
17924
|
+
|
17925
|
+
@property
|
17926
|
+
@pulumi.getter
|
17927
|
+
def values(self) -> Sequence[str]:
|
17928
|
+
return pulumi.get(self, "values")
|
17929
|
+
|
17930
|
+
@property
|
17931
|
+
@pulumi.getter
|
17932
|
+
def regex(self) -> Optional[bool]:
|
17933
|
+
return pulumi.get(self, "regex")
|
17934
|
+
|
17935
|
+
|
17356
17936
|
@pulumi.output_type
|
17357
17937
|
class GetByoipAllocatedRangesByoipAllocatedRangeCollectionResult(dict):
|
17358
17938
|
def __init__(__self__, *,
|
@@ -17478,6 +18058,46 @@ class GetByoipRangeByoipRangeVcnIpv6allocationResult(dict):
|
|
17478
18058
|
return pulumi.get(self, "vcn_id")
|
17479
18059
|
|
17480
18060
|
|
18061
|
+
@pulumi.output_type
|
18062
|
+
class GetByoipRangeOriginAsnResult(dict):
|
18063
|
+
def __init__(__self__, *,
|
18064
|
+
as_path_prepend_length: int,
|
18065
|
+
asn: str,
|
18066
|
+
byoasn_id: str):
|
18067
|
+
"""
|
18068
|
+
:param int as_path_prepend_length: The as path prepend length.
|
18069
|
+
:param str asn: The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
18070
|
+
:param str byoasn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
18071
|
+
"""
|
18072
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
18073
|
+
pulumi.set(__self__, "asn", asn)
|
18074
|
+
pulumi.set(__self__, "byoasn_id", byoasn_id)
|
18075
|
+
|
18076
|
+
@property
|
18077
|
+
@pulumi.getter(name="asPathPrependLength")
|
18078
|
+
def as_path_prepend_length(self) -> int:
|
18079
|
+
"""
|
18080
|
+
The as path prepend length.
|
18081
|
+
"""
|
18082
|
+
return pulumi.get(self, "as_path_prepend_length")
|
18083
|
+
|
18084
|
+
@property
|
18085
|
+
@pulumi.getter
|
18086
|
+
def asn(self) -> str:
|
18087
|
+
"""
|
18088
|
+
The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
18089
|
+
"""
|
18090
|
+
return pulumi.get(self, "asn")
|
18091
|
+
|
18092
|
+
@property
|
18093
|
+
@pulumi.getter(name="byoasnId")
|
18094
|
+
def byoasn_id(self) -> str:
|
18095
|
+
"""
|
18096
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
18097
|
+
"""
|
18098
|
+
return pulumi.get(self, "byoasn_id")
|
18099
|
+
|
18100
|
+
|
17481
18101
|
@pulumi.output_type
|
17482
18102
|
class GetByoipRangesByoipRangeCollectionResult(dict):
|
17483
18103
|
def __init__(__self__, *,
|
@@ -17500,6 +18120,7 @@ class GetByoipRangesByoipRangeCollectionItemResult(dict):
|
|
17500
18120
|
id: str,
|
17501
18121
|
ipv6cidr_block: str,
|
17502
18122
|
lifecycle_details: str,
|
18123
|
+
origin_asns: Sequence['outputs.GetByoipRangesByoipRangeCollectionItemOriginAsnResult'],
|
17503
18124
|
state: str,
|
17504
18125
|
time_advertised: str,
|
17505
18126
|
time_created: str,
|
@@ -17516,6 +18137,7 @@ class GetByoipRangesByoipRangeCollectionItemResult(dict):
|
|
17516
18137
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource.
|
17517
18138
|
:param str ipv6cidr_block: The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
|
17518
18139
|
:param str lifecycle_details: The `ByoipRange` resource's current status.
|
18140
|
+
:param Sequence['GetByoipRangesByoipRangeCollectionItemOriginAsnArgs'] origin_asns: Information about the origin asn.
|
17519
18141
|
:param str state: A filter to return only resources that match the given lifecycle state name exactly.
|
17520
18142
|
:param str time_advertised: The date and time the `ByoipRange` resource was advertised to the internet by BGP, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
17521
18143
|
:param str time_created: The date and time the `ByoipRange` resource was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -17532,6 +18154,7 @@ class GetByoipRangesByoipRangeCollectionItemResult(dict):
|
|
17532
18154
|
pulumi.set(__self__, "id", id)
|
17533
18155
|
pulumi.set(__self__, "ipv6cidr_block", ipv6cidr_block)
|
17534
18156
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
18157
|
+
pulumi.set(__self__, "origin_asns", origin_asns)
|
17535
18158
|
pulumi.set(__self__, "state", state)
|
17536
18159
|
pulumi.set(__self__, "time_advertised", time_advertised)
|
17537
18160
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -17599,6 +18222,14 @@ class GetByoipRangesByoipRangeCollectionItemResult(dict):
|
|
17599
18222
|
"""
|
17600
18223
|
return pulumi.get(self, "lifecycle_details")
|
17601
18224
|
|
18225
|
+
@property
|
18226
|
+
@pulumi.getter(name="originAsns")
|
18227
|
+
def origin_asns(self) -> Sequence['outputs.GetByoipRangesByoipRangeCollectionItemOriginAsnResult']:
|
18228
|
+
"""
|
18229
|
+
Information about the origin asn.
|
18230
|
+
"""
|
18231
|
+
return pulumi.get(self, "origin_asns")
|
18232
|
+
|
17602
18233
|
@property
|
17603
18234
|
@pulumi.getter
|
17604
18235
|
def state(self) -> str:
|
@@ -17715,6 +18346,46 @@ class GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocationResult(di
|
|
17715
18346
|
return pulumi.get(self, "vcn_id")
|
17716
18347
|
|
17717
18348
|
|
18349
|
+
@pulumi.output_type
|
18350
|
+
class GetByoipRangesByoipRangeCollectionItemOriginAsnResult(dict):
|
18351
|
+
def __init__(__self__, *,
|
18352
|
+
as_path_prepend_length: int,
|
18353
|
+
asn: str,
|
18354
|
+
byoasn_id: str):
|
18355
|
+
"""
|
18356
|
+
:param int as_path_prepend_length: The as path prepend length.
|
18357
|
+
:param str asn: The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
18358
|
+
:param str byoasn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
18359
|
+
"""
|
18360
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
18361
|
+
pulumi.set(__self__, "asn", asn)
|
18362
|
+
pulumi.set(__self__, "byoasn_id", byoasn_id)
|
18363
|
+
|
18364
|
+
@property
|
18365
|
+
@pulumi.getter(name="asPathPrependLength")
|
18366
|
+
def as_path_prepend_length(self) -> int:
|
18367
|
+
"""
|
18368
|
+
The as path prepend length.
|
18369
|
+
"""
|
18370
|
+
return pulumi.get(self, "as_path_prepend_length")
|
18371
|
+
|
18372
|
+
@property
|
18373
|
+
@pulumi.getter
|
18374
|
+
def asn(self) -> str:
|
18375
|
+
"""
|
18376
|
+
The Autonomous System Number (ASN) you are importing to the Oracle cloud.
|
18377
|
+
"""
|
18378
|
+
return pulumi.get(self, "asn")
|
18379
|
+
|
18380
|
+
@property
|
18381
|
+
@pulumi.getter(name="byoasnId")
|
18382
|
+
def byoasn_id(self) -> str:
|
18383
|
+
"""
|
18384
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `Byoasn` resource.
|
18385
|
+
"""
|
18386
|
+
return pulumi.get(self, "byoasn_id")
|
18387
|
+
|
18388
|
+
|
17718
18389
|
@pulumi.output_type
|
17719
18390
|
class GetByoipRangesFilterResult(dict):
|
17720
18391
|
def __init__(__self__, *,
|
@@ -27065,6 +27736,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
27065
27736
|
is_pv_encryption_in_transit_enabled: bool,
|
27066
27737
|
launch_mode: str,
|
27067
27738
|
launch_options: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionResult'],
|
27739
|
+
licensing_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult'],
|
27068
27740
|
metadata: Mapping[str, str],
|
27069
27741
|
platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
|
27070
27742
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
|
@@ -27096,13 +27768,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
27096
27768
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
27097
27769
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
27098
27770
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
27771
|
+
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
27099
27772
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
27100
27773
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigArgs'] platform_configs: The platform configuration requested for the instance.
|
27101
27774
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
|
27102
27775
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
27103
27776
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
27104
27777
|
* `REBOOT` - Run maintenance using a reboot.
|
27105
|
-
:param Mapping[str, str] security_attributes: Security
|
27778
|
+
:param Mapping[str, 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"}}}`
|
27106
27779
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
27107
27780
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
27108
27781
|
"""
|
@@ -27124,6 +27797,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
27124
27797
|
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
27125
27798
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
27126
27799
|
pulumi.set(__self__, "launch_options", launch_options)
|
27800
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
27127
27801
|
pulumi.set(__self__, "metadata", metadata)
|
27128
27802
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
27129
27803
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
@@ -27281,6 +27955,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
27281
27955
|
"""
|
27282
27956
|
return pulumi.get(self, "launch_options")
|
27283
27957
|
|
27958
|
+
@property
|
27959
|
+
@pulumi.getter(name="licensingConfigs")
|
27960
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult']:
|
27961
|
+
"""
|
27962
|
+
List of licensing configurations associated with target launch values.
|
27963
|
+
"""
|
27964
|
+
return pulumi.get(self, "licensing_configs")
|
27965
|
+
|
27284
27966
|
@property
|
27285
27967
|
@pulumi.getter
|
27286
27968
|
def metadata(self) -> Mapping[str, str]:
|
@@ -27319,7 +28001,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
27319
28001
|
@pulumi.getter(name="securityAttributes")
|
27320
28002
|
def security_attributes(self) -> Mapping[str, str]:
|
27321
28003
|
"""
|
27322
|
-
Security
|
28004
|
+
[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"}}}`
|
27323
28005
|
"""
|
27324
28006
|
return pulumi.get(self, "security_attributes")
|
27325
28007
|
|
@@ -27485,7 +28167,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
27485
28167
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
27486
28168
|
:param Sequence[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/).
|
27487
28169
|
:param 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.
|
27488
|
-
:param Mapping[str, str] security_attributes: Security
|
28170
|
+
:param Mapping[str, 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"}}}`
|
27489
28171
|
:param 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.
|
27490
28172
|
:param 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.
|
27491
28173
|
"""
|
@@ -27587,7 +28269,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
27587
28269
|
@pulumi.getter(name="securityAttributes")
|
27588
28270
|
def security_attributes(self) -> Mapping[str, str]:
|
27589
28271
|
"""
|
27590
|
-
Security
|
28272
|
+
[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"}}}`
|
27591
28273
|
"""
|
27592
28274
|
return pulumi.get(self, "security_attributes")
|
27593
28275
|
|
@@ -27758,6 +28440,39 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionResult(dict)
|
|
27758
28440
|
return pulumi.get(self, "remote_data_volume_type")
|
27759
28441
|
|
27760
28442
|
|
28443
|
+
@pulumi.output_type
|
28444
|
+
class GetInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult(dict):
|
28445
|
+
def __init__(__self__, *,
|
28446
|
+
license_type: str,
|
28447
|
+
type: str):
|
28448
|
+
"""
|
28449
|
+
:param str license_type: License Type for the OS license.
|
28450
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
28451
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
28452
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
28453
|
+
"""
|
28454
|
+
pulumi.set(__self__, "license_type", license_type)
|
28455
|
+
pulumi.set(__self__, "type", type)
|
28456
|
+
|
28457
|
+
@property
|
28458
|
+
@pulumi.getter(name="licenseType")
|
28459
|
+
def license_type(self) -> str:
|
28460
|
+
"""
|
28461
|
+
License Type for the OS license.
|
28462
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
28463
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
28464
|
+
"""
|
28465
|
+
return pulumi.get(self, "license_type")
|
28466
|
+
|
28467
|
+
@property
|
28468
|
+
@pulumi.getter
|
28469
|
+
def type(self) -> str:
|
28470
|
+
"""
|
28471
|
+
The type of action to run when the instance is interrupted for eviction.
|
28472
|
+
"""
|
28473
|
+
return pulumi.get(self, "type")
|
28474
|
+
|
28475
|
+
|
27761
28476
|
@pulumi.output_type
|
27762
28477
|
class GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult(dict):
|
27763
28478
|
def __init__(__self__, *,
|
@@ -28581,6 +29296,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28581
29296
|
is_pv_encryption_in_transit_enabled: bool,
|
28582
29297
|
launch_mode: str,
|
28583
29298
|
launch_options: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionResult'],
|
29299
|
+
licensing_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult'],
|
28584
29300
|
metadata: Mapping[str, str],
|
28585
29301
|
platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
|
28586
29302
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
|
@@ -28612,13 +29328,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28612
29328
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
28613
29329
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
28614
29330
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
29331
|
+
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
28615
29332
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
28616
29333
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigArgs'] platform_configs: The platform configuration requested for the instance.
|
28617
29334
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
|
28618
29335
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
28619
29336
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
28620
29337
|
* `REBOOT` - Run maintenance using a reboot.
|
28621
|
-
:param Mapping[str, str] security_attributes: Security
|
29338
|
+
:param Mapping[str, 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"}}}`
|
28622
29339
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
28623
29340
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
28624
29341
|
"""
|
@@ -28640,6 +29357,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28640
29357
|
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
28641
29358
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
28642
29359
|
pulumi.set(__self__, "launch_options", launch_options)
|
29360
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
28643
29361
|
pulumi.set(__self__, "metadata", metadata)
|
28644
29362
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
28645
29363
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
@@ -28797,6 +29515,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28797
29515
|
"""
|
28798
29516
|
return pulumi.get(self, "launch_options")
|
28799
29517
|
|
29518
|
+
@property
|
29519
|
+
@pulumi.getter(name="licensingConfigs")
|
29520
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult']:
|
29521
|
+
"""
|
29522
|
+
List of licensing configurations associated with target launch values.
|
29523
|
+
"""
|
29524
|
+
return pulumi.get(self, "licensing_configs")
|
29525
|
+
|
28800
29526
|
@property
|
28801
29527
|
@pulumi.getter
|
28802
29528
|
def metadata(self) -> Mapping[str, str]:
|
@@ -28835,7 +29561,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28835
29561
|
@pulumi.getter(name="securityAttributes")
|
28836
29562
|
def security_attributes(self) -> Mapping[str, str]:
|
28837
29563
|
"""
|
28838
|
-
Security
|
29564
|
+
[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"}}}`
|
28839
29565
|
"""
|
28840
29566
|
return pulumi.get(self, "security_attributes")
|
28841
29567
|
|
@@ -29001,7 +29727,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
29001
29727
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
29002
29728
|
:param Sequence[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/).
|
29003
29729
|
:param 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.
|
29004
|
-
:param Mapping[str, str] security_attributes: Security
|
29730
|
+
:param Mapping[str, 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"}}}`
|
29005
29731
|
:param 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.
|
29006
29732
|
:param 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.
|
29007
29733
|
"""
|
@@ -29103,7 +29829,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
29103
29829
|
@pulumi.getter(name="securityAttributes")
|
29104
29830
|
def security_attributes(self) -> Mapping[str, str]:
|
29105
29831
|
"""
|
29106
|
-
Security
|
29832
|
+
[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"}}}`
|
29107
29833
|
"""
|
29108
29834
|
return pulumi.get(self, "security_attributes")
|
29109
29835
|
|
@@ -29274,6 +30000,39 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionResult
|
|
29274
30000
|
return pulumi.get(self, "remote_data_volume_type")
|
29275
30001
|
|
29276
30002
|
|
30003
|
+
@pulumi.output_type
|
30004
|
+
class GetInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult(dict):
|
30005
|
+
def __init__(__self__, *,
|
30006
|
+
license_type: str,
|
30007
|
+
type: str):
|
30008
|
+
"""
|
30009
|
+
:param str license_type: License Type for the OS license.
|
30010
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
30011
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
30012
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
30013
|
+
"""
|
30014
|
+
pulumi.set(__self__, "license_type", license_type)
|
30015
|
+
pulumi.set(__self__, "type", type)
|
30016
|
+
|
30017
|
+
@property
|
30018
|
+
@pulumi.getter(name="licenseType")
|
30019
|
+
def license_type(self) -> str:
|
30020
|
+
"""
|
30021
|
+
License Type for the OS license.
|
30022
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
30023
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
30024
|
+
"""
|
30025
|
+
return pulumi.get(self, "license_type")
|
30026
|
+
|
30027
|
+
@property
|
30028
|
+
@pulumi.getter
|
30029
|
+
def type(self) -> str:
|
30030
|
+
"""
|
30031
|
+
The type of action to run when the instance is interrupted for eviction.
|
30032
|
+
"""
|
30033
|
+
return pulumi.get(self, "type")
|
30034
|
+
|
30035
|
+
|
29277
30036
|
@pulumi.output_type
|
29278
30037
|
class GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult(dict):
|
29279
30038
|
def __init__(__self__, *,
|
@@ -29713,7 +30472,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
29713
30472
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
29714
30473
|
:param Sequence[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/).
|
29715
30474
|
:param 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.
|
29716
|
-
:param Mapping[str, str] security_attributes: Security
|
30475
|
+
:param Mapping[str, 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"}}}`
|
29717
30476
|
:param 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.
|
29718
30477
|
:param 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.
|
29719
30478
|
"""
|
@@ -29815,7 +30574,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
29815
30574
|
@pulumi.getter(name="securityAttributes")
|
29816
30575
|
def security_attributes(self) -> Mapping[str, str]:
|
29817
30576
|
"""
|
29818
|
-
Security
|
30577
|
+
[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"}}}`
|
29819
30578
|
"""
|
29820
30579
|
return pulumi.get(self, "security_attributes")
|
29821
30580
|
|
@@ -29932,7 +30691,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
29932
30691
|
:param Sequence['GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
29933
30692
|
:param Sequence[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/).
|
29934
30693
|
:param 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.
|
29935
|
-
:param Mapping[str, str] security_attributes: Security
|
30694
|
+
:param Mapping[str, 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"}}}`
|
29936
30695
|
:param 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.
|
29937
30696
|
:param 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.
|
29938
30697
|
"""
|
@@ -30034,7 +30793,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
30034
30793
|
@pulumi.getter(name="securityAttributes")
|
30035
30794
|
def security_attributes(self) -> Mapping[str, str]:
|
30036
30795
|
"""
|
30037
|
-
Security
|
30796
|
+
[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"}}}`
|
30038
30797
|
"""
|
30039
30798
|
return pulumi.get(self, "security_attributes")
|
30040
30799
|
|
@@ -30684,6 +31443,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30684
31443
|
is_pv_encryption_in_transit_enabled: bool,
|
30685
31444
|
launch_mode: str,
|
30686
31445
|
launch_options: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionResult'],
|
31446
|
+
licensing_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult'],
|
30687
31447
|
metadata: Mapping[str, str],
|
30688
31448
|
platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
|
30689
31449
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
|
@@ -30715,13 +31475,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30715
31475
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
30716
31476
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
30717
31477
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLaunchOptionArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
31478
|
+
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
30718
31479
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
30719
31480
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigArgs'] platform_configs: The platform configuration requested for the instance.
|
30720
31481
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
|
30721
31482
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
30722
31483
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
30723
31484
|
* `REBOOT` - Run maintenance using a reboot.
|
30724
|
-
:param Mapping[str, str] security_attributes: Security
|
31485
|
+
:param Mapping[str, 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"}}}`
|
30725
31486
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
30726
31487
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
30727
31488
|
"""
|
@@ -30743,6 +31504,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30743
31504
|
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
30744
31505
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
30745
31506
|
pulumi.set(__self__, "launch_options", launch_options)
|
31507
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
30746
31508
|
pulumi.set(__self__, "metadata", metadata)
|
30747
31509
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
30748
31510
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
@@ -30900,6 +31662,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30900
31662
|
"""
|
30901
31663
|
return pulumi.get(self, "launch_options")
|
30902
31664
|
|
31665
|
+
@property
|
31666
|
+
@pulumi.getter(name="licensingConfigs")
|
31667
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult']:
|
31668
|
+
"""
|
31669
|
+
List of licensing configurations associated with target launch values.
|
31670
|
+
"""
|
31671
|
+
return pulumi.get(self, "licensing_configs")
|
31672
|
+
|
30903
31673
|
@property
|
30904
31674
|
@pulumi.getter
|
30905
31675
|
def metadata(self) -> Mapping[str, str]:
|
@@ -30938,7 +31708,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30938
31708
|
@pulumi.getter(name="securityAttributes")
|
30939
31709
|
def security_attributes(self) -> Mapping[str, str]:
|
30940
31710
|
"""
|
30941
|
-
Security
|
31711
|
+
[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"}}}`
|
30942
31712
|
"""
|
30943
31713
|
return pulumi.get(self, "security_attributes")
|
30944
31714
|
|
@@ -31104,7 +31874,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
31104
31874
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
31105
31875
|
:param Sequence[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/).
|
31106
31876
|
:param 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.
|
31107
|
-
:param Mapping[str, str] security_attributes: Security
|
31877
|
+
:param Mapping[str, 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"}}}`
|
31108
31878
|
:param 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.
|
31109
31879
|
:param 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.
|
31110
31880
|
"""
|
@@ -31206,7 +31976,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
31206
31976
|
@pulumi.getter(name="securityAttributes")
|
31207
31977
|
def security_attributes(self) -> Mapping[str, str]:
|
31208
31978
|
"""
|
31209
|
-
Security
|
31979
|
+
[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"}}}`
|
31210
31980
|
"""
|
31211
31981
|
return pulumi.get(self, "security_attributes")
|
31212
31982
|
|
@@ -31377,6 +32147,39 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLa
|
|
31377
32147
|
return pulumi.get(self, "remote_data_volume_type")
|
31378
32148
|
|
31379
32149
|
|
32150
|
+
@pulumi.output_type
|
32151
|
+
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailLicensingConfigResult(dict):
|
32152
|
+
def __init__(__self__, *,
|
32153
|
+
license_type: str,
|
32154
|
+
type: str):
|
32155
|
+
"""
|
32156
|
+
:param str license_type: License Type for the OS license.
|
32157
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
32158
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
32159
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
32160
|
+
"""
|
32161
|
+
pulumi.set(__self__, "license_type", license_type)
|
32162
|
+
pulumi.set(__self__, "type", type)
|
32163
|
+
|
32164
|
+
@property
|
32165
|
+
@pulumi.getter(name="licenseType")
|
32166
|
+
def license_type(self) -> str:
|
32167
|
+
"""
|
32168
|
+
License Type for the OS license.
|
32169
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
32170
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
32171
|
+
"""
|
32172
|
+
return pulumi.get(self, "license_type")
|
32173
|
+
|
32174
|
+
@property
|
32175
|
+
@pulumi.getter
|
32176
|
+
def type(self) -> str:
|
32177
|
+
"""
|
32178
|
+
The type of action to run when the instance is interrupted for eviction.
|
32179
|
+
"""
|
32180
|
+
return pulumi.get(self, "type")
|
32181
|
+
|
32182
|
+
|
31380
32183
|
@pulumi.output_type
|
31381
32184
|
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult(dict):
|
31382
32185
|
def __init__(__self__, *,
|
@@ -32200,6 +33003,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32200
33003
|
is_pv_encryption_in_transit_enabled: bool,
|
32201
33004
|
launch_mode: str,
|
32202
33005
|
launch_options: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionResult'],
|
33006
|
+
licensing_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult'],
|
32203
33007
|
metadata: Mapping[str, str],
|
32204
33008
|
platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
|
32205
33009
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
|
@@ -32231,13 +33035,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32231
33035
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
32232
33036
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
32233
33037
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLaunchOptionArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
33038
|
+
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
32234
33039
|
:param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
32235
33040
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigArgs'] platform_configs: The platform configuration requested for the instance.
|
32236
33041
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
|
32237
33042
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
32238
33043
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
32239
33044
|
* `REBOOT` - Run maintenance using a reboot.
|
32240
|
-
:param Mapping[str, str] security_attributes: Security
|
33045
|
+
:param Mapping[str, 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"}}}`
|
32241
33046
|
:param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
32242
33047
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
32243
33048
|
"""
|
@@ -32259,6 +33064,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32259
33064
|
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
32260
33065
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
32261
33066
|
pulumi.set(__self__, "launch_options", launch_options)
|
33067
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
32262
33068
|
pulumi.set(__self__, "metadata", metadata)
|
32263
33069
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
32264
33070
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
@@ -32416,6 +33222,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32416
33222
|
"""
|
32417
33223
|
return pulumi.get(self, "launch_options")
|
32418
33224
|
|
33225
|
+
@property
|
33226
|
+
@pulumi.getter(name="licensingConfigs")
|
33227
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult']:
|
33228
|
+
"""
|
33229
|
+
List of licensing configurations associated with target launch values.
|
33230
|
+
"""
|
33231
|
+
return pulumi.get(self, "licensing_configs")
|
33232
|
+
|
32419
33233
|
@property
|
32420
33234
|
@pulumi.getter
|
32421
33235
|
def metadata(self) -> Mapping[str, str]:
|
@@ -32454,7 +33268,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32454
33268
|
@pulumi.getter(name="securityAttributes")
|
32455
33269
|
def security_attributes(self) -> Mapping[str, str]:
|
32456
33270
|
"""
|
32457
|
-
Security
|
33271
|
+
[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"}}}`
|
32458
33272
|
"""
|
32459
33273
|
return pulumi.get(self, "security_attributes")
|
32460
33274
|
|
@@ -32620,7 +33434,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32620
33434
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
32621
33435
|
:param Sequence[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/).
|
32622
33436
|
:param 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.
|
32623
|
-
:param Mapping[str, str] security_attributes: Security
|
33437
|
+
:param Mapping[str, 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"}}}`
|
32624
33438
|
:param 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.
|
32625
33439
|
:param 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.
|
32626
33440
|
"""
|
@@ -32722,7 +33536,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32722
33536
|
@pulumi.getter(name="securityAttributes")
|
32723
33537
|
def security_attributes(self) -> Mapping[str, str]:
|
32724
33538
|
"""
|
32725
|
-
Security
|
33539
|
+
[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"}}}`
|
32726
33540
|
"""
|
32727
33541
|
return pulumi.get(self, "security_attributes")
|
32728
33542
|
|
@@ -32893,6 +33707,39 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
32893
33707
|
return pulumi.get(self, "remote_data_volume_type")
|
32894
33708
|
|
32895
33709
|
|
33710
|
+
@pulumi.output_type
|
33711
|
+
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailLicensingConfigResult(dict):
|
33712
|
+
def __init__(__self__, *,
|
33713
|
+
license_type: str,
|
33714
|
+
type: str):
|
33715
|
+
"""
|
33716
|
+
:param str license_type: License Type for the OS license.
|
33717
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
33718
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
33719
|
+
:param str type: The type of action to run when the instance is interrupted for eviction.
|
33720
|
+
"""
|
33721
|
+
pulumi.set(__self__, "license_type", license_type)
|
33722
|
+
pulumi.set(__self__, "type", type)
|
33723
|
+
|
33724
|
+
@property
|
33725
|
+
@pulumi.getter(name="licenseType")
|
33726
|
+
def license_type(self) -> str:
|
33727
|
+
"""
|
33728
|
+
License Type for the OS license.
|
33729
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
33730
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
33731
|
+
"""
|
33732
|
+
return pulumi.get(self, "license_type")
|
33733
|
+
|
33734
|
+
@property
|
33735
|
+
@pulumi.getter
|
33736
|
+
def type(self) -> str:
|
33737
|
+
"""
|
33738
|
+
The type of action to run when the instance is interrupted for eviction.
|
33739
|
+
"""
|
33740
|
+
return pulumi.get(self, "type")
|
33741
|
+
|
33742
|
+
|
32896
33743
|
@pulumi.output_type
|
32897
33744
|
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult(dict):
|
32898
33745
|
def __init__(__self__, *,
|
@@ -33332,7 +34179,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
33332
34179
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
33333
34180
|
:param Sequence[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/).
|
33334
34181
|
:param 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.
|
33335
|
-
:param Mapping[str, str] security_attributes: Security
|
34182
|
+
:param Mapping[str, 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"}}}`
|
33336
34183
|
:param 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.
|
33337
34184
|
:param 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.
|
33338
34185
|
"""
|
@@ -33434,7 +34281,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
33434
34281
|
@pulumi.getter(name="securityAttributes")
|
33435
34282
|
def security_attributes(self) -> Mapping[str, str]:
|
33436
34283
|
"""
|
33437
|
-
Security
|
34284
|
+
[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"}}}`
|
33438
34285
|
"""
|
33439
34286
|
return pulumi.get(self, "security_attributes")
|
33440
34287
|
|
@@ -33551,7 +34398,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
33551
34398
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] 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.
|
33552
34399
|
:param Sequence[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/).
|
33553
34400
|
:param 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.
|
33554
|
-
:param Mapping[str, str] security_attributes: Security
|
34401
|
+
:param Mapping[str, 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"}}}`
|
33555
34402
|
:param 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.
|
33556
34403
|
:param 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.
|
33557
34404
|
"""
|
@@ -33653,7 +34500,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
33653
34500
|
@pulumi.getter(name="securityAttributes")
|
33654
34501
|
def security_attributes(self) -> Mapping[str, str]:
|
33655
34502
|
"""
|
33656
|
-
Security
|
34503
|
+
[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"}}}`
|
33657
34504
|
"""
|
33658
34505
|
return pulumi.get(self, "security_attributes")
|
33659
34506
|
|
@@ -34342,6 +35189,50 @@ class GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult(dict):
|
|
34342
35189
|
return pulumi.get(self, "vpus_per_gb")
|
34343
35190
|
|
34344
35191
|
|
35192
|
+
@pulumi.output_type
|
35193
|
+
class GetInstanceLicensingConfigResult(dict):
|
35194
|
+
def __init__(__self__, *,
|
35195
|
+
license_type: str,
|
35196
|
+
os_version: str,
|
35197
|
+
type: str):
|
35198
|
+
"""
|
35199
|
+
:param str license_type: License Type for the OS license.
|
35200
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
35201
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
35202
|
+
:param str os_version: The Operating System version of the license config.
|
35203
|
+
:param str type: (Required) The type of action to run when the instance is interrupted for eviction.
|
35204
|
+
"""
|
35205
|
+
pulumi.set(__self__, "license_type", license_type)
|
35206
|
+
pulumi.set(__self__, "os_version", os_version)
|
35207
|
+
pulumi.set(__self__, "type", type)
|
35208
|
+
|
35209
|
+
@property
|
35210
|
+
@pulumi.getter(name="licenseType")
|
35211
|
+
def license_type(self) -> str:
|
35212
|
+
"""
|
35213
|
+
License Type for the OS license.
|
35214
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
35215
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
35216
|
+
"""
|
35217
|
+
return pulumi.get(self, "license_type")
|
35218
|
+
|
35219
|
+
@property
|
35220
|
+
@pulumi.getter(name="osVersion")
|
35221
|
+
def os_version(self) -> str:
|
35222
|
+
"""
|
35223
|
+
The Operating System version of the license config.
|
35224
|
+
"""
|
35225
|
+
return pulumi.get(self, "os_version")
|
35226
|
+
|
35227
|
+
@property
|
35228
|
+
@pulumi.getter
|
35229
|
+
def type(self) -> str:
|
35230
|
+
"""
|
35231
|
+
(Required) The type of action to run when the instance is interrupted for eviction.
|
35232
|
+
"""
|
35233
|
+
return pulumi.get(self, "type")
|
35234
|
+
|
35235
|
+
|
34345
35236
|
@pulumi.output_type
|
34346
35237
|
class GetInstanceMaintenanceEventsFilterResult(dict):
|
34347
35238
|
def __init__(__self__, *,
|
@@ -36268,6 +37159,7 @@ class GetInstancesInstanceResult(dict):
|
|
36268
37159
|
launch_mode: str,
|
36269
37160
|
launch_options: Sequence['outputs.GetInstancesInstanceLaunchOptionResult'],
|
36270
37161
|
launch_volume_attachments: Sequence['outputs.GetInstancesInstanceLaunchVolumeAttachmentResult'],
|
37162
|
+
licensing_configs: Sequence['outputs.GetInstancesInstanceLicensingConfigResult'],
|
36271
37163
|
metadata: Mapping[str, str],
|
36272
37164
|
platform_configs: Sequence['outputs.GetInstancesInstancePlatformConfigResult'],
|
36273
37165
|
preemptible_instance_configs: Sequence['outputs.GetInstancesInstancePreemptibleInstanceConfigResult'],
|
@@ -36315,6 +37207,7 @@ class GetInstancesInstanceResult(dict):
|
|
36315
37207
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
36316
37208
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
36317
37209
|
:param Sequence['GetInstancesInstanceLaunchOptionArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
37210
|
+
:param Sequence['GetInstancesInstanceLicensingConfigArgs'] licensing_configs: List of licensing configurations associated with the instance.
|
36318
37211
|
:param Mapping[str, str] metadata: Custom metadata that you provide.
|
36319
37212
|
:param Sequence['GetInstancesInstancePlatformConfigArgs'] platform_configs: The platform configuration for the instance.
|
36320
37213
|
:param Sequence['GetInstancesInstancePreemptibleInstanceConfigArgs'] preemptible_instance_configs: (Optional) Configuration options for preemptible instances.
|
@@ -36356,6 +37249,7 @@ class GetInstancesInstanceResult(dict):
|
|
36356
37249
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
36357
37250
|
pulumi.set(__self__, "launch_options", launch_options)
|
36358
37251
|
pulumi.set(__self__, "launch_volume_attachments", launch_volume_attachments)
|
37252
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
36359
37253
|
pulumi.set(__self__, "metadata", metadata)
|
36360
37254
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
36361
37255
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
@@ -36586,6 +37480,14 @@ class GetInstancesInstanceResult(dict):
|
|
36586
37480
|
def launch_volume_attachments(self) -> Sequence['outputs.GetInstancesInstanceLaunchVolumeAttachmentResult']:
|
36587
37481
|
return pulumi.get(self, "launch_volume_attachments")
|
36588
37482
|
|
37483
|
+
@property
|
37484
|
+
@pulumi.getter(name="licensingConfigs")
|
37485
|
+
def licensing_configs(self) -> Sequence['outputs.GetInstancesInstanceLicensingConfigResult']:
|
37486
|
+
"""
|
37487
|
+
List of licensing configurations associated with the instance.
|
37488
|
+
"""
|
37489
|
+
return pulumi.get(self, "licensing_configs")
|
37490
|
+
|
36589
37491
|
@property
|
36590
37492
|
@pulumi.getter
|
36591
37493
|
def metadata(self) -> Mapping[str, str]:
|
@@ -37253,6 +38155,50 @@ class GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult(d
|
|
37253
38155
|
return pulumi.get(self, "vpus_per_gb")
|
37254
38156
|
|
37255
38157
|
|
38158
|
+
@pulumi.output_type
|
38159
|
+
class GetInstancesInstanceLicensingConfigResult(dict):
|
38160
|
+
def __init__(__self__, *,
|
38161
|
+
license_type: str,
|
38162
|
+
os_version: str,
|
38163
|
+
type: str):
|
38164
|
+
"""
|
38165
|
+
:param str license_type: License Type for the OS license.
|
38166
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
38167
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
38168
|
+
:param str os_version: The Operating System version of the license config.
|
38169
|
+
:param str type: (Required) The type of action to run when the instance is interrupted for eviction.
|
38170
|
+
"""
|
38171
|
+
pulumi.set(__self__, "license_type", license_type)
|
38172
|
+
pulumi.set(__self__, "os_version", os_version)
|
38173
|
+
pulumi.set(__self__, "type", type)
|
38174
|
+
|
38175
|
+
@property
|
38176
|
+
@pulumi.getter(name="licenseType")
|
38177
|
+
def license_type(self) -> str:
|
38178
|
+
"""
|
38179
|
+
License Type for the OS license.
|
38180
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
38181
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
38182
|
+
"""
|
38183
|
+
return pulumi.get(self, "license_type")
|
38184
|
+
|
38185
|
+
@property
|
38186
|
+
@pulumi.getter(name="osVersion")
|
38187
|
+
def os_version(self) -> str:
|
38188
|
+
"""
|
38189
|
+
The Operating System version of the license config.
|
38190
|
+
"""
|
38191
|
+
return pulumi.get(self, "os_version")
|
38192
|
+
|
38193
|
+
@property
|
38194
|
+
@pulumi.getter
|
38195
|
+
def type(self) -> str:
|
38196
|
+
"""
|
38197
|
+
(Required) The type of action to run when the instance is interrupted for eviction.
|
38198
|
+
"""
|
38199
|
+
return pulumi.get(self, "type")
|
38200
|
+
|
38201
|
+
|
37256
38202
|
@pulumi.output_type
|
37257
38203
|
class GetInstancesInstancePlatformConfigResult(dict):
|
37258
38204
|
def __init__(__self__, *,
|
@@ -39932,6 +40878,7 @@ class GetIpv6sIpv6Result(dict):
|
|
39932
40878
|
id: str,
|
39933
40879
|
ip_address: str,
|
39934
40880
|
ipv6subnet_cidr: str,
|
40881
|
+
route_table_id: str,
|
39935
40882
|
state: str,
|
39936
40883
|
subnet_id: str,
|
39937
40884
|
time_created: str,
|
@@ -39955,6 +40902,7 @@ class GetIpv6sIpv6Result(dict):
|
|
39955
40902
|
pulumi.set(__self__, "id", id)
|
39956
40903
|
pulumi.set(__self__, "ip_address", ip_address)
|
39957
40904
|
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
40905
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
39958
40906
|
pulumi.set(__self__, "state", state)
|
39959
40907
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
39960
40908
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -40013,6 +40961,11 @@ class GetIpv6sIpv6Result(dict):
|
|
40013
40961
|
def ipv6subnet_cidr(self) -> str:
|
40014
40962
|
return pulumi.get(self, "ipv6subnet_cidr")
|
40015
40963
|
|
40964
|
+
@property
|
40965
|
+
@pulumi.getter(name="routeTableId")
|
40966
|
+
def route_table_id(self) -> str:
|
40967
|
+
return pulumi.get(self, "route_table_id")
|
40968
|
+
|
40016
40969
|
@property
|
40017
40970
|
@pulumi.getter
|
40018
40971
|
def state(self) -> str:
|
@@ -41160,6 +42113,7 @@ class GetPrivateIpsPrivateIpResult(dict):
|
|
41160
42113
|
ip_address: str,
|
41161
42114
|
is_primary: bool,
|
41162
42115
|
is_reserved: bool,
|
42116
|
+
route_table_id: str,
|
41163
42117
|
subnet_id: str,
|
41164
42118
|
time_created: str,
|
41165
42119
|
vlan_id: str,
|
@@ -41190,6 +42144,7 @@ class GetPrivateIpsPrivateIpResult(dict):
|
|
41190
42144
|
pulumi.set(__self__, "ip_address", ip_address)
|
41191
42145
|
pulumi.set(__self__, "is_primary", is_primary)
|
41192
42146
|
pulumi.set(__self__, "is_reserved", is_reserved)
|
42147
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
41193
42148
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
41194
42149
|
pulumi.set(__self__, "time_created", time_created)
|
41195
42150
|
pulumi.set(__self__, "vlan_id", vlan_id)
|
@@ -41275,6 +42230,11 @@ class GetPrivateIpsPrivateIpResult(dict):
|
|
41275
42230
|
"""
|
41276
42231
|
return pulumi.get(self, "is_reserved")
|
41277
42232
|
|
42233
|
+
@property
|
42234
|
+
@pulumi.getter(name="routeTableId")
|
42235
|
+
def route_table_id(self) -> str:
|
42236
|
+
return pulumi.get(self, "route_table_id")
|
42237
|
+
|
41278
42238
|
@property
|
41279
42239
|
@pulumi.getter(name="subnetId")
|
41280
42240
|
def subnet_id(self) -> str:
|
@@ -45571,9 +46531,9 @@ class GetVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
|
|
45571
46531
|
ipv4bgp_session_redundancy_status: str,
|
45572
46532
|
ipv6bgp_session_redundancy_status: str):
|
45573
46533
|
"""
|
45574
|
-
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit
|
45575
|
-
:param str ipv4bgp_session_redundancy_status:
|
45576
|
-
:param str ipv6bgp_session_redundancy_status:
|
46534
|
+
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit.
|
46535
|
+
:param str ipv4bgp_session_redundancy_status: Indicates if the configured level is met for IPv4 BGP redundancy.
|
46536
|
+
:param str ipv6bgp_session_redundancy_status: Indicates if the configured level is met for IPv6 BGP redundancy.
|
45577
46537
|
"""
|
45578
46538
|
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
45579
46539
|
pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
|
@@ -45583,7 +46543,7 @@ class GetVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
|
|
45583
46543
|
@pulumi.getter(name="configuredRedundancyLevel")
|
45584
46544
|
def configured_redundancy_level(self) -> str:
|
45585
46545
|
"""
|
45586
|
-
The configured redundancy level of the virtual circuit
|
46546
|
+
The configured redundancy level of the virtual circuit.
|
45587
46547
|
"""
|
45588
46548
|
return pulumi.get(self, "configured_redundancy_level")
|
45589
46549
|
|
@@ -45591,7 +46551,7 @@ class GetVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
|
|
45591
46551
|
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
45592
46552
|
def ipv4bgp_session_redundancy_status(self) -> str:
|
45593
46553
|
"""
|
45594
|
-
|
46554
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
45595
46555
|
"""
|
45596
46556
|
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
45597
46557
|
|
@@ -45599,7 +46559,7 @@ class GetVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
|
|
45599
46559
|
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
45600
46560
|
def ipv6bgp_session_redundancy_status(self) -> str:
|
45601
46561
|
"""
|
45602
|
-
|
46562
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
45603
46563
|
"""
|
45604
46564
|
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
45605
46565
|
|
@@ -45695,7 +46655,7 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
|
|
45695
46655
|
:param str state: A filter to return only resources that match the specified lifecycle state. The value is case insensitive.
|
45696
46656
|
:param str time_created: The date and time the virtual circuit was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
45697
46657
|
:param str type: Whether the virtual circuit supports private or public peering. For more information, see [FastConnect Overview](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm).
|
45698
|
-
:param Sequence['GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataArgs'] virtual_circuit_redundancy_metadatas:
|
46658
|
+
:param Sequence['GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataArgs'] virtual_circuit_redundancy_metadatas: This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
45699
46659
|
"""
|
45700
46660
|
pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
|
45701
46661
|
pulumi.set(__self__, "bgp_admin_state", bgp_admin_state)
|
@@ -45972,7 +46932,7 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
|
|
45972
46932
|
@pulumi.getter(name="virtualCircuitRedundancyMetadatas")
|
45973
46933
|
def virtual_circuit_redundancy_metadatas(self) -> Sequence['outputs.GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult']:
|
45974
46934
|
"""
|
45975
|
-
|
46935
|
+
This resource provides redundancy level details for the virtual circuit. For more about redundancy, see [FastConnect Redundancy Best Practices](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm).
|
45976
46936
|
"""
|
45977
46937
|
return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
|
45978
46938
|
|
@@ -46080,9 +47040,9 @@ class GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult(dic
|
|
46080
47040
|
ipv4bgp_session_redundancy_status: str,
|
46081
47041
|
ipv6bgp_session_redundancy_status: str):
|
46082
47042
|
"""
|
46083
|
-
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit
|
46084
|
-
:param str ipv4bgp_session_redundancy_status:
|
46085
|
-
:param str ipv6bgp_session_redundancy_status:
|
47043
|
+
:param str configured_redundancy_level: The configured redundancy level of the virtual circuit.
|
47044
|
+
:param str ipv4bgp_session_redundancy_status: Indicates if the configured level is met for IPv4 BGP redundancy.
|
47045
|
+
:param str ipv6bgp_session_redundancy_status: Indicates if the configured level is met for IPv6 BGP redundancy.
|
46086
47046
|
"""
|
46087
47047
|
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
46088
47048
|
pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
|
@@ -46092,7 +47052,7 @@ class GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult(dic
|
|
46092
47052
|
@pulumi.getter(name="configuredRedundancyLevel")
|
46093
47053
|
def configured_redundancy_level(self) -> str:
|
46094
47054
|
"""
|
46095
|
-
The configured redundancy level of the virtual circuit
|
47055
|
+
The configured redundancy level of the virtual circuit.
|
46096
47056
|
"""
|
46097
47057
|
return pulumi.get(self, "configured_redundancy_level")
|
46098
47058
|
|
@@ -46100,7 +47060,7 @@ class GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult(dic
|
|
46100
47060
|
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
46101
47061
|
def ipv4bgp_session_redundancy_status(self) -> str:
|
46102
47062
|
"""
|
46103
|
-
|
47063
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
46104
47064
|
"""
|
46105
47065
|
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
46106
47066
|
|
@@ -46108,7 +47068,7 @@ class GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult(dic
|
|
46108
47068
|
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
46109
47069
|
def ipv6bgp_session_redundancy_status(self) -> str:
|
46110
47070
|
"""
|
46111
|
-
|
47071
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
46112
47072
|
"""
|
46113
47073
|
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
46114
47074
|
|
@@ -46674,6 +47634,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
46674
47634
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetVnicAttachmentsVnicAttachmentCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
46675
47635
|
nsg_ids: Sequence[str],
|
46676
47636
|
private_ip: str,
|
47637
|
+
route_table_id: str,
|
46677
47638
|
security_attributes: Mapping[str, str],
|
46678
47639
|
skip_source_dest_check: bool,
|
46679
47640
|
subnet_id: str,
|
@@ -46693,6 +47654,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
46693
47654
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
46694
47655
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
46695
47656
|
pulumi.set(__self__, "private_ip", private_ip)
|
47657
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
46696
47658
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
46697
47659
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
46698
47660
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -46751,6 +47713,11 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
46751
47713
|
def private_ip(self) -> str:
|
46752
47714
|
return pulumi.get(self, "private_ip")
|
46753
47715
|
|
47716
|
+
@property
|
47717
|
+
@pulumi.getter(name="routeTableId")
|
47718
|
+
def route_table_id(self) -> str:
|
47719
|
+
return pulumi.get(self, "route_table_id")
|
47720
|
+
|
46754
47721
|
@property
|
46755
47722
|
@pulumi.getter(name="securityAttributes")
|
46756
47723
|
def security_attributes(self) -> Mapping[str, str]:
|