pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
pulumi_oci/core/outputs.py
CHANGED
@@ -157,6 +157,7 @@ __all__ = [
|
|
157
157
|
'IpsecConnectionTunnelManagementEncryptionDomainConfig',
|
158
158
|
'IpsecConnectionTunnelManagementPhaseOneDetails',
|
159
159
|
'IpsecConnectionTunnelManagementPhaseTwoDetails',
|
160
|
+
'IpsecTunnelConfiguration',
|
160
161
|
'NetworkSecurityGroupSecurityRuleIcmpOptions',
|
161
162
|
'NetworkSecurityGroupSecurityRuleTcpOptions',
|
162
163
|
'NetworkSecurityGroupSecurityRuleTcpOptionsDestinationPortRange',
|
@@ -576,6 +577,7 @@ __all__ = [
|
|
576
577
|
'GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseOneDetailResult',
|
577
578
|
'GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseTwoDetailResult',
|
578
579
|
'GetIpsecConnectionsConnectionResult',
|
580
|
+
'GetIpsecConnectionsConnectionTunnelConfigurationResult',
|
579
581
|
'GetIpsecConnectionsFilterResult',
|
580
582
|
'GetIpsecStatusFilterResult',
|
581
583
|
'GetIpsecStatusTunnelResult',
|
@@ -5137,7 +5139,6 @@ class InstanceConfigurationInstanceDetails(dict):
|
|
5137
5139
|
:param str instance_type: The type of instance details. Supported instanceType is compute
|
5138
5140
|
:param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeArgs'] block_volumes: Block volume parameters.
|
5139
5141
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsArgs' launch_details: Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
5140
|
-
|
5141
5142
|
See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
|
5142
5143
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionArgs'] options: Multiple Compute Instance Configuration instance details.
|
5143
5144
|
:param Sequence['InstanceConfigurationInstanceDetailsSecondaryVnicArgs'] secondary_vnics: Secondary VNIC parameters.
|
@@ -5173,7 +5174,6 @@ class InstanceConfigurationInstanceDetails(dict):
|
|
5173
5174
|
def launch_details(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetails']:
|
5174
5175
|
"""
|
5175
5176
|
Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
5176
|
-
|
5177
5177
|
See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
|
5178
5178
|
"""
|
5179
5179
|
return pulumi.get(self, "launch_details")
|
@@ -5295,7 +5295,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetails(dict):
|
|
5295
5295
|
is_shareable: Optional[bool] = None,
|
5296
5296
|
use_chap: Optional[bool] = None):
|
5297
5297
|
"""
|
5298
|
-
:param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized"
|
5298
|
+
:param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized"
|
5299
5299
|
:param str device: The device name.
|
5300
5300
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
5301
5301
|
:param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
@@ -5321,7 +5321,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetails(dict):
|
|
5321
5321
|
@pulumi.getter
|
5322
5322
|
def type(self) -> str:
|
5323
5323
|
"""
|
5324
|
-
The type of volume. The only supported values are "iscsi" and "paravirtualized"
|
5324
|
+
The type of volume. The only supported values are "iscsi" and "paravirtualized"
|
5325
5325
|
"""
|
5326
5326
|
return pulumi.get(self, "type")
|
5327
5327
|
|
@@ -5767,6 +5767,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5767
5767
|
suggest = "preemptible_instance_config"
|
5768
5768
|
elif key == "preferredMaintenanceAction":
|
5769
5769
|
suggest = "preferred_maintenance_action"
|
5770
|
+
elif key == "securityAttributes":
|
5771
|
+
suggest = "security_attributes"
|
5770
5772
|
elif key == "shapeConfig":
|
5771
5773
|
suggest = "shape_config"
|
5772
5774
|
elif key == "sourceDetails":
|
@@ -5806,6 +5808,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5806
5808
|
platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig'] = None,
|
5807
5809
|
preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfig'] = None,
|
5808
5810
|
preferred_maintenance_action: Optional[str] = None,
|
5811
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
5809
5812
|
shape: Optional[str] = None,
|
5810
5813
|
shape_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig'] = None,
|
5811
5814
|
source_details: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails'] = None):
|
@@ -5814,18 +5817,40 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5814
5817
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
|
5815
5818
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
5816
5819
|
:param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
|
5817
|
-
:param str cluster_placement_group_id: The
|
5818
|
-
:param str compartment_id:
|
5820
|
+
:param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
|
5821
|
+
:param str compartment_id: The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
|
5819
5822
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
|
5820
5823
|
:param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
|
5821
|
-
|
5822
|
-
|
5824
|
+
|
5825
|
+
Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
|
5826
|
+
: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"}`
|
5827
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
5823
5828
|
:param Mapping[str, str] extended_metadata: Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
|
5829
|
+
|
5830
|
+
They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
|
5831
|
+
|
5832
|
+
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
5824
5833
|
:param str fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
5825
|
-
|
5834
|
+
|
5835
|
+
If you do not specify the fault domain, the system selects one for you.
|
5836
|
+
|
5837
|
+
To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
|
5838
|
+
|
5839
|
+
Example: `FAULT-DOMAIN-1`
|
5840
|
+
: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"}`
|
5826
5841
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgs' instance_options: Optional mutable instance options. As a part of Instance Metadata Service Security Header, This allows user to disable the legacy imds endpoints.
|
5827
5842
|
:param str ipxe_script: This is an advanced option.
|
5828
|
-
|
5843
|
+
|
5844
|
+
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
|
5845
|
+
|
5846
|
+
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots; however, you should be aware that the same iPXE script will run every time an instance boots; not only after the initial LaunchInstance call.
|
5847
|
+
|
5848
|
+
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, you should use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
|
5849
|
+
|
5850
|
+
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see [Bring Your Own Image](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bringyourownimage.htm).
|
5851
|
+
|
5852
|
+
For more information about iPXE, see http://ipxe.org.
|
5853
|
+
:param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
5829
5854
|
:param str launch_mode: Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
|
5830
5855
|
* `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
|
5831
5856
|
* `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
|
@@ -5833,13 +5858,48 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5833
5858
|
* `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
|
5834
5859
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs' launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
|
5835
5860
|
: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.
|
5836
|
-
|
5861
|
+
|
5862
|
+
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:
|
5863
|
+
* Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
|
5864
|
+
* Get information about the instance, including the custom metadata that you provide when you launch the instance.
|
5865
|
+
|
5866
|
+
**Providing Cloud-Init Metadata**
|
5867
|
+
|
5868
|
+
You can use the following metadata key names to provide information to Cloud-Init:
|
5869
|
+
|
5870
|
+
**"ssh_authorized_keys"** - Provide one or more public SSH keys to be included in the `~/.ssh/authorized_keys` file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for the `authorized_keys` file, as shown in the example below.
|
5871
|
+
|
5872
|
+
**"user_data"** - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the [Cloud-Init Documentation](http://cloudinit.readthedocs.org/en/latest/topics/format.html).
|
5873
|
+
|
5874
|
+
**Metadata Example**
|
5875
|
+
|
5876
|
+
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" } **Getting Metadata on the Instance**
|
5877
|
+
|
5878
|
+
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
|
5879
|
+
|
5880
|
+
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
|
5881
|
+
|
5882
|
+
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
|
5883
|
+
|
5884
|
+
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
5885
|
+
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs' platform_config: (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
|
5886
|
+
|
5887
|
+
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
5888
|
+
|
5889
|
+
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
|
5837
5890
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs' preemptible_instance_config: Configuration options for preemptible instances.
|
5838
5891
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
5839
5892
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
5840
5893
|
* `REBOOT` - Run maintenance using a reboot.
|
5894
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
5841
5895
|
: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.
|
5896
|
+
|
5897
|
+
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
5842
5898
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs' shape_config: The shape configuration requested for the instance.
|
5899
|
+
|
5900
|
+
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the `shape` that you specify.
|
5901
|
+
|
5902
|
+
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
|
5843
5903
|
"""
|
5844
5904
|
if agent_config is not None:
|
5845
5905
|
pulumi.set(__self__, "agent_config", agent_config)
|
@@ -5885,6 +5945,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5885
5945
|
pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
|
5886
5946
|
if preferred_maintenance_action is not None:
|
5887
5947
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
5948
|
+
if security_attributes is not None:
|
5949
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
5888
5950
|
if shape is not None:
|
5889
5951
|
pulumi.set(__self__, "shape", shape)
|
5890
5952
|
if shape_config is not None:
|
@@ -5928,7 +5990,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5928
5990
|
@pulumi.getter(name="clusterPlacementGroupId")
|
5929
5991
|
def cluster_placement_group_id(self) -> Optional[str]:
|
5930
5992
|
"""
|
5931
|
-
The
|
5993
|
+
The OCID of the cluster placement group of the instance.
|
5932
5994
|
"""
|
5933
5995
|
return pulumi.get(self, "cluster_placement_group_id")
|
5934
5996
|
|
@@ -5936,7 +5998,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5936
5998
|
@pulumi.getter(name="compartmentId")
|
5937
5999
|
def compartment_id(self) -> Optional[str]:
|
5938
6000
|
"""
|
5939
|
-
|
6001
|
+
The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
|
5940
6002
|
"""
|
5941
6003
|
return pulumi.get(self, "compartment_id")
|
5942
6004
|
|
@@ -5953,6 +6015,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5953
6015
|
def dedicated_vm_host_id(self) -> Optional[str]:
|
5954
6016
|
"""
|
5955
6017
|
The OCID of the dedicated virtual machine host to place the instance on.
|
6018
|
+
|
6019
|
+
Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
|
5956
6020
|
"""
|
5957
6021
|
return pulumi.get(self, "dedicated_vm_host_id")
|
5958
6022
|
|
@@ -5960,7 +6024,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5960
6024
|
@pulumi.getter(name="definedTags")
|
5961
6025
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
5962
6026
|
"""
|
5963
|
-
|
6027
|
+
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"}`
|
5964
6028
|
"""
|
5965
6029
|
return pulumi.get(self, "defined_tags")
|
5966
6030
|
|
@@ -5968,7 +6032,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5968
6032
|
@pulumi.getter(name="displayName")
|
5969
6033
|
def display_name(self) -> Optional[str]:
|
5970
6034
|
"""
|
5971
|
-
|
6035
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
5972
6036
|
"""
|
5973
6037
|
return pulumi.get(self, "display_name")
|
5974
6038
|
|
@@ -5977,6 +6041,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5977
6041
|
def extended_metadata(self) -> Optional[Mapping[str, str]]:
|
5978
6042
|
"""
|
5979
6043
|
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
|
6044
|
+
|
6045
|
+
They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
|
6046
|
+
|
6047
|
+
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
5980
6048
|
"""
|
5981
6049
|
return pulumi.get(self, "extended_metadata")
|
5982
6050
|
|
@@ -5985,6 +6053,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5985
6053
|
def fault_domain(self) -> Optional[str]:
|
5986
6054
|
"""
|
5987
6055
|
A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
6056
|
+
|
6057
|
+
If you do not specify the fault domain, the system selects one for you.
|
6058
|
+
|
6059
|
+
To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
|
6060
|
+
|
6061
|
+
Example: `FAULT-DOMAIN-1`
|
5988
6062
|
"""
|
5989
6063
|
return pulumi.get(self, "fault_domain")
|
5990
6064
|
|
@@ -5992,7 +6066,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
5992
6066
|
@pulumi.getter(name="freeformTags")
|
5993
6067
|
def freeform_tags(self) -> Optional[Mapping[str, str]]:
|
5994
6068
|
"""
|
5995
|
-
|
6069
|
+
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"}`
|
5996
6070
|
"""
|
5997
6071
|
return pulumi.get(self, "freeform_tags")
|
5998
6072
|
|
@@ -6009,6 +6083,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6009
6083
|
def ipxe_script(self) -> Optional[str]:
|
6010
6084
|
"""
|
6011
6085
|
This is an advanced option.
|
6086
|
+
|
6087
|
+
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
|
6088
|
+
|
6089
|
+
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots; however, you should be aware that the same iPXE script will run every time an instance boots; not only after the initial LaunchInstance call.
|
6090
|
+
|
6091
|
+
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, you should use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
|
6092
|
+
|
6093
|
+
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see [Bring Your Own Image](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bringyourownimage.htm).
|
6094
|
+
|
6095
|
+
For more information about iPXE, see http://ipxe.org.
|
6012
6096
|
"""
|
6013
6097
|
return pulumi.get(self, "ipxe_script")
|
6014
6098
|
|
@@ -6016,7 +6100,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6016
6100
|
@pulumi.getter(name="isPvEncryptionInTransitEnabled")
|
6017
6101
|
def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
|
6018
6102
|
"""
|
6019
|
-
|
6103
|
+
Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
6020
6104
|
"""
|
6021
6105
|
return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
|
6022
6106
|
|
@@ -6045,6 +6129,30 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6045
6129
|
def metadata(self) -> Optional[Mapping[str, str]]:
|
6046
6130
|
"""
|
6047
6131
|
Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
|
6132
|
+
|
6133
|
+
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:
|
6134
|
+
* Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
|
6135
|
+
* Get information about the instance, including the custom metadata that you provide when you launch the instance.
|
6136
|
+
|
6137
|
+
**Providing Cloud-Init Metadata**
|
6138
|
+
|
6139
|
+
You can use the following metadata key names to provide information to Cloud-Init:
|
6140
|
+
|
6141
|
+
**"ssh_authorized_keys"** - Provide one or more public SSH keys to be included in the `~/.ssh/authorized_keys` file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for the `authorized_keys` file, as shown in the example below.
|
6142
|
+
|
6143
|
+
**"user_data"** - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the [Cloud-Init Documentation](http://cloudinit.readthedocs.org/en/latest/topics/format.html).
|
6144
|
+
|
6145
|
+
**Metadata Example**
|
6146
|
+
|
6147
|
+
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" } **Getting Metadata on the Instance**
|
6148
|
+
|
6149
|
+
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
|
6150
|
+
|
6151
|
+
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
|
6152
|
+
|
6153
|
+
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
|
6154
|
+
|
6155
|
+
The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
|
6048
6156
|
"""
|
6049
6157
|
return pulumi.get(self, "metadata")
|
6050
6158
|
|
@@ -6052,7 +6160,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6052
6160
|
@pulumi.getter(name="platformConfig")
|
6053
6161
|
def platform_config(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig']:
|
6054
6162
|
"""
|
6055
|
-
The platform configuration requested for the instance.
|
6163
|
+
(Optional) (Updatable only for VM's) The platform configuration requested for the instance.
|
6164
|
+
|
6165
|
+
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the `shape` that you specify. If you don't provide the parameter, the default values for the `shape` are used.
|
6166
|
+
|
6167
|
+
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
|
6056
6168
|
"""
|
6057
6169
|
return pulumi.get(self, "platform_config")
|
6058
6170
|
|
@@ -6074,11 +6186,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6074
6186
|
"""
|
6075
6187
|
return pulumi.get(self, "preferred_maintenance_action")
|
6076
6188
|
|
6189
|
+
@property
|
6190
|
+
@pulumi.getter(name="securityAttributes")
|
6191
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
6192
|
+
"""
|
6193
|
+
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","mode":"audit"}}}`
|
6194
|
+
"""
|
6195
|
+
return pulumi.get(self, "security_attributes")
|
6196
|
+
|
6077
6197
|
@property
|
6078
6198
|
@pulumi.getter
|
6079
6199
|
def shape(self) -> Optional[str]:
|
6080
6200
|
"""
|
6081
6201
|
The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
|
6202
|
+
|
6203
|
+
You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
6082
6204
|
"""
|
6083
6205
|
return pulumi.get(self, "shape")
|
6084
6206
|
|
@@ -6087,6 +6209,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
|
|
6087
6209
|
def shape_config(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig']:
|
6088
6210
|
"""
|
6089
6211
|
The shape configuration requested for the instance.
|
6212
|
+
|
6213
|
+
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the `shape` that you specify.
|
6214
|
+
|
6215
|
+
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
|
6090
6216
|
"""
|
6091
6217
|
return pulumi.get(self, "shape_config")
|
6092
6218
|
|
@@ -6131,19 +6257,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
|
|
6131
6257
|
|
6132
6258
|
To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
|
6133
6259
|
:param bool is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
|
6134
|
-
|
6135
|
-
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
|
6136
|
-
|
6137
|
-
The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
6138
|
-
* If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
|
6139
|
-
* If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
|
6140
6260
|
:param bool is_monitoring_disabled: Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
|
6141
|
-
|
6142
|
-
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
|
6143
|
-
|
6144
|
-
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
6145
|
-
* If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
|
6146
|
-
* If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
|
6147
6261
|
:param Sequence['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgs'] plugins_configs: The configuration of plugins associated with this instance.
|
6148
6262
|
"""
|
6149
6263
|
if are_all_plugins_disabled is not None:
|
@@ -6170,12 +6284,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
|
|
6170
6284
|
def is_management_disabled(self) -> Optional[bool]:
|
6171
6285
|
"""
|
6172
6286
|
Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
|
6173
|
-
|
6174
|
-
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
|
6175
|
-
|
6176
|
-
The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
6177
|
-
* If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
|
6178
|
-
* If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
|
6179
6287
|
"""
|
6180
6288
|
return pulumi.get(self, "is_management_disabled")
|
6181
6289
|
|
@@ -6184,12 +6292,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
|
|
6184
6292
|
def is_monitoring_disabled(self) -> Optional[bool]:
|
6185
6293
|
"""
|
6186
6294
|
Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
|
6187
|
-
|
6188
|
-
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
|
6189
|
-
|
6190
|
-
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
6191
|
-
* If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
|
6192
|
-
* If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
|
6193
6295
|
"""
|
6194
6296
|
return pulumi.get(self, "is_monitoring_disabled")
|
6195
6297
|
|
@@ -6226,7 +6328,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfig(
|
|
6226
6328
|
name: Optional[str] = None):
|
6227
6329
|
"""
|
6228
6330
|
:param str desired_state: Whether the plugin should be enabled or disabled.
|
6229
|
-
To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
|
6230
6331
|
:param str name: The plugin name. To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
|
6231
6332
|
"""
|
6232
6333
|
if desired_state is not None:
|
@@ -6239,7 +6340,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfig(
|
|
6239
6340
|
def desired_state(self) -> Optional[str]:
|
6240
6341
|
"""
|
6241
6342
|
Whether the plugin should be enabled or disabled.
|
6242
|
-
To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
|
6243
6343
|
"""
|
6244
6344
|
return pulumi.get(self, "desired_state")
|
6245
6345
|
|
@@ -6331,6 +6431,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6331
6431
|
suggest = "nsg_ids"
|
6332
6432
|
elif key == "privateIp":
|
6333
6433
|
suggest = "private_ip"
|
6434
|
+
elif key == "securityAttributes":
|
6435
|
+
suggest = "security_attributes"
|
6334
6436
|
elif key == "skipSourceDestCheck":
|
6335
6437
|
suggest = "skip_source_dest_check"
|
6336
6438
|
elif key == "subnetId":
|
@@ -6358,17 +6460,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6358
6460
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
6359
6461
|
nsg_ids: Optional[Sequence[str]] = None,
|
6360
6462
|
private_ip: Optional[str] = None,
|
6463
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
6361
6464
|
skip_source_dest_check: Optional[bool] = None,
|
6362
6465
|
subnet_id: Optional[str] = None):
|
6363
6466
|
"""
|
6364
|
-
:param bool
|
6467
|
+
:param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
6468
|
+
:param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
6365
6469
|
:param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
6366
|
-
:param Mapping[str, str] defined_tags:
|
6367
|
-
:param str display_name:
|
6368
|
-
:param Mapping[str, str] freeform_tags:
|
6470
|
+
: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"}`
|
6471
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
6472
|
+
: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"}`
|
6369
6473
|
: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.
|
6474
|
+
: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.
|
6370
6475
|
: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/).
|
6371
6476
|
: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.
|
6477
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
6372
6478
|
: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.
|
6373
6479
|
: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.
|
6374
6480
|
"""
|
@@ -6392,6 +6498,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6392
6498
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
6393
6499
|
if private_ip is not None:
|
6394
6500
|
pulumi.set(__self__, "private_ip", private_ip)
|
6501
|
+
if security_attributes is not None:
|
6502
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
6395
6503
|
if skip_source_dest_check is not None:
|
6396
6504
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
6397
6505
|
if subnet_id is not None:
|
@@ -6400,13 +6508,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6400
6508
|
@property
|
6401
6509
|
@pulumi.getter(name="assignIpv6ip")
|
6402
6510
|
def assign_ipv6ip(self) -> Optional[bool]:
|
6511
|
+
"""
|
6512
|
+
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
6513
|
+
"""
|
6403
6514
|
return pulumi.get(self, "assign_ipv6ip")
|
6404
6515
|
|
6405
6516
|
@property
|
6406
6517
|
@pulumi.getter(name="assignPrivateDnsRecord")
|
6407
6518
|
def assign_private_dns_record(self) -> Optional[bool]:
|
6408
6519
|
"""
|
6409
|
-
Whether the VNIC should be assigned a private DNS record.
|
6520
|
+
Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
6410
6521
|
"""
|
6411
6522
|
return pulumi.get(self, "assign_private_dns_record")
|
6412
6523
|
|
@@ -6422,7 +6533,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6422
6533
|
@pulumi.getter(name="definedTags")
|
6423
6534
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
6424
6535
|
"""
|
6425
|
-
|
6536
|
+
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"}`
|
6426
6537
|
"""
|
6427
6538
|
return pulumi.get(self, "defined_tags")
|
6428
6539
|
|
@@ -6430,7 +6541,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6430
6541
|
@pulumi.getter(name="displayName")
|
6431
6542
|
def display_name(self) -> Optional[str]:
|
6432
6543
|
"""
|
6433
|
-
|
6544
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
6434
6545
|
"""
|
6435
6546
|
return pulumi.get(self, "display_name")
|
6436
6547
|
|
@@ -6438,7 +6549,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6438
6549
|
@pulumi.getter(name="freeformTags")
|
6439
6550
|
def freeform_tags(self) -> Optional[Mapping[str, str]]:
|
6440
6551
|
"""
|
6441
|
-
|
6552
|
+
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"}`
|
6442
6553
|
"""
|
6443
6554
|
return pulumi.get(self, "freeform_tags")
|
6444
6555
|
|
@@ -6453,6 +6564,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6453
6564
|
@property
|
6454
6565
|
@pulumi.getter(name="ipv6addressIpv6subnetCidrPairDetails")
|
6455
6566
|
def ipv6address_ipv6subnet_cidr_pair_details(self) -> Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']]:
|
6567
|
+
"""
|
6568
|
+
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.
|
6569
|
+
"""
|
6456
6570
|
return pulumi.get(self, "ipv6address_ipv6subnet_cidr_pair_details")
|
6457
6571
|
|
6458
6572
|
@property
|
@@ -6471,6 +6585,14 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
|
|
6471
6585
|
"""
|
6472
6586
|
return pulumi.get(self, "private_ip")
|
6473
6587
|
|
6588
|
+
@property
|
6589
|
+
@pulumi.getter(name="securityAttributes")
|
6590
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
6591
|
+
"""
|
6592
|
+
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","mode":"audit"}}}`
|
6593
|
+
"""
|
6594
|
+
return pulumi.get(self, "security_attributes")
|
6595
|
+
|
6474
6596
|
@property
|
6475
6597
|
@pulumi.getter(name="skipSourceDestCheck")
|
6476
6598
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -6510,6 +6632,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
|
|
6510
6632
|
def __init__(__self__, *,
|
6511
6633
|
ipv6address: Optional[str] = None,
|
6512
6634
|
ipv6subnet_cidr: Optional[str] = None):
|
6635
|
+
"""
|
6636
|
+
:param str ipv6address: Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
|
6637
|
+
:param str ipv6subnet_cidr: Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
|
6638
|
+
"""
|
6513
6639
|
if ipv6address is not None:
|
6514
6640
|
pulumi.set(__self__, "ipv6address", ipv6address)
|
6515
6641
|
if ipv6subnet_cidr is not None:
|
@@ -6518,11 +6644,17 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
|
|
6518
6644
|
@property
|
6519
6645
|
@pulumi.getter
|
6520
6646
|
def ipv6address(self) -> Optional[str]:
|
6647
|
+
"""
|
6648
|
+
Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
|
6649
|
+
"""
|
6521
6650
|
return pulumi.get(self, "ipv6address")
|
6522
6651
|
|
6523
6652
|
@property
|
6524
6653
|
@pulumi.getter(name="ipv6subnetCidr")
|
6525
6654
|
def ipv6subnet_cidr(self) -> Optional[str]:
|
6655
|
+
"""
|
6656
|
+
Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
|
6657
|
+
"""
|
6526
6658
|
return pulumi.get(self, "ipv6subnet_cidr")
|
6527
6659
|
|
6528
6660
|
|
@@ -6749,7 +6881,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6749
6881
|
numa_nodes_per_socket: Optional[str] = None,
|
6750
6882
|
percentage_of_cores_enabled: Optional[int] = None):
|
6751
6883
|
"""
|
6752
|
-
:param str type: The type of
|
6884
|
+
:param str type: The type of platform being configured.
|
6753
6885
|
:param bool are_virtual_instructions_enabled: Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
|
6754
6886
|
:param Mapping[str, str] config_map: Instance Platform Configuration Configuration Map for flexible setting input.
|
6755
6887
|
:param bool is_access_control_service_enabled: Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
|
@@ -6757,7 +6889,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6757
6889
|
:param bool is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
|
6758
6890
|
:param bool is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
6759
6891
|
:param bool is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
|
6760
|
-
:param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6892
|
+
:param bool is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6893
|
+
|
6894
|
+
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6761
6895
|
:param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
6762
6896
|
:param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
|
6763
6897
|
:param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
|
@@ -6792,7 +6926,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6792
6926
|
@pulumi.getter
|
6793
6927
|
def type(self) -> str:
|
6794
6928
|
"""
|
6795
|
-
The type of
|
6929
|
+
The type of platform being configured.
|
6796
6930
|
"""
|
6797
6931
|
return pulumi.get(self, "type")
|
6798
6932
|
|
@@ -6856,7 +6990,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
|
|
6856
6990
|
@pulumi.getter(name="isSymmetricMultiThreadingEnabled")
|
6857
6991
|
def is_symmetric_multi_threading_enabled(self) -> Optional[bool]:
|
6858
6992
|
"""
|
6859
|
-
Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6993
|
+
(Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
|
6994
|
+
|
6995
|
+
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
|
6860
6996
|
"""
|
6861
6997
|
return pulumi.get(self, "is_symmetric_multi_threading_enabled")
|
6862
6998
|
|
@@ -6999,6 +7135,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig(dict):
|
|
6999
7135
|
vcpus: Optional[int] = None):
|
7000
7136
|
"""
|
7001
7137
|
:param str baseline_ocpu_utilization: The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`.
|
7138
|
+
|
7139
|
+
The following values are supported:
|
7140
|
+
* `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
|
7141
|
+
* `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
|
7142
|
+
* `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
|
7002
7143
|
:param float memory_in_gbs: The total amount of memory available to the instance, in gigabytes.
|
7003
7144
|
:param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
|
7004
7145
|
:param float ocpus: The total number of OCPUs available to the instance.
|
@@ -7020,6 +7161,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig(dict):
|
|
7020
7161
|
def baseline_ocpu_utilization(self) -> Optional[str]:
|
7021
7162
|
"""
|
7022
7163
|
The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`.
|
7164
|
+
|
7165
|
+
The following values are supported:
|
7166
|
+
* `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
|
7167
|
+
* `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
|
7168
|
+
* `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
|
7023
7169
|
"""
|
7024
7170
|
return pulumi.get(self, "baseline_ocpu_utilization")
|
7025
7171
|
|
@@ -7100,9 +7246,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
|
|
7100
7246
|
:param str boot_volume_id: The OCID of the boot volume used to boot the instance.
|
7101
7247
|
:param str boot_volume_size_in_gbs: The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB).
|
7102
7248
|
:param str boot_volume_vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
7249
|
+
|
7250
|
+
Allowed values:
|
7103
7251
|
:param str image_id: The OCID of the image used to boot the instance.
|
7104
7252
|
:param 'InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
|
7105
|
-
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
7253
|
+
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
7106
7254
|
"""
|
7107
7255
|
pulumi.set(__self__, "source_type", source_type)
|
7108
7256
|
if boot_volume_id is not None:
|
@@ -7147,6 +7295,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
|
|
7147
7295
|
def boot_volume_vpus_per_gb(self) -> Optional[str]:
|
7148
7296
|
"""
|
7149
7297
|
The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
7298
|
+
|
7299
|
+
Allowed values:
|
7150
7300
|
"""
|
7151
7301
|
return pulumi.get(self, "boot_volume_vpus_per_gb")
|
7152
7302
|
|
@@ -7170,7 +7320,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
|
|
7170
7320
|
@pulumi.getter(name="kmsKeyId")
|
7171
7321
|
def kms_key_id(self) -> Optional[str]:
|
7172
7322
|
"""
|
7173
|
-
The OCID of the Vault service key to assign as the master encryption key for the volume.
|
7323
|
+
The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
7174
7324
|
"""
|
7175
7325
|
return pulumi.get(self, "kms_key_id")
|
7176
7326
|
|
@@ -7206,7 +7356,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
|
|
7206
7356
|
operating_system: Optional[str] = None,
|
7207
7357
|
operating_system_version: Optional[str] = None):
|
7208
7358
|
"""
|
7209
|
-
:param str compartment_id: (Updatable) The
|
7359
|
+
:param str compartment_id: (Updatable) The OCID of the compartment containing images to search
|
7210
7360
|
:param Mapping[str, str] defined_tags_filter: Filter based on these defined tags. 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).
|
7211
7361
|
:param str operating_system: The image's operating system. Example: `Oracle Linux`
|
7212
7362
|
:param str operating_system_version: The image's operating system version. Example: `7.2`
|
@@ -7224,7 +7374,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
|
|
7224
7374
|
@pulumi.getter(name="compartmentId")
|
7225
7375
|
def compartment_id(self) -> Optional[str]:
|
7226
7376
|
"""
|
7227
|
-
(Updatable) The
|
7377
|
+
(Updatable) The OCID of the compartment containing images to search
|
7228
7378
|
"""
|
7229
7379
|
return pulumi.get(self, "compartment_id")
|
7230
7380
|
|
@@ -7283,6 +7433,8 @@ class InstanceConfigurationInstanceDetailsOption(dict):
|
|
7283
7433
|
"""
|
7284
7434
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeArgs'] block_volumes: Block volume parameters.
|
7285
7435
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs' launch_details: Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
7436
|
+
|
7437
|
+
See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
|
7286
7438
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs'] secondary_vnics: Secondary VNIC parameters.
|
7287
7439
|
"""
|
7288
7440
|
if block_volumes is not None:
|
@@ -7305,6 +7457,8 @@ class InstanceConfigurationInstanceDetailsOption(dict):
|
|
7305
7457
|
def launch_details(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetails']:
|
7306
7458
|
"""
|
7307
7459
|
Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
|
7460
|
+
|
7461
|
+
See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
|
7308
7462
|
"""
|
7309
7463
|
return pulumi.get(self, "launch_details")
|
7310
7464
|
|
@@ -7417,10 +7571,10 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
|
|
7417
7571
|
is_shareable: Optional[bool] = None,
|
7418
7572
|
use_chap: Optional[bool] = None):
|
7419
7573
|
"""
|
7420
|
-
:param str type: The type of
|
7574
|
+
:param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
|
7421
7575
|
:param str device: The device name.
|
7422
|
-
:param str display_name:
|
7423
|
-
:param bool is_pv_encryption_in_transit_enabled:
|
7576
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
7577
|
+
:param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
7424
7578
|
:param bool is_read_only: Whether the attachment should be created in read-only mode.
|
7425
7579
|
:param bool is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
|
7426
7580
|
:param bool use_chap: Whether to use CHAP authentication for the volume attachment. Defaults to false.
|
@@ -7443,7 +7597,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
|
|
7443
7597
|
@pulumi.getter
|
7444
7598
|
def type(self) -> str:
|
7445
7599
|
"""
|
7446
|
-
The type of
|
7600
|
+
The type of volume. The only supported values are "iscsi" and "paravirtualized".
|
7447
7601
|
"""
|
7448
7602
|
return pulumi.get(self, "type")
|
7449
7603
|
|
@@ -7459,7 +7613,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
|
|
7459
7613
|
@pulumi.getter(name="displayName")
|
7460
7614
|
def display_name(self) -> Optional[str]:
|
7461
7615
|
"""
|
7462
|
-
|
7616
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
7463
7617
|
"""
|
7464
7618
|
return pulumi.get(self, "display_name")
|
7465
7619
|
|
@@ -7467,7 +7621,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
|
|
7467
7621
|
@pulumi.getter(name="isPvEncryptionInTransitEnabled")
|
7468
7622
|
def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
|
7469
7623
|
"""
|
7470
|
-
|
7624
|
+
Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
7471
7625
|
"""
|
7472
7626
|
return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
|
7473
7627
|
|
@@ -7558,18 +7712,20 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7558
7712
|
vpus_per_gb: Optional[str] = None):
|
7559
7713
|
"""
|
7560
7714
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
7561
|
-
:param str availability_domain: The availability domain of the
|
7715
|
+
:param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
|
7562
7716
|
:param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
|
7563
7717
|
:param 'InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
7564
7718
|
:param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
7565
|
-
:param str compartment_id: (Updatable) The
|
7566
|
-
:param Mapping[str, str] defined_tags:
|
7567
|
-
:param str display_name:
|
7568
|
-
:param Mapping[str, str] freeform_tags:
|
7719
|
+
:param str compartment_id: (Updatable) The OCID of the compartment that contains the volume.
|
7720
|
+
: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"}`
|
7721
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
7722
|
+
: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"}`
|
7569
7723
|
:param bool is_auto_tune_enabled: Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the `InstanceConfigurationDetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
|
7570
7724
|
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
7571
7725
|
:param str size_in_gbs: The size of the volume in GBs.
|
7572
7726
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
7727
|
+
|
7728
|
+
Allowed values:
|
7573
7729
|
"""
|
7574
7730
|
if autotune_policies is not None:
|
7575
7731
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
@@ -7612,7 +7768,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7612
7768
|
@pulumi.getter(name="availabilityDomain")
|
7613
7769
|
def availability_domain(self) -> Optional[str]:
|
7614
7770
|
"""
|
7615
|
-
The availability domain of the
|
7771
|
+
The availability domain of the volume. Example: `Uocm:PHX-AD-1`
|
7616
7772
|
"""
|
7617
7773
|
return pulumi.get(self, "availability_domain")
|
7618
7774
|
|
@@ -7644,7 +7800,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7644
7800
|
@pulumi.getter(name="compartmentId")
|
7645
7801
|
def compartment_id(self) -> Optional[str]:
|
7646
7802
|
"""
|
7647
|
-
(Updatable) The
|
7803
|
+
(Updatable) The OCID of the compartment that contains the volume.
|
7648
7804
|
"""
|
7649
7805
|
return pulumi.get(self, "compartment_id")
|
7650
7806
|
|
@@ -7652,7 +7808,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7652
7808
|
@pulumi.getter(name="definedTags")
|
7653
7809
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
7654
7810
|
"""
|
7655
|
-
|
7811
|
+
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"}`
|
7656
7812
|
"""
|
7657
7813
|
return pulumi.get(self, "defined_tags")
|
7658
7814
|
|
@@ -7660,7 +7816,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7660
7816
|
@pulumi.getter(name="displayName")
|
7661
7817
|
def display_name(self) -> Optional[str]:
|
7662
7818
|
"""
|
7663
|
-
|
7819
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
7664
7820
|
"""
|
7665
7821
|
return pulumi.get(self, "display_name")
|
7666
7822
|
|
@@ -7668,7 +7824,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7668
7824
|
@pulumi.getter(name="freeformTags")
|
7669
7825
|
def freeform_tags(self) -> Optional[Mapping[str, str]]:
|
7670
7826
|
"""
|
7671
|
-
|
7827
|
+
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"}`
|
7672
7828
|
"""
|
7673
7829
|
return pulumi.get(self, "freeform_tags")
|
7674
7830
|
|
@@ -7706,6 +7862,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7706
7862
|
def vpus_per_gb(self) -> Optional[str]:
|
7707
7863
|
"""
|
7708
7864
|
The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
7865
|
+
|
7866
|
+
Allowed values:
|
7709
7867
|
"""
|
7710
7868
|
return pulumi.get(self, "vpus_per_gb")
|
7711
7869
|
|
@@ -7814,7 +7972,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
|
|
7814
7972
|
type: str,
|
7815
7973
|
id: Optional[str] = None):
|
7816
7974
|
"""
|
7817
|
-
:param str type: The type
|
7975
|
+
:param str type: The type can be one of these values: `volume`, `volumeBackup`
|
7818
7976
|
:param str id: The OCID of the volume backup.
|
7819
7977
|
"""
|
7820
7978
|
pulumi.set(__self__, "type", type)
|
@@ -7825,7 +7983,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
|
|
7825
7983
|
@pulumi.getter
|
7826
7984
|
def type(self) -> str:
|
7827
7985
|
"""
|
7828
|
-
The type
|
7986
|
+
The type can be one of these values: `volume`, `volumeBackup`
|
7829
7987
|
"""
|
7830
7988
|
return pulumi.get(self, "type")
|
7831
7989
|
|
@@ -7885,6 +8043,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
7885
8043
|
suggest = "preemptible_instance_config"
|
7886
8044
|
elif key == "preferredMaintenanceAction":
|
7887
8045
|
suggest = "preferred_maintenance_action"
|
8046
|
+
elif key == "securityAttributes":
|
8047
|
+
suggest = "security_attributes"
|
7888
8048
|
elif key == "shapeConfig":
|
7889
8049
|
suggest = "shape_config"
|
7890
8050
|
elif key == "sourceDetails":
|
@@ -7924,6 +8084,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
7924
8084
|
platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig'] = None,
|
7925
8085
|
preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfig'] = None,
|
7926
8086
|
preferred_maintenance_action: Optional[str] = None,
|
8087
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
7927
8088
|
shape: Optional[str] = None,
|
7928
8089
|
shape_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfig'] = None,
|
7929
8090
|
source_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsSourceDetails'] = None):
|
@@ -7933,7 +8094,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
7933
8094
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
7934
8095
|
:param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
|
7935
8096
|
:param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
7936
|
-
:param str compartment_id: (Updatable) The
|
8097
|
+
:param str compartment_id: (Updatable) The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
|
7937
8098
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
|
7938
8099
|
:param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
|
7939
8100
|
:param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
@@ -7956,6 +8117,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
7956
8117
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
7957
8118
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
7958
8119
|
* `REBOOT` - Run maintenance using a reboot.
|
8120
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
7959
8121
|
: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.
|
7960
8122
|
:param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs' shape_config: The shape configuration requested for the instance.
|
7961
8123
|
"""
|
@@ -8003,6 +8165,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8003
8165
|
pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
|
8004
8166
|
if preferred_maintenance_action is not None:
|
8005
8167
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
8168
|
+
if security_attributes is not None:
|
8169
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
8006
8170
|
if shape is not None:
|
8007
8171
|
pulumi.set(__self__, "shape", shape)
|
8008
8172
|
if shape_config is not None:
|
@@ -8054,7 +8218,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8054
8218
|
@pulumi.getter(name="compartmentId")
|
8055
8219
|
def compartment_id(self) -> Optional[str]:
|
8056
8220
|
"""
|
8057
|
-
(Updatable) The
|
8221
|
+
(Updatable) The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
|
8058
8222
|
"""
|
8059
8223
|
return pulumi.get(self, "compartment_id")
|
8060
8224
|
|
@@ -8192,6 +8356,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
|
|
8192
8356
|
"""
|
8193
8357
|
return pulumi.get(self, "preferred_maintenance_action")
|
8194
8358
|
|
8359
|
+
@property
|
8360
|
+
@pulumi.getter(name="securityAttributes")
|
8361
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
8362
|
+
"""
|
8363
|
+
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","mode":"audit"}}}`
|
8364
|
+
"""
|
8365
|
+
return pulumi.get(self, "security_attributes")
|
8366
|
+
|
8195
8367
|
@property
|
8196
8368
|
@pulumi.getter
|
8197
8369
|
def shape(self) -> Optional[str]:
|
@@ -8246,8 +8418,22 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
|
|
8246
8418
|
plugins_configs: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfig']] = None):
|
8247
8419
|
"""
|
8248
8420
|
:param bool are_all_plugins_disabled: Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
|
8421
|
+
|
8422
|
+
To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
|
8249
8423
|
:param bool is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
|
8424
|
+
|
8425
|
+
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
|
8426
|
+
|
8427
|
+
The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
8428
|
+
* If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
|
8429
|
+
* If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
|
8250
8430
|
:param bool is_monitoring_disabled: Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
|
8431
|
+
|
8432
|
+
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
|
8433
|
+
|
8434
|
+
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
8435
|
+
* If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
|
8436
|
+
* If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
|
8251
8437
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs'] plugins_configs: The configuration of plugins associated with this instance.
|
8252
8438
|
"""
|
8253
8439
|
if are_all_plugins_disabled is not None:
|
@@ -8264,6 +8450,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
|
|
8264
8450
|
def are_all_plugins_disabled(self) -> Optional[bool]:
|
8265
8451
|
"""
|
8266
8452
|
Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
|
8453
|
+
|
8454
|
+
To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
|
8267
8455
|
"""
|
8268
8456
|
return pulumi.get(self, "are_all_plugins_disabled")
|
8269
8457
|
|
@@ -8272,6 +8460,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
|
|
8272
8460
|
def is_management_disabled(self) -> Optional[bool]:
|
8273
8461
|
"""
|
8274
8462
|
Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
|
8463
|
+
|
8464
|
+
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
|
8465
|
+
|
8466
|
+
The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
8467
|
+
* If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
|
8468
|
+
* If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
|
8275
8469
|
"""
|
8276
8470
|
return pulumi.get(self, "is_management_disabled")
|
8277
8471
|
|
@@ -8280,6 +8474,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
|
|
8280
8474
|
def is_monitoring_disabled(self) -> Optional[bool]:
|
8281
8475
|
"""
|
8282
8476
|
Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
|
8477
|
+
|
8478
|
+
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
|
8479
|
+
|
8480
|
+
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
|
8481
|
+
* If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
|
8482
|
+
* If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
|
8283
8483
|
"""
|
8284
8484
|
return pulumi.get(self, "is_monitoring_disabled")
|
8285
8485
|
|
@@ -8316,6 +8516,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
|
|
8316
8516
|
name: Optional[str] = None):
|
8317
8517
|
"""
|
8318
8518
|
:param str desired_state: Whether the plugin should be enabled or disabled.
|
8519
|
+
|
8520
|
+
To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
|
8319
8521
|
:param str name: The plugin name. To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
|
8320
8522
|
"""
|
8321
8523
|
if desired_state is not None:
|
@@ -8328,6 +8530,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
|
|
8328
8530
|
def desired_state(self) -> Optional[str]:
|
8329
8531
|
"""
|
8330
8532
|
Whether the plugin should be enabled or disabled.
|
8533
|
+
|
8534
|
+
To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
|
8331
8535
|
"""
|
8332
8536
|
return pulumi.get(self, "desired_state")
|
8333
8537
|
|
@@ -8419,6 +8623,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8419
8623
|
suggest = "nsg_ids"
|
8420
8624
|
elif key == "privateIp":
|
8421
8625
|
suggest = "private_ip"
|
8626
|
+
elif key == "securityAttributes":
|
8627
|
+
suggest = "security_attributes"
|
8422
8628
|
elif key == "skipSourceDestCheck":
|
8423
8629
|
suggest = "skip_source_dest_check"
|
8424
8630
|
elif key == "subnetId":
|
@@ -8446,9 +8652,11 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8446
8652
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
8447
8653
|
nsg_ids: Optional[Sequence[str]] = None,
|
8448
8654
|
private_ip: Optional[str] = None,
|
8655
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
8449
8656
|
skip_source_dest_check: Optional[bool] = None,
|
8450
8657
|
subnet_id: Optional[str] = None):
|
8451
8658
|
"""
|
8659
|
+
:param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
8452
8660
|
:param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. Defaults to true. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
|
8453
8661
|
:param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
8454
8662
|
:param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
@@ -8457,6 +8665,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8457
8665
|
: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.
|
8458
8666
|
: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/).
|
8459
8667
|
: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.
|
8668
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
8460
8669
|
: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.
|
8461
8670
|
: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.
|
8462
8671
|
"""
|
@@ -8480,6 +8689,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8480
8689
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
8481
8690
|
if private_ip is not None:
|
8482
8691
|
pulumi.set(__self__, "private_ip", private_ip)
|
8692
|
+
if security_attributes is not None:
|
8693
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
8483
8694
|
if skip_source_dest_check is not None:
|
8484
8695
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
8485
8696
|
if subnet_id is not None:
|
@@ -8488,6 +8699,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8488
8699
|
@property
|
8489
8700
|
@pulumi.getter(name="assignIpv6ip")
|
8490
8701
|
def assign_ipv6ip(self) -> Optional[bool]:
|
8702
|
+
"""
|
8703
|
+
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
8704
|
+
"""
|
8491
8705
|
return pulumi.get(self, "assign_ipv6ip")
|
8492
8706
|
|
8493
8707
|
@property
|
@@ -8559,6 +8773,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
|
|
8559
8773
|
"""
|
8560
8774
|
return pulumi.get(self, "private_ip")
|
8561
8775
|
|
8776
|
+
@property
|
8777
|
+
@pulumi.getter(name="securityAttributes")
|
8778
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
8779
|
+
"""
|
8780
|
+
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","mode":"audit"}}}`
|
8781
|
+
"""
|
8782
|
+
return pulumi.get(self, "security_attributes")
|
8783
|
+
|
8562
8784
|
@property
|
8563
8785
|
@pulumi.getter(name="skipSourceDestCheck")
|
8564
8786
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -8845,8 +9067,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
|
|
8845
9067
|
:param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
8846
9068
|
:param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
|
8847
9069
|
:param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
|
8848
|
-
|
8849
|
-
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
|
8850
9070
|
"""
|
8851
9071
|
pulumi.set(__self__, "type", type)
|
8852
9072
|
if are_virtual_instructions_enabled is not None:
|
@@ -8955,8 +9175,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
|
|
8955
9175
|
def percentage_of_cores_enabled(self) -> Optional[int]:
|
8956
9176
|
"""
|
8957
9177
|
The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
|
8958
|
-
|
8959
|
-
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
|
8960
9178
|
"""
|
8961
9179
|
return pulumi.get(self, "percentage_of_cores_enabled")
|
8962
9180
|
|
@@ -9356,7 +9574,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnic(dict):
|
|
9356
9574
|
nic_index: Optional[int] = None):
|
9357
9575
|
"""
|
9358
9576
|
:param 'InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
|
9359
|
-
:param str display_name:
|
9577
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9360
9578
|
:param int nic_index: Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
|
9361
9579
|
"""
|
9362
9580
|
if create_vnic_details is not None:
|
@@ -9378,7 +9596,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnic(dict):
|
|
9378
9596
|
@pulumi.getter(name="displayName")
|
9379
9597
|
def display_name(self) -> Optional[str]:
|
9380
9598
|
"""
|
9381
|
-
|
9599
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9382
9600
|
"""
|
9383
9601
|
return pulumi.get(self, "display_name")
|
9384
9602
|
|
@@ -9416,6 +9634,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9416
9634
|
suggest = "nsg_ids"
|
9417
9635
|
elif key == "privateIp":
|
9418
9636
|
suggest = "private_ip"
|
9637
|
+
elif key == "securityAttributes":
|
9638
|
+
suggest = "security_attributes"
|
9419
9639
|
elif key == "skipSourceDestCheck":
|
9420
9640
|
suggest = "skip_source_dest_check"
|
9421
9641
|
elif key == "subnetId":
|
@@ -9443,17 +9663,20 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9443
9663
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
9444
9664
|
nsg_ids: Optional[Sequence[str]] = None,
|
9445
9665
|
private_ip: Optional[str] = None,
|
9666
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
9446
9667
|
skip_source_dest_check: Optional[bool] = None,
|
9447
9668
|
subnet_id: Optional[str] = None):
|
9448
9669
|
"""
|
9449
|
-
:param bool
|
9670
|
+
:param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
9671
|
+
:param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9450
9672
|
:param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9451
|
-
:param Mapping[str, str] defined_tags:
|
9452
|
-
:param str display_name:
|
9453
|
-
:param Mapping[str, str] freeform_tags:
|
9673
|
+
: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"}`
|
9674
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9675
|
+
: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"}`
|
9454
9676
|
: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.
|
9455
9677
|
: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/).
|
9456
9678
|
: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.
|
9679
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
9457
9680
|
: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.
|
9458
9681
|
: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.
|
9459
9682
|
"""
|
@@ -9477,6 +9700,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9477
9700
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
9478
9701
|
if private_ip is not None:
|
9479
9702
|
pulumi.set(__self__, "private_ip", private_ip)
|
9703
|
+
if security_attributes is not None:
|
9704
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
9480
9705
|
if skip_source_dest_check is not None:
|
9481
9706
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
9482
9707
|
if subnet_id is not None:
|
@@ -9485,13 +9710,16 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9485
9710
|
@property
|
9486
9711
|
@pulumi.getter(name="assignIpv6ip")
|
9487
9712
|
def assign_ipv6ip(self) -> Optional[bool]:
|
9713
|
+
"""
|
9714
|
+
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
9715
|
+
"""
|
9488
9716
|
return pulumi.get(self, "assign_ipv6ip")
|
9489
9717
|
|
9490
9718
|
@property
|
9491
9719
|
@pulumi.getter(name="assignPrivateDnsRecord")
|
9492
9720
|
def assign_private_dns_record(self) -> Optional[bool]:
|
9493
9721
|
"""
|
9494
|
-
Whether the VNIC should be assigned a private DNS record.
|
9722
|
+
Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9495
9723
|
"""
|
9496
9724
|
return pulumi.get(self, "assign_private_dns_record")
|
9497
9725
|
|
@@ -9507,7 +9735,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9507
9735
|
@pulumi.getter(name="definedTags")
|
9508
9736
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
9509
9737
|
"""
|
9510
|
-
|
9738
|
+
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"}`
|
9511
9739
|
"""
|
9512
9740
|
return pulumi.get(self, "defined_tags")
|
9513
9741
|
|
@@ -9515,7 +9743,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9515
9743
|
@pulumi.getter(name="displayName")
|
9516
9744
|
def display_name(self) -> Optional[str]:
|
9517
9745
|
"""
|
9518
|
-
|
9746
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9519
9747
|
"""
|
9520
9748
|
return pulumi.get(self, "display_name")
|
9521
9749
|
|
@@ -9523,7 +9751,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9523
9751
|
@pulumi.getter(name="freeformTags")
|
9524
9752
|
def freeform_tags(self) -> Optional[Mapping[str, str]]:
|
9525
9753
|
"""
|
9526
|
-
|
9754
|
+
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"}`
|
9527
9755
|
"""
|
9528
9756
|
return pulumi.get(self, "freeform_tags")
|
9529
9757
|
|
@@ -9556,6 +9784,14 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
|
|
9556
9784
|
"""
|
9557
9785
|
return pulumi.get(self, "private_ip")
|
9558
9786
|
|
9787
|
+
@property
|
9788
|
+
@pulumi.getter(name="securityAttributes")
|
9789
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
9790
|
+
"""
|
9791
|
+
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","mode":"audit"}}}`
|
9792
|
+
"""
|
9793
|
+
return pulumi.get(self, "security_attributes")
|
9794
|
+
|
9559
9795
|
@property
|
9560
9796
|
@pulumi.getter(name="skipSourceDestCheck")
|
9561
9797
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -9640,7 +9876,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnic(dict):
|
|
9640
9876
|
nic_index: Optional[int] = None):
|
9641
9877
|
"""
|
9642
9878
|
:param 'InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
|
9643
|
-
:param str display_name:
|
9879
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9644
9880
|
:param int nic_index: Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
|
9645
9881
|
"""
|
9646
9882
|
if create_vnic_details is not None:
|
@@ -9662,7 +9898,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnic(dict):
|
|
9662
9898
|
@pulumi.getter(name="displayName")
|
9663
9899
|
def display_name(self) -> Optional[str]:
|
9664
9900
|
"""
|
9665
|
-
|
9901
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9666
9902
|
"""
|
9667
9903
|
return pulumi.get(self, "display_name")
|
9668
9904
|
|
@@ -9700,6 +9936,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9700
9936
|
suggest = "nsg_ids"
|
9701
9937
|
elif key == "privateIp":
|
9702
9938
|
suggest = "private_ip"
|
9939
|
+
elif key == "securityAttributes":
|
9940
|
+
suggest = "security_attributes"
|
9703
9941
|
elif key == "skipSourceDestCheck":
|
9704
9942
|
suggest = "skip_source_dest_check"
|
9705
9943
|
elif key == "subnetId":
|
@@ -9727,17 +9965,20 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9727
9965
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
9728
9966
|
nsg_ids: Optional[Sequence[str]] = None,
|
9729
9967
|
private_ip: Optional[str] = None,
|
9968
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
9730
9969
|
skip_source_dest_check: Optional[bool] = None,
|
9731
9970
|
subnet_id: Optional[str] = None):
|
9732
9971
|
"""
|
9733
|
-
:param bool
|
9972
|
+
:param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
9973
|
+
:param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9734
9974
|
:param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9735
|
-
:param Mapping[str, str] defined_tags:
|
9736
|
-
:param str display_name:
|
9737
|
-
:param Mapping[str, str] freeform_tags:
|
9975
|
+
: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"}`
|
9976
|
+
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9977
|
+
: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"}`
|
9738
9978
|
: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.
|
9739
9979
|
: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/).
|
9740
9980
|
: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.
|
9981
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
9741
9982
|
: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.
|
9742
9983
|
: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.
|
9743
9984
|
"""
|
@@ -9761,6 +10002,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9761
10002
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
9762
10003
|
if private_ip is not None:
|
9763
10004
|
pulumi.set(__self__, "private_ip", private_ip)
|
10005
|
+
if security_attributes is not None:
|
10006
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
9764
10007
|
if skip_source_dest_check is not None:
|
9765
10008
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
9766
10009
|
if subnet_id is not None:
|
@@ -9769,13 +10012,16 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9769
10012
|
@property
|
9770
10013
|
@pulumi.getter(name="assignIpv6ip")
|
9771
10014
|
def assign_ipv6ip(self) -> Optional[bool]:
|
10015
|
+
"""
|
10016
|
+
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
|
10017
|
+
"""
|
9772
10018
|
return pulumi.get(self, "assign_ipv6ip")
|
9773
10019
|
|
9774
10020
|
@property
|
9775
10021
|
@pulumi.getter(name="assignPrivateDnsRecord")
|
9776
10022
|
def assign_private_dns_record(self) -> Optional[bool]:
|
9777
10023
|
"""
|
9778
|
-
Whether the VNIC should be assigned a private DNS record.
|
10024
|
+
Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
9779
10025
|
"""
|
9780
10026
|
return pulumi.get(self, "assign_private_dns_record")
|
9781
10027
|
|
@@ -9791,7 +10037,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9791
10037
|
@pulumi.getter(name="definedTags")
|
9792
10038
|
def defined_tags(self) -> Optional[Mapping[str, str]]:
|
9793
10039
|
"""
|
9794
|
-
|
10040
|
+
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"}`
|
9795
10041
|
"""
|
9796
10042
|
return pulumi.get(self, "defined_tags")
|
9797
10043
|
|
@@ -9799,7 +10045,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9799
10045
|
@pulumi.getter(name="displayName")
|
9800
10046
|
def display_name(self) -> Optional[str]:
|
9801
10047
|
"""
|
9802
|
-
|
10048
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
9803
10049
|
"""
|
9804
10050
|
return pulumi.get(self, "display_name")
|
9805
10051
|
|
@@ -9807,7 +10053,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9807
10053
|
@pulumi.getter(name="freeformTags")
|
9808
10054
|
def freeform_tags(self) -> Optional[Mapping[str, str]]:
|
9809
10055
|
"""
|
9810
|
-
|
10056
|
+
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"}`
|
9811
10057
|
"""
|
9812
10058
|
return pulumi.get(self, "freeform_tags")
|
9813
10059
|
|
@@ -9840,6 +10086,14 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
|
|
9840
10086
|
"""
|
9841
10087
|
return pulumi.get(self, "private_ip")
|
9842
10088
|
|
10089
|
+
@property
|
10090
|
+
@pulumi.getter(name="securityAttributes")
|
10091
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
10092
|
+
"""
|
10093
|
+
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","mode":"audit"}}}`
|
10094
|
+
"""
|
10095
|
+
return pulumi.get(self, "security_attributes")
|
10096
|
+
|
9843
10097
|
@property
|
9844
10098
|
@pulumi.getter(name="skipSourceDestCheck")
|
9845
10099
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -9920,6 +10174,8 @@ class InstanceCreateVnicDetails(dict):
|
|
9920
10174
|
suggest = "nsg_ids"
|
9921
10175
|
elif key == "privateIp":
|
9922
10176
|
suggest = "private_ip"
|
10177
|
+
elif key == "securityAttributes":
|
10178
|
+
suggest = "security_attributes"
|
9923
10179
|
elif key == "skipSourceDestCheck":
|
9924
10180
|
suggest = "skip_source_dest_check"
|
9925
10181
|
elif key == "subnetId":
|
@@ -9949,6 +10205,7 @@ class InstanceCreateVnicDetails(dict):
|
|
9949
10205
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
9950
10206
|
nsg_ids: Optional[Sequence[str]] = None,
|
9951
10207
|
private_ip: Optional[str] = None,
|
10208
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
9952
10209
|
skip_source_dest_check: Optional[bool] = None,
|
9953
10210
|
subnet_id: Optional[str] = None,
|
9954
10211
|
vlan_id: Optional[str] = None):
|
@@ -9986,6 +10243,7 @@ class InstanceCreateVnicDetails(dict):
|
|
9986
10243
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
9987
10244
|
|
9988
10245
|
Example: `10.0.3.3`
|
10246
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
9989
10247
|
:param bool skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
|
9990
10248
|
|
9991
10249
|
If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -10018,6 +10276,8 @@ class InstanceCreateVnicDetails(dict):
|
|
10018
10276
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
10019
10277
|
if private_ip is not None:
|
10020
10278
|
pulumi.set(__self__, "private_ip", private_ip)
|
10279
|
+
if security_attributes is not None:
|
10280
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
10021
10281
|
if skip_source_dest_check is not None:
|
10022
10282
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
10023
10283
|
if subnet_id is not None:
|
@@ -10128,6 +10388,14 @@ class InstanceCreateVnicDetails(dict):
|
|
10128
10388
|
"""
|
10129
10389
|
return pulumi.get(self, "private_ip")
|
10130
10390
|
|
10391
|
+
@property
|
10392
|
+
@pulumi.getter(name="securityAttributes")
|
10393
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
10394
|
+
"""
|
10395
|
+
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","mode":"audit"}}}`
|
10396
|
+
"""
|
10397
|
+
return pulumi.get(self, "security_attributes")
|
10398
|
+
|
10131
10399
|
@property
|
10132
10400
|
@pulumi.getter(name="skipSourceDestCheck")
|
10133
10401
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -10380,6 +10648,8 @@ class InstanceLaunchVolumeAttachment(dict):
|
|
10380
10648
|
suggest = "encryption_in_transit_type"
|
10381
10649
|
elif key == "isAgentAutoIscsiLoginEnabled":
|
10382
10650
|
suggest = "is_agent_auto_iscsi_login_enabled"
|
10651
|
+
elif key == "isPvEncryptionInTransitEnabled":
|
10652
|
+
suggest = "is_pv_encryption_in_transit_enabled"
|
10383
10653
|
elif key == "isReadOnly":
|
10384
10654
|
suggest = "is_read_only"
|
10385
10655
|
elif key == "isShareable":
|
@@ -10408,6 +10678,7 @@ class InstanceLaunchVolumeAttachment(dict):
|
|
10408
10678
|
display_name: Optional[str] = None,
|
10409
10679
|
encryption_in_transit_type: Optional[str] = None,
|
10410
10680
|
is_agent_auto_iscsi_login_enabled: Optional[bool] = None,
|
10681
|
+
is_pv_encryption_in_transit_enabled: Optional[bool] = None,
|
10411
10682
|
is_read_only: Optional[bool] = None,
|
10412
10683
|
is_shareable: Optional[bool] = None,
|
10413
10684
|
launch_create_volume_details: Optional['outputs.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails'] = None,
|
@@ -10419,6 +10690,7 @@ class InstanceLaunchVolumeAttachment(dict):
|
|
10419
10690
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
10420
10691
|
:param str encryption_in_transit_type: Refer the top-level definition of encryptionInTransitType. The default value is NONE.
|
10421
10692
|
:param bool is_agent_auto_iscsi_login_enabled: Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
|
10693
|
+
:param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
10422
10694
|
:param bool is_read_only: Whether the attachment was created in read-only mode.
|
10423
10695
|
:param bool is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
|
10424
10696
|
:param 'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs' launch_create_volume_details: Define a volume that will be created and attached or attached to an instance on creation.
|
@@ -10434,6 +10706,8 @@ class InstanceLaunchVolumeAttachment(dict):
|
|
10434
10706
|
pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
|
10435
10707
|
if is_agent_auto_iscsi_login_enabled is not None:
|
10436
10708
|
pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
|
10709
|
+
if is_pv_encryption_in_transit_enabled is not None:
|
10710
|
+
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
10437
10711
|
if is_read_only is not None:
|
10438
10712
|
pulumi.set(__self__, "is_read_only", is_read_only)
|
10439
10713
|
if is_shareable is not None:
|
@@ -10485,6 +10759,14 @@ class InstanceLaunchVolumeAttachment(dict):
|
|
10485
10759
|
"""
|
10486
10760
|
return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
|
10487
10761
|
|
10762
|
+
@property
|
10763
|
+
@pulumi.getter(name="isPvEncryptionInTransitEnabled")
|
10764
|
+
def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
|
10765
|
+
"""
|
10766
|
+
Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
|
10767
|
+
"""
|
10768
|
+
return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
|
10769
|
+
|
10488
10770
|
@property
|
10489
10771
|
@pulumi.getter(name="isReadOnly")
|
10490
10772
|
def is_read_only(self) -> Optional[bool]:
|
@@ -11692,7 +11974,7 @@ class InstanceSourceDetails(dict):
|
|
11692
11974
|
:param 'InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
|
11693
11975
|
:param bool is_preserve_boot_volume_enabled: (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
|
11694
11976
|
:param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
11695
|
-
:param str source_id: (Updatable) The OCID of the boot volume used to boot the instance.
|
11977
|
+
:param str source_id: (Updatable) The OCID of the boot volume used to boot the instance. Updates are supported only for linux Images. The user will need to manually destroy and re-create the resource for other image types.
|
11696
11978
|
"""
|
11697
11979
|
pulumi.set(__self__, "source_type", source_type)
|
11698
11980
|
if boot_volume_size_in_gbs is not None:
|
@@ -11762,7 +12044,7 @@ class InstanceSourceDetails(dict):
|
|
11762
12044
|
@pulumi.getter(name="sourceId")
|
11763
12045
|
def source_id(self) -> Optional[str]:
|
11764
12046
|
"""
|
11765
|
-
(Updatable) The OCID of the boot volume used to boot the instance.
|
12047
|
+
(Updatable) The OCID of the boot volume used to boot the instance. Updates are supported only for linux Images. The user will need to manually destroy and re-create the resource for other image types.
|
11766
12048
|
"""
|
11767
12049
|
return pulumi.get(self, "source_id")
|
11768
12050
|
|
@@ -12545,6 +12827,56 @@ class IpsecConnectionTunnelManagementPhaseTwoDetails(dict):
|
|
12545
12827
|
return pulumi.get(self, "remaining_lifetime_last_retrieved")
|
12546
12828
|
|
12547
12829
|
|
12830
|
+
@pulumi.output_type
|
12831
|
+
class IpsecTunnelConfiguration(dict):
|
12832
|
+
@staticmethod
|
12833
|
+
def __key_warning(key: str):
|
12834
|
+
suggest = None
|
12835
|
+
if key == "associatedVirtualCircuits":
|
12836
|
+
suggest = "associated_virtual_circuits"
|
12837
|
+
elif key == "drgRouteTableId":
|
12838
|
+
suggest = "drg_route_table_id"
|
12839
|
+
elif key == "oracleTunnelIp":
|
12840
|
+
suggest = "oracle_tunnel_ip"
|
12841
|
+
|
12842
|
+
if suggest:
|
12843
|
+
pulumi.log.warn(f"Key '{key}' not found in IpsecTunnelConfiguration. Access the value via the '{suggest}' property getter instead.")
|
12844
|
+
|
12845
|
+
def __getitem__(self, key: str) -> Any:
|
12846
|
+
IpsecTunnelConfiguration.__key_warning(key)
|
12847
|
+
return super().__getitem__(key)
|
12848
|
+
|
12849
|
+
def get(self, key: str, default = None) -> Any:
|
12850
|
+
IpsecTunnelConfiguration.__key_warning(key)
|
12851
|
+
return super().get(key, default)
|
12852
|
+
|
12853
|
+
def __init__(__self__, *,
|
12854
|
+
associated_virtual_circuits: Optional[Sequence[str]] = None,
|
12855
|
+
drg_route_table_id: Optional[str] = None,
|
12856
|
+
oracle_tunnel_ip: Optional[str] = None):
|
12857
|
+
if associated_virtual_circuits is not None:
|
12858
|
+
pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
|
12859
|
+
if drg_route_table_id is not None:
|
12860
|
+
pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
|
12861
|
+
if oracle_tunnel_ip is not None:
|
12862
|
+
pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
|
12863
|
+
|
12864
|
+
@property
|
12865
|
+
@pulumi.getter(name="associatedVirtualCircuits")
|
12866
|
+
def associated_virtual_circuits(self) -> Optional[Sequence[str]]:
|
12867
|
+
return pulumi.get(self, "associated_virtual_circuits")
|
12868
|
+
|
12869
|
+
@property
|
12870
|
+
@pulumi.getter(name="drgRouteTableId")
|
12871
|
+
def drg_route_table_id(self) -> Optional[str]:
|
12872
|
+
return pulumi.get(self, "drg_route_table_id")
|
12873
|
+
|
12874
|
+
@property
|
12875
|
+
@pulumi.getter(name="oracleTunnelIp")
|
12876
|
+
def oracle_tunnel_ip(self) -> Optional[str]:
|
12877
|
+
return pulumi.get(self, "oracle_tunnel_ip")
|
12878
|
+
|
12879
|
+
|
12548
12880
|
@pulumi.output_type
|
12549
12881
|
class NetworkSecurityGroupSecurityRuleIcmpOptions(dict):
|
12550
12882
|
def __init__(__self__, *,
|
@@ -13958,6 +14290,8 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
13958
14290
|
suggest = "nsg_ids"
|
13959
14291
|
elif key == "privateIp":
|
13960
14292
|
suggest = "private_ip"
|
14293
|
+
elif key == "securityAttributes":
|
14294
|
+
suggest = "security_attributes"
|
13961
14295
|
elif key == "skipSourceDestCheck":
|
13962
14296
|
suggest = "skip_source_dest_check"
|
13963
14297
|
elif key == "subnetId":
|
@@ -13987,6 +14321,7 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
13987
14321
|
ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
|
13988
14322
|
nsg_ids: Optional[Sequence[str]] = None,
|
13989
14323
|
private_ip: Optional[str] = None,
|
14324
|
+
security_attributes: Optional[Mapping[str, str]] = None,
|
13990
14325
|
skip_source_dest_check: Optional[bool] = None,
|
13991
14326
|
subnet_id: Optional[str] = None,
|
13992
14327
|
vlan_id: Optional[str] = None):
|
@@ -14025,6 +14360,7 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14025
14360
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
14026
14361
|
|
14027
14362
|
Example: `10.0.3.3`
|
14363
|
+
:param Mapping[str, str] security_attributes: 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"}`
|
14028
14364
|
:param bool skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
|
14029
14365
|
|
14030
14366
|
If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -14057,6 +14393,8 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14057
14393
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
14058
14394
|
if private_ip is not None:
|
14059
14395
|
pulumi.set(__self__, "private_ip", private_ip)
|
14396
|
+
if security_attributes is not None:
|
14397
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
14060
14398
|
if skip_source_dest_check is not None:
|
14061
14399
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
14062
14400
|
if subnet_id is not None:
|
@@ -14168,6 +14506,14 @@ class VnicAttachmentCreateVnicDetails(dict):
|
|
14168
14506
|
"""
|
14169
14507
|
return pulumi.get(self, "private_ip")
|
14170
14508
|
|
14509
|
+
@property
|
14510
|
+
@pulumi.getter(name="securityAttributes")
|
14511
|
+
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
14512
|
+
"""
|
14513
|
+
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"}`
|
14514
|
+
"""
|
14515
|
+
return pulumi.get(self, "security_attributes")
|
14516
|
+
|
14171
14517
|
@property
|
14172
14518
|
@pulumi.getter(name="skipSourceDestCheck")
|
14173
14519
|
def skip_source_dest_check(self) -> Optional[bool]:
|
@@ -26300,6 +26646,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
26300
26646
|
platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
|
26301
26647
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
|
26302
26648
|
preferred_maintenance_action: str,
|
26649
|
+
security_attributes: Mapping[str, str],
|
26303
26650
|
shape: str,
|
26304
26651
|
shape_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailShapeConfigResult'],
|
26305
26652
|
source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailSourceDetailResult']):
|
@@ -26332,6 +26679,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
26332
26679
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
26333
26680
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
26334
26681
|
* `REBOOT` - Run maintenance using a reboot.
|
26682
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
26335
26683
|
: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.
|
26336
26684
|
:param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
26337
26685
|
"""
|
@@ -26357,6 +26705,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
26357
26705
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
26358
26706
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
26359
26707
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
26708
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
26360
26709
|
pulumi.set(__self__, "shape", shape)
|
26361
26710
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
26362
26711
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -26543,6 +26892,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
|
|
26543
26892
|
"""
|
26544
26893
|
return pulumi.get(self, "preferred_maintenance_action")
|
26545
26894
|
|
26895
|
+
@property
|
26896
|
+
@pulumi.getter(name="securityAttributes")
|
26897
|
+
def security_attributes(self) -> Mapping[str, str]:
|
26898
|
+
"""
|
26899
|
+
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","mode":"audit"}}}`
|
26900
|
+
"""
|
26901
|
+
return pulumi.get(self, "security_attributes")
|
26902
|
+
|
26546
26903
|
@property
|
26547
26904
|
@pulumi.getter
|
26548
26905
|
def shape(self) -> str:
|
@@ -26691,6 +27048,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
26691
27048
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
26692
27049
|
nsg_ids: Sequence[str],
|
26693
27050
|
private_ip: str,
|
27051
|
+
security_attributes: Mapping[str, str],
|
26694
27052
|
skip_source_dest_check: bool,
|
26695
27053
|
subnet_id: str):
|
26696
27054
|
"""
|
@@ -26704,6 +27062,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
26704
27062
|
: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.
|
26705
27063
|
: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/).
|
26706
27064
|
: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.
|
27065
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
26707
27066
|
: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.
|
26708
27067
|
: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.
|
26709
27068
|
"""
|
@@ -26717,6 +27076,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
26717
27076
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
26718
27077
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
26719
27078
|
pulumi.set(__self__, "private_ip", private_ip)
|
27079
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
26720
27080
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
26721
27081
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
26722
27082
|
|
@@ -26800,6 +27160,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
|
|
26800
27160
|
"""
|
26801
27161
|
return pulumi.get(self, "private_ip")
|
26802
27162
|
|
27163
|
+
@property
|
27164
|
+
@pulumi.getter(name="securityAttributes")
|
27165
|
+
def security_attributes(self) -> Mapping[str, str]:
|
27166
|
+
"""
|
27167
|
+
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","mode":"audit"}}}`
|
27168
|
+
"""
|
27169
|
+
return pulumi.get(self, "security_attributes")
|
27170
|
+
|
26803
27171
|
@property
|
26804
27172
|
@pulumi.getter(name="skipSourceDestCheck")
|
26805
27173
|
def skip_source_dest_check(self) -> bool:
|
@@ -27783,6 +28151,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
27783
28151
|
platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
|
27784
28152
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
|
27785
28153
|
preferred_maintenance_action: str,
|
28154
|
+
security_attributes: Mapping[str, str],
|
27786
28155
|
shape: str,
|
27787
28156
|
shape_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigResult'],
|
27788
28157
|
source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailSourceDetailResult']):
|
@@ -27815,6 +28184,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
27815
28184
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
27816
28185
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
27817
28186
|
* `REBOOT` - Run maintenance using a reboot.
|
28187
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
27818
28188
|
: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.
|
27819
28189
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
27820
28190
|
"""
|
@@ -27840,6 +28210,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
27840
28210
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
27841
28211
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
27842
28212
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
28213
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
27843
28214
|
pulumi.set(__self__, "shape", shape)
|
27844
28215
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
27845
28216
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -28026,6 +28397,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
|
|
28026
28397
|
"""
|
28027
28398
|
return pulumi.get(self, "preferred_maintenance_action")
|
28028
28399
|
|
28400
|
+
@property
|
28401
|
+
@pulumi.getter(name="securityAttributes")
|
28402
|
+
def security_attributes(self) -> Mapping[str, str]:
|
28403
|
+
"""
|
28404
|
+
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","mode":"audit"}}}`
|
28405
|
+
"""
|
28406
|
+
return pulumi.get(self, "security_attributes")
|
28407
|
+
|
28029
28408
|
@property
|
28030
28409
|
@pulumi.getter
|
28031
28410
|
def shape(self) -> str:
|
@@ -28174,6 +28553,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
28174
28553
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
28175
28554
|
nsg_ids: Sequence[str],
|
28176
28555
|
private_ip: str,
|
28556
|
+
security_attributes: Mapping[str, str],
|
28177
28557
|
skip_source_dest_check: bool,
|
28178
28558
|
subnet_id: str):
|
28179
28559
|
"""
|
@@ -28187,6 +28567,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
28187
28567
|
: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.
|
28188
28568
|
: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/).
|
28189
28569
|
: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.
|
28570
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
28190
28571
|
: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.
|
28191
28572
|
: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.
|
28192
28573
|
"""
|
@@ -28200,6 +28581,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
28200
28581
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
28201
28582
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
28202
28583
|
pulumi.set(__self__, "private_ip", private_ip)
|
28584
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
28203
28585
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
28204
28586
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
28205
28587
|
|
@@ -28283,6 +28665,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
|
|
28283
28665
|
"""
|
28284
28666
|
return pulumi.get(self, "private_ip")
|
28285
28667
|
|
28668
|
+
@property
|
28669
|
+
@pulumi.getter(name="securityAttributes")
|
28670
|
+
def security_attributes(self) -> Mapping[str, str]:
|
28671
|
+
"""
|
28672
|
+
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","mode":"audit"}}}`
|
28673
|
+
"""
|
28674
|
+
return pulumi.get(self, "security_attributes")
|
28675
|
+
|
28286
28676
|
@property
|
28287
28677
|
@pulumi.getter(name="skipSourceDestCheck")
|
28288
28678
|
def skip_source_dest_check(self) -> bool:
|
@@ -28875,6 +29265,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
28875
29265
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
28876
29266
|
nsg_ids: Sequence[str],
|
28877
29267
|
private_ip: str,
|
29268
|
+
security_attributes: Mapping[str, str],
|
28878
29269
|
skip_source_dest_check: bool,
|
28879
29270
|
subnet_id: str):
|
28880
29271
|
"""
|
@@ -28888,6 +29279,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
28888
29279
|
: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.
|
28889
29280
|
: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/).
|
28890
29281
|
: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.
|
29282
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
28891
29283
|
: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.
|
28892
29284
|
: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.
|
28893
29285
|
"""
|
@@ -28901,6 +29293,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
28901
29293
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
28902
29294
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
28903
29295
|
pulumi.set(__self__, "private_ip", private_ip)
|
29296
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
28904
29297
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
28905
29298
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
28906
29299
|
|
@@ -28984,6 +29377,14 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
|
|
28984
29377
|
"""
|
28985
29378
|
return pulumi.get(self, "private_ip")
|
28986
29379
|
|
29380
|
+
@property
|
29381
|
+
@pulumi.getter(name="securityAttributes")
|
29382
|
+
def security_attributes(self) -> Mapping[str, str]:
|
29383
|
+
"""
|
29384
|
+
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","mode":"audit"}}}`
|
29385
|
+
"""
|
29386
|
+
return pulumi.get(self, "security_attributes")
|
29387
|
+
|
28987
29388
|
@property
|
28988
29389
|
@pulumi.getter(name="skipSourceDestCheck")
|
28989
29390
|
def skip_source_dest_check(self) -> bool:
|
@@ -29083,6 +29484,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
29083
29484
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
29084
29485
|
nsg_ids: Sequence[str],
|
29085
29486
|
private_ip: str,
|
29487
|
+
security_attributes: Mapping[str, str],
|
29086
29488
|
skip_source_dest_check: bool,
|
29087
29489
|
subnet_id: str):
|
29088
29490
|
"""
|
@@ -29096,6 +29498,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
29096
29498
|
: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.
|
29097
29499
|
: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/).
|
29098
29500
|
: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.
|
29501
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
29099
29502
|
: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.
|
29100
29503
|
: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.
|
29101
29504
|
"""
|
@@ -29109,6 +29512,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
29109
29512
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
29110
29513
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
29111
29514
|
pulumi.set(__self__, "private_ip", private_ip)
|
29515
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
29112
29516
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
29113
29517
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
29114
29518
|
|
@@ -29192,6 +29596,14 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
|
|
29192
29596
|
"""
|
29193
29597
|
return pulumi.get(self, "private_ip")
|
29194
29598
|
|
29599
|
+
@property
|
29600
|
+
@pulumi.getter(name="securityAttributes")
|
29601
|
+
def security_attributes(self) -> Mapping[str, str]:
|
29602
|
+
"""
|
29603
|
+
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","mode":"audit"}}}`
|
29604
|
+
"""
|
29605
|
+
return pulumi.get(self, "security_attributes")
|
29606
|
+
|
29195
29607
|
@property
|
29196
29608
|
@pulumi.getter(name="skipSourceDestCheck")
|
29197
29609
|
def skip_source_dest_check(self) -> bool:
|
@@ -29831,6 +30243,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
29831
30243
|
platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
|
29832
30244
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
|
29833
30245
|
preferred_maintenance_action: str,
|
30246
|
+
security_attributes: Mapping[str, str],
|
29834
30247
|
shape: str,
|
29835
30248
|
shape_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailShapeConfigResult'],
|
29836
30249
|
source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailSourceDetailResult']):
|
@@ -29863,6 +30276,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
29863
30276
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
29864
30277
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
29865
30278
|
* `REBOOT` - Run maintenance using a reboot.
|
30279
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
29866
30280
|
: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.
|
29867
30281
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
29868
30282
|
"""
|
@@ -29888,6 +30302,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
29888
30302
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
29889
30303
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
29890
30304
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
30305
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
29891
30306
|
pulumi.set(__self__, "shape", shape)
|
29892
30307
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
29893
30308
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -30074,6 +30489,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
|
|
30074
30489
|
"""
|
30075
30490
|
return pulumi.get(self, "preferred_maintenance_action")
|
30076
30491
|
|
30492
|
+
@property
|
30493
|
+
@pulumi.getter(name="securityAttributes")
|
30494
|
+
def security_attributes(self) -> Mapping[str, str]:
|
30495
|
+
"""
|
30496
|
+
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","mode":"audit"}}}`
|
30497
|
+
"""
|
30498
|
+
return pulumi.get(self, "security_attributes")
|
30499
|
+
|
30077
30500
|
@property
|
30078
30501
|
@pulumi.getter
|
30079
30502
|
def shape(self) -> str:
|
@@ -30222,6 +30645,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
30222
30645
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
30223
30646
|
nsg_ids: Sequence[str],
|
30224
30647
|
private_ip: str,
|
30648
|
+
security_attributes: Mapping[str, str],
|
30225
30649
|
skip_source_dest_check: bool,
|
30226
30650
|
subnet_id: str):
|
30227
30651
|
"""
|
@@ -30235,6 +30659,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
30235
30659
|
: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.
|
30236
30660
|
: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/).
|
30237
30661
|
: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.
|
30662
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
30238
30663
|
: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.
|
30239
30664
|
: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.
|
30240
30665
|
"""
|
@@ -30248,6 +30673,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
30248
30673
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
30249
30674
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
30250
30675
|
pulumi.set(__self__, "private_ip", private_ip)
|
30676
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
30251
30677
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
30252
30678
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
30253
30679
|
|
@@ -30331,6 +30757,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
|
|
30331
30757
|
"""
|
30332
30758
|
return pulumi.get(self, "private_ip")
|
30333
30759
|
|
30760
|
+
@property
|
30761
|
+
@pulumi.getter(name="securityAttributes")
|
30762
|
+
def security_attributes(self) -> Mapping[str, str]:
|
30763
|
+
"""
|
30764
|
+
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","mode":"audit"}}}`
|
30765
|
+
"""
|
30766
|
+
return pulumi.get(self, "security_attributes")
|
30767
|
+
|
30334
30768
|
@property
|
30335
30769
|
@pulumi.getter(name="skipSourceDestCheck")
|
30336
30770
|
def skip_source_dest_check(self) -> bool:
|
@@ -31314,6 +31748,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31314
31748
|
platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
|
31315
31749
|
preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
|
31316
31750
|
preferred_maintenance_action: str,
|
31751
|
+
security_attributes: Mapping[str, str],
|
31317
31752
|
shape: str,
|
31318
31753
|
shape_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigResult'],
|
31319
31754
|
source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailSourceDetailResult']):
|
@@ -31346,6 +31781,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31346
31781
|
:param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
|
31347
31782
|
* `LIVE_MIGRATE` - Run maintenance using a live migration.
|
31348
31783
|
* `REBOOT` - Run maintenance using a reboot.
|
31784
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
31349
31785
|
: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.
|
31350
31786
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
|
31351
31787
|
"""
|
@@ -31371,6 +31807,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31371
31807
|
pulumi.set(__self__, "platform_configs", platform_configs)
|
31372
31808
|
pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
|
31373
31809
|
pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
|
31810
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
31374
31811
|
pulumi.set(__self__, "shape", shape)
|
31375
31812
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
31376
31813
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -31557,6 +31994,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31557
31994
|
"""
|
31558
31995
|
return pulumi.get(self, "preferred_maintenance_action")
|
31559
31996
|
|
31997
|
+
@property
|
31998
|
+
@pulumi.getter(name="securityAttributes")
|
31999
|
+
def security_attributes(self) -> Mapping[str, str]:
|
32000
|
+
"""
|
32001
|
+
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","mode":"audit"}}}`
|
32002
|
+
"""
|
32003
|
+
return pulumi.get(self, "security_attributes")
|
32004
|
+
|
31560
32005
|
@property
|
31561
32006
|
@pulumi.getter
|
31562
32007
|
def shape(self) -> str:
|
@@ -31705,6 +32150,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31705
32150
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
31706
32151
|
nsg_ids: Sequence[str],
|
31707
32152
|
private_ip: str,
|
32153
|
+
security_attributes: Mapping[str, str],
|
31708
32154
|
skip_source_dest_check: bool,
|
31709
32155
|
subnet_id: str):
|
31710
32156
|
"""
|
@@ -31718,6 +32164,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31718
32164
|
: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.
|
31719
32165
|
: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/).
|
31720
32166
|
: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.
|
32167
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
31721
32168
|
: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.
|
31722
32169
|
: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.
|
31723
32170
|
"""
|
@@ -31731,6 +32178,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31731
32178
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
31732
32179
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
31733
32180
|
pulumi.set(__self__, "private_ip", private_ip)
|
32181
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
31734
32182
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
31735
32183
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
31736
32184
|
|
@@ -31814,6 +32262,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
|
|
31814
32262
|
"""
|
31815
32263
|
return pulumi.get(self, "private_ip")
|
31816
32264
|
|
32265
|
+
@property
|
32266
|
+
@pulumi.getter(name="securityAttributes")
|
32267
|
+
def security_attributes(self) -> Mapping[str, str]:
|
32268
|
+
"""
|
32269
|
+
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","mode":"audit"}}}`
|
32270
|
+
"""
|
32271
|
+
return pulumi.get(self, "security_attributes")
|
32272
|
+
|
31817
32273
|
@property
|
31818
32274
|
@pulumi.getter(name="skipSourceDestCheck")
|
31819
32275
|
def skip_source_dest_check(self) -> bool:
|
@@ -32406,6 +32862,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
32406
32862
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
32407
32863
|
nsg_ids: Sequence[str],
|
32408
32864
|
private_ip: str,
|
32865
|
+
security_attributes: Mapping[str, str],
|
32409
32866
|
skip_source_dest_check: bool,
|
32410
32867
|
subnet_id: str):
|
32411
32868
|
"""
|
@@ -32419,6 +32876,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
32419
32876
|
: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.
|
32420
32877
|
: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/).
|
32421
32878
|
: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.
|
32879
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
32422
32880
|
: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.
|
32423
32881
|
: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.
|
32424
32882
|
"""
|
@@ -32432,6 +32890,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
32432
32890
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
32433
32891
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
32434
32892
|
pulumi.set(__self__, "private_ip", private_ip)
|
32893
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
32435
32894
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
32436
32895
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
32437
32896
|
|
@@ -32515,6 +32974,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
|
|
32515
32974
|
"""
|
32516
32975
|
return pulumi.get(self, "private_ip")
|
32517
32976
|
|
32977
|
+
@property
|
32978
|
+
@pulumi.getter(name="securityAttributes")
|
32979
|
+
def security_attributes(self) -> Mapping[str, str]:
|
32980
|
+
"""
|
32981
|
+
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","mode":"audit"}}}`
|
32982
|
+
"""
|
32983
|
+
return pulumi.get(self, "security_attributes")
|
32984
|
+
|
32518
32985
|
@property
|
32519
32986
|
@pulumi.getter(name="skipSourceDestCheck")
|
32520
32987
|
def skip_source_dest_check(self) -> bool:
|
@@ -32614,6 +33081,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
32614
33081
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
32615
33082
|
nsg_ids: Sequence[str],
|
32616
33083
|
private_ip: str,
|
33084
|
+
security_attributes: Mapping[str, str],
|
32617
33085
|
skip_source_dest_check: bool,
|
32618
33086
|
subnet_id: str):
|
32619
33087
|
"""
|
@@ -32627,6 +33095,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
32627
33095
|
: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.
|
32628
33096
|
: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/).
|
32629
33097
|
: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.
|
33098
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
32630
33099
|
: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.
|
32631
33100
|
: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.
|
32632
33101
|
"""
|
@@ -32640,6 +33109,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
32640
33109
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
32641
33110
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
32642
33111
|
pulumi.set(__self__, "private_ip", private_ip)
|
33112
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
32643
33113
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
32644
33114
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
32645
33115
|
|
@@ -32723,6 +33193,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
|
|
32723
33193
|
"""
|
32724
33194
|
return pulumi.get(self, "private_ip")
|
32725
33195
|
|
33196
|
+
@property
|
33197
|
+
@pulumi.getter(name="securityAttributes")
|
33198
|
+
def security_attributes(self) -> Mapping[str, str]:
|
33199
|
+
"""
|
33200
|
+
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","mode":"audit"}}}`
|
33201
|
+
"""
|
33202
|
+
return pulumi.get(self, "security_attributes")
|
33203
|
+
|
32726
33204
|
@property
|
32727
33205
|
@pulumi.getter(name="skipSourceDestCheck")
|
32728
33206
|
def skip_source_dest_check(self) -> bool:
|
@@ -32933,6 +33411,7 @@ class GetInstanceCreateVnicDetailResult(dict):
|
|
32933
33411
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
32934
33412
|
nsg_ids: Sequence[str],
|
32935
33413
|
private_ip: str,
|
33414
|
+
security_attributes: Mapping[str, str],
|
32936
33415
|
skip_source_dest_check: bool,
|
32937
33416
|
subnet_id: str,
|
32938
33417
|
vlan_id: str):
|
@@ -32942,6 +33421,7 @@ class GetInstanceCreateVnicDetailResult(dict):
|
|
32942
33421
|
: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"}`
|
32943
33422
|
:param str hostname_label: The hostname for the instance VNIC's primary private IP.
|
32944
33423
|
:param str private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
|
33424
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
32945
33425
|
"""
|
32946
33426
|
pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
|
32947
33427
|
pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
|
@@ -32953,6 +33433,7 @@ class GetInstanceCreateVnicDetailResult(dict):
|
|
32953
33433
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
32954
33434
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
32955
33435
|
pulumi.set(__self__, "private_ip", private_ip)
|
33436
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
32956
33437
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
32957
33438
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
32958
33439
|
pulumi.set(__self__, "vlan_id", vlan_id)
|
@@ -33022,6 +33503,14 @@ class GetInstanceCreateVnicDetailResult(dict):
|
|
33022
33503
|
"""
|
33023
33504
|
return pulumi.get(self, "private_ip")
|
33024
33505
|
|
33506
|
+
@property
|
33507
|
+
@pulumi.getter(name="securityAttributes")
|
33508
|
+
def security_attributes(self) -> Mapping[str, str]:
|
33509
|
+
"""
|
33510
|
+
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","mode":"audit"}}}`
|
33511
|
+
"""
|
33512
|
+
return pulumi.get(self, "security_attributes")
|
33513
|
+
|
33025
33514
|
@property
|
33026
33515
|
@pulumi.getter(name="skipSourceDestCheck")
|
33027
33516
|
def skip_source_dest_check(self) -> bool:
|
@@ -33247,6 +33736,7 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
|
|
33247
33736
|
display_name: str,
|
33248
33737
|
encryption_in_transit_type: str,
|
33249
33738
|
is_agent_auto_iscsi_login_enabled: bool,
|
33739
|
+
is_pv_encryption_in_transit_enabled: bool,
|
33250
33740
|
is_read_only: bool,
|
33251
33741
|
is_shareable: bool,
|
33252
33742
|
launch_create_volume_details: Sequence['outputs.GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult'],
|
@@ -33255,12 +33745,14 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
|
|
33255
33745
|
volume_id: str):
|
33256
33746
|
"""
|
33257
33747
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
33748
|
+
:param bool is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
|
33258
33749
|
:param str type: (Required) The type of action to run when the instance is interrupted for eviction.
|
33259
33750
|
"""
|
33260
33751
|
pulumi.set(__self__, "device", device)
|
33261
33752
|
pulumi.set(__self__, "display_name", display_name)
|
33262
33753
|
pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
|
33263
33754
|
pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
|
33755
|
+
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
33264
33756
|
pulumi.set(__self__, "is_read_only", is_read_only)
|
33265
33757
|
pulumi.set(__self__, "is_shareable", is_shareable)
|
33266
33758
|
pulumi.set(__self__, "launch_create_volume_details", launch_create_volume_details)
|
@@ -33291,6 +33783,14 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
|
|
33291
33783
|
def is_agent_auto_iscsi_login_enabled(self) -> bool:
|
33292
33784
|
return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
|
33293
33785
|
|
33786
|
+
@property
|
33787
|
+
@pulumi.getter(name="isPvEncryptionInTransitEnabled")
|
33788
|
+
def is_pv_encryption_in_transit_enabled(self) -> bool:
|
33789
|
+
"""
|
33790
|
+
Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
|
33791
|
+
"""
|
33792
|
+
return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
|
33793
|
+
|
33294
33794
|
@property
|
33295
33795
|
@pulumi.getter(name="isReadOnly")
|
33296
33796
|
def is_read_only(self) -> bool:
|
@@ -35320,6 +35820,8 @@ class GetInstancesInstanceResult(dict):
|
|
35320
35820
|
private_ip: str,
|
35321
35821
|
public_ip: str,
|
35322
35822
|
region: str,
|
35823
|
+
security_attributes: Mapping[str, str],
|
35824
|
+
security_attributes_state: str,
|
35323
35825
|
shape: str,
|
35324
35826
|
shape_configs: Sequence['outputs.GetInstancesInstanceShapeConfigResult'],
|
35325
35827
|
source_details: Sequence['outputs.GetInstancesInstanceSourceDetailResult'],
|
@@ -35362,6 +35864,8 @@ class GetInstancesInstanceResult(dict):
|
|
35362
35864
|
:param Sequence['GetInstancesInstancePreemptibleInstanceConfigArgs'] preemptible_instance_configs: (Optional) Configuration options for preemptible instances.
|
35363
35865
|
:param bool preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
|
35364
35866
|
:param str region: The region that contains the availability domain the instance is running in.
|
35867
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
35868
|
+
:param str security_attributes_state: The lifecycle state of the `securityAttributes`
|
35365
35869
|
:param str shape: The shape of the instance. The shape determines the number of CPUs and the amount of memory allocated to the instance. You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
|
35366
35870
|
:param Sequence['GetInstancesInstanceShapeConfigArgs'] shape_configs: The shape configuration for an instance. The shape configuration determines the resources allocated to an instance.
|
35367
35871
|
:param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
@@ -35404,6 +35908,8 @@ class GetInstancesInstanceResult(dict):
|
|
35404
35908
|
pulumi.set(__self__, "private_ip", private_ip)
|
35405
35909
|
pulumi.set(__self__, "public_ip", public_ip)
|
35406
35910
|
pulumi.set(__self__, "region", region)
|
35911
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
35912
|
+
pulumi.set(__self__, "security_attributes_state", security_attributes_state)
|
35407
35913
|
pulumi.set(__self__, "shape", shape)
|
35408
35914
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
35409
35915
|
pulumi.set(__self__, "source_details", source_details)
|
@@ -35679,6 +36185,22 @@ class GetInstancesInstanceResult(dict):
|
|
35679
36185
|
"""
|
35680
36186
|
return pulumi.get(self, "region")
|
35681
36187
|
|
36188
|
+
@property
|
36189
|
+
@pulumi.getter(name="securityAttributes")
|
36190
|
+
def security_attributes(self) -> Mapping[str, str]:
|
36191
|
+
"""
|
36192
|
+
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","mode":"audit"}}}`
|
36193
|
+
"""
|
36194
|
+
return pulumi.get(self, "security_attributes")
|
36195
|
+
|
36196
|
+
@property
|
36197
|
+
@pulumi.getter(name="securityAttributesState")
|
36198
|
+
def security_attributes_state(self) -> str:
|
36199
|
+
"""
|
36200
|
+
The lifecycle state of the `securityAttributes`
|
36201
|
+
"""
|
36202
|
+
return pulumi.get(self, "security_attributes_state")
|
36203
|
+
|
35682
36204
|
@property
|
35683
36205
|
@pulumi.getter
|
35684
36206
|
def shape(self) -> str:
|
@@ -35870,6 +36392,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
|
|
35870
36392
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstancesInstanceCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
35871
36393
|
nsg_ids: Sequence[str],
|
35872
36394
|
private_ip: str,
|
36395
|
+
security_attributes: Mapping[str, str],
|
35873
36396
|
skip_source_dest_check: bool,
|
35874
36397
|
subnet_id: str,
|
35875
36398
|
vlan_id: str):
|
@@ -35877,6 +36400,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
|
|
35877
36400
|
: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"}`
|
35878
36401
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
35879
36402
|
: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"}`
|
36403
|
+
:param Mapping[str, str] security_attributes: 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","mode":"audit"}}}`
|
35880
36404
|
"""
|
35881
36405
|
pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
|
35882
36406
|
pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
|
@@ -35888,6 +36412,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
|
|
35888
36412
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
35889
36413
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
35890
36414
|
pulumi.set(__self__, "private_ip", private_ip)
|
36415
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
35891
36416
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
35892
36417
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
35893
36418
|
pulumi.set(__self__, "vlan_id", vlan_id)
|
@@ -35951,6 +36476,14 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
|
|
35951
36476
|
def private_ip(self) -> str:
|
35952
36477
|
return pulumi.get(self, "private_ip")
|
35953
36478
|
|
36479
|
+
@property
|
36480
|
+
@pulumi.getter(name="securityAttributes")
|
36481
|
+
def security_attributes(self) -> Mapping[str, str]:
|
36482
|
+
"""
|
36483
|
+
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","mode":"audit"}}}`
|
36484
|
+
"""
|
36485
|
+
return pulumi.get(self, "security_attributes")
|
36486
|
+
|
35954
36487
|
@property
|
35955
36488
|
@pulumi.getter(name="skipSourceDestCheck")
|
35956
36489
|
def skip_source_dest_check(self) -> bool:
|
@@ -36114,6 +36647,7 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
|
|
36114
36647
|
display_name: str,
|
36115
36648
|
encryption_in_transit_type: str,
|
36116
36649
|
is_agent_auto_iscsi_login_enabled: bool,
|
36650
|
+
is_pv_encryption_in_transit_enabled: bool,
|
36117
36651
|
is_read_only: bool,
|
36118
36652
|
is_shareable: bool,
|
36119
36653
|
launch_create_volume_details: Sequence['outputs.GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult'],
|
@@ -36122,12 +36656,14 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
|
|
36122
36656
|
volume_id: str):
|
36123
36657
|
"""
|
36124
36658
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
36659
|
+
:param bool is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
|
36125
36660
|
:param str type: (Required) The type of action to run when the instance is interrupted for eviction.
|
36126
36661
|
"""
|
36127
36662
|
pulumi.set(__self__, "device", device)
|
36128
36663
|
pulumi.set(__self__, "display_name", display_name)
|
36129
36664
|
pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
|
36130
36665
|
pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
|
36666
|
+
pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
|
36131
36667
|
pulumi.set(__self__, "is_read_only", is_read_only)
|
36132
36668
|
pulumi.set(__self__, "is_shareable", is_shareable)
|
36133
36669
|
pulumi.set(__self__, "launch_create_volume_details", launch_create_volume_details)
|
@@ -36158,6 +36694,14 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
|
|
36158
36694
|
def is_agent_auto_iscsi_login_enabled(self) -> bool:
|
36159
36695
|
return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
|
36160
36696
|
|
36697
|
+
@property
|
36698
|
+
@pulumi.getter(name="isPvEncryptionInTransitEnabled")
|
36699
|
+
def is_pv_encryption_in_transit_enabled(self) -> bool:
|
36700
|
+
"""
|
36701
|
+
Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
|
36702
|
+
"""
|
36703
|
+
return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
|
36704
|
+
|
36161
36705
|
@property
|
36162
36706
|
@pulumi.getter(name="isReadOnly")
|
36163
36707
|
def is_read_only(self) -> bool:
|
@@ -38622,7 +39166,8 @@ class GetIpsecConnectionsConnectionResult(dict):
|
|
38622
39166
|
state: str,
|
38623
39167
|
static_routes: Sequence[str],
|
38624
39168
|
time_created: str,
|
38625
|
-
transport_type: str
|
39169
|
+
transport_type: str,
|
39170
|
+
tunnel_configurations: Sequence['outputs.GetIpsecConnectionsConnectionTunnelConfigurationResult']):
|
38626
39171
|
"""
|
38627
39172
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
38628
39173
|
:param str cpe_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CPE.
|
@@ -38651,6 +39196,7 @@ class GetIpsecConnectionsConnectionResult(dict):
|
|
38651
39196
|
pulumi.set(__self__, "static_routes", static_routes)
|
38652
39197
|
pulumi.set(__self__, "time_created", time_created)
|
38653
39198
|
pulumi.set(__self__, "transport_type", transport_type)
|
39199
|
+
pulumi.set(__self__, "tunnel_configurations", tunnel_configurations)
|
38654
39200
|
|
38655
39201
|
@property
|
38656
39202
|
@pulumi.getter(name="compartmentId")
|
@@ -38756,6 +39302,37 @@ class GetIpsecConnectionsConnectionResult(dict):
|
|
38756
39302
|
"""
|
38757
39303
|
return pulumi.get(self, "transport_type")
|
38758
39304
|
|
39305
|
+
@property
|
39306
|
+
@pulumi.getter(name="tunnelConfigurations")
|
39307
|
+
def tunnel_configurations(self) -> Sequence['outputs.GetIpsecConnectionsConnectionTunnelConfigurationResult']:
|
39308
|
+
return pulumi.get(self, "tunnel_configurations")
|
39309
|
+
|
39310
|
+
|
39311
|
+
@pulumi.output_type
|
39312
|
+
class GetIpsecConnectionsConnectionTunnelConfigurationResult(dict):
|
39313
|
+
def __init__(__self__, *,
|
39314
|
+
associated_virtual_circuits: Sequence[str],
|
39315
|
+
drg_route_table_id: str,
|
39316
|
+
oracle_tunnel_ip: str):
|
39317
|
+
pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
|
39318
|
+
pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
|
39319
|
+
pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
|
39320
|
+
|
39321
|
+
@property
|
39322
|
+
@pulumi.getter(name="associatedVirtualCircuits")
|
39323
|
+
def associated_virtual_circuits(self) -> Sequence[str]:
|
39324
|
+
return pulumi.get(self, "associated_virtual_circuits")
|
39325
|
+
|
39326
|
+
@property
|
39327
|
+
@pulumi.getter(name="drgRouteTableId")
|
39328
|
+
def drg_route_table_id(self) -> str:
|
39329
|
+
return pulumi.get(self, "drg_route_table_id")
|
39330
|
+
|
39331
|
+
@property
|
39332
|
+
@pulumi.getter(name="oracleTunnelIp")
|
39333
|
+
def oracle_tunnel_ip(self) -> str:
|
39334
|
+
return pulumi.get(self, "oracle_tunnel_ip")
|
39335
|
+
|
38759
39336
|
|
38760
39337
|
@pulumi.output_type
|
38761
39338
|
class GetIpsecConnectionsFilterResult(dict):
|
@@ -44021,6 +44598,7 @@ class GetVcnsVirtualNetworkResult(dict):
|
|
44021
44598
|
ipv6private_cidr_blocks: Sequence[str],
|
44022
44599
|
is_ipv6enabled: bool,
|
44023
44600
|
is_oracle_gua_allocation_enabled: bool,
|
44601
|
+
security_attributes: Mapping[str, str],
|
44024
44602
|
state: str,
|
44025
44603
|
time_created: str,
|
44026
44604
|
vcn_domain_name: str):
|
@@ -44039,6 +44617,7 @@ class GetVcnsVirtualNetworkResult(dict):
|
|
44039
44617
|
:param str id: The VCN's Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)).
|
44040
44618
|
:param Sequence[str] ipv6cidr_blocks: For an IPv6-enabled VCN, this is the list of IPv6 prefixes for the VCN's IP address space. The prefixes are provided by Oracle and the sizes are always /56.
|
44041
44619
|
:param Sequence[str] ipv6private_cidr_blocks: For an IPv6-enabled VCN, this is the list of Private IPv6 prefixes for the VCN's IP address space.
|
44620
|
+
:param Mapping[str, str] security_attributes: 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"}`
|
44042
44621
|
:param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
44043
44622
|
:param str time_created: The date and time the VCN was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
44044
44623
|
:param str vcn_domain_name: The VCN's domain name, which consists of the VCN's DNS label, and the `oraclevcn.com` domain.
|
@@ -44060,6 +44639,7 @@ class GetVcnsVirtualNetworkResult(dict):
|
|
44060
44639
|
pulumi.set(__self__, "ipv6private_cidr_blocks", ipv6private_cidr_blocks)
|
44061
44640
|
pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
|
44062
44641
|
pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
|
44642
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
44063
44643
|
pulumi.set(__self__, "state", state)
|
44064
44644
|
pulumi.set(__self__, "time_created", time_created)
|
44065
44645
|
pulumi.set(__self__, "vcn_domain_name", vcn_domain_name)
|
@@ -44191,6 +44771,14 @@ class GetVcnsVirtualNetworkResult(dict):
|
|
44191
44771
|
def is_oracle_gua_allocation_enabled(self) -> bool:
|
44192
44772
|
return pulumi.get(self, "is_oracle_gua_allocation_enabled")
|
44193
44773
|
|
44774
|
+
@property
|
44775
|
+
@pulumi.getter(name="securityAttributes")
|
44776
|
+
def security_attributes(self) -> Mapping[str, str]:
|
44777
|
+
"""
|
44778
|
+
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"}`
|
44779
|
+
"""
|
44780
|
+
return pulumi.get(self, "security_attributes")
|
44781
|
+
|
44194
44782
|
@property
|
44195
44783
|
@pulumi.getter
|
44196
44784
|
def state(self) -> str:
|
@@ -45025,6 +45613,7 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
|
|
45025
45613
|
ipv6private_cidr_blocks: Sequence[str],
|
45026
45614
|
is_ipv6enabled: bool,
|
45027
45615
|
is_oracle_gua_allocation_enabled: bool,
|
45616
|
+
security_attributes: Mapping[str, str],
|
45028
45617
|
state: str,
|
45029
45618
|
time_created: str,
|
45030
45619
|
vcn_domain_name: str):
|
@@ -45045,6 +45634,7 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
|
|
45045
45634
|
pulumi.set(__self__, "ipv6private_cidr_blocks", ipv6private_cidr_blocks)
|
45046
45635
|
pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
|
45047
45636
|
pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
|
45637
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
45048
45638
|
pulumi.set(__self__, "state", state)
|
45049
45639
|
pulumi.set(__self__, "time_created", time_created)
|
45050
45640
|
pulumi.set(__self__, "vcn_domain_name", vcn_domain_name)
|
@@ -45134,6 +45724,11 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
|
|
45134
45724
|
def is_oracle_gua_allocation_enabled(self) -> bool:
|
45135
45725
|
return pulumi.get(self, "is_oracle_gua_allocation_enabled")
|
45136
45726
|
|
45727
|
+
@property
|
45728
|
+
@pulumi.getter(name="securityAttributes")
|
45729
|
+
def security_attributes(self) -> Mapping[str, str]:
|
45730
|
+
return pulumi.get(self, "security_attributes")
|
45731
|
+
|
45137
45732
|
@property
|
45138
45733
|
@pulumi.getter
|
45139
45734
|
def state(self) -> str:
|
@@ -45532,6 +46127,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
45532
46127
|
ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetVnicAttachmentsVnicAttachmentCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
|
45533
46128
|
nsg_ids: Sequence[str],
|
45534
46129
|
private_ip: str,
|
46130
|
+
security_attributes: Mapping[str, str],
|
45535
46131
|
skip_source_dest_check: bool,
|
45536
46132
|
subnet_id: str,
|
45537
46133
|
vlan_id: str):
|
@@ -45550,6 +46146,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
45550
46146
|
pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
|
45551
46147
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
45552
46148
|
pulumi.set(__self__, "private_ip", private_ip)
|
46149
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
45553
46150
|
pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
|
45554
46151
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
45555
46152
|
pulumi.set(__self__, "vlan_id", vlan_id)
|
@@ -45607,6 +46204,11 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
|
|
45607
46204
|
def private_ip(self) -> str:
|
45608
46205
|
return pulumi.get(self, "private_ip")
|
45609
46206
|
|
46207
|
+
@property
|
46208
|
+
@pulumi.getter(name="securityAttributes")
|
46209
|
+
def security_attributes(self) -> Mapping[str, str]:
|
46210
|
+
return pulumi.get(self, "security_attributes")
|
46211
|
+
|
45610
46212
|
@property
|
45611
46213
|
@pulumi.getter(name="skipSourceDestCheck")
|
45612
46214
|
def skip_source_dest_check(self) -> bool:
|