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.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -297,6 +297,8 @@ __all__ = [
297
297
  'IpsecConnectionTunnelManagementPhaseOneDetailsArgsDict',
298
298
  'IpsecConnectionTunnelManagementPhaseTwoDetailsArgs',
299
299
  'IpsecConnectionTunnelManagementPhaseTwoDetailsArgsDict',
300
+ 'IpsecTunnelConfigurationArgs',
301
+ 'IpsecTunnelConfigurationArgsDict',
300
302
  'NetworkSecurityGroupSecurityRuleIcmpOptionsArgs',
301
303
  'NetworkSecurityGroupSecurityRuleIcmpOptionsArgsDict',
302
304
  'NetworkSecurityGroupSecurityRuleTcpOptionsArgs',
@@ -6076,7 +6078,6 @@ if not MYPY:
6076
6078
  launch_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsArgsDict']]
6077
6079
  """
6078
6080
  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.
6079
-
6080
6081
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6081
6082
  """
6082
6083
  options: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionArgsDict']]]]
@@ -6102,7 +6103,6 @@ class InstanceConfigurationInstanceDetailsArgs:
6102
6103
  :param pulumi.Input[str] instance_type: The type of instance details. Supported instanceType is compute
6103
6104
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeArgs']]] block_volumes: Block volume parameters.
6104
6105
  :param pulumi.Input['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.
6105
-
6106
6106
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6107
6107
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionArgs']]] options: Multiple Compute Instance Configuration instance details.
6108
6108
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsSecondaryVnicArgs']]] secondary_vnics: Secondary VNIC parameters.
@@ -6146,7 +6146,6 @@ class InstanceConfigurationInstanceDetailsArgs:
6146
6146
  def launch_details(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsArgs']]:
6147
6147
  """
6148
6148
  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.
6149
-
6150
6149
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6151
6150
  """
6152
6151
  return pulumi.get(self, "launch_details")
@@ -6256,7 +6255,7 @@ if not MYPY:
6256
6255
  class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgsDict(TypedDict):
6257
6256
  type: pulumi.Input[str]
6258
6257
  """
6259
- The type of volume. The only supported values are "iscsi" and "paravirtualized".
6258
+ The type of volume. The only supported values are "iscsi" and "paravirtualized"
6260
6259
  """
6261
6260
  device: NotRequired[pulumi.Input[str]]
6262
6261
  """
@@ -6296,7 +6295,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgs:
6296
6295
  is_shareable: Optional[pulumi.Input[bool]] = None,
6297
6296
  use_chap: Optional[pulumi.Input[bool]] = None):
6298
6297
  """
6299
- :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
6298
+ :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized"
6300
6299
  :param pulumi.Input[str] device: The device name.
6301
6300
  :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6302
6301
  :param pulumi.Input[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.
@@ -6322,7 +6321,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgs:
6322
6321
  @pulumi.getter
6323
6322
  def type(self) -> pulumi.Input[str]:
6324
6323
  """
6325
- The type of volume. The only supported values are "iscsi" and "paravirtualized".
6324
+ The type of volume. The only supported values are "iscsi" and "paravirtualized"
6326
6325
  """
6327
6326
  return pulumi.get(self, "type")
6328
6327
 
@@ -6867,11 +6866,11 @@ if not MYPY:
6867
6866
  """
6868
6867
  cluster_placement_group_id: NotRequired[pulumi.Input[str]]
6869
6868
  """
6870
- The clusterPlacementGroup Id of the volume for volume placement.
6869
+ The OCID of the cluster placement group of the instance.
6871
6870
  """
6872
6871
  compartment_id: NotRequired[pulumi.Input[str]]
6873
6872
  """
6874
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
6873
+ 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.
6875
6874
  """
6876
6875
  create_vnic_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgsDict']]
6877
6876
  """
@@ -6880,26 +6879,38 @@ if not MYPY:
6880
6879
  dedicated_vm_host_id: NotRequired[pulumi.Input[str]]
6881
6880
  """
6882
6881
  The OCID of the dedicated virtual machine host to place the instance on.
6882
+
6883
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
6883
6884
  """
6884
6885
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6885
6886
  """
6886
- (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"}`
6887
+ 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"}`
6887
6888
  """
6888
6889
  display_name: NotRequired[pulumi.Input[str]]
6889
6890
  """
6890
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6891
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6891
6892
  """
6892
6893
  extended_metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6893
6894
  """
6894
6895
  Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
6896
+
6897
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
6898
+
6899
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6895
6900
  """
6896
6901
  fault_domain: NotRequired[pulumi.Input[str]]
6897
6902
  """
6898
6903
  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.
6904
+
6905
+ If you do not specify the fault domain, the system selects one for you.
6906
+
6907
+ 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.
6908
+
6909
+ Example: `FAULT-DOMAIN-1`
6899
6910
  """
6900
6911
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6901
6912
  """
6902
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
6913
+ 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"}`
6903
6914
  """
6904
6915
  instance_options: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgsDict']]
6905
6916
  """
@@ -6908,10 +6919,20 @@ if not MYPY:
6908
6919
  ipxe_script: NotRequired[pulumi.Input[str]]
6909
6920
  """
6910
6921
  This is an advanced option.
6922
+
6923
+ 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.
6924
+
6925
+ 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.
6926
+
6927
+ 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.
6928
+
6929
+ 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).
6930
+
6931
+ For more information about iPXE, see http://ipxe.org.
6911
6932
  """
6912
6933
  is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
6913
6934
  """
6914
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
6935
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
6915
6936
  """
6916
6937
  launch_mode: NotRequired[pulumi.Input[str]]
6917
6938
  """
@@ -6928,10 +6949,38 @@ if not MYPY:
6928
6949
  metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6929
6950
  """
6930
6951
  Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
6952
+
6953
+ 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:
6954
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
6955
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
6956
+
6957
+ **Providing Cloud-Init Metadata**
6958
+
6959
+ You can use the following metadata key names to provide information to Cloud-Init:
6960
+
6961
+ **"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.
6962
+
6963
+ **"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).
6964
+
6965
+ **Metadata Example**
6966
+
6967
+ "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**
6968
+
6969
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
6970
+
6971
+ 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>
6972
+
6973
+ 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.
6974
+
6975
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6931
6976
  """
6932
6977
  platform_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict']]
6933
6978
  """
6934
- The platform configuration requested for the instance.
6979
+ (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
6980
+
6981
+ 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.
6982
+
6983
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
6935
6984
  """
6936
6985
  preemptible_instance_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgsDict']]
6937
6986
  """
@@ -6943,13 +6992,23 @@ if not MYPY:
6943
6992
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
6944
6993
  * `REBOOT` - Run maintenance using a reboot.
6945
6994
  """
6995
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6996
+ """
6997
+ 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"}}}`
6998
+ """
6946
6999
  shape: NotRequired[pulumi.Input[str]]
6947
7000
  """
6948
7001
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7002
+
7003
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
6949
7004
  """
6950
7005
  shape_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgsDict']]
6951
7006
  """
6952
7007
  The shape configuration requested for the instance.
7008
+
7009
+ 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.
7010
+
7011
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
6953
7012
  """
6954
7013
  source_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgsDict']]
6955
7014
  elif False:
@@ -6980,6 +7039,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
6980
7039
  platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']] = None,
6981
7040
  preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
6982
7041
  preferred_maintenance_action: Optional[pulumi.Input[str]] = None,
7042
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
6983
7043
  shape: Optional[pulumi.Input[str]] = None,
6984
7044
  shape_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs']] = None,
6985
7045
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs']] = None):
@@ -6988,18 +7048,40 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
6988
7048
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs'] availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
6989
7049
  :param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
6990
7050
  :param pulumi.Input[str] capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
6991
- :param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
6992
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7051
+ :param pulumi.Input[str] cluster_placement_group_id: The OCID of the cluster placement group of the instance.
7052
+ :param pulumi.Input[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.
6993
7053
  :param pulumi.Input['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.
6994
7054
  :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
6995
- :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
6996
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7055
+
7056
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
7057
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
7058
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6997
7059
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] extended_metadata: Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
7060
+
7061
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
7062
+
7063
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6998
7064
  :param pulumi.Input[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.
6999
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7065
+
7066
+ If you do not specify the fault domain, the system selects one for you.
7067
+
7068
+ 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.
7069
+
7070
+ Example: `FAULT-DOMAIN-1`
7071
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
7000
7072
  :param pulumi.Input['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.
7001
7073
  :param pulumi.Input[str] ipxe_script: This is an advanced option.
7002
- :param pulumi.Input[bool] is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
7074
+
7075
+ 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.
7076
+
7077
+ 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.
7078
+
7079
+ 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.
7080
+
7081
+ 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).
7082
+
7083
+ For more information about iPXE, see http://ipxe.org.
7084
+ :param pulumi.Input[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.
7003
7085
  :param pulumi.Input[str] launch_mode: Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
7004
7086
  * `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
7005
7087
  * `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
@@ -7007,13 +7089,48 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7007
7089
  * `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
7008
7090
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs'] launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
7009
7091
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
7010
- :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs'] platform_config: The platform configuration requested for the instance.
7092
+
7093
+ 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:
7094
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
7095
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
7096
+
7097
+ **Providing Cloud-Init Metadata**
7098
+
7099
+ You can use the following metadata key names to provide information to Cloud-Init:
7100
+
7101
+ **"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.
7102
+
7103
+ **"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).
7104
+
7105
+ **Metadata Example**
7106
+
7107
+ "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**
7108
+
7109
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
7110
+
7111
+ 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>
7112
+
7113
+ 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.
7114
+
7115
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7116
+ :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs'] platform_config: (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
7117
+
7118
+ 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.
7119
+
7120
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
7011
7121
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
7012
7122
  :param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
7013
7123
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
7014
7124
  * `REBOOT` - Run maintenance using a reboot.
7125
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
7015
7126
  :param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7127
+
7128
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
7016
7129
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
7130
+
7131
+ 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.
7132
+
7133
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
7017
7134
  """
7018
7135
  if agent_config is not None:
7019
7136
  pulumi.set(__self__, "agent_config", agent_config)
@@ -7059,6 +7176,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7059
7176
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
7060
7177
  if preferred_maintenance_action is not None:
7061
7178
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
7179
+ if security_attributes is not None:
7180
+ pulumi.set(__self__, "security_attributes", security_attributes)
7062
7181
  if shape is not None:
7063
7182
  pulumi.set(__self__, "shape", shape)
7064
7183
  if shape_config is not None:
@@ -7118,7 +7237,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7118
7237
  @pulumi.getter(name="clusterPlacementGroupId")
7119
7238
  def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
7120
7239
  """
7121
- The clusterPlacementGroup Id of the volume for volume placement.
7240
+ The OCID of the cluster placement group of the instance.
7122
7241
  """
7123
7242
  return pulumi.get(self, "cluster_placement_group_id")
7124
7243
 
@@ -7130,7 +7249,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7130
7249
  @pulumi.getter(name="compartmentId")
7131
7250
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
7132
7251
  """
7133
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7252
+ 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.
7134
7253
  """
7135
7254
  return pulumi.get(self, "compartment_id")
7136
7255
 
@@ -7155,6 +7274,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7155
7274
  def dedicated_vm_host_id(self) -> Optional[pulumi.Input[str]]:
7156
7275
  """
7157
7276
  The OCID of the dedicated virtual machine host to place the instance on.
7277
+
7278
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
7158
7279
  """
7159
7280
  return pulumi.get(self, "dedicated_vm_host_id")
7160
7281
 
@@ -7166,7 +7287,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7166
7287
  @pulumi.getter(name="definedTags")
7167
7288
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7168
7289
  """
7169
- (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"}`
7290
+ 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"}`
7170
7291
  """
7171
7292
  return pulumi.get(self, "defined_tags")
7172
7293
 
@@ -7178,7 +7299,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7178
7299
  @pulumi.getter(name="displayName")
7179
7300
  def display_name(self) -> Optional[pulumi.Input[str]]:
7180
7301
  """
7181
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7302
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7182
7303
  """
7183
7304
  return pulumi.get(self, "display_name")
7184
7305
 
@@ -7191,6 +7312,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7191
7312
  def extended_metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7192
7313
  """
7193
7314
  Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
7315
+
7316
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
7317
+
7318
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7194
7319
  """
7195
7320
  return pulumi.get(self, "extended_metadata")
7196
7321
 
@@ -7203,6 +7328,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7203
7328
  def fault_domain(self) -> Optional[pulumi.Input[str]]:
7204
7329
  """
7205
7330
  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.
7331
+
7332
+ If you do not specify the fault domain, the system selects one for you.
7333
+
7334
+ 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.
7335
+
7336
+ Example: `FAULT-DOMAIN-1`
7206
7337
  """
7207
7338
  return pulumi.get(self, "fault_domain")
7208
7339
 
@@ -7214,7 +7345,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7214
7345
  @pulumi.getter(name="freeformTags")
7215
7346
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7216
7347
  """
7217
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7348
+ 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"}`
7218
7349
  """
7219
7350
  return pulumi.get(self, "freeform_tags")
7220
7351
 
@@ -7239,6 +7370,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7239
7370
  def ipxe_script(self) -> Optional[pulumi.Input[str]]:
7240
7371
  """
7241
7372
  This is an advanced option.
7373
+
7374
+ 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.
7375
+
7376
+ 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.
7377
+
7378
+ 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.
7379
+
7380
+ 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).
7381
+
7382
+ For more information about iPXE, see http://ipxe.org.
7242
7383
  """
7243
7384
  return pulumi.get(self, "ipxe_script")
7244
7385
 
@@ -7250,7 +7391,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7250
7391
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
7251
7392
  def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
7252
7393
  """
7253
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
7394
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
7254
7395
  """
7255
7396
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
7256
7397
 
@@ -7291,6 +7432,30 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7291
7432
  def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7292
7433
  """
7293
7434
  Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
7435
+
7436
+ 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:
7437
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
7438
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
7439
+
7440
+ **Providing Cloud-Init Metadata**
7441
+
7442
+ You can use the following metadata key names to provide information to Cloud-Init:
7443
+
7444
+ **"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.
7445
+
7446
+ **"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).
7447
+
7448
+ **Metadata Example**
7449
+
7450
+ "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**
7451
+
7452
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
7453
+
7454
+ 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>
7455
+
7456
+ 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.
7457
+
7458
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7294
7459
  """
7295
7460
  return pulumi.get(self, "metadata")
7296
7461
 
@@ -7302,7 +7467,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7302
7467
  @pulumi.getter(name="platformConfig")
7303
7468
  def platform_config(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']]:
7304
7469
  """
7305
- The platform configuration requested for the instance.
7470
+ (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
7471
+
7472
+ 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.
7473
+
7474
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
7306
7475
  """
7307
7476
  return pulumi.get(self, "platform_config")
7308
7477
 
@@ -7336,11 +7505,25 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7336
7505
  def preferred_maintenance_action(self, value: Optional[pulumi.Input[str]]):
7337
7506
  pulumi.set(self, "preferred_maintenance_action", value)
7338
7507
 
7508
+ @property
7509
+ @pulumi.getter(name="securityAttributes")
7510
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7511
+ """
7512
+ 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"}}}`
7513
+ """
7514
+ return pulumi.get(self, "security_attributes")
7515
+
7516
+ @security_attributes.setter
7517
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
7518
+ pulumi.set(self, "security_attributes", value)
7519
+
7339
7520
  @property
7340
7521
  @pulumi.getter
7341
7522
  def shape(self) -> Optional[pulumi.Input[str]]:
7342
7523
  """
7343
7524
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7525
+
7526
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
7344
7527
  """
7345
7528
  return pulumi.get(self, "shape")
7346
7529
 
@@ -7353,6 +7536,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7353
7536
  def shape_config(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs']]:
7354
7537
  """
7355
7538
  The shape configuration requested for the instance.
7539
+
7540
+ 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.
7541
+
7542
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
7356
7543
  """
7357
7544
  return pulumi.get(self, "shape_config")
7358
7545
 
@@ -7381,22 +7568,10 @@ if not MYPY:
7381
7568
  is_management_disabled: NotRequired[pulumi.Input[bool]]
7382
7569
  """
7383
7570
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
7384
-
7385
- These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
7386
-
7387
- The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7388
- * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
7389
- * 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.
7390
7571
  """
7391
7572
  is_monitoring_disabled: NotRequired[pulumi.Input[bool]]
7392
7573
  """
7393
7574
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
7394
-
7395
- These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
7396
-
7397
- The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7398
- * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
7399
- * 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.
7400
7575
  """
7401
7576
  plugins_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgsDict']]]]
7402
7577
  """
@@ -7417,19 +7592,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7417
7592
 
7418
7593
  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).
7419
7594
  :param pulumi.Input[bool] is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
7420
-
7421
- These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
7422
-
7423
- The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7424
- * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
7425
- * 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.
7426
7595
  :param pulumi.Input[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).
7427
-
7428
- These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
7429
-
7430
- The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7431
- * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
7432
- * 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.
7433
7596
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgs']]] plugins_configs: The configuration of plugins associated with this instance.
7434
7597
  """
7435
7598
  if are_all_plugins_disabled is not None:
@@ -7460,12 +7623,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7460
7623
  def is_management_disabled(self) -> Optional[pulumi.Input[bool]]:
7461
7624
  """
7462
7625
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
7463
-
7464
- These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
7465
-
7466
- The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7467
- * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
7468
- * 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.
7469
7626
  """
7470
7627
  return pulumi.get(self, "is_management_disabled")
7471
7628
 
@@ -7478,12 +7635,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7478
7635
  def is_monitoring_disabled(self) -> Optional[pulumi.Input[bool]]:
7479
7636
  """
7480
7637
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
7481
-
7482
- These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
7483
-
7484
- The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
7485
- * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
7486
- * 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.
7487
7638
  """
7488
7639
  return pulumi.get(self, "is_monitoring_disabled")
7489
7640
 
@@ -7509,7 +7660,6 @@ if not MYPY:
7509
7660
  desired_state: NotRequired[pulumi.Input[str]]
7510
7661
  """
7511
7662
  Whether the plugin should be enabled or disabled.
7512
- To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
7513
7663
  """
7514
7664
  name: NotRequired[pulumi.Input[str]]
7515
7665
  """
@@ -7525,7 +7675,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigA
7525
7675
  name: Optional[pulumi.Input[str]] = None):
7526
7676
  """
7527
7677
  :param pulumi.Input[str] desired_state: Whether the plugin should be enabled or disabled.
7528
- To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
7529
7678
  :param pulumi.Input[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).
7530
7679
  """
7531
7680
  if desired_state is not None:
@@ -7538,7 +7687,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigA
7538
7687
  def desired_state(self) -> Optional[pulumi.Input[str]]:
7539
7688
  """
7540
7689
  Whether the plugin should be enabled or disabled.
7541
- To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
7542
7690
  """
7543
7691
  return pulumi.get(self, "desired_state")
7544
7692
 
@@ -7620,9 +7768,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs:
7620
7768
  if not MYPY:
7621
7769
  class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgsDict(TypedDict):
7622
7770
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
7771
+ """
7772
+ 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.
7773
+ """
7623
7774
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
7624
7775
  """
7625
- 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.
7776
+ 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.
7626
7777
  """
7627
7778
  assign_public_ip: NotRequired[pulumi.Input[bool]]
7628
7779
  """
@@ -7630,21 +7781,24 @@ if not MYPY:
7630
7781
  """
7631
7782
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7632
7783
  """
7633
- (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"}`
7784
+ 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"}`
7634
7785
  """
7635
7786
  display_name: NotRequired[pulumi.Input[str]]
7636
7787
  """
7637
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7788
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7638
7789
  """
7639
7790
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7640
7791
  """
7641
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7792
+ 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"}`
7642
7793
  """
7643
7794
  hostname_label: NotRequired[pulumi.Input[str]]
7644
7795
  """
7645
7796
  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.
7646
7797
  """
7647
7798
  ipv6address_ipv6subnet_cidr_pair_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict']]]]
7799
+ """
7800
+ 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.
7801
+ """
7648
7802
  nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
7649
7803
  """
7650
7804
  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/).
@@ -7653,6 +7807,10 @@ if not MYPY:
7653
7807
  """
7654
7808
  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.
7655
7809
  """
7810
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7811
+ """
7812
+ 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"}}}`
7813
+ """
7656
7814
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
7657
7815
  """
7658
7816
  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.
@@ -7677,17 +7835,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7677
7835
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
7678
7836
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
7679
7837
  private_ip: Optional[pulumi.Input[str]] = None,
7838
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
7680
7839
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
7681
7840
  subnet_id: Optional[pulumi.Input[str]] = None):
7682
7841
  """
7683
- :param pulumi.Input[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.
7842
+ :param pulumi.Input[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.
7843
+ :param pulumi.Input[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.
7684
7844
  :param pulumi.Input[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.
7685
- :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
7686
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7687
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7845
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
7846
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7847
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
7688
7848
  :param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
7849
+ :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
7689
7850
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
7690
7851
  :param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
7852
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
7691
7853
  :param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
7692
7854
  :param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
7693
7855
  """
@@ -7711,6 +7873,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7711
7873
  pulumi.set(__self__, "nsg_ids", nsg_ids)
7712
7874
  if private_ip is not None:
7713
7875
  pulumi.set(__self__, "private_ip", private_ip)
7876
+ if security_attributes is not None:
7877
+ pulumi.set(__self__, "security_attributes", security_attributes)
7714
7878
  if skip_source_dest_check is not None:
7715
7879
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
7716
7880
  if subnet_id is not None:
@@ -7719,6 +7883,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7719
7883
  @property
7720
7884
  @pulumi.getter(name="assignIpv6ip")
7721
7885
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
7886
+ """
7887
+ 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.
7888
+ """
7722
7889
  return pulumi.get(self, "assign_ipv6ip")
7723
7890
 
7724
7891
  @assign_ipv6ip.setter
@@ -7729,7 +7896,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7729
7896
  @pulumi.getter(name="assignPrivateDnsRecord")
7730
7897
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
7731
7898
  """
7732
- 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.
7899
+ 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.
7733
7900
  """
7734
7901
  return pulumi.get(self, "assign_private_dns_record")
7735
7902
 
@@ -7753,7 +7920,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7753
7920
  @pulumi.getter(name="definedTags")
7754
7921
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7755
7922
  """
7756
- (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"}`
7923
+ 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"}`
7757
7924
  """
7758
7925
  return pulumi.get(self, "defined_tags")
7759
7926
 
@@ -7765,7 +7932,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7765
7932
  @pulumi.getter(name="displayName")
7766
7933
  def display_name(self) -> Optional[pulumi.Input[str]]:
7767
7934
  """
7768
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7935
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7769
7936
  """
7770
7937
  return pulumi.get(self, "display_name")
7771
7938
 
@@ -7777,7 +7944,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7777
7944
  @pulumi.getter(name="freeformTags")
7778
7945
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7779
7946
  """
7780
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7947
+ 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"}`
7781
7948
  """
7782
7949
  return pulumi.get(self, "freeform_tags")
7783
7950
 
@@ -7800,6 +7967,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7800
7967
  @property
7801
7968
  @pulumi.getter(name="ipv6addressIpv6subnetCidrPairDetails")
7802
7969
  def ipv6address_ipv6subnet_cidr_pair_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]]:
7970
+ """
7971
+ 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.
7972
+ """
7803
7973
  return pulumi.get(self, "ipv6address_ipv6subnet_cidr_pair_details")
7804
7974
 
7805
7975
  @ipv6address_ipv6subnet_cidr_pair_details.setter
@@ -7830,6 +8000,18 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7830
8000
  def private_ip(self, value: Optional[pulumi.Input[str]]):
7831
8001
  pulumi.set(self, "private_ip", value)
7832
8002
 
8003
+ @property
8004
+ @pulumi.getter(name="securityAttributes")
8005
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
8006
+ """
8007
+ 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"}}}`
8008
+ """
8009
+ return pulumi.get(self, "security_attributes")
8010
+
8011
+ @security_attributes.setter
8012
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
8013
+ pulumi.set(self, "security_attributes", value)
8014
+
7833
8015
  @property
7834
8016
  @pulumi.getter(name="skipSourceDestCheck")
7835
8017
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -7858,7 +8040,13 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7858
8040
  if not MYPY:
7859
8041
  class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict(TypedDict):
7860
8042
  ipv6address: NotRequired[pulumi.Input[str]]
8043
+ """
8044
+ Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
8045
+ """
7861
8046
  ipv6subnet_cidr: NotRequired[pulumi.Input[str]]
8047
+ """
8048
+ Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8049
+ """
7862
8050
  elif False:
7863
8051
  InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict: TypeAlias = Mapping[str, Any]
7864
8052
 
@@ -7867,6 +8055,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7867
8055
  def __init__(__self__, *,
7868
8056
  ipv6address: Optional[pulumi.Input[str]] = None,
7869
8057
  ipv6subnet_cidr: Optional[pulumi.Input[str]] = None):
8058
+ """
8059
+ :param pulumi.Input[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).
8060
+ :param pulumi.Input[str] ipv6subnet_cidr: Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8061
+ """
7870
8062
  if ipv6address is not None:
7871
8063
  pulumi.set(__self__, "ipv6address", ipv6address)
7872
8064
  if ipv6subnet_cidr is not None:
@@ -7875,6 +8067,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7875
8067
  @property
7876
8068
  @pulumi.getter
7877
8069
  def ipv6address(self) -> Optional[pulumi.Input[str]]:
8070
+ """
8071
+ Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
8072
+ """
7878
8073
  return pulumi.get(self, "ipv6address")
7879
8074
 
7880
8075
  @ipv6address.setter
@@ -7884,6 +8079,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7884
8079
  @property
7885
8080
  @pulumi.getter(name="ipv6subnetCidr")
7886
8081
  def ipv6subnet_cidr(self) -> Optional[pulumi.Input[str]]:
8082
+ """
8083
+ Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8084
+ """
7887
8085
  return pulumi.get(self, "ipv6subnet_cidr")
7888
8086
 
7889
8087
  @ipv6subnet_cidr.setter
@@ -8104,7 +8302,7 @@ if not MYPY:
8104
8302
  class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict(TypedDict):
8105
8303
  type: pulumi.Input[str]
8106
8304
  """
8107
- The type of action to run when the instance is interrupted for eviction.
8305
+ The type of platform being configured.
8108
8306
  """
8109
8307
  are_virtual_instructions_enabled: NotRequired[pulumi.Input[bool]]
8110
8308
  """
@@ -8136,7 +8334,9 @@ if not MYPY:
8136
8334
  """
8137
8335
  is_symmetric_multi_threading_enabled: NotRequired[pulumi.Input[bool]]
8138
8336
  """
8139
- Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
8337
+ (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.
8338
+
8339
+ 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.
8140
8340
  """
8141
8341
  is_trusted_platform_module_enabled: NotRequired[pulumi.Input[bool]]
8142
8342
  """
@@ -8171,7 +8371,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8171
8371
  numa_nodes_per_socket: Optional[pulumi.Input[str]] = None,
8172
8372
  percentage_of_cores_enabled: Optional[pulumi.Input[int]] = None):
8173
8373
  """
8174
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
8374
+ :param pulumi.Input[str] type: The type of platform being configured.
8175
8375
  :param pulumi.Input[bool] are_virtual_instructions_enabled: Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
8176
8376
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config_map: Instance Platform Configuration Configuration Map for flexible setting input.
8177
8377
  :param pulumi.Input[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.
@@ -8179,7 +8379,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8179
8379
  :param pulumi.Input[bool] is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
8180
8380
  :param pulumi.Input[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`.
8181
8381
  :param pulumi.Input[bool] is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
8182
- :param pulumi.Input[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.
8382
+ :param pulumi.Input[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.
8383
+
8384
+ 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.
8183
8385
  :param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
8184
8386
  :param pulumi.Input[str] numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
8185
8387
  :param pulumi.Input[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.
@@ -8214,7 +8416,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8214
8416
  @pulumi.getter
8215
8417
  def type(self) -> pulumi.Input[str]:
8216
8418
  """
8217
- The type of action to run when the instance is interrupted for eviction.
8419
+ The type of platform being configured.
8218
8420
  """
8219
8421
  return pulumi.get(self, "type")
8220
8422
 
@@ -8310,7 +8512,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8310
8512
  @pulumi.getter(name="isSymmetricMultiThreadingEnabled")
8311
8513
  def is_symmetric_multi_threading_enabled(self) -> Optional[pulumi.Input[bool]]:
8312
8514
  """
8313
- Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
8515
+ (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.
8516
+
8517
+ 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.
8314
8518
  """
8315
8519
  return pulumi.get(self, "is_symmetric_multi_threading_enabled")
8316
8520
 
@@ -8445,6 +8649,11 @@ if not MYPY:
8445
8649
  baseline_ocpu_utilization: NotRequired[pulumi.Input[str]]
8446
8650
  """
8447
8651
  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`.
8652
+
8653
+ The following values are supported:
8654
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8655
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8656
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8448
8657
  """
8449
8658
  memory_in_gbs: NotRequired[pulumi.Input[float]]
8450
8659
  """
@@ -8475,6 +8684,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs:
8475
8684
  vcpus: Optional[pulumi.Input[int]] = None):
8476
8685
  """
8477
8686
  :param pulumi.Input[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`.
8687
+
8688
+ The following values are supported:
8689
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8690
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8691
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8478
8692
  :param pulumi.Input[float] memory_in_gbs: The total amount of memory available to the instance, in gigabytes.
8479
8693
  :param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
8480
8694
  :param pulumi.Input[float] ocpus: The total number of OCPUs available to the instance.
@@ -8496,6 +8710,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs:
8496
8710
  def baseline_ocpu_utilization(self) -> Optional[pulumi.Input[str]]:
8497
8711
  """
8498
8712
  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`.
8713
+
8714
+ The following values are supported:
8715
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8716
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8717
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8499
8718
  """
8500
8719
  return pulumi.get(self, "baseline_ocpu_utilization")
8501
8720
 
@@ -8569,6 +8788,8 @@ if not MYPY:
8569
8788
  boot_volume_vpus_per_gb: NotRequired[pulumi.Input[str]]
8570
8789
  """
8571
8790
  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.
8791
+
8792
+ Allowed values:
8572
8793
  """
8573
8794
  image_id: NotRequired[pulumi.Input[str]]
8574
8795
  """
@@ -8580,7 +8801,7 @@ if not MYPY:
8580
8801
  """
8581
8802
  kms_key_id: NotRequired[pulumi.Input[str]]
8582
8803
  """
8583
- The OCID of the Vault service key to assign as the master encryption key for the volume.
8804
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
8584
8805
  """
8585
8806
  elif False:
8586
8807
  InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -8600,9 +8821,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8600
8821
  :param pulumi.Input[str] boot_volume_id: The OCID of the boot volume used to boot the instance.
8601
8822
  :param pulumi.Input[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).
8602
8823
  :param pulumi.Input[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.
8824
+
8825
+ Allowed values:
8603
8826
  :param pulumi.Input[str] image_id: The OCID of the image used to boot the instance.
8604
8827
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSourceImageFilterDetailsArgs'] instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
8605
- :param pulumi.Input[str] kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
8828
+ :param pulumi.Input[str] kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
8606
8829
  """
8607
8830
  pulumi.set(__self__, "source_type", source_type)
8608
8831
  if boot_volume_id is not None:
@@ -8659,6 +8882,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8659
8882
  def boot_volume_vpus_per_gb(self) -> Optional[pulumi.Input[str]]:
8660
8883
  """
8661
8884
  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.
8885
+
8886
+ Allowed values:
8662
8887
  """
8663
8888
  return pulumi.get(self, "boot_volume_vpus_per_gb")
8664
8889
 
@@ -8694,7 +8919,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8694
8919
  @pulumi.getter(name="kmsKeyId")
8695
8920
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
8696
8921
  """
8697
- The OCID of the Vault service key to assign as the master encryption key for the volume.
8922
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
8698
8923
  """
8699
8924
  return pulumi.get(self, "kms_key_id")
8700
8925
 
@@ -8707,7 +8932,7 @@ if not MYPY:
8707
8932
  class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSourceImageFilterDetailsArgsDict(TypedDict):
8708
8933
  compartment_id: NotRequired[pulumi.Input[str]]
8709
8934
  """
8710
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
8935
+ (Updatable) The OCID of the compartment containing images to search
8711
8936
  """
8712
8937
  defined_tags_filter: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
8713
8938
  """
@@ -8732,7 +8957,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
8732
8957
  operating_system: Optional[pulumi.Input[str]] = None,
8733
8958
  operating_system_version: Optional[pulumi.Input[str]] = None):
8734
8959
  """
8735
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
8960
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
8736
8961
  :param pulumi.Input[Mapping[str, pulumi.Input[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).
8737
8962
  :param pulumi.Input[str] operating_system: The image's operating system. Example: `Oracle Linux`
8738
8963
  :param pulumi.Input[str] operating_system_version: The image's operating system version. Example: `7.2`
@@ -8750,7 +8975,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
8750
8975
  @pulumi.getter(name="compartmentId")
8751
8976
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
8752
8977
  """
8753
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
8978
+ (Updatable) The OCID of the compartment containing images to search
8754
8979
  """
8755
8980
  return pulumi.get(self, "compartment_id")
8756
8981
 
@@ -8804,6 +9029,8 @@ if not MYPY:
8804
9029
  launch_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgsDict']]
8805
9030
  """
8806
9031
  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.
9032
+
9033
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8807
9034
  """
8808
9035
  secondary_vnics: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgsDict']]]]
8809
9036
  """
@@ -8821,6 +9048,8 @@ class InstanceConfigurationInstanceDetailsOptionArgs:
8821
9048
  """
8822
9049
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeArgs']]] block_volumes: Block volume parameters.
8823
9050
  :param pulumi.Input['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.
9051
+
9052
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8824
9053
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs']]] secondary_vnics: Secondary VNIC parameters.
8825
9054
  """
8826
9055
  if block_volumes is not None:
@@ -8847,6 +9076,8 @@ class InstanceConfigurationInstanceDetailsOptionArgs:
8847
9076
  def launch_details(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs']]:
8848
9077
  """
8849
9078
  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.
9079
+
9080
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8850
9081
  """
8851
9082
  return pulumi.get(self, "launch_details")
8852
9083
 
@@ -8943,7 +9174,7 @@ if not MYPY:
8943
9174
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgsDict(TypedDict):
8944
9175
  type: pulumi.Input[str]
8945
9176
  """
8946
- The type of action to run when the instance is interrupted for eviction.
9177
+ The type of volume. The only supported values are "iscsi" and "paravirtualized".
8947
9178
  """
8948
9179
  device: NotRequired[pulumi.Input[str]]
8949
9180
  """
@@ -8951,11 +9182,11 @@ if not MYPY:
8951
9182
  """
8952
9183
  display_name: NotRequired[pulumi.Input[str]]
8953
9184
  """
8954
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9185
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
8955
9186
  """
8956
9187
  is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
8957
9188
  """
8958
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
9189
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
8959
9190
  """
8960
9191
  is_read_only: NotRequired[pulumi.Input[bool]]
8961
9192
  """
@@ -8983,10 +9214,10 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
8983
9214
  is_shareable: Optional[pulumi.Input[bool]] = None,
8984
9215
  use_chap: Optional[pulumi.Input[bool]] = None):
8985
9216
  """
8986
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
9217
+ :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
8987
9218
  :param pulumi.Input[str] device: The device name.
8988
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
8989
- :param pulumi.Input[bool] is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
9219
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9220
+ :param pulumi.Input[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.
8990
9221
  :param pulumi.Input[bool] is_read_only: Whether the attachment should be created in read-only mode.
8991
9222
  :param pulumi.Input[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.
8992
9223
  :param pulumi.Input[bool] use_chap: Whether to use CHAP authentication for the volume attachment. Defaults to false.
@@ -9009,7 +9240,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9009
9240
  @pulumi.getter
9010
9241
  def type(self) -> pulumi.Input[str]:
9011
9242
  """
9012
- The type of action to run when the instance is interrupted for eviction.
9243
+ The type of volume. The only supported values are "iscsi" and "paravirtualized".
9013
9244
  """
9014
9245
  return pulumi.get(self, "type")
9015
9246
 
@@ -9033,7 +9264,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9033
9264
  @pulumi.getter(name="displayName")
9034
9265
  def display_name(self) -> Optional[pulumi.Input[str]]:
9035
9266
  """
9036
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9267
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9037
9268
  """
9038
9269
  return pulumi.get(self, "display_name")
9039
9270
 
@@ -9045,7 +9276,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9045
9276
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
9046
9277
  def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
9047
9278
  """
9048
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
9279
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
9049
9280
  """
9050
9281
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
9051
9282
 
@@ -9098,7 +9329,7 @@ if not MYPY:
9098
9329
  """
9099
9330
  availability_domain: NotRequired[pulumi.Input[str]]
9100
9331
  """
9101
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9332
+ The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9102
9333
  """
9103
9334
  backup_policy_id: NotRequired[pulumi.Input[str]]
9104
9335
  """
@@ -9114,19 +9345,19 @@ if not MYPY:
9114
9345
  """
9115
9346
  compartment_id: NotRequired[pulumi.Input[str]]
9116
9347
  """
9117
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9348
+ (Updatable) The OCID of the compartment that contains the volume.
9118
9349
  """
9119
9350
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
9120
9351
  """
9121
- (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"}`
9352
+ 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"}`
9122
9353
  """
9123
9354
  display_name: NotRequired[pulumi.Input[str]]
9124
9355
  """
9125
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9356
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9126
9357
  """
9127
9358
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
9128
9359
  """
9129
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9360
+ 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"}`
9130
9361
  """
9131
9362
  is_auto_tune_enabled: NotRequired[pulumi.Input[bool]]
9132
9363
  """
@@ -9144,6 +9375,8 @@ if not MYPY:
9144
9375
  vpus_per_gb: NotRequired[pulumi.Input[str]]
9145
9376
  """
9146
9377
  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.
9378
+
9379
+ Allowed values:
9147
9380
  """
9148
9381
  elif False:
9149
9382
  InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -9167,18 +9400,20 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9167
9400
  vpus_per_gb: Optional[pulumi.Input[str]] = None):
9168
9401
  """
9169
9402
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
9170
- :param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9403
+ :param pulumi.Input[str] availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9171
9404
  :param pulumi.Input[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.
9172
9405
  :param pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
9173
9406
  :param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
9174
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9175
- :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
9176
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9177
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9407
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
9408
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
9409
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9410
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
9178
9411
  :param pulumi.Input[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.
9179
9412
  :param pulumi.Input[str] kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
9180
9413
  :param pulumi.Input[str] size_in_gbs: The size of the volume in GBs.
9181
9414
  :param pulumi.Input[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.
9415
+
9416
+ Allowed values:
9182
9417
  """
9183
9418
  if autotune_policies is not None:
9184
9419
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -9225,7 +9460,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9225
9460
  @pulumi.getter(name="availabilityDomain")
9226
9461
  def availability_domain(self) -> Optional[pulumi.Input[str]]:
9227
9462
  """
9228
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9463
+ The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9229
9464
  """
9230
9465
  return pulumi.get(self, "availability_domain")
9231
9466
 
@@ -9273,7 +9508,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9273
9508
  @pulumi.getter(name="compartmentId")
9274
9509
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
9275
9510
  """
9276
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9511
+ (Updatable) The OCID of the compartment that contains the volume.
9277
9512
  """
9278
9513
  return pulumi.get(self, "compartment_id")
9279
9514
 
@@ -9285,7 +9520,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9285
9520
  @pulumi.getter(name="definedTags")
9286
9521
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
9287
9522
  """
9288
- (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"}`
9523
+ 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"}`
9289
9524
  """
9290
9525
  return pulumi.get(self, "defined_tags")
9291
9526
 
@@ -9297,7 +9532,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9297
9532
  @pulumi.getter(name="displayName")
9298
9533
  def display_name(self) -> Optional[pulumi.Input[str]]:
9299
9534
  """
9300
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9535
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9301
9536
  """
9302
9537
  return pulumi.get(self, "display_name")
9303
9538
 
@@ -9309,7 +9544,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9309
9544
  @pulumi.getter(name="freeformTags")
9310
9545
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
9311
9546
  """
9312
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9547
+ 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"}`
9313
9548
  """
9314
9549
  return pulumi.get(self, "freeform_tags")
9315
9550
 
@@ -9367,6 +9602,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9367
9602
  def vpus_per_gb(self) -> Optional[pulumi.Input[str]]:
9368
9603
  """
9369
9604
  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.
9605
+
9606
+ Allowed values:
9370
9607
  """
9371
9608
  return pulumi.get(self, "vpus_per_gb")
9372
9609
 
@@ -9481,7 +9718,7 @@ if not MYPY:
9481
9718
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetailsArgsDict(TypedDict):
9482
9719
  type: pulumi.Input[str]
9483
9720
  """
9484
- The type of action to run when the instance is interrupted for eviction.
9721
+ The type can be one of these values: `volume`, `volumeBackup`
9485
9722
  """
9486
9723
  id: NotRequired[pulumi.Input[str]]
9487
9724
  """
@@ -9496,7 +9733,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
9496
9733
  type: pulumi.Input[str],
9497
9734
  id: Optional[pulumi.Input[str]] = None):
9498
9735
  """
9499
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
9736
+ :param pulumi.Input[str] type: The type can be one of these values: `volume`, `volumeBackup`
9500
9737
  :param pulumi.Input[str] id: The OCID of the volume backup.
9501
9738
  """
9502
9739
  pulumi.set(__self__, "type", type)
@@ -9507,7 +9744,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
9507
9744
  @pulumi.getter
9508
9745
  def type(self) -> pulumi.Input[str]:
9509
9746
  """
9510
- The type of action to run when the instance is interrupted for eviction.
9747
+ The type can be one of these values: `volume`, `volumeBackup`
9511
9748
  """
9512
9749
  return pulumi.get(self, "type")
9513
9750
 
@@ -9552,7 +9789,7 @@ if not MYPY:
9552
9789
  """
9553
9790
  compartment_id: NotRequired[pulumi.Input[str]]
9554
9791
  """
9555
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9792
+ (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.
9556
9793
  """
9557
9794
  create_vnic_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgsDict']]
9558
9795
  """
@@ -9624,6 +9861,10 @@ if not MYPY:
9624
9861
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
9625
9862
  * `REBOOT` - Run maintenance using a reboot.
9626
9863
  """
9864
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
9865
+ """
9866
+ 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"}}}`
9867
+ """
9627
9868
  shape: NotRequired[pulumi.Input[str]]
9628
9869
  """
9629
9870
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
@@ -9661,6 +9902,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9661
9902
  platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs']] = None,
9662
9903
  preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
9663
9904
  preferred_maintenance_action: Optional[pulumi.Input[str]] = None,
9905
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
9664
9906
  shape: Optional[pulumi.Input[str]] = None,
9665
9907
  shape_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs']] = None,
9666
9908
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsSourceDetailsArgs']] = None):
@@ -9670,7 +9912,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9670
9912
  :param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9671
9913
  :param pulumi.Input[str] capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
9672
9914
  :param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
9673
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9915
+ :param pulumi.Input[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.
9674
9916
  :param pulumi.Input['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.
9675
9917
  :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
9676
9918
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
@@ -9693,6 +9935,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9693
9935
  :param pulumi.Input[str] preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
9694
9936
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
9695
9937
  * `REBOOT` - Run maintenance using a reboot.
9938
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
9696
9939
  :param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
9697
9940
  :param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
9698
9941
  """
@@ -9740,6 +9983,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9740
9983
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
9741
9984
  if preferred_maintenance_action is not None:
9742
9985
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
9986
+ if security_attributes is not None:
9987
+ pulumi.set(__self__, "security_attributes", security_attributes)
9743
9988
  if shape is not None:
9744
9989
  pulumi.set(__self__, "shape", shape)
9745
9990
  if shape_config is not None:
@@ -9811,7 +10056,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9811
10056
  @pulumi.getter(name="compartmentId")
9812
10057
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
9813
10058
  """
9814
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
10059
+ (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.
9815
10060
  """
9816
10061
  return pulumi.get(self, "compartment_id")
9817
10062
 
@@ -10017,6 +10262,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
10017
10262
  def preferred_maintenance_action(self, value: Optional[pulumi.Input[str]]):
10018
10263
  pulumi.set(self, "preferred_maintenance_action", value)
10019
10264
 
10265
+ @property
10266
+ @pulumi.getter(name="securityAttributes")
10267
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
10268
+ """
10269
+ 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"}}}`
10270
+ """
10271
+ return pulumi.get(self, "security_attributes")
10272
+
10273
+ @security_attributes.setter
10274
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
10275
+ pulumi.set(self, "security_attributes", value)
10276
+
10020
10277
  @property
10021
10278
  @pulumi.getter
10022
10279
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -10056,14 +10313,28 @@ if not MYPY:
10056
10313
  are_all_plugins_disabled: NotRequired[pulumi.Input[bool]]
10057
10314
  """
10058
10315
  Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
10316
+
10317
+ 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).
10059
10318
  """
10060
10319
  is_management_disabled: NotRequired[pulumi.Input[bool]]
10061
10320
  """
10062
10321
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
10322
+
10323
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10324
+
10325
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10326
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10327
+ * 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.
10063
10328
  """
10064
10329
  is_monitoring_disabled: NotRequired[pulumi.Input[bool]]
10065
10330
  """
10066
10331
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
10332
+
10333
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10334
+
10335
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10336
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10337
+ * 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.
10067
10338
  """
10068
10339
  plugins_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgsDict']]]]
10069
10340
  """
@@ -10081,8 +10352,22 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10081
10352
  plugins_configs: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs']]]] = None):
10082
10353
  """
10083
10354
  :param pulumi.Input[bool] are_all_plugins_disabled: Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
10355
+
10356
+ 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).
10084
10357
  :param pulumi.Input[bool] is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
10358
+
10359
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10360
+
10361
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10362
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10363
+ * 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.
10085
10364
  :param pulumi.Input[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).
10365
+
10366
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10367
+
10368
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10369
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10370
+ * 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.
10086
10371
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs']]] plugins_configs: The configuration of plugins associated with this instance.
10087
10372
  """
10088
10373
  if are_all_plugins_disabled is not None:
@@ -10099,6 +10384,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10099
10384
  def are_all_plugins_disabled(self) -> Optional[pulumi.Input[bool]]:
10100
10385
  """
10101
10386
  Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
10387
+
10388
+ 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).
10102
10389
  """
10103
10390
  return pulumi.get(self, "are_all_plugins_disabled")
10104
10391
 
@@ -10111,6 +10398,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10111
10398
  def is_management_disabled(self) -> Optional[pulumi.Input[bool]]:
10112
10399
  """
10113
10400
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
10401
+
10402
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10403
+
10404
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10405
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10406
+ * 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.
10114
10407
  """
10115
10408
  return pulumi.get(self, "is_management_disabled")
10116
10409
 
@@ -10123,6 +10416,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10123
10416
  def is_monitoring_disabled(self) -> Optional[pulumi.Input[bool]]:
10124
10417
  """
10125
10418
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
10419
+
10420
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10421
+
10422
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10423
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10424
+ * 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.
10126
10425
  """
10127
10426
  return pulumi.get(self, "is_monitoring_disabled")
10128
10427
 
@@ -10148,6 +10447,8 @@ if not MYPY:
10148
10447
  desired_state: NotRequired[pulumi.Input[str]]
10149
10448
  """
10150
10449
  Whether the plugin should be enabled or disabled.
10450
+
10451
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10151
10452
  """
10152
10453
  name: NotRequired[pulumi.Input[str]]
10153
10454
  """
@@ -10163,6 +10464,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
10163
10464
  name: Optional[pulumi.Input[str]] = None):
10164
10465
  """
10165
10466
  :param pulumi.Input[str] desired_state: Whether the plugin should be enabled or disabled.
10467
+
10468
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10166
10469
  :param pulumi.Input[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).
10167
10470
  """
10168
10471
  if desired_state is not None:
@@ -10175,6 +10478,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
10175
10478
  def desired_state(self) -> Optional[pulumi.Input[str]]:
10176
10479
  """
10177
10480
  Whether the plugin should be enabled or disabled.
10481
+
10482
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10178
10483
  """
10179
10484
  return pulumi.get(self, "desired_state")
10180
10485
 
@@ -10256,6 +10561,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigA
10256
10561
  if not MYPY:
10257
10562
  class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgsDict(TypedDict):
10258
10563
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
10564
+ """
10565
+ 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.
10566
+ """
10259
10567
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
10260
10568
  """
10261
10569
  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.
@@ -10289,6 +10597,10 @@ if not MYPY:
10289
10597
  """
10290
10598
  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.
10291
10599
  """
10600
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
10601
+ """
10602
+ 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"}}}`
10603
+ """
10292
10604
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
10293
10605
  """
10294
10606
  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.
@@ -10313,9 +10625,11 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10313
10625
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
10314
10626
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
10315
10627
  private_ip: Optional[pulumi.Input[str]] = None,
10628
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
10316
10629
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
10317
10630
  subnet_id: Optional[pulumi.Input[str]] = None):
10318
10631
  """
10632
+ :param pulumi.Input[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.
10319
10633
  :param pulumi.Input[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.
10320
10634
  :param pulumi.Input[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.
10321
10635
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
@@ -10324,6 +10638,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10324
10638
  :param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
10325
10639
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
10326
10640
  :param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
10641
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
10327
10642
  :param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
10328
10643
  :param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
10329
10644
  """
@@ -10347,6 +10662,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10347
10662
  pulumi.set(__self__, "nsg_ids", nsg_ids)
10348
10663
  if private_ip is not None:
10349
10664
  pulumi.set(__self__, "private_ip", private_ip)
10665
+ if security_attributes is not None:
10666
+ pulumi.set(__self__, "security_attributes", security_attributes)
10350
10667
  if skip_source_dest_check is not None:
10351
10668
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
10352
10669
  if subnet_id is not None:
@@ -10355,6 +10672,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10355
10672
  @property
10356
10673
  @pulumi.getter(name="assignIpv6ip")
10357
10674
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
10675
+ """
10676
+ 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.
10677
+ """
10358
10678
  return pulumi.get(self, "assign_ipv6ip")
10359
10679
 
10360
10680
  @assign_ipv6ip.setter
@@ -10466,6 +10786,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10466
10786
  def private_ip(self, value: Optional[pulumi.Input[str]]):
10467
10787
  pulumi.set(self, "private_ip", value)
10468
10788
 
10789
+ @property
10790
+ @pulumi.getter(name="securityAttributes")
10791
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
10792
+ """
10793
+ 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"}}}`
10794
+ """
10795
+ return pulumi.get(self, "security_attributes")
10796
+
10797
+ @security_attributes.setter
10798
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
10799
+ pulumi.set(self, "security_attributes", value)
10800
+
10469
10801
  @property
10470
10802
  @pulumi.getter(name="skipSourceDestCheck")
10471
10803
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -10781,8 +11113,6 @@ if not MYPY:
10781
11113
  percentage_of_cores_enabled: NotRequired[pulumi.Input[int]]
10782
11114
  """
10783
11115
  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.
10784
-
10785
- 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.
10786
11116
  """
10787
11117
  elif False:
10788
11118
  InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -10813,8 +11143,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
10813
11143
  :param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
10814
11144
  :param pulumi.Input[str] numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
10815
11145
  :param pulumi.Input[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.
10816
-
10817
- 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.
10818
11146
  """
10819
11147
  pulumi.set(__self__, "type", type)
10820
11148
  if are_virtual_instructions_enabled is not None:
@@ -10963,8 +11291,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
10963
11291
  def percentage_of_cores_enabled(self) -> Optional[pulumi.Input[int]]:
10964
11292
  """
10965
11293
  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.
10966
-
10967
- 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.
10968
11294
  """
10969
11295
  return pulumi.get(self, "percentage_of_cores_enabled")
10970
11296
 
@@ -11419,7 +11745,7 @@ if not MYPY:
11419
11745
  """
11420
11746
  display_name: NotRequired[pulumi.Input[str]]
11421
11747
  """
11422
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11748
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11423
11749
  """
11424
11750
  nic_index: NotRequired[pulumi.Input[int]]
11425
11751
  """
@@ -11436,7 +11762,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11436
11762
  nic_index: Optional[pulumi.Input[int]] = None):
11437
11763
  """
11438
11764
  :param pulumi.Input['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.
11439
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11765
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11440
11766
  :param pulumi.Input[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).
11441
11767
  """
11442
11768
  if create_vnic_details is not None:
@@ -11462,7 +11788,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11462
11788
  @pulumi.getter(name="displayName")
11463
11789
  def display_name(self) -> Optional[pulumi.Input[str]]:
11464
11790
  """
11465
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11791
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11466
11792
  """
11467
11793
  return pulumi.get(self, "display_name")
11468
11794
 
@@ -11486,9 +11812,12 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11486
11812
  if not MYPY:
11487
11813
  class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsArgsDict(TypedDict):
11488
11814
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
11815
+ """
11816
+ 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.
11817
+ """
11489
11818
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
11490
11819
  """
11491
- 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.
11820
+ 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.
11492
11821
  """
11493
11822
  assign_public_ip: NotRequired[pulumi.Input[bool]]
11494
11823
  """
@@ -11496,15 +11825,15 @@ if not MYPY:
11496
11825
  """
11497
11826
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11498
11827
  """
11499
- (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"}`
11828
+ 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"}`
11500
11829
  """
11501
11830
  display_name: NotRequired[pulumi.Input[str]]
11502
11831
  """
11503
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11832
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11504
11833
  """
11505
11834
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11506
11835
  """
11507
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
11836
+ 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"}`
11508
11837
  """
11509
11838
  hostname_label: NotRequired[pulumi.Input[str]]
11510
11839
  """
@@ -11519,6 +11848,10 @@ if not MYPY:
11519
11848
  """
11520
11849
  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.
11521
11850
  """
11851
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11852
+ """
11853
+ 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"}}}`
11854
+ """
11522
11855
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
11523
11856
  """
11524
11857
  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.
@@ -11543,17 +11876,20 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11543
11876
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
11544
11877
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11545
11878
  private_ip: Optional[pulumi.Input[str]] = None,
11879
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
11546
11880
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
11547
11881
  subnet_id: Optional[pulumi.Input[str]] = None):
11548
11882
  """
11549
- :param pulumi.Input[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.
11883
+ :param pulumi.Input[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.
11884
+ :param pulumi.Input[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.
11550
11885
  :param pulumi.Input[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.
11551
- :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
11552
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11553
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
11886
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
11887
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11888
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
11554
11889
  :param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11555
11890
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
11556
11891
  :param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11892
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
11557
11893
  :param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11558
11894
  :param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11559
11895
  """
@@ -11577,6 +11913,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11577
11913
  pulumi.set(__self__, "nsg_ids", nsg_ids)
11578
11914
  if private_ip is not None:
11579
11915
  pulumi.set(__self__, "private_ip", private_ip)
11916
+ if security_attributes is not None:
11917
+ pulumi.set(__self__, "security_attributes", security_attributes)
11580
11918
  if skip_source_dest_check is not None:
11581
11919
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
11582
11920
  if subnet_id is not None:
@@ -11585,6 +11923,9 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11585
11923
  @property
11586
11924
  @pulumi.getter(name="assignIpv6ip")
11587
11925
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
11926
+ """
11927
+ 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.
11928
+ """
11588
11929
  return pulumi.get(self, "assign_ipv6ip")
11589
11930
 
11590
11931
  @assign_ipv6ip.setter
@@ -11595,7 +11936,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11595
11936
  @pulumi.getter(name="assignPrivateDnsRecord")
11596
11937
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
11597
11938
  """
11598
- 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.
11939
+ 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.
11599
11940
  """
11600
11941
  return pulumi.get(self, "assign_private_dns_record")
11601
11942
 
@@ -11619,7 +11960,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11619
11960
  @pulumi.getter(name="definedTags")
11620
11961
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11621
11962
  """
11622
- (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"}`
11963
+ 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"}`
11623
11964
  """
11624
11965
  return pulumi.get(self, "defined_tags")
11625
11966
 
@@ -11631,7 +11972,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11631
11972
  @pulumi.getter(name="displayName")
11632
11973
  def display_name(self) -> Optional[pulumi.Input[str]]:
11633
11974
  """
11634
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11975
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11635
11976
  """
11636
11977
  return pulumi.get(self, "display_name")
11637
11978
 
@@ -11643,7 +11984,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11643
11984
  @pulumi.getter(name="freeformTags")
11644
11985
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11645
11986
  """
11646
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
11987
+ 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"}`
11647
11988
  """
11648
11989
  return pulumi.get(self, "freeform_tags")
11649
11990
 
@@ -11696,6 +12037,18 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11696
12037
  def private_ip(self, value: Optional[pulumi.Input[str]]):
11697
12038
  pulumi.set(self, "private_ip", value)
11698
12039
 
12040
+ @property
12041
+ @pulumi.getter(name="securityAttributes")
12042
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12043
+ """
12044
+ 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"}}}`
12045
+ """
12046
+ return pulumi.get(self, "security_attributes")
12047
+
12048
+ @security_attributes.setter
12049
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12050
+ pulumi.set(self, "security_attributes", value)
12051
+
11699
12052
  @property
11700
12053
  @pulumi.getter(name="skipSourceDestCheck")
11701
12054
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -11765,7 +12118,7 @@ if not MYPY:
11765
12118
  """
11766
12119
  display_name: NotRequired[pulumi.Input[str]]
11767
12120
  """
11768
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12121
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11769
12122
  """
11770
12123
  nic_index: NotRequired[pulumi.Input[int]]
11771
12124
  """
@@ -11782,7 +12135,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11782
12135
  nic_index: Optional[pulumi.Input[int]] = None):
11783
12136
  """
11784
12137
  :param pulumi.Input['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.
11785
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12138
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11786
12139
  :param pulumi.Input[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).
11787
12140
  """
11788
12141
  if create_vnic_details is not None:
@@ -11808,7 +12161,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11808
12161
  @pulumi.getter(name="displayName")
11809
12162
  def display_name(self) -> Optional[pulumi.Input[str]]:
11810
12163
  """
11811
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12164
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11812
12165
  """
11813
12166
  return pulumi.get(self, "display_name")
11814
12167
 
@@ -11832,9 +12185,12 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11832
12185
  if not MYPY:
11833
12186
  class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgsDict(TypedDict):
11834
12187
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
12188
+ """
12189
+ 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.
12190
+ """
11835
12191
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
11836
12192
  """
11837
- 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.
12193
+ 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.
11838
12194
  """
11839
12195
  assign_public_ip: NotRequired[pulumi.Input[bool]]
11840
12196
  """
@@ -11842,15 +12198,15 @@ if not MYPY:
11842
12198
  """
11843
12199
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11844
12200
  """
11845
- (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"}`
12201
+ 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"}`
11846
12202
  """
11847
12203
  display_name: NotRequired[pulumi.Input[str]]
11848
12204
  """
11849
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12205
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11850
12206
  """
11851
12207
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11852
12208
  """
11853
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
12209
+ 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"}`
11854
12210
  """
11855
12211
  hostname_label: NotRequired[pulumi.Input[str]]
11856
12212
  """
@@ -11865,6 +12221,10 @@ if not MYPY:
11865
12221
  """
11866
12222
  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.
11867
12223
  """
12224
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
12225
+ """
12226
+ 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"}}}`
12227
+ """
11868
12228
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
11869
12229
  """
11870
12230
  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.
@@ -11889,17 +12249,20 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11889
12249
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
11890
12250
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11891
12251
  private_ip: Optional[pulumi.Input[str]] = None,
12252
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
11892
12253
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
11893
12254
  subnet_id: Optional[pulumi.Input[str]] = None):
11894
12255
  """
11895
- :param pulumi.Input[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.
12256
+ :param pulumi.Input[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.
12257
+ :param pulumi.Input[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.
11896
12258
  :param pulumi.Input[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.
11897
- :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
11898
- :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11899
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
12259
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
12260
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12261
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
11900
12262
  :param pulumi.Input[str] hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11901
12263
  :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
11902
12264
  :param pulumi.Input[str] private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
12265
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
11903
12266
  :param pulumi.Input[bool] skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11904
12267
  :param pulumi.Input[str] subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
11905
12268
  """
@@ -11923,6 +12286,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11923
12286
  pulumi.set(__self__, "nsg_ids", nsg_ids)
11924
12287
  if private_ip is not None:
11925
12288
  pulumi.set(__self__, "private_ip", private_ip)
12289
+ if security_attributes is not None:
12290
+ pulumi.set(__self__, "security_attributes", security_attributes)
11926
12291
  if skip_source_dest_check is not None:
11927
12292
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
11928
12293
  if subnet_id is not None:
@@ -11931,6 +12296,9 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11931
12296
  @property
11932
12297
  @pulumi.getter(name="assignIpv6ip")
11933
12298
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
12299
+ """
12300
+ 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.
12301
+ """
11934
12302
  return pulumi.get(self, "assign_ipv6ip")
11935
12303
 
11936
12304
  @assign_ipv6ip.setter
@@ -11941,7 +12309,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11941
12309
  @pulumi.getter(name="assignPrivateDnsRecord")
11942
12310
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
11943
12311
  """
11944
- 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.
12312
+ 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.
11945
12313
  """
11946
12314
  return pulumi.get(self, "assign_private_dns_record")
11947
12315
 
@@ -11965,7 +12333,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11965
12333
  @pulumi.getter(name="definedTags")
11966
12334
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11967
12335
  """
11968
- (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"}`
12336
+ 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"}`
11969
12337
  """
11970
12338
  return pulumi.get(self, "defined_tags")
11971
12339
 
@@ -11977,7 +12345,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11977
12345
  @pulumi.getter(name="displayName")
11978
12346
  def display_name(self) -> Optional[pulumi.Input[str]]:
11979
12347
  """
11980
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12348
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11981
12349
  """
11982
12350
  return pulumi.get(self, "display_name")
11983
12351
 
@@ -11989,7 +12357,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11989
12357
  @pulumi.getter(name="freeformTags")
11990
12358
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11991
12359
  """
11992
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
12360
+ 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"}`
11993
12361
  """
11994
12362
  return pulumi.get(self, "freeform_tags")
11995
12363
 
@@ -12042,6 +12410,18 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
12042
12410
  def private_ip(self, value: Optional[pulumi.Input[str]]):
12043
12411
  pulumi.set(self, "private_ip", value)
12044
12412
 
12413
+ @property
12414
+ @pulumi.getter(name="securityAttributes")
12415
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12416
+ """
12417
+ 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"}}}`
12418
+ """
12419
+ return pulumi.get(self, "security_attributes")
12420
+
12421
+ @security_attributes.setter
12422
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12423
+ pulumi.set(self, "security_attributes", value)
12424
+
12045
12425
  @property
12046
12426
  @pulumi.getter(name="skipSourceDestCheck")
12047
12427
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -12168,6 +12548,10 @@ if not MYPY:
12168
12548
 
12169
12549
  Example: `10.0.3.3`
12170
12550
  """
12551
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
12552
+ """
12553
+ 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"}}}`
12554
+ """
12171
12555
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
12172
12556
  """
12173
12557
  (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).
@@ -12204,6 +12588,7 @@ class InstanceCreateVnicDetailsArgs:
12204
12588
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
12205
12589
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12206
12590
  private_ip: Optional[pulumi.Input[str]] = None,
12591
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
12207
12592
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
12208
12593
  subnet_id: Optional[pulumi.Input[str]] = None,
12209
12594
  vlan_id: Optional[pulumi.Input[str]] = None):
@@ -12241,6 +12626,7 @@ class InstanceCreateVnicDetailsArgs:
12241
12626
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
12242
12627
 
12243
12628
  Example: `10.0.3.3`
12629
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}}}`
12244
12630
  :param pulumi.Input[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).
12245
12631
 
12246
12632
  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).
@@ -12273,6 +12659,8 @@ class InstanceCreateVnicDetailsArgs:
12273
12659
  pulumi.set(__self__, "nsg_ids", nsg_ids)
12274
12660
  if private_ip is not None:
12275
12661
  pulumi.set(__self__, "private_ip", private_ip)
12662
+ if security_attributes is not None:
12663
+ pulumi.set(__self__, "security_attributes", security_attributes)
12276
12664
  if skip_source_dest_check is not None:
12277
12665
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
12278
12666
  if subnet_id is not None:
@@ -12423,6 +12811,18 @@ class InstanceCreateVnicDetailsArgs:
12423
12811
  def private_ip(self, value: Optional[pulumi.Input[str]]):
12424
12812
  pulumi.set(self, "private_ip", value)
12425
12813
 
12814
+ @property
12815
+ @pulumi.getter(name="securityAttributes")
12816
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12817
+ """
12818
+ 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"}}}`
12819
+ """
12820
+ return pulumi.get(self, "security_attributes")
12821
+
12822
+ @security_attributes.setter
12823
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12824
+ pulumi.set(self, "security_attributes", value)
12825
+
12426
12826
  @property
12427
12827
  @pulumi.getter(name="skipSourceDestCheck")
12428
12828
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -12735,6 +13135,10 @@ if not MYPY:
12735
13135
  """
12736
13136
  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.
12737
13137
  """
13138
+ is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
13139
+ """
13140
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
13141
+ """
12738
13142
  is_read_only: NotRequired[pulumi.Input[bool]]
12739
13143
  """
12740
13144
  Whether the attachment was created in read-only mode.
@@ -12766,6 +13170,7 @@ class InstanceLaunchVolumeAttachmentArgs:
12766
13170
  display_name: Optional[pulumi.Input[str]] = None,
12767
13171
  encryption_in_transit_type: Optional[pulumi.Input[str]] = None,
12768
13172
  is_agent_auto_iscsi_login_enabled: Optional[pulumi.Input[bool]] = None,
13173
+ is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
12769
13174
  is_read_only: Optional[pulumi.Input[bool]] = None,
12770
13175
  is_shareable: Optional[pulumi.Input[bool]] = None,
12771
13176
  launch_create_volume_details: Optional[pulumi.Input['InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs']] = None,
@@ -12777,6 +13182,7 @@ class InstanceLaunchVolumeAttachmentArgs:
12777
13182
  :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12778
13183
  :param pulumi.Input[str] encryption_in_transit_type: Refer the top-level definition of encryptionInTransitType. The default value is NONE.
12779
13184
  :param pulumi.Input[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.
13185
+ :param pulumi.Input[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.
12780
13186
  :param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
12781
13187
  :param pulumi.Input[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.
12782
13188
  :param pulumi.Input['InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs'] launch_create_volume_details: Define a volume that will be created and attached or attached to an instance on creation.
@@ -12792,6 +13198,8 @@ class InstanceLaunchVolumeAttachmentArgs:
12792
13198
  pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
12793
13199
  if is_agent_auto_iscsi_login_enabled is not None:
12794
13200
  pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
13201
+ if is_pv_encryption_in_transit_enabled is not None:
13202
+ pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
12795
13203
  if is_read_only is not None:
12796
13204
  pulumi.set(__self__, "is_read_only", is_read_only)
12797
13205
  if is_shareable is not None:
@@ -12863,6 +13271,18 @@ class InstanceLaunchVolumeAttachmentArgs:
12863
13271
  def is_agent_auto_iscsi_login_enabled(self, value: Optional[pulumi.Input[bool]]):
12864
13272
  pulumi.set(self, "is_agent_auto_iscsi_login_enabled", value)
12865
13273
 
13274
+ @property
13275
+ @pulumi.getter(name="isPvEncryptionInTransitEnabled")
13276
+ def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
13277
+ """
13278
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
13279
+ """
13280
+ return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
13281
+
13282
+ @is_pv_encryption_in_transit_enabled.setter
13283
+ def is_pv_encryption_in_transit_enabled(self, value: Optional[pulumi.Input[bool]]):
13284
+ pulumi.set(self, "is_pv_encryption_in_transit_enabled", value)
13285
+
12866
13286
  @property
12867
13287
  @pulumi.getter(name="isReadOnly")
12868
13288
  def is_read_only(self) -> Optional[pulumi.Input[bool]]:
@@ -14355,7 +14775,7 @@ if not MYPY:
14355
14775
  """
14356
14776
  source_id: NotRequired[pulumi.Input[str]]
14357
14777
  """
14358
- (Updatable) The OCID of the boot volume used to boot the instance.
14778
+ (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.
14359
14779
  """
14360
14780
  elif False:
14361
14781
  InstanceSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -14379,7 +14799,7 @@ class InstanceSourceDetailsArgs:
14379
14799
  :param pulumi.Input['InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs'] instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
14380
14800
  :param pulumi.Input[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.
14381
14801
  :param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
14382
- :param pulumi.Input[str] source_id: (Updatable) The OCID of the boot volume used to boot the instance.
14802
+ :param pulumi.Input[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.
14383
14803
  """
14384
14804
  pulumi.set(__self__, "source_type", source_type)
14385
14805
  if boot_volume_size_in_gbs is not None:
@@ -14473,7 +14893,7 @@ class InstanceSourceDetailsArgs:
14473
14893
  @pulumi.getter(name="sourceId")
14474
14894
  def source_id(self) -> Optional[pulumi.Input[str]]:
14475
14895
  """
14476
- (Updatable) The OCID of the boot volume used to boot the instance.
14896
+ (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.
14477
14897
  """
14478
14898
  return pulumi.get(self, "source_id")
14479
14899
 
@@ -15492,6 +15912,55 @@ class IpsecConnectionTunnelManagementPhaseTwoDetailsArgs:
15492
15912
  pulumi.set(self, "remaining_lifetime_last_retrieved", value)
15493
15913
 
15494
15914
 
15915
+ if not MYPY:
15916
+ class IpsecTunnelConfigurationArgsDict(TypedDict):
15917
+ associated_virtual_circuits: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
15918
+ drg_route_table_id: NotRequired[pulumi.Input[str]]
15919
+ oracle_tunnel_ip: NotRequired[pulumi.Input[str]]
15920
+ elif False:
15921
+ IpsecTunnelConfigurationArgsDict: TypeAlias = Mapping[str, Any]
15922
+
15923
+ @pulumi.input_type
15924
+ class IpsecTunnelConfigurationArgs:
15925
+ def __init__(__self__, *,
15926
+ associated_virtual_circuits: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
15927
+ drg_route_table_id: Optional[pulumi.Input[str]] = None,
15928
+ oracle_tunnel_ip: Optional[pulumi.Input[str]] = None):
15929
+ if associated_virtual_circuits is not None:
15930
+ pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
15931
+ if drg_route_table_id is not None:
15932
+ pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
15933
+ if oracle_tunnel_ip is not None:
15934
+ pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
15935
+
15936
+ @property
15937
+ @pulumi.getter(name="associatedVirtualCircuits")
15938
+ def associated_virtual_circuits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
15939
+ return pulumi.get(self, "associated_virtual_circuits")
15940
+
15941
+ @associated_virtual_circuits.setter
15942
+ def associated_virtual_circuits(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
15943
+ pulumi.set(self, "associated_virtual_circuits", value)
15944
+
15945
+ @property
15946
+ @pulumi.getter(name="drgRouteTableId")
15947
+ def drg_route_table_id(self) -> Optional[pulumi.Input[str]]:
15948
+ return pulumi.get(self, "drg_route_table_id")
15949
+
15950
+ @drg_route_table_id.setter
15951
+ def drg_route_table_id(self, value: Optional[pulumi.Input[str]]):
15952
+ pulumi.set(self, "drg_route_table_id", value)
15953
+
15954
+ @property
15955
+ @pulumi.getter(name="oracleTunnelIp")
15956
+ def oracle_tunnel_ip(self) -> Optional[pulumi.Input[str]]:
15957
+ return pulumi.get(self, "oracle_tunnel_ip")
15958
+
15959
+ @oracle_tunnel_ip.setter
15960
+ def oracle_tunnel_ip(self, value: Optional[pulumi.Input[str]]):
15961
+ pulumi.set(self, "oracle_tunnel_ip", value)
15962
+
15963
+
15495
15964
  if not MYPY:
15496
15965
  class NetworkSecurityGroupSecurityRuleIcmpOptionsArgsDict(TypedDict):
15497
15966
  type: pulumi.Input[int]
@@ -17426,6 +17895,10 @@ if not MYPY:
17426
17895
 
17427
17896
  Example: `10.0.3.3`
17428
17897
  """
17898
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
17899
+ """
17900
+ 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"}`
17901
+ """
17429
17902
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
17430
17903
  """
17431
17904
  (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).
@@ -17462,6 +17935,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
17462
17935
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
17463
17936
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
17464
17937
  private_ip: Optional[pulumi.Input[str]] = None,
17938
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
17465
17939
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
17466
17940
  subnet_id: Optional[pulumi.Input[str]] = None,
17467
17941
  vlan_id: Optional[pulumi.Input[str]] = None):
@@ -17500,6 +17974,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
17500
17974
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
17501
17975
 
17502
17976
  Example: `10.0.3.3`
17977
+ :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
17503
17978
  :param pulumi.Input[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).
17504
17979
 
17505
17980
  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).
@@ -17532,6 +18007,8 @@ class VnicAttachmentCreateVnicDetailsArgs:
17532
18007
  pulumi.set(__self__, "nsg_ids", nsg_ids)
17533
18008
  if private_ip is not None:
17534
18009
  pulumi.set(__self__, "private_ip", private_ip)
18010
+ if security_attributes is not None:
18011
+ pulumi.set(__self__, "security_attributes", security_attributes)
17535
18012
  if skip_source_dest_check is not None:
17536
18013
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
17537
18014
  if subnet_id is not None:
@@ -17683,6 +18160,18 @@ class VnicAttachmentCreateVnicDetailsArgs:
17683
18160
  def private_ip(self, value: Optional[pulumi.Input[str]]):
17684
18161
  pulumi.set(self, "private_ip", value)
17685
18162
 
18163
+ @property
18164
+ @pulumi.getter(name="securityAttributes")
18165
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
18166
+ """
18167
+ 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"}`
18168
+ """
18169
+ return pulumi.get(self, "security_attributes")
18170
+
18171
+ @security_attributes.setter
18172
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
18173
+ pulumi.set(self, "security_attributes", value)
18174
+
17686
18175
  @property
17687
18176
  @pulumi.getter(name="skipSourceDestCheck")
17688
18177
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]: