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/_inputs.py
CHANGED
@@ -23,6 +23,8 @@ __all__ = [
|
|
23
23
|
'BootVolumeBootVolumeReplicaArgsDict',
|
24
24
|
'BootVolumeSourceDetailsArgs',
|
25
25
|
'BootVolumeSourceDetailsArgsDict',
|
26
|
+
'ByoasnByoipRangeArgs',
|
27
|
+
'ByoasnByoipRangeArgsDict',
|
26
28
|
'CaptureFilterFlowLogCaptureFilterRuleArgs',
|
27
29
|
'CaptureFilterFlowLogCaptureFilterRuleArgsDict',
|
28
30
|
'CaptureFilterFlowLogCaptureFilterRuleIcmpOptionsArgs',
|
@@ -183,6 +185,8 @@ __all__ = [
|
|
183
185
|
'InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgsDict',
|
184
186
|
'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs',
|
185
187
|
'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgsDict',
|
188
|
+
'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs',
|
189
|
+
'InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict',
|
186
190
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs',
|
187
191
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict',
|
188
192
|
'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs',
|
@@ -225,6 +229,8 @@ __all__ = [
|
|
225
229
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsInstanceOptionsArgsDict',
|
226
230
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs',
|
227
231
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgsDict',
|
232
|
+
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs',
|
233
|
+
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict',
|
228
234
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs',
|
229
235
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict',
|
230
236
|
'InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs',
|
@@ -261,6 +267,8 @@ __all__ = [
|
|
261
267
|
'InstanceLaunchVolumeAttachmentArgsDict',
|
262
268
|
'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs',
|
263
269
|
'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgsDict',
|
270
|
+
'InstanceLicensingConfigsArgs',
|
271
|
+
'InstanceLicensingConfigsArgsDict',
|
264
272
|
'InstancePlatformConfigArgs',
|
265
273
|
'InstancePlatformConfigArgsDict',
|
266
274
|
'InstancePoolInstanceLoadBalancerBackendArgs',
|
@@ -389,6 +397,8 @@ __all__ = [
|
|
389
397
|
'GetBootVolumeReplicasFilterArgsDict',
|
390
398
|
'GetBootVolumesFilterArgs',
|
391
399
|
'GetBootVolumesFilterArgsDict',
|
400
|
+
'GetByoasnsFilterArgs',
|
401
|
+
'GetByoasnsFilterArgsDict',
|
392
402
|
'GetByoipAllocatedRangesFilterArgs',
|
393
403
|
'GetByoipAllocatedRangesFilterArgsDict',
|
394
404
|
'GetByoipRangesFilterArgs',
|
@@ -905,6 +915,98 @@ class BootVolumeSourceDetailsArgs:
|
|
905
915
|
pulumi.set(self, "second_backup_id", value)
|
906
916
|
|
907
917
|
|
918
|
+
if not MYPY:
|
919
|
+
class ByoasnByoipRangeArgsDict(TypedDict):
|
920
|
+
as_path_prepend_length: NotRequired[pulumi.Input[int]]
|
921
|
+
"""
|
922
|
+
The as path prepend length.
|
923
|
+
"""
|
924
|
+
byoip_range_id: NotRequired[pulumi.Input[str]]
|
925
|
+
"""
|
926
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
927
|
+
"""
|
928
|
+
cidr_block: NotRequired[pulumi.Input[str]]
|
929
|
+
"""
|
930
|
+
The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
931
|
+
"""
|
932
|
+
ipv6cidr_block: NotRequired[pulumi.Input[str]]
|
933
|
+
"""
|
934
|
+
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.
|
935
|
+
"""
|
936
|
+
elif False:
|
937
|
+
ByoasnByoipRangeArgsDict: TypeAlias = Mapping[str, Any]
|
938
|
+
|
939
|
+
@pulumi.input_type
|
940
|
+
class ByoasnByoipRangeArgs:
|
941
|
+
def __init__(__self__, *,
|
942
|
+
as_path_prepend_length: Optional[pulumi.Input[int]] = None,
|
943
|
+
byoip_range_id: Optional[pulumi.Input[str]] = None,
|
944
|
+
cidr_block: Optional[pulumi.Input[str]] = None,
|
945
|
+
ipv6cidr_block: Optional[pulumi.Input[str]] = None):
|
946
|
+
"""
|
947
|
+
:param pulumi.Input[int] as_path_prepend_length: The as path prepend length.
|
948
|
+
:param pulumi.Input[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.
|
949
|
+
:param pulumi.Input[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.
|
950
|
+
:param pulumi.Input[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.
|
951
|
+
"""
|
952
|
+
if as_path_prepend_length is not None:
|
953
|
+
pulumi.set(__self__, "as_path_prepend_length", as_path_prepend_length)
|
954
|
+
if byoip_range_id is not None:
|
955
|
+
pulumi.set(__self__, "byoip_range_id", byoip_range_id)
|
956
|
+
if cidr_block is not None:
|
957
|
+
pulumi.set(__self__, "cidr_block", cidr_block)
|
958
|
+
if ipv6cidr_block is not None:
|
959
|
+
pulumi.set(__self__, "ipv6cidr_block", ipv6cidr_block)
|
960
|
+
|
961
|
+
@property
|
962
|
+
@pulumi.getter(name="asPathPrependLength")
|
963
|
+
def as_path_prepend_length(self) -> Optional[pulumi.Input[int]]:
|
964
|
+
"""
|
965
|
+
The as path prepend length.
|
966
|
+
"""
|
967
|
+
return pulumi.get(self, "as_path_prepend_length")
|
968
|
+
|
969
|
+
@as_path_prepend_length.setter
|
970
|
+
def as_path_prepend_length(self, value: Optional[pulumi.Input[int]]):
|
971
|
+
pulumi.set(self, "as_path_prepend_length", value)
|
972
|
+
|
973
|
+
@property
|
974
|
+
@pulumi.getter(name="byoipRangeId")
|
975
|
+
def byoip_range_id(self) -> Optional[pulumi.Input[str]]:
|
976
|
+
"""
|
977
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
|
978
|
+
"""
|
979
|
+
return pulumi.get(self, "byoip_range_id")
|
980
|
+
|
981
|
+
@byoip_range_id.setter
|
982
|
+
def byoip_range_id(self, value: Optional[pulumi.Input[str]]):
|
983
|
+
pulumi.set(self, "byoip_range_id", value)
|
984
|
+
|
985
|
+
@property
|
986
|
+
@pulumi.getter(name="cidrBlock")
|
987
|
+
def cidr_block(self) -> Optional[pulumi.Input[str]]:
|
988
|
+
"""
|
989
|
+
The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
|
990
|
+
"""
|
991
|
+
return pulumi.get(self, "cidr_block")
|
992
|
+
|
993
|
+
@cidr_block.setter
|
994
|
+
def cidr_block(self, value: Optional[pulumi.Input[str]]):
|
995
|
+
pulumi.set(self, "cidr_block", value)
|
996
|
+
|
997
|
+
@property
|
998
|
+
@pulumi.getter(name="ipv6cidrBlock")
|
999
|
+
def ipv6cidr_block(self) -> Optional[pulumi.Input[str]]:
|
1000
|
+
"""
|
1001
|
+
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.
|
1002
|
+
"""
|
1003
|
+
return pulumi.get(self, "ipv6cidr_block")
|
1004
|
+
|
1005
|
+
@ipv6cidr_block.setter
|
1006
|
+
def ipv6cidr_block(self, value: Optional[pulumi.Input[str]]):
|
1007
|
+
pulumi.set(self, "ipv6cidr_block", value)
|
1008
|
+
|
1009
|
+
|
908
1010
|
if not MYPY:
|
909
1011
|
class CaptureFilterFlowLogCaptureFilterRuleArgsDict(TypedDict):
|
910
1012
|
destination_cidr: NotRequired[pulumi.Input[str]]
|
@@ -7069,6 +7171,10 @@ if not MYPY:
|
|
7069
7171
|
"""
|
7070
7172
|
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
7071
7173
|
"""
|
7174
|
+
licensing_configs: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict']]
|
7175
|
+
"""
|
7176
|
+
List of licensing configurations associated with target launch values.
|
7177
|
+
"""
|
7072
7178
|
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7073
7179
|
"""
|
7074
7180
|
Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
@@ -7117,7 +7223,7 @@ if not MYPY:
|
|
7117
7223
|
"""
|
7118
7224
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7119
7225
|
"""
|
7120
|
-
Security
|
7226
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7121
7227
|
"""
|
7122
7228
|
shape: NotRequired[pulumi.Input[str]]
|
7123
7229
|
"""
|
@@ -7158,6 +7264,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7158
7264
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
7159
7265
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
7160
7266
|
launch_options: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs']] = None,
|
7267
|
+
licensing_configs: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']] = None,
|
7161
7268
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
7162
7269
|
platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']] = None,
|
7163
7270
|
preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
|
@@ -7211,6 +7318,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7211
7318
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
7212
7319
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
7213
7320
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
7321
|
+
:param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
7214
7322
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
7215
7323
|
|
7216
7324
|
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
|
@@ -7245,7 +7353,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7245
7353
|
:param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
7246
7354
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
7247
7355
|
* `REBOOT` - Run maintenance using a reboot.
|
7248
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
7356
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7249
7357
|
:param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
7250
7358
|
|
7251
7359
|
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
@@ -7291,6 +7399,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7291
7399
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
7292
7400
|
if launch_options is not None:
|
7293
7401
|
pulumi.set(__self__, "launch_options", launch_options)
|
7402
|
+
if licensing_configs is not None:
|
7403
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
7294
7404
|
if metadata is not None:
|
7295
7405
|
pulumi.set(__self__, "metadata", metadata)
|
7296
7406
|
if platform_config is not None:
|
@@ -7550,6 +7660,18 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7550
7660
|
def launch_options(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs']]):
|
7551
7661
|
pulumi.set(self, "launch_options", value)
|
7552
7662
|
|
7663
|
+
@property
|
7664
|
+
@pulumi.getter(name="licensingConfigs")
|
7665
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']]:
|
7666
|
+
"""
|
7667
|
+
List of licensing configurations associated with target launch values.
|
7668
|
+
"""
|
7669
|
+
return pulumi.get(self, "licensing_configs")
|
7670
|
+
|
7671
|
+
@licensing_configs.setter
|
7672
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs']]):
|
7673
|
+
pulumi.set(self, "licensing_configs", value)
|
7674
|
+
|
7553
7675
|
@property
|
7554
7676
|
@pulumi.getter
|
7555
7677
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -7632,7 +7754,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
7632
7754
|
@pulumi.getter(name="securityAttributes")
|
7633
7755
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
7634
7756
|
"""
|
7635
|
-
Security
|
7757
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7636
7758
|
"""
|
7637
7759
|
return pulumi.get(self, "security_attributes")
|
7638
7760
|
|
@@ -7932,7 +8054,7 @@ if not MYPY:
|
|
7932
8054
|
"""
|
7933
8055
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
7934
8056
|
"""
|
7935
|
-
Security
|
8057
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7936
8058
|
"""
|
7937
8059
|
skip_source_dest_check: NotRequired[pulumi.Input[bool]]
|
7938
8060
|
"""
|
@@ -7972,7 +8094,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
|
|
7972
8094
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
|
7973
8095
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
7974
8096
|
:param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7975
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
8097
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
7976
8098
|
:param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7977
8099
|
:param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
7978
8100
|
"""
|
@@ -8127,7 +8249,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
|
|
8127
8249
|
@pulumi.getter(name="securityAttributes")
|
8128
8250
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
8129
8251
|
"""
|
8130
|
-
Security
|
8252
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
8131
8253
|
"""
|
8132
8254
|
return pulumi.get(self, "security_attributes")
|
8133
8255
|
|
@@ -8421,6 +8543,63 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs:
|
|
8421
8543
|
pulumi.set(self, "remote_data_volume_type", value)
|
8422
8544
|
|
8423
8545
|
|
8546
|
+
if not MYPY:
|
8547
|
+
class InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict(TypedDict):
|
8548
|
+
type: pulumi.Input[str]
|
8549
|
+
"""
|
8550
|
+
The type of action to run when the instance is interrupted for eviction.
|
8551
|
+
"""
|
8552
|
+
license_type: NotRequired[pulumi.Input[str]]
|
8553
|
+
"""
|
8554
|
+
License Type for the OS license.
|
8555
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8556
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8557
|
+
"""
|
8558
|
+
elif False:
|
8559
|
+
InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
8560
|
+
|
8561
|
+
@pulumi.input_type
|
8562
|
+
class InstanceConfigurationInstanceDetailsLaunchDetailsLicensingConfigsArgs:
|
8563
|
+
def __init__(__self__, *,
|
8564
|
+
type: pulumi.Input[str],
|
8565
|
+
license_type: Optional[pulumi.Input[str]] = None):
|
8566
|
+
"""
|
8567
|
+
:param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
|
8568
|
+
:param pulumi.Input[str] license_type: License Type for the OS license.
|
8569
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8570
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8571
|
+
"""
|
8572
|
+
pulumi.set(__self__, "type", type)
|
8573
|
+
if license_type is not None:
|
8574
|
+
pulumi.set(__self__, "license_type", license_type)
|
8575
|
+
|
8576
|
+
@property
|
8577
|
+
@pulumi.getter
|
8578
|
+
def type(self) -> pulumi.Input[str]:
|
8579
|
+
"""
|
8580
|
+
The type of action to run when the instance is interrupted for eviction.
|
8581
|
+
"""
|
8582
|
+
return pulumi.get(self, "type")
|
8583
|
+
|
8584
|
+
@type.setter
|
8585
|
+
def type(self, value: pulumi.Input[str]):
|
8586
|
+
pulumi.set(self, "type", value)
|
8587
|
+
|
8588
|
+
@property
|
8589
|
+
@pulumi.getter(name="licenseType")
|
8590
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
8591
|
+
"""
|
8592
|
+
License Type for the OS license.
|
8593
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
8594
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
8595
|
+
"""
|
8596
|
+
return pulumi.get(self, "license_type")
|
8597
|
+
|
8598
|
+
@license_type.setter
|
8599
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
8600
|
+
pulumi.set(self, "license_type", value)
|
8601
|
+
|
8602
|
+
|
8424
8603
|
if not MYPY:
|
8425
8604
|
class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict(TypedDict):
|
8426
8605
|
type: pulumi.Input[str]
|
@@ -9986,6 +10165,10 @@ if not MYPY:
|
|
9986
10165
|
"""
|
9987
10166
|
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
9988
10167
|
"""
|
10168
|
+
licensing_configs: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict']]
|
10169
|
+
"""
|
10170
|
+
List of licensing configurations associated with target launch values.
|
10171
|
+
"""
|
9989
10172
|
metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
9990
10173
|
"""
|
9991
10174
|
Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
@@ -10006,7 +10189,7 @@ if not MYPY:
|
|
10006
10189
|
"""
|
10007
10190
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10008
10191
|
"""
|
10009
|
-
Security
|
10192
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10010
10193
|
"""
|
10011
10194
|
shape: NotRequired[pulumi.Input[str]]
|
10012
10195
|
"""
|
@@ -10041,6 +10224,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10041
10224
|
is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
|
10042
10225
|
launch_mode: Optional[pulumi.Input[str]] = None,
|
10043
10226
|
launch_options: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs']] = None,
|
10227
|
+
licensing_configs: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']] = None,
|
10044
10228
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
10045
10229
|
platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs']] = None,
|
10046
10230
|
preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
|
@@ -10072,13 +10256,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10072
10256
|
* `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using VirtIO drivers.
|
10073
10257
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
10074
10258
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
10259
|
+
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs'] licensing_configs: List of licensing configurations associated with target launch values.
|
10075
10260
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
10076
10261
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs'] platform_config: The platform configuration requested for the instance.
|
10077
10262
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
|
10078
10263
|
:param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
10079
10264
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
10080
10265
|
* `REBOOT` - Run maintenance using a reboot.
|
10081
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
10266
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10082
10267
|
:param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
10083
10268
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
|
10084
10269
|
"""
|
@@ -10118,6 +10303,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10118
10303
|
pulumi.set(__self__, "launch_mode", launch_mode)
|
10119
10304
|
if launch_options is not None:
|
10120
10305
|
pulumi.set(__self__, "launch_options", launch_options)
|
10306
|
+
if licensing_configs is not None:
|
10307
|
+
pulumi.set(__self__, "licensing_configs", licensing_configs)
|
10121
10308
|
if metadata is not None:
|
10122
10309
|
pulumi.set(__self__, "metadata", metadata)
|
10123
10310
|
if platform_config is not None:
|
@@ -10355,6 +10542,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10355
10542
|
def launch_options(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs']]):
|
10356
10543
|
pulumi.set(self, "launch_options", value)
|
10357
10544
|
|
10545
|
+
@property
|
10546
|
+
@pulumi.getter(name="licensingConfigs")
|
10547
|
+
def licensing_configs(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']]:
|
10548
|
+
"""
|
10549
|
+
List of licensing configurations associated with target launch values.
|
10550
|
+
"""
|
10551
|
+
return pulumi.get(self, "licensing_configs")
|
10552
|
+
|
10553
|
+
@licensing_configs.setter
|
10554
|
+
def licensing_configs(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs']]):
|
10555
|
+
pulumi.set(self, "licensing_configs", value)
|
10556
|
+
|
10358
10557
|
@property
|
10359
10558
|
@pulumi.getter
|
10360
10559
|
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -10409,7 +10608,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
10409
10608
|
@pulumi.getter(name="securityAttributes")
|
10410
10609
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
10411
10610
|
"""
|
10412
|
-
Security
|
10611
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10413
10612
|
"""
|
10414
10613
|
return pulumi.get(self, "security_attributes")
|
10415
10614
|
|
@@ -10742,7 +10941,7 @@ if not MYPY:
|
|
10742
10941
|
"""
|
10743
10942
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10744
10943
|
"""
|
10745
|
-
Security
|
10944
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10746
10945
|
"""
|
10747
10946
|
skip_source_dest_check: NotRequired[pulumi.Input[bool]]
|
10748
10947
|
"""
|
@@ -10781,7 +10980,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
|
|
10781
10980
|
:param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10782
10981
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
10783
10982
|
:param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10784
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: Security
|
10983
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10785
10984
|
:param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10786
10985
|
:param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
10787
10986
|
"""
|
@@ -10933,7 +11132,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
|
|
10933
11132
|
@pulumi.getter(name="securityAttributes")
|
10934
11133
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
10935
11134
|
"""
|
10936
|
-
Security
|
11135
|
+
[Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
|
10937
11136
|
"""
|
10938
11137
|
return pulumi.get(self, "security_attributes")
|
10939
11138
|
|
@@ -11211,6 +11410,63 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLaunchOptionsArgs:
|
|
11211
11410
|
pulumi.set(self, "remote_data_volume_type", value)
|
11212
11411
|
|
11213
11412
|
|
11413
|
+
if not MYPY:
|
11414
|
+
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict(TypedDict):
|
11415
|
+
type: pulumi.Input[str]
|
11416
|
+
"""
|
11417
|
+
The type of action to run when the instance is interrupted for eviction.
|
11418
|
+
"""
|
11419
|
+
license_type: NotRequired[pulumi.Input[str]]
|
11420
|
+
"""
|
11421
|
+
License Type for the OS license.
|
11422
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11423
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11424
|
+
"""
|
11425
|
+
elif False:
|
11426
|
+
InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
11427
|
+
|
11428
|
+
@pulumi.input_type
|
11429
|
+
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsLicensingConfigsArgs:
|
11430
|
+
def __init__(__self__, *,
|
11431
|
+
type: pulumi.Input[str],
|
11432
|
+
license_type: Optional[pulumi.Input[str]] = None):
|
11433
|
+
"""
|
11434
|
+
:param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
|
11435
|
+
:param pulumi.Input[str] license_type: License Type for the OS license.
|
11436
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11437
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11438
|
+
"""
|
11439
|
+
pulumi.set(__self__, "type", type)
|
11440
|
+
if license_type is not None:
|
11441
|
+
pulumi.set(__self__, "license_type", license_type)
|
11442
|
+
|
11443
|
+
@property
|
11444
|
+
@pulumi.getter
|
11445
|
+
def type(self) -> pulumi.Input[str]:
|
11446
|
+
"""
|
11447
|
+
The type of action to run when the instance is interrupted for eviction.
|
11448
|
+
"""
|
11449
|
+
return pulumi.get(self, "type")
|
11450
|
+
|
11451
|
+
@type.setter
|
11452
|
+
def type(self, value: pulumi.Input[str]):
|
11453
|
+
pulumi.set(self, "type", value)
|
11454
|
+
|
11455
|
+
@property
|
11456
|
+
@pulumi.getter(name="licenseType")
|
11457
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
11458
|
+
"""
|
11459
|
+
License Type for the OS license.
|
11460
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
11461
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
11462
|
+
"""
|
11463
|
+
return pulumi.get(self, "license_type")
|
11464
|
+
|
11465
|
+
@license_type.setter
|
11466
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
11467
|
+
pulumi.set(self, "license_type", value)
|
11468
|
+
|
11469
|
+
|
11214
11470
|
if not MYPY:
|
11215
11471
|
class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict(TypedDict):
|
11216
11472
|
type: pulumi.Input[str]
|
@@ -13623,6 +13879,83 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs:
|
|
13623
13879
|
pulumi.set(self, "vpus_per_gb", value)
|
13624
13880
|
|
13625
13881
|
|
13882
|
+
if not MYPY:
|
13883
|
+
class InstanceLicensingConfigsArgsDict(TypedDict):
|
13884
|
+
type: pulumi.Input[str]
|
13885
|
+
"""
|
13886
|
+
(Updatable) Operating System type of the Configuration.
|
13887
|
+
"""
|
13888
|
+
license_type: NotRequired[pulumi.Input[str]]
|
13889
|
+
"""
|
13890
|
+
(Updatable) License Type for the OS license.
|
13891
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13892
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13893
|
+
"""
|
13894
|
+
os_version: NotRequired[pulumi.Input[str]]
|
13895
|
+
"""
|
13896
|
+
The Operating System version of the license config.
|
13897
|
+
"""
|
13898
|
+
elif False:
|
13899
|
+
InstanceLicensingConfigsArgsDict: TypeAlias = Mapping[str, Any]
|
13900
|
+
|
13901
|
+
@pulumi.input_type
|
13902
|
+
class InstanceLicensingConfigsArgs:
|
13903
|
+
def __init__(__self__, *,
|
13904
|
+
type: pulumi.Input[str],
|
13905
|
+
license_type: Optional[pulumi.Input[str]] = None,
|
13906
|
+
os_version: Optional[pulumi.Input[str]] = None):
|
13907
|
+
"""
|
13908
|
+
:param pulumi.Input[str] type: (Updatable) Operating System type of the Configuration.
|
13909
|
+
:param pulumi.Input[str] license_type: (Updatable) License Type for the OS license.
|
13910
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13911
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13912
|
+
:param pulumi.Input[str] os_version: The Operating System version of the license config.
|
13913
|
+
"""
|
13914
|
+
pulumi.set(__self__, "type", type)
|
13915
|
+
if license_type is not None:
|
13916
|
+
pulumi.set(__self__, "license_type", license_type)
|
13917
|
+
if os_version is not None:
|
13918
|
+
pulumi.set(__self__, "os_version", os_version)
|
13919
|
+
|
13920
|
+
@property
|
13921
|
+
@pulumi.getter
|
13922
|
+
def type(self) -> pulumi.Input[str]:
|
13923
|
+
"""
|
13924
|
+
(Updatable) Operating System type of the Configuration.
|
13925
|
+
"""
|
13926
|
+
return pulumi.get(self, "type")
|
13927
|
+
|
13928
|
+
@type.setter
|
13929
|
+
def type(self, value: pulumi.Input[str]):
|
13930
|
+
pulumi.set(self, "type", value)
|
13931
|
+
|
13932
|
+
@property
|
13933
|
+
@pulumi.getter(name="licenseType")
|
13934
|
+
def license_type(self) -> Optional[pulumi.Input[str]]:
|
13935
|
+
"""
|
13936
|
+
(Updatable) License Type for the OS license.
|
13937
|
+
* `OCI_PROVIDED` - Oracle Cloud Infrastructure provided license (e.g. metered $/OCPU-hour).
|
13938
|
+
* `BRING_YOUR_OWN_LICENSE` - Bring your own license.
|
13939
|
+
"""
|
13940
|
+
return pulumi.get(self, "license_type")
|
13941
|
+
|
13942
|
+
@license_type.setter
|
13943
|
+
def license_type(self, value: Optional[pulumi.Input[str]]):
|
13944
|
+
pulumi.set(self, "license_type", value)
|
13945
|
+
|
13946
|
+
@property
|
13947
|
+
@pulumi.getter(name="osVersion")
|
13948
|
+
def os_version(self) -> Optional[pulumi.Input[str]]:
|
13949
|
+
"""
|
13950
|
+
The Operating System version of the license config.
|
13951
|
+
"""
|
13952
|
+
return pulumi.get(self, "os_version")
|
13953
|
+
|
13954
|
+
@os_version.setter
|
13955
|
+
def os_version(self, value: Optional[pulumi.Input[str]]):
|
13956
|
+
pulumi.set(self, "os_version", value)
|
13957
|
+
|
13958
|
+
|
13626
13959
|
if not MYPY:
|
13627
13960
|
class InstancePlatformConfigArgsDict(TypedDict):
|
13628
13961
|
type: pulumi.Input[str]
|
@@ -17942,15 +18275,15 @@ if not MYPY:
|
|
17942
18275
|
class VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict(TypedDict):
|
17943
18276
|
configured_redundancy_level: NotRequired[pulumi.Input[str]]
|
17944
18277
|
"""
|
17945
|
-
The configured redundancy level of the virtual circuit
|
18278
|
+
The configured redundancy level of the virtual circuit.
|
17946
18279
|
"""
|
17947
18280
|
ipv4bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17948
18281
|
"""
|
17949
|
-
|
18282
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
17950
18283
|
"""
|
17951
18284
|
ipv6bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
|
17952
18285
|
"""
|
17953
|
-
|
18286
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
17954
18287
|
"""
|
17955
18288
|
elif False:
|
17956
18289
|
VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -17962,9 +18295,9 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17962
18295
|
ipv4bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None,
|
17963
18296
|
ipv6bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None):
|
17964
18297
|
"""
|
17965
|
-
:param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit
|
17966
|
-
:param pulumi.Input[str] ipv4bgp_session_redundancy_status:
|
17967
|
-
:param pulumi.Input[str] ipv6bgp_session_redundancy_status:
|
18298
|
+
:param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit.
|
18299
|
+
:param pulumi.Input[str] ipv4bgp_session_redundancy_status: Indicates if the configured level is met for IPv4 BGP redundancy.
|
18300
|
+
:param pulumi.Input[str] ipv6bgp_session_redundancy_status: Indicates if the configured level is met for IPv6 BGP redundancy.
|
17968
18301
|
"""
|
17969
18302
|
if configured_redundancy_level is not None:
|
17970
18303
|
pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
|
@@ -17977,7 +18310,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17977
18310
|
@pulumi.getter(name="configuredRedundancyLevel")
|
17978
18311
|
def configured_redundancy_level(self) -> Optional[pulumi.Input[str]]:
|
17979
18312
|
"""
|
17980
|
-
The configured redundancy level of the virtual circuit
|
18313
|
+
The configured redundancy level of the virtual circuit.
|
17981
18314
|
"""
|
17982
18315
|
return pulumi.get(self, "configured_redundancy_level")
|
17983
18316
|
|
@@ -17989,7 +18322,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
17989
18322
|
@pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
|
17990
18323
|
def ipv4bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
17991
18324
|
"""
|
17992
|
-
|
18325
|
+
Indicates if the configured level is met for IPv4 BGP redundancy.
|
17993
18326
|
"""
|
17994
18327
|
return pulumi.get(self, "ipv4bgp_session_redundancy_status")
|
17995
18328
|
|
@@ -18001,7 +18334,7 @@ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
|
|
18001
18334
|
@pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
|
18002
18335
|
def ipv6bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
|
18003
18336
|
"""
|
18004
|
-
|
18337
|
+
Indicates if the configured level is met for IPv6 BGP redundancy.
|
18005
18338
|
"""
|
18006
18339
|
return pulumi.get(self, "ipv6bgp_session_redundancy_status")
|
18007
18340
|
|
@@ -18110,6 +18443,7 @@ if not MYPY:
|
|
18110
18443
|
|
18111
18444
|
Example: `10.0.3.3`
|
18112
18445
|
"""
|
18446
|
+
route_table_id: NotRequired[pulumi.Input[str]]
|
18113
18447
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
18114
18448
|
"""
|
18115
18449
|
Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
|
@@ -18150,6 +18484,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18150
18484
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
|
18151
18485
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
18152
18486
|
private_ip: Optional[pulumi.Input[str]] = None,
|
18487
|
+
route_table_id: Optional[pulumi.Input[str]] = None,
|
18153
18488
|
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
18154
18489
|
skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
|
18155
18490
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
@@ -18222,6 +18557,8 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18222
18557
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
18223
18558
|
if private_ip is not None:
|
18224
18559
|
pulumi.set(__self__, "private_ip", private_ip)
|
18560
|
+
if route_table_id is not None:
|
18561
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
18225
18562
|
if security_attributes is not None:
|
18226
18563
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
18227
18564
|
if skip_source_dest_check is not None:
|
@@ -18375,6 +18712,15 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
18375
18712
|
def private_ip(self, value: Optional[pulumi.Input[str]]):
|
18376
18713
|
pulumi.set(self, "private_ip", value)
|
18377
18714
|
|
18715
|
+
@property
|
18716
|
+
@pulumi.getter(name="routeTableId")
|
18717
|
+
def route_table_id(self) -> Optional[pulumi.Input[str]]:
|
18718
|
+
return pulumi.get(self, "route_table_id")
|
18719
|
+
|
18720
|
+
@route_table_id.setter
|
18721
|
+
def route_table_id(self, value: Optional[pulumi.Input[str]]):
|
18722
|
+
pulumi.set(self, "route_table_id", value)
|
18723
|
+
|
18378
18724
|
@property
|
18379
18725
|
@pulumi.getter(name="securityAttributes")
|
18380
18726
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -19830,6 +20176,53 @@ class GetBootVolumesFilterArgs:
|
|
19830
20176
|
pulumi.set(self, "regex", value)
|
19831
20177
|
|
19832
20178
|
|
20179
|
+
if not MYPY:
|
20180
|
+
class GetByoasnsFilterArgsDict(TypedDict):
|
20181
|
+
name: str
|
20182
|
+
values: Sequence[str]
|
20183
|
+
regex: NotRequired[bool]
|
20184
|
+
elif False:
|
20185
|
+
GetByoasnsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
20186
|
+
|
20187
|
+
@pulumi.input_type
|
20188
|
+
class GetByoasnsFilterArgs:
|
20189
|
+
def __init__(__self__, *,
|
20190
|
+
name: str,
|
20191
|
+
values: Sequence[str],
|
20192
|
+
regex: Optional[bool] = None):
|
20193
|
+
pulumi.set(__self__, "name", name)
|
20194
|
+
pulumi.set(__self__, "values", values)
|
20195
|
+
if regex is not None:
|
20196
|
+
pulumi.set(__self__, "regex", regex)
|
20197
|
+
|
20198
|
+
@property
|
20199
|
+
@pulumi.getter
|
20200
|
+
def name(self) -> str:
|
20201
|
+
return pulumi.get(self, "name")
|
20202
|
+
|
20203
|
+
@name.setter
|
20204
|
+
def name(self, value: str):
|
20205
|
+
pulumi.set(self, "name", value)
|
20206
|
+
|
20207
|
+
@property
|
20208
|
+
@pulumi.getter
|
20209
|
+
def values(self) -> Sequence[str]:
|
20210
|
+
return pulumi.get(self, "values")
|
20211
|
+
|
20212
|
+
@values.setter
|
20213
|
+
def values(self, value: Sequence[str]):
|
20214
|
+
pulumi.set(self, "values", value)
|
20215
|
+
|
20216
|
+
@property
|
20217
|
+
@pulumi.getter
|
20218
|
+
def regex(self) -> Optional[bool]:
|
20219
|
+
return pulumi.get(self, "regex")
|
20220
|
+
|
20221
|
+
@regex.setter
|
20222
|
+
def regex(self, value: Optional[bool]):
|
20223
|
+
pulumi.set(self, "regex", value)
|
20224
|
+
|
20225
|
+
|
19833
20226
|
if not MYPY:
|
19834
20227
|
class GetByoipAllocatedRangesFilterArgsDict(TypedDict):
|
19835
20228
|
name: str
|