pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  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/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.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',
@@ -693,6 +695,14 @@ if not MYPY:
693
695
  """
694
696
  (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
695
697
  """
698
+ kms_key_id: NotRequired[pulumi.Input[str]]
699
+ """
700
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
701
+ """
702
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
703
+ """
704
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
705
+ """
696
706
  elif False:
697
707
  BootVolumeBootVolumeReplicaArgsDict: TypeAlias = Mapping[str, Any]
698
708
 
@@ -701,17 +711,25 @@ class BootVolumeBootVolumeReplicaArgs:
701
711
  def __init__(__self__, *,
702
712
  availability_domain: pulumi.Input[str],
703
713
  boot_volume_replica_id: Optional[pulumi.Input[str]] = None,
704
- display_name: Optional[pulumi.Input[str]] = None):
714
+ display_name: Optional[pulumi.Input[str]] = None,
715
+ kms_key_id: Optional[pulumi.Input[str]] = None,
716
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
705
717
  """
706
718
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
707
719
  :param pulumi.Input[str] boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
708
720
  :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.
721
+ :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.
722
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
709
723
  """
710
724
  pulumi.set(__self__, "availability_domain", availability_domain)
711
725
  if boot_volume_replica_id is not None:
712
726
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
713
727
  if display_name is not None:
714
728
  pulumi.set(__self__, "display_name", display_name)
729
+ if kms_key_id is not None:
730
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
731
+ if xrr_kms_key_id is not None:
732
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
715
733
 
716
734
  @property
717
735
  @pulumi.getter(name="availabilityDomain")
@@ -749,16 +767,52 @@ class BootVolumeBootVolumeReplicaArgs:
749
767
  def display_name(self, value: Optional[pulumi.Input[str]]):
750
768
  pulumi.set(self, "display_name", value)
751
769
 
770
+ @property
771
+ @pulumi.getter(name="kmsKeyId")
772
+ def kms_key_id(self) -> Optional[pulumi.Input[str]]:
773
+ """
774
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
775
+ """
776
+ return pulumi.get(self, "kms_key_id")
777
+
778
+ @kms_key_id.setter
779
+ def kms_key_id(self, value: Optional[pulumi.Input[str]]):
780
+ pulumi.set(self, "kms_key_id", value)
781
+
782
+ @property
783
+ @pulumi.getter(name="xrrKmsKeyId")
784
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
785
+ """
786
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
787
+ """
788
+ return pulumi.get(self, "xrr_kms_key_id")
789
+
790
+ @xrr_kms_key_id.setter
791
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
792
+ pulumi.set(self, "xrr_kms_key_id", value)
793
+
752
794
 
753
795
  if not MYPY:
754
796
  class BootVolumeSourceDetailsArgsDict(TypedDict):
755
- id: pulumi.Input[str]
797
+ type: pulumi.Input[str]
798
+ """
799
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
800
+ """
801
+ change_block_size_in_bytes: NotRequired[pulumi.Input[str]]
802
+ """
803
+ Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
804
+ """
805
+ first_backup_id: NotRequired[pulumi.Input[str]]
806
+ """
807
+ The OCID of the first boot volume backup.
808
+ """
809
+ id: NotRequired[pulumi.Input[str]]
756
810
  """
757
811
  The OCID of the boot volume replica.
758
812
  """
759
- type: pulumi.Input[str]
813
+ second_backup_id: NotRequired[pulumi.Input[str]]
760
814
  """
761
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
815
+ The OCID of the second boot volume backup.
762
816
  """
763
817
  elif False:
764
818
  BootVolumeSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -766,38 +820,87 @@ elif False:
766
820
  @pulumi.input_type
767
821
  class BootVolumeSourceDetailsArgs:
768
822
  def __init__(__self__, *,
769
- id: pulumi.Input[str],
770
- type: pulumi.Input[str]):
823
+ type: pulumi.Input[str],
824
+ change_block_size_in_bytes: Optional[pulumi.Input[str]] = None,
825
+ first_backup_id: Optional[pulumi.Input[str]] = None,
826
+ id: Optional[pulumi.Input[str]] = None,
827
+ second_backup_id: Optional[pulumi.Input[str]] = None):
771
828
  """
829
+ :param pulumi.Input[str] type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
830
+ :param pulumi.Input[str] change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
831
+ :param pulumi.Input[str] first_backup_id: The OCID of the first boot volume backup.
772
832
  :param pulumi.Input[str] id: The OCID of the boot volume replica.
773
- :param pulumi.Input[str] type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
833
+ :param pulumi.Input[str] second_backup_id: The OCID of the second boot volume backup.
774
834
  """
775
- pulumi.set(__self__, "id", id)
776
835
  pulumi.set(__self__, "type", type)
836
+ if change_block_size_in_bytes is not None:
837
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
838
+ if first_backup_id is not None:
839
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
840
+ if id is not None:
841
+ pulumi.set(__self__, "id", id)
842
+ if second_backup_id is not None:
843
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
777
844
 
778
845
  @property
779
846
  @pulumi.getter
780
- def id(self) -> pulumi.Input[str]:
847
+ def type(self) -> pulumi.Input[str]:
848
+ """
849
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
850
+ """
851
+ return pulumi.get(self, "type")
852
+
853
+ @type.setter
854
+ def type(self, value: pulumi.Input[str]):
855
+ pulumi.set(self, "type", value)
856
+
857
+ @property
858
+ @pulumi.getter(name="changeBlockSizeInBytes")
859
+ def change_block_size_in_bytes(self) -> Optional[pulumi.Input[str]]:
860
+ """
861
+ Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
862
+ """
863
+ return pulumi.get(self, "change_block_size_in_bytes")
864
+
865
+ @change_block_size_in_bytes.setter
866
+ def change_block_size_in_bytes(self, value: Optional[pulumi.Input[str]]):
867
+ pulumi.set(self, "change_block_size_in_bytes", value)
868
+
869
+ @property
870
+ @pulumi.getter(name="firstBackupId")
871
+ def first_backup_id(self) -> Optional[pulumi.Input[str]]:
872
+ """
873
+ The OCID of the first boot volume backup.
874
+ """
875
+ return pulumi.get(self, "first_backup_id")
876
+
877
+ @first_backup_id.setter
878
+ def first_backup_id(self, value: Optional[pulumi.Input[str]]):
879
+ pulumi.set(self, "first_backup_id", value)
880
+
881
+ @property
882
+ @pulumi.getter
883
+ def id(self) -> Optional[pulumi.Input[str]]:
781
884
  """
782
885
  The OCID of the boot volume replica.
783
886
  """
784
887
  return pulumi.get(self, "id")
785
888
 
786
889
  @id.setter
787
- def id(self, value: pulumi.Input[str]):
890
+ def id(self, value: Optional[pulumi.Input[str]]):
788
891
  pulumi.set(self, "id", value)
789
892
 
790
893
  @property
791
- @pulumi.getter
792
- def type(self) -> pulumi.Input[str]:
894
+ @pulumi.getter(name="secondBackupId")
895
+ def second_backup_id(self) -> Optional[pulumi.Input[str]]:
793
896
  """
794
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
897
+ The OCID of the second boot volume backup.
795
898
  """
796
- return pulumi.get(self, "type")
899
+ return pulumi.get(self, "second_backup_id")
797
900
 
798
- @type.setter
799
- def type(self, value: pulumi.Input[str]):
800
- pulumi.set(self, "type", value)
901
+ @second_backup_id.setter
902
+ def second_backup_id(self, value: Optional[pulumi.Input[str]]):
903
+ pulumi.set(self, "second_backup_id", value)
801
904
 
802
905
 
803
906
  if not MYPY:
@@ -6076,7 +6179,6 @@ if not MYPY:
6076
6179
  launch_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsArgsDict']]
6077
6180
  """
6078
6181
  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
6182
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6081
6183
  """
6082
6184
  options: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionArgsDict']]]]
@@ -6102,7 +6204,6 @@ class InstanceConfigurationInstanceDetailsArgs:
6102
6204
  :param pulumi.Input[str] instance_type: The type of instance details. Supported instanceType is compute
6103
6205
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeArgs']]] block_volumes: Block volume parameters.
6104
6206
  :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
6207
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6107
6208
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionArgs']]] options: Multiple Compute Instance Configuration instance details.
6108
6209
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsSecondaryVnicArgs']]] secondary_vnics: Secondary VNIC parameters.
@@ -6146,7 +6247,6 @@ class InstanceConfigurationInstanceDetailsArgs:
6146
6247
  def launch_details(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsArgs']]:
6147
6248
  """
6148
6249
  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
6250
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
6151
6251
  """
6152
6252
  return pulumi.get(self, "launch_details")
@@ -6256,7 +6356,7 @@ if not MYPY:
6256
6356
  class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgsDict(TypedDict):
6257
6357
  type: pulumi.Input[str]
6258
6358
  """
6259
- The type of volume. The only supported values are "iscsi" and "paravirtualized".
6359
+ The type of volume. The only supported values are "iscsi" and "paravirtualized"
6260
6360
  """
6261
6361
  device: NotRequired[pulumi.Input[str]]
6262
6362
  """
@@ -6296,7 +6396,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgs:
6296
6396
  is_shareable: Optional[pulumi.Input[bool]] = None,
6297
6397
  use_chap: Optional[pulumi.Input[bool]] = None):
6298
6398
  """
6299
- :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
6399
+ :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized"
6300
6400
  :param pulumi.Input[str] device: The device name.
6301
6401
  :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
6402
  :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 +6422,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetailsArgs:
6322
6422
  @pulumi.getter
6323
6423
  def type(self) -> pulumi.Input[str]:
6324
6424
  """
6325
- The type of volume. The only supported values are "iscsi" and "paravirtualized".
6425
+ The type of volume. The only supported values are "iscsi" and "paravirtualized"
6326
6426
  """
6327
6427
  return pulumi.get(self, "type")
6328
6428
 
@@ -6460,6 +6560,10 @@ if not MYPY:
6460
6560
 
6461
6561
  Allowed values:
6462
6562
  """
6563
+ xrc_kms_key_id: NotRequired[pulumi.Input[str]]
6564
+ """
6565
+ The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
6566
+ """
6463
6567
  elif False:
6464
6568
  InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgsDict: TypeAlias = Mapping[str, Any]
6465
6569
 
@@ -6479,7 +6583,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6479
6583
  kms_key_id: Optional[pulumi.Input[str]] = None,
6480
6584
  size_in_gbs: Optional[pulumi.Input[str]] = None,
6481
6585
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsSourceDetailsArgs']] = None,
6482
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
6586
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
6587
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
6483
6588
  """
6484
6589
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
6485
6590
  :param pulumi.Input[str] availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -6496,6 +6601,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6496
6601
  :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.
6497
6602
 
6498
6603
  Allowed values:
6604
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
6499
6605
  """
6500
6606
  if autotune_policies is not None:
6501
6607
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -6525,6 +6631,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6525
6631
  pulumi.set(__self__, "source_details", source_details)
6526
6632
  if vpus_per_gb is not None:
6527
6633
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
6634
+ if xrc_kms_key_id is not None:
6635
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
6528
6636
 
6529
6637
  @property
6530
6638
  @pulumi.getter(name="autotunePolicies")
@@ -6693,6 +6801,18 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6693
6801
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
6694
6802
  pulumi.set(self, "vpus_per_gb", value)
6695
6803
 
6804
+ @property
6805
+ @pulumi.getter(name="xrcKmsKeyId")
6806
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
6807
+ """
6808
+ The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
6809
+ """
6810
+ return pulumi.get(self, "xrc_kms_key_id")
6811
+
6812
+ @xrc_kms_key_id.setter
6813
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
6814
+ pulumi.set(self, "xrc_kms_key_id", value)
6815
+
6696
6816
 
6697
6817
  if not MYPY:
6698
6818
  class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgsDict(TypedDict):
@@ -6867,11 +6987,11 @@ if not MYPY:
6867
6987
  """
6868
6988
  cluster_placement_group_id: NotRequired[pulumi.Input[str]]
6869
6989
  """
6870
- The clusterPlacementGroup Id of the volume for volume placement.
6990
+ The OCID of the cluster placement group of the instance.
6871
6991
  """
6872
6992
  compartment_id: NotRequired[pulumi.Input[str]]
6873
6993
  """
6874
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
6994
+ 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
6995
  """
6876
6996
  create_vnic_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgsDict']]
6877
6997
  """
@@ -6880,26 +7000,38 @@ if not MYPY:
6880
7000
  dedicated_vm_host_id: NotRequired[pulumi.Input[str]]
6881
7001
  """
6882
7002
  The OCID of the dedicated virtual machine host to place the instance on.
7003
+
7004
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
6883
7005
  """
6884
7006
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6885
7007
  """
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"}`
7008
+ 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
7009
  """
6888
7010
  display_name: NotRequired[pulumi.Input[str]]
6889
7011
  """
6890
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7012
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6891
7013
  """
6892
7014
  extended_metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6893
7015
  """
6894
7016
  Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
7017
+
7018
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
7019
+
7020
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6895
7021
  """
6896
7022
  fault_domain: NotRequired[pulumi.Input[str]]
6897
7023
  """
6898
7024
  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.
7025
+
7026
+ If you do not specify the fault domain, the system selects one for you.
7027
+
7028
+ 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.
7029
+
7030
+ Example: `FAULT-DOMAIN-1`
6899
7031
  """
6900
7032
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6901
7033
  """
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"}`
7034
+ 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
7035
  """
6904
7036
  instance_options: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgsDict']]
6905
7037
  """
@@ -6908,10 +7040,20 @@ if not MYPY:
6908
7040
  ipxe_script: NotRequired[pulumi.Input[str]]
6909
7041
  """
6910
7042
  This is an advanced option.
7043
+
7044
+ 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.
7045
+
7046
+ 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.
7047
+
7048
+ 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.
7049
+
7050
+ 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).
7051
+
7052
+ For more information about iPXE, see http://ipxe.org.
6911
7053
  """
6912
7054
  is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
6913
7055
  """
6914
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
7056
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
6915
7057
  """
6916
7058
  launch_mode: NotRequired[pulumi.Input[str]]
6917
7059
  """
@@ -6928,10 +7070,38 @@ if not MYPY:
6928
7070
  metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
6929
7071
  """
6930
7072
  Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
7073
+
7074
+ 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:
7075
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
7076
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
7077
+
7078
+ **Providing Cloud-Init Metadata**
7079
+
7080
+ You can use the following metadata key names to provide information to Cloud-Init:
7081
+
7082
+ **"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.
7083
+
7084
+ **"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).
7085
+
7086
+ **Metadata Example**
7087
+
7088
+ "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**
7089
+
7090
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
7091
+
7092
+ 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>
7093
+
7094
+ 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.
7095
+
7096
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6931
7097
  """
6932
7098
  platform_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict']]
6933
7099
  """
6934
- The platform configuration requested for the instance.
7100
+ (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
7101
+
7102
+ 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.
7103
+
7104
+ 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
7105
  """
6936
7106
  preemptible_instance_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgsDict']]
6937
7107
  """
@@ -6943,13 +7113,23 @@ if not MYPY:
6943
7113
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
6944
7114
  * `REBOOT` - Run maintenance using a reboot.
6945
7115
  """
7116
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7117
+ """
7118
+ 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"}}}`
7119
+ """
6946
7120
  shape: NotRequired[pulumi.Input[str]]
6947
7121
  """
6948
7122
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7123
+
7124
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
6949
7125
  """
6950
7126
  shape_config: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgsDict']]
6951
7127
  """
6952
7128
  The shape configuration requested for the instance.
7129
+
7130
+ 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.
7131
+
7132
+ 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
7133
  """
6954
7134
  source_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgsDict']]
6955
7135
  elif False:
@@ -6980,6 +7160,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
6980
7160
  platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']] = None,
6981
7161
  preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
6982
7162
  preferred_maintenance_action: Optional[pulumi.Input[str]] = None,
7163
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
6983
7164
  shape: Optional[pulumi.Input[str]] = None,
6984
7165
  shape_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs']] = None,
6985
7166
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs']] = None):
@@ -6988,18 +7169,40 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
6988
7169
  :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
7170
  :param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
6990
7171
  :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.
7172
+ :param pulumi.Input[str] cluster_placement_group_id: The OCID of the cluster placement group of the instance.
7173
+ :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
7174
  :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
7175
  :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.
7176
+
7177
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
7178
+ :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"}`
7179
+ :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
7180
  :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.
7181
+
7182
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
7183
+
7184
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6998
7185
  :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"}`
7186
+
7187
+ If you do not specify the fault domain, the system selects one for you.
7188
+
7189
+ 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.
7190
+
7191
+ Example: `FAULT-DOMAIN-1`
7192
+ :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
7193
  :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
7194
  :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).
7195
+
7196
+ 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.
7197
+
7198
+ 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.
7199
+
7200
+ 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.
7201
+
7202
+ 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).
7203
+
7204
+ For more information about iPXE, see http://ipxe.org.
7205
+ :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
7206
  :param pulumi.Input[str] launch_mode: Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
7004
7207
  * `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
7005
7208
  * `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
@@ -7007,13 +7210,48 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7007
7210
  * `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
7008
7211
  :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
7212
  :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.
7213
+
7214
+ 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:
7215
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
7216
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
7217
+
7218
+ **Providing Cloud-Init Metadata**
7219
+
7220
+ You can use the following metadata key names to provide information to Cloud-Init:
7221
+
7222
+ **"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.
7223
+
7224
+ **"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).
7225
+
7226
+ **Metadata Example**
7227
+
7228
+ "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**
7229
+
7230
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
7231
+
7232
+ 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>
7233
+
7234
+ 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.
7235
+
7236
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7237
+ :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs'] platform_config: (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
7238
+
7239
+ 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.
7240
+
7241
+ 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
7242
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
7012
7243
  :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
7244
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
7014
7245
  * `REBOOT` - Run maintenance using a reboot.
7246
+ :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
7247
  :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.
7248
+
7249
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
7016
7250
  :param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
7251
+
7252
+ 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.
7253
+
7254
+ 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
7255
  """
7018
7256
  if agent_config is not None:
7019
7257
  pulumi.set(__self__, "agent_config", agent_config)
@@ -7059,6 +7297,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7059
7297
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
7060
7298
  if preferred_maintenance_action is not None:
7061
7299
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
7300
+ if security_attributes is not None:
7301
+ pulumi.set(__self__, "security_attributes", security_attributes)
7062
7302
  if shape is not None:
7063
7303
  pulumi.set(__self__, "shape", shape)
7064
7304
  if shape_config is not None:
@@ -7118,7 +7358,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7118
7358
  @pulumi.getter(name="clusterPlacementGroupId")
7119
7359
  def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
7120
7360
  """
7121
- The clusterPlacementGroup Id of the volume for volume placement.
7361
+ The OCID of the cluster placement group of the instance.
7122
7362
  """
7123
7363
  return pulumi.get(self, "cluster_placement_group_id")
7124
7364
 
@@ -7130,7 +7370,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7130
7370
  @pulumi.getter(name="compartmentId")
7131
7371
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
7132
7372
  """
7133
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7373
+ 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
7374
  """
7135
7375
  return pulumi.get(self, "compartment_id")
7136
7376
 
@@ -7155,6 +7395,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7155
7395
  def dedicated_vm_host_id(self) -> Optional[pulumi.Input[str]]:
7156
7396
  """
7157
7397
  The OCID of the dedicated virtual machine host to place the instance on.
7398
+
7399
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
7158
7400
  """
7159
7401
  return pulumi.get(self, "dedicated_vm_host_id")
7160
7402
 
@@ -7166,7 +7408,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7166
7408
  @pulumi.getter(name="definedTags")
7167
7409
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7168
7410
  """
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"}`
7411
+ 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
7412
  """
7171
7413
  return pulumi.get(self, "defined_tags")
7172
7414
 
@@ -7178,7 +7420,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7178
7420
  @pulumi.getter(name="displayName")
7179
7421
  def display_name(self) -> Optional[pulumi.Input[str]]:
7180
7422
  """
7181
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7423
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7182
7424
  """
7183
7425
  return pulumi.get(self, "display_name")
7184
7426
 
@@ -7191,6 +7433,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7191
7433
  def extended_metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7192
7434
  """
7193
7435
  Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
7436
+
7437
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
7438
+
7439
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7194
7440
  """
7195
7441
  return pulumi.get(self, "extended_metadata")
7196
7442
 
@@ -7203,6 +7449,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7203
7449
  def fault_domain(self) -> Optional[pulumi.Input[str]]:
7204
7450
  """
7205
7451
  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.
7452
+
7453
+ If you do not specify the fault domain, the system selects one for you.
7454
+
7455
+ 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.
7456
+
7457
+ Example: `FAULT-DOMAIN-1`
7206
7458
  """
7207
7459
  return pulumi.get(self, "fault_domain")
7208
7460
 
@@ -7214,7 +7466,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7214
7466
  @pulumi.getter(name="freeformTags")
7215
7467
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7216
7468
  """
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"}`
7469
+ 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
7470
  """
7219
7471
  return pulumi.get(self, "freeform_tags")
7220
7472
 
@@ -7239,6 +7491,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7239
7491
  def ipxe_script(self) -> Optional[pulumi.Input[str]]:
7240
7492
  """
7241
7493
  This is an advanced option.
7494
+
7495
+ 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.
7496
+
7497
+ 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.
7498
+
7499
+ 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.
7500
+
7501
+ 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).
7502
+
7503
+ For more information about iPXE, see http://ipxe.org.
7242
7504
  """
7243
7505
  return pulumi.get(self, "ipxe_script")
7244
7506
 
@@ -7250,7 +7512,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7250
7512
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
7251
7513
  def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
7252
7514
  """
7253
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
7515
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
7254
7516
  """
7255
7517
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
7256
7518
 
@@ -7291,6 +7553,30 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7291
7553
  def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7292
7554
  """
7293
7555
  Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
7556
+
7557
+ 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:
7558
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
7559
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
7560
+
7561
+ **Providing Cloud-Init Metadata**
7562
+
7563
+ You can use the following metadata key names to provide information to Cloud-Init:
7564
+
7565
+ **"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.
7566
+
7567
+ **"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).
7568
+
7569
+ **Metadata Example**
7570
+
7571
+ "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**
7572
+
7573
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
7574
+
7575
+ 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>
7576
+
7577
+ 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.
7578
+
7579
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
7294
7580
  """
7295
7581
  return pulumi.get(self, "metadata")
7296
7582
 
@@ -7302,7 +7588,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7302
7588
  @pulumi.getter(name="platformConfig")
7303
7589
  def platform_config(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs']]:
7304
7590
  """
7305
- The platform configuration requested for the instance.
7591
+ (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
7592
+
7593
+ 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.
7594
+
7595
+ 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
7596
  """
7307
7597
  return pulumi.get(self, "platform_config")
7308
7598
 
@@ -7336,11 +7626,25 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7336
7626
  def preferred_maintenance_action(self, value: Optional[pulumi.Input[str]]):
7337
7627
  pulumi.set(self, "preferred_maintenance_action", value)
7338
7628
 
7629
+ @property
7630
+ @pulumi.getter(name="securityAttributes")
7631
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7632
+ """
7633
+ 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"}}}`
7634
+ """
7635
+ return pulumi.get(self, "security_attributes")
7636
+
7637
+ @security_attributes.setter
7638
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
7639
+ pulumi.set(self, "security_attributes", value)
7640
+
7339
7641
  @property
7340
7642
  @pulumi.getter
7341
7643
  def shape(self) -> Optional[pulumi.Input[str]]:
7342
7644
  """
7343
7645
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7646
+
7647
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
7344
7648
  """
7345
7649
  return pulumi.get(self, "shape")
7346
7650
 
@@ -7353,6 +7657,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
7353
7657
  def shape_config(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs']]:
7354
7658
  """
7355
7659
  The shape configuration requested for the instance.
7660
+
7661
+ 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.
7662
+
7663
+ 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
7664
  """
7357
7665
  return pulumi.get(self, "shape_config")
7358
7666
 
@@ -7381,22 +7689,10 @@ if not MYPY:
7381
7689
  is_management_disabled: NotRequired[pulumi.Input[bool]]
7382
7690
  """
7383
7691
  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
7692
  """
7391
7693
  is_monitoring_disabled: NotRequired[pulumi.Input[bool]]
7392
7694
  """
7393
7695
  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
7696
  """
7401
7697
  plugins_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgsDict']]]]
7402
7698
  """
@@ -7417,19 +7713,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7417
7713
 
7418
7714
  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
7715
  :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
7716
  :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
7717
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgs']]] plugins_configs: The configuration of plugins associated with this instance.
7434
7718
  """
7435
7719
  if are_all_plugins_disabled is not None:
@@ -7460,12 +7744,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7460
7744
  def is_management_disabled(self) -> Optional[pulumi.Input[bool]]:
7461
7745
  """
7462
7746
  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
7747
  """
7470
7748
  return pulumi.get(self, "is_management_disabled")
7471
7749
 
@@ -7478,12 +7756,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigArgs:
7478
7756
  def is_monitoring_disabled(self) -> Optional[pulumi.Input[bool]]:
7479
7757
  """
7480
7758
  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
7759
  """
7488
7760
  return pulumi.get(self, "is_monitoring_disabled")
7489
7761
 
@@ -7509,7 +7781,6 @@ if not MYPY:
7509
7781
  desired_state: NotRequired[pulumi.Input[str]]
7510
7782
  """
7511
7783
  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
7784
  """
7514
7785
  name: NotRequired[pulumi.Input[str]]
7515
7786
  """
@@ -7525,7 +7796,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigA
7525
7796
  name: Optional[pulumi.Input[str]] = None):
7526
7797
  """
7527
7798
  :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
7799
  :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
7800
  """
7531
7801
  if desired_state is not None:
@@ -7538,7 +7808,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigA
7538
7808
  def desired_state(self) -> Optional[pulumi.Input[str]]:
7539
7809
  """
7540
7810
  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
7811
  """
7543
7812
  return pulumi.get(self, "desired_state")
7544
7813
 
@@ -7620,9 +7889,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs:
7620
7889
  if not MYPY:
7621
7890
  class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgsDict(TypedDict):
7622
7891
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
7892
+ """
7893
+ 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.
7894
+ """
7623
7895
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
7624
7896
  """
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.
7897
+ 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
7898
  """
7627
7899
  assign_public_ip: NotRequired[pulumi.Input[bool]]
7628
7900
  """
@@ -7630,21 +7902,24 @@ if not MYPY:
7630
7902
  """
7631
7903
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7632
7904
  """
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"}`
7905
+ 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
7906
  """
7635
7907
  display_name: NotRequired[pulumi.Input[str]]
7636
7908
  """
7637
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7909
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7638
7910
  """
7639
7911
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7640
7912
  """
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"}`
7913
+ 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
7914
  """
7643
7915
  hostname_label: NotRequired[pulumi.Input[str]]
7644
7916
  """
7645
7917
  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
7918
  """
7647
7919
  ipv6address_ipv6subnet_cidr_pair_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict']]]]
7920
+ """
7921
+ 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.
7922
+ """
7648
7923
  nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
7649
7924
  """
7650
7925
  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 +7928,10 @@ if not MYPY:
7653
7928
  """
7654
7929
  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
7930
  """
7931
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
7932
+ """
7933
+ 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"}}}`
7934
+ """
7656
7935
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
7657
7936
  """
7658
7937
  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 +7956,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7677
7956
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
7678
7957
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
7679
7958
  private_ip: Optional[pulumi.Input[str]] = None,
7959
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
7680
7960
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
7681
7961
  subnet_id: Optional[pulumi.Input[str]] = None):
7682
7962
  """
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.
7963
+ :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.
7964
+ :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
7965
  :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"}`
7966
+ :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"}`
7967
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7968
+ :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
7969
  :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.
7970
+ :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
7971
  :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
7972
  :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.
7973
+ :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
7974
  :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
7975
  :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
7976
  """
@@ -7711,6 +7994,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7711
7994
  pulumi.set(__self__, "nsg_ids", nsg_ids)
7712
7995
  if private_ip is not None:
7713
7996
  pulumi.set(__self__, "private_ip", private_ip)
7997
+ if security_attributes is not None:
7998
+ pulumi.set(__self__, "security_attributes", security_attributes)
7714
7999
  if skip_source_dest_check is not None:
7715
8000
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
7716
8001
  if subnet_id is not None:
@@ -7719,6 +8004,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7719
8004
  @property
7720
8005
  @pulumi.getter(name="assignIpv6ip")
7721
8006
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
8007
+ """
8008
+ 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.
8009
+ """
7722
8010
  return pulumi.get(self, "assign_ipv6ip")
7723
8011
 
7724
8012
  @assign_ipv6ip.setter
@@ -7729,7 +8017,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7729
8017
  @pulumi.getter(name="assignPrivateDnsRecord")
7730
8018
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
7731
8019
  """
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.
8020
+ 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
8021
  """
7734
8022
  return pulumi.get(self, "assign_private_dns_record")
7735
8023
 
@@ -7753,7 +8041,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7753
8041
  @pulumi.getter(name="definedTags")
7754
8042
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7755
8043
  """
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"}`
8044
+ 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
8045
  """
7758
8046
  return pulumi.get(self, "defined_tags")
7759
8047
 
@@ -7765,7 +8053,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7765
8053
  @pulumi.getter(name="displayName")
7766
8054
  def display_name(self) -> Optional[pulumi.Input[str]]:
7767
8055
  """
7768
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
8056
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7769
8057
  """
7770
8058
  return pulumi.get(self, "display_name")
7771
8059
 
@@ -7777,7 +8065,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7777
8065
  @pulumi.getter(name="freeformTags")
7778
8066
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
7779
8067
  """
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"}`
8068
+ 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
8069
  """
7782
8070
  return pulumi.get(self, "freeform_tags")
7783
8071
 
@@ -7800,6 +8088,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7800
8088
  @property
7801
8089
  @pulumi.getter(name="ipv6addressIpv6subnetCidrPairDetails")
7802
8090
  def ipv6address_ipv6subnet_cidr_pair_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]]:
8091
+ """
8092
+ 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.
8093
+ """
7803
8094
  return pulumi.get(self, "ipv6address_ipv6subnet_cidr_pair_details")
7804
8095
 
7805
8096
  @ipv6address_ipv6subnet_cidr_pair_details.setter
@@ -7830,6 +8121,18 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7830
8121
  def private_ip(self, value: Optional[pulumi.Input[str]]):
7831
8122
  pulumi.set(self, "private_ip", value)
7832
8123
 
8124
+ @property
8125
+ @pulumi.getter(name="securityAttributes")
8126
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
8127
+ """
8128
+ 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"}}}`
8129
+ """
8130
+ return pulumi.get(self, "security_attributes")
8131
+
8132
+ @security_attributes.setter
8133
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
8134
+ pulumi.set(self, "security_attributes", value)
8135
+
7833
8136
  @property
7834
8137
  @pulumi.getter(name="skipSourceDestCheck")
7835
8138
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -7858,7 +8161,13 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs:
7858
8161
  if not MYPY:
7859
8162
  class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict(TypedDict):
7860
8163
  ipv6address: NotRequired[pulumi.Input[str]]
8164
+ """
8165
+ Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
8166
+ """
7861
8167
  ipv6subnet_cidr: NotRequired[pulumi.Input[str]]
8168
+ """
8169
+ Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8170
+ """
7862
8171
  elif False:
7863
8172
  InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgsDict: TypeAlias = Mapping[str, Any]
7864
8173
 
@@ -7867,6 +8176,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7867
8176
  def __init__(__self__, *,
7868
8177
  ipv6address: Optional[pulumi.Input[str]] = None,
7869
8178
  ipv6subnet_cidr: Optional[pulumi.Input[str]] = None):
8179
+ """
8180
+ :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).
8181
+ :param pulumi.Input[str] ipv6subnet_cidr: Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8182
+ """
7870
8183
  if ipv6address is not None:
7871
8184
  pulumi.set(__self__, "ipv6address", ipv6address)
7872
8185
  if ipv6subnet_cidr is not None:
@@ -7875,6 +8188,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7875
8188
  @property
7876
8189
  @pulumi.getter
7877
8190
  def ipv6address(self) -> Optional[pulumi.Input[str]]:
8191
+ """
8192
+ Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
8193
+ """
7878
8194
  return pulumi.get(self, "ipv6address")
7879
8195
 
7880
8196
  @ipv6address.setter
@@ -7884,6 +8200,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
7884
8200
  @property
7885
8201
  @pulumi.getter(name="ipv6subnetCidr")
7886
8202
  def ipv6subnet_cidr(self) -> Optional[pulumi.Input[str]]:
8203
+ """
8204
+ Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
8205
+ """
7887
8206
  return pulumi.get(self, "ipv6subnet_cidr")
7888
8207
 
7889
8208
  @ipv6subnet_cidr.setter
@@ -8104,7 +8423,7 @@ if not MYPY:
8104
8423
  class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgsDict(TypedDict):
8105
8424
  type: pulumi.Input[str]
8106
8425
  """
8107
- The type of action to run when the instance is interrupted for eviction.
8426
+ The type of platform being configured.
8108
8427
  """
8109
8428
  are_virtual_instructions_enabled: NotRequired[pulumi.Input[bool]]
8110
8429
  """
@@ -8136,7 +8455,9 @@ if not MYPY:
8136
8455
  """
8137
8456
  is_symmetric_multi_threading_enabled: NotRequired[pulumi.Input[bool]]
8138
8457
  """
8139
- Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
8458
+ (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.
8459
+
8460
+ 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
8461
  """
8141
8462
  is_trusted_platform_module_enabled: NotRequired[pulumi.Input[bool]]
8142
8463
  """
@@ -8171,7 +8492,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8171
8492
  numa_nodes_per_socket: Optional[pulumi.Input[str]] = None,
8172
8493
  percentage_of_cores_enabled: Optional[pulumi.Input[int]] = None):
8173
8494
  """
8174
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
8495
+ :param pulumi.Input[str] type: The type of platform being configured.
8175
8496
  :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
8497
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config_map: Instance Platform Configuration Configuration Map for flexible setting input.
8177
8498
  :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 +8500,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8179
8500
  :param pulumi.Input[bool] is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
8180
8501
  :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
8502
  :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.
8503
+ :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.
8504
+
8505
+ 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
8506
  :param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
8184
8507
  :param pulumi.Input[str] numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
8185
8508
  :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 +8537,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8214
8537
  @pulumi.getter
8215
8538
  def type(self) -> pulumi.Input[str]:
8216
8539
  """
8217
- The type of action to run when the instance is interrupted for eviction.
8540
+ The type of platform being configured.
8218
8541
  """
8219
8542
  return pulumi.get(self, "type")
8220
8543
 
@@ -8310,7 +8633,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs:
8310
8633
  @pulumi.getter(name="isSymmetricMultiThreadingEnabled")
8311
8634
  def is_symmetric_multi_threading_enabled(self) -> Optional[pulumi.Input[bool]]:
8312
8635
  """
8313
- Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
8636
+ (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.
8637
+
8638
+ 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
8639
  """
8315
8640
  return pulumi.get(self, "is_symmetric_multi_threading_enabled")
8316
8641
 
@@ -8445,6 +8770,11 @@ if not MYPY:
8445
8770
  baseline_ocpu_utilization: NotRequired[pulumi.Input[str]]
8446
8771
  """
8447
8772
  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`.
8773
+
8774
+ The following values are supported:
8775
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8776
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8777
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8448
8778
  """
8449
8779
  memory_in_gbs: NotRequired[pulumi.Input[float]]
8450
8780
  """
@@ -8475,6 +8805,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs:
8475
8805
  vcpus: Optional[pulumi.Input[int]] = None):
8476
8806
  """
8477
8807
  :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`.
8808
+
8809
+ The following values are supported:
8810
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8811
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8812
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8478
8813
  :param pulumi.Input[float] memory_in_gbs: The total amount of memory available to the instance, in gigabytes.
8479
8814
  :param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
8480
8815
  :param pulumi.Input[float] ocpus: The total number of OCPUs available to the instance.
@@ -8496,6 +8831,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs:
8496
8831
  def baseline_ocpu_utilization(self) -> Optional[pulumi.Input[str]]:
8497
8832
  """
8498
8833
  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`.
8834
+
8835
+ The following values are supported:
8836
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
8837
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
8838
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
8499
8839
  """
8500
8840
  return pulumi.get(self, "baseline_ocpu_utilization")
8501
8841
 
@@ -8569,6 +8909,8 @@ if not MYPY:
8569
8909
  boot_volume_vpus_per_gb: NotRequired[pulumi.Input[str]]
8570
8910
  """
8571
8911
  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.
8912
+
8913
+ Allowed values:
8572
8914
  """
8573
8915
  image_id: NotRequired[pulumi.Input[str]]
8574
8916
  """
@@ -8580,7 +8922,7 @@ if not MYPY:
8580
8922
  """
8581
8923
  kms_key_id: NotRequired[pulumi.Input[str]]
8582
8924
  """
8583
- The OCID of the Vault service key to assign as the master encryption key for the volume.
8925
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
8584
8926
  """
8585
8927
  elif False:
8586
8928
  InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -8600,9 +8942,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8600
8942
  :param pulumi.Input[str] boot_volume_id: The OCID of the boot volume used to boot the instance.
8601
8943
  :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
8944
  :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.
8945
+
8946
+ Allowed values:
8603
8947
  :param pulumi.Input[str] image_id: The OCID of the image used to boot the instance.
8604
8948
  :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.
8949
+ :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
8950
  """
8607
8951
  pulumi.set(__self__, "source_type", source_type)
8608
8952
  if boot_volume_id is not None:
@@ -8659,6 +9003,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8659
9003
  def boot_volume_vpus_per_gb(self) -> Optional[pulumi.Input[str]]:
8660
9004
  """
8661
9005
  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.
9006
+
9007
+ Allowed values:
8662
9008
  """
8663
9009
  return pulumi.get(self, "boot_volume_vpus_per_gb")
8664
9010
 
@@ -8694,7 +9040,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsArgs:
8694
9040
  @pulumi.getter(name="kmsKeyId")
8695
9041
  def kms_key_id(self) -> Optional[pulumi.Input[str]]:
8696
9042
  """
8697
- The OCID of the Vault service key to assign as the master encryption key for the volume.
9043
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
8698
9044
  """
8699
9045
  return pulumi.get(self, "kms_key_id")
8700
9046
 
@@ -8707,7 +9053,7 @@ if not MYPY:
8707
9053
  class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSourceImageFilterDetailsArgsDict(TypedDict):
8708
9054
  compartment_id: NotRequired[pulumi.Input[str]]
8709
9055
  """
8710
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9056
+ (Updatable) The OCID of the compartment containing images to search
8711
9057
  """
8712
9058
  defined_tags_filter: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
8713
9059
  """
@@ -8732,7 +9078,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
8732
9078
  operating_system: Optional[pulumi.Input[str]] = None,
8733
9079
  operating_system_version: Optional[pulumi.Input[str]] = None):
8734
9080
  """
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.
9081
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
8736
9082
  :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
9083
  :param pulumi.Input[str] operating_system: The image's operating system. Example: `Oracle Linux`
8738
9084
  :param pulumi.Input[str] operating_system_version: The image's operating system version. Example: `7.2`
@@ -8750,7 +9096,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
8750
9096
  @pulumi.getter(name="compartmentId")
8751
9097
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
8752
9098
  """
8753
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9099
+ (Updatable) The OCID of the compartment containing images to search
8754
9100
  """
8755
9101
  return pulumi.get(self, "compartment_id")
8756
9102
 
@@ -8804,6 +9150,8 @@ if not MYPY:
8804
9150
  launch_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgsDict']]
8805
9151
  """
8806
9152
  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.
9153
+
9154
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8807
9155
  """
8808
9156
  secondary_vnics: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgsDict']]]]
8809
9157
  """
@@ -8821,6 +9169,8 @@ class InstanceConfigurationInstanceDetailsOptionArgs:
8821
9169
  """
8822
9170
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeArgs']]] block_volumes: Block volume parameters.
8823
9171
  :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.
9172
+
9173
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8824
9174
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs']]] secondary_vnics: Secondary VNIC parameters.
8825
9175
  """
8826
9176
  if block_volumes is not None:
@@ -8847,6 +9197,8 @@ class InstanceConfigurationInstanceDetailsOptionArgs:
8847
9197
  def launch_details(self) -> Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs']]:
8848
9198
  """
8849
9199
  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.
9200
+
9201
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
8850
9202
  """
8851
9203
  return pulumi.get(self, "launch_details")
8852
9204
 
@@ -8943,7 +9295,7 @@ if not MYPY:
8943
9295
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgsDict(TypedDict):
8944
9296
  type: pulumi.Input[str]
8945
9297
  """
8946
- The type of action to run when the instance is interrupted for eviction.
9298
+ The type of volume. The only supported values are "iscsi" and "paravirtualized".
8947
9299
  """
8948
9300
  device: NotRequired[pulumi.Input[str]]
8949
9301
  """
@@ -8951,11 +9303,11 @@ if not MYPY:
8951
9303
  """
8952
9304
  display_name: NotRequired[pulumi.Input[str]]
8953
9305
  """
8954
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9306
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
8955
9307
  """
8956
9308
  is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
8957
9309
  """
8958
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
9310
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
8959
9311
  """
8960
9312
  is_read_only: NotRequired[pulumi.Input[bool]]
8961
9313
  """
@@ -8983,10 +9335,10 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
8983
9335
  is_shareable: Optional[pulumi.Input[bool]] = None,
8984
9336
  use_chap: Optional[pulumi.Input[bool]] = None):
8985
9337
  """
8986
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
9338
+ :param pulumi.Input[str] type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
8987
9339
  :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).
9340
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9341
+ :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
9342
  :param pulumi.Input[bool] is_read_only: Whether the attachment should be created in read-only mode.
8991
9343
  :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
9344
  :param pulumi.Input[bool] use_chap: Whether to use CHAP authentication for the volume attachment. Defaults to false.
@@ -9009,7 +9361,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9009
9361
  @pulumi.getter
9010
9362
  def type(self) -> pulumi.Input[str]:
9011
9363
  """
9012
- The type of action to run when the instance is interrupted for eviction.
9364
+ The type of volume. The only supported values are "iscsi" and "paravirtualized".
9013
9365
  """
9014
9366
  return pulumi.get(self, "type")
9015
9367
 
@@ -9033,7 +9385,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9033
9385
  @pulumi.getter(name="displayName")
9034
9386
  def display_name(self) -> Optional[pulumi.Input[str]]:
9035
9387
  """
9036
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9388
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9037
9389
  """
9038
9390
  return pulumi.get(self, "display_name")
9039
9391
 
@@ -9045,7 +9397,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetailsArgs:
9045
9397
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
9046
9398
  def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
9047
9399
  """
9048
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
9400
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
9049
9401
  """
9050
9402
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
9051
9403
 
@@ -9098,7 +9450,7 @@ if not MYPY:
9098
9450
  """
9099
9451
  availability_domain: NotRequired[pulumi.Input[str]]
9100
9452
  """
9101
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9453
+ The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9102
9454
  """
9103
9455
  backup_policy_id: NotRequired[pulumi.Input[str]]
9104
9456
  """
@@ -9114,19 +9466,19 @@ if not MYPY:
9114
9466
  """
9115
9467
  compartment_id: NotRequired[pulumi.Input[str]]
9116
9468
  """
9117
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9469
+ (Updatable) The OCID of the compartment that contains the volume.
9118
9470
  """
9119
9471
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
9120
9472
  """
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"}`
9473
+ 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
9474
  """
9123
9475
  display_name: NotRequired[pulumi.Input[str]]
9124
9476
  """
9125
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9477
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9126
9478
  """
9127
9479
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
9128
9480
  """
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"}`
9481
+ 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
9482
  """
9131
9483
  is_auto_tune_enabled: NotRequired[pulumi.Input[bool]]
9132
9484
  """
@@ -9144,6 +9496,12 @@ if not MYPY:
9144
9496
  vpus_per_gb: NotRequired[pulumi.Input[str]]
9145
9497
  """
9146
9498
  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.
9499
+
9500
+ Allowed values:
9501
+ """
9502
+ xrc_kms_key_id: NotRequired[pulumi.Input[str]]
9503
+ """
9504
+ The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
9147
9505
  """
9148
9506
  elif False:
9149
9507
  InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -9164,21 +9522,25 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9164
9522
  kms_key_id: Optional[pulumi.Input[str]] = None,
9165
9523
  size_in_gbs: Optional[pulumi.Input[str]] = None,
9166
9524
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetailsArgs']] = None,
9167
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
9525
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
9526
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
9168
9527
  """
9169
9528
  :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`
9529
+ :param pulumi.Input[str] availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9171
9530
  :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
9531
  :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
9532
  :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"}`
9533
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the volume.
9534
+ :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"}`
9535
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9536
+ :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
9537
  :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
9538
  :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
9539
  :param pulumi.Input[str] size_in_gbs: The size of the volume in GBs.
9181
9540
  :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.
9541
+
9542
+ Allowed values:
9543
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
9182
9544
  """
9183
9545
  if autotune_policies is not None:
9184
9546
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -9208,6 +9570,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9208
9570
  pulumi.set(__self__, "source_details", source_details)
9209
9571
  if vpus_per_gb is not None:
9210
9572
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
9573
+ if xrc_kms_key_id is not None:
9574
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
9211
9575
 
9212
9576
  @property
9213
9577
  @pulumi.getter(name="autotunePolicies")
@@ -9225,7 +9589,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9225
9589
  @pulumi.getter(name="availabilityDomain")
9226
9590
  def availability_domain(self) -> Optional[pulumi.Input[str]]:
9227
9591
  """
9228
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9592
+ The availability domain of the volume. Example: `Uocm:PHX-AD-1`
9229
9593
  """
9230
9594
  return pulumi.get(self, "availability_domain")
9231
9595
 
@@ -9273,7 +9637,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9273
9637
  @pulumi.getter(name="compartmentId")
9274
9638
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
9275
9639
  """
9276
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9640
+ (Updatable) The OCID of the compartment that contains the volume.
9277
9641
  """
9278
9642
  return pulumi.get(self, "compartment_id")
9279
9643
 
@@ -9285,7 +9649,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9285
9649
  @pulumi.getter(name="definedTags")
9286
9650
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
9287
9651
  """
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"}`
9652
+ 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
9653
  """
9290
9654
  return pulumi.get(self, "defined_tags")
9291
9655
 
@@ -9297,7 +9661,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9297
9661
  @pulumi.getter(name="displayName")
9298
9662
  def display_name(self) -> Optional[pulumi.Input[str]]:
9299
9663
  """
9300
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9664
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9301
9665
  """
9302
9666
  return pulumi.get(self, "display_name")
9303
9667
 
@@ -9309,7 +9673,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9309
9673
  @pulumi.getter(name="freeformTags")
9310
9674
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
9311
9675
  """
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"}`
9676
+ 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
9677
  """
9314
9678
  return pulumi.get(self, "freeform_tags")
9315
9679
 
@@ -9367,6 +9731,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9367
9731
  def vpus_per_gb(self) -> Optional[pulumi.Input[str]]:
9368
9732
  """
9369
9733
  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.
9734
+
9735
+ Allowed values:
9370
9736
  """
9371
9737
  return pulumi.get(self, "vpus_per_gb")
9372
9738
 
@@ -9374,6 +9740,18 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9374
9740
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
9375
9741
  pulumi.set(self, "vpus_per_gb", value)
9376
9742
 
9743
+ @property
9744
+ @pulumi.getter(name="xrcKmsKeyId")
9745
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
9746
+ """
9747
+ The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
9748
+ """
9749
+ return pulumi.get(self, "xrc_kms_key_id")
9750
+
9751
+ @xrc_kms_key_id.setter
9752
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
9753
+ pulumi.set(self, "xrc_kms_key_id", value)
9754
+
9377
9755
 
9378
9756
  if not MYPY:
9379
9757
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgsDict(TypedDict):
@@ -9481,7 +9859,7 @@ if not MYPY:
9481
9859
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetailsArgsDict(TypedDict):
9482
9860
  type: pulumi.Input[str]
9483
9861
  """
9484
- The type of action to run when the instance is interrupted for eviction.
9862
+ The type can be one of these values: `volume`, `volumeBackup`
9485
9863
  """
9486
9864
  id: NotRequired[pulumi.Input[str]]
9487
9865
  """
@@ -9496,7 +9874,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
9496
9874
  type: pulumi.Input[str],
9497
9875
  id: Optional[pulumi.Input[str]] = None):
9498
9876
  """
9499
- :param pulumi.Input[str] type: The type of action to run when the instance is interrupted for eviction.
9877
+ :param pulumi.Input[str] type: The type can be one of these values: `volume`, `volumeBackup`
9500
9878
  :param pulumi.Input[str] id: The OCID of the volume backup.
9501
9879
  """
9502
9880
  pulumi.set(__self__, "type", type)
@@ -9507,7 +9885,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
9507
9885
  @pulumi.getter
9508
9886
  def type(self) -> pulumi.Input[str]:
9509
9887
  """
9510
- The type of action to run when the instance is interrupted for eviction.
9888
+ The type can be one of these values: `volume`, `volumeBackup`
9511
9889
  """
9512
9890
  return pulumi.get(self, "type")
9513
9891
 
@@ -9552,7 +9930,7 @@ if not MYPY:
9552
9930
  """
9553
9931
  compartment_id: NotRequired[pulumi.Input[str]]
9554
9932
  """
9555
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
9933
+ (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
9934
  """
9557
9935
  create_vnic_details: NotRequired[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgsDict']]
9558
9936
  """
@@ -9624,6 +10002,10 @@ if not MYPY:
9624
10002
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
9625
10003
  * `REBOOT` - Run maintenance using a reboot.
9626
10004
  """
10005
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
10006
+ """
10007
+ 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"}}}`
10008
+ """
9627
10009
  shape: NotRequired[pulumi.Input[str]]
9628
10010
  """
9629
10011
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
@@ -9661,6 +10043,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9661
10043
  platform_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs']] = None,
9662
10044
  preemptible_instance_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfigArgs']] = None,
9663
10045
  preferred_maintenance_action: Optional[pulumi.Input[str]] = None,
10046
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
9664
10047
  shape: Optional[pulumi.Input[str]] = None,
9665
10048
  shape_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs']] = None,
9666
10049
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsSourceDetailsArgs']] = None):
@@ -9670,7 +10053,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9670
10053
  :param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
9671
10054
  :param pulumi.Input[str] capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
9672
10055
  :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.
10056
+ :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
10057
  :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
10058
  :param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
9676
10059
  :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 +10076,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9693
10076
  :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
10077
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
9695
10078
  * `REBOOT` - Run maintenance using a reboot.
10079
+ :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
10080
  :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
10081
  :param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs'] shape_config: The shape configuration requested for the instance.
9698
10082
  """
@@ -9740,6 +10124,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9740
10124
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
9741
10125
  if preferred_maintenance_action is not None:
9742
10126
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
10127
+ if security_attributes is not None:
10128
+ pulumi.set(__self__, "security_attributes", security_attributes)
9743
10129
  if shape is not None:
9744
10130
  pulumi.set(__self__, "shape", shape)
9745
10131
  if shape_config is not None:
@@ -9811,7 +10197,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
9811
10197
  @pulumi.getter(name="compartmentId")
9812
10198
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
9813
10199
  """
9814
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
10200
+ (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
10201
  """
9816
10202
  return pulumi.get(self, "compartment_id")
9817
10203
 
@@ -10017,6 +10403,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
10017
10403
  def preferred_maintenance_action(self, value: Optional[pulumi.Input[str]]):
10018
10404
  pulumi.set(self, "preferred_maintenance_action", value)
10019
10405
 
10406
+ @property
10407
+ @pulumi.getter(name="securityAttributes")
10408
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
10409
+ """
10410
+ 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"}}}`
10411
+ """
10412
+ return pulumi.get(self, "security_attributes")
10413
+
10414
+ @security_attributes.setter
10415
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
10416
+ pulumi.set(self, "security_attributes", value)
10417
+
10020
10418
  @property
10021
10419
  @pulumi.getter
10022
10420
  def shape(self) -> Optional[pulumi.Input[str]]:
@@ -10056,14 +10454,28 @@ if not MYPY:
10056
10454
  are_all_plugins_disabled: NotRequired[pulumi.Input[bool]]
10057
10455
  """
10058
10456
  Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
10457
+
10458
+ 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
10459
  """
10060
10460
  is_management_disabled: NotRequired[pulumi.Input[bool]]
10061
10461
  """
10062
10462
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
10463
+
10464
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10465
+
10466
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10467
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10468
+ * 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
10469
  """
10064
10470
  is_monitoring_disabled: NotRequired[pulumi.Input[bool]]
10065
10471
  """
10066
10472
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
10473
+
10474
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10475
+
10476
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10477
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10478
+ * 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
10479
  """
10068
10480
  plugins_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgsDict']]]]
10069
10481
  """
@@ -10081,8 +10493,22 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10081
10493
  plugins_configs: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs']]]] = None):
10082
10494
  """
10083
10495
  :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.
10496
+
10497
+ 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
10498
  :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).
10499
+
10500
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10501
+
10502
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10503
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10504
+ * 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
10505
  :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).
10506
+
10507
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10508
+
10509
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10510
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10511
+ * 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
10512
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs']]] plugins_configs: The configuration of plugins associated with this instance.
10087
10513
  """
10088
10514
  if are_all_plugins_disabled is not None:
@@ -10099,6 +10525,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10099
10525
  def are_all_plugins_disabled(self) -> Optional[pulumi.Input[bool]]:
10100
10526
  """
10101
10527
  Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
10528
+
10529
+ 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
10530
  """
10103
10531
  return pulumi.get(self, "are_all_plugins_disabled")
10104
10532
 
@@ -10111,6 +10539,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10111
10539
  def is_management_disabled(self) -> Optional[pulumi.Input[bool]]:
10112
10540
  """
10113
10541
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
10542
+
10543
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
10544
+
10545
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10546
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
10547
+ * 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
10548
  """
10115
10549
  return pulumi.get(self, "is_management_disabled")
10116
10550
 
@@ -10123,6 +10557,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigArgs:
10123
10557
  def is_monitoring_disabled(self) -> Optional[pulumi.Input[bool]]:
10124
10558
  """
10125
10559
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
10560
+
10561
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
10562
+
10563
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
10564
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
10565
+ * 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
10566
  """
10127
10567
  return pulumi.get(self, "is_monitoring_disabled")
10128
10568
 
@@ -10148,6 +10588,8 @@ if not MYPY:
10148
10588
  desired_state: NotRequired[pulumi.Input[str]]
10149
10589
  """
10150
10590
  Whether the plugin should be enabled or disabled.
10591
+
10592
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10151
10593
  """
10152
10594
  name: NotRequired[pulumi.Input[str]]
10153
10595
  """
@@ -10163,6 +10605,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
10163
10605
  name: Optional[pulumi.Input[str]] = None):
10164
10606
  """
10165
10607
  :param pulumi.Input[str] desired_state: Whether the plugin should be enabled or disabled.
10608
+
10609
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10166
10610
  :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
10611
  """
10168
10612
  if desired_state is not None:
@@ -10175,6 +10619,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
10175
10619
  def desired_state(self) -> Optional[pulumi.Input[str]]:
10176
10620
  """
10177
10621
  Whether the plugin should be enabled or disabled.
10622
+
10623
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
10178
10624
  """
10179
10625
  return pulumi.get(self, "desired_state")
10180
10626
 
@@ -10256,6 +10702,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigA
10256
10702
  if not MYPY:
10257
10703
  class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgsDict(TypedDict):
10258
10704
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
10705
+ """
10706
+ 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.
10707
+ """
10259
10708
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
10260
10709
  """
10261
10710
  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 +10738,10 @@ if not MYPY:
10289
10738
  """
10290
10739
  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
10740
  """
10741
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
10742
+ """
10743
+ 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"}}}`
10744
+ """
10292
10745
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
10293
10746
  """
10294
10747
  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 +10766,11 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10313
10766
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
10314
10767
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
10315
10768
  private_ip: Optional[pulumi.Input[str]] = None,
10769
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
10316
10770
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
10317
10771
  subnet_id: Optional[pulumi.Input[str]] = None):
10318
10772
  """
10773
+ :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
10774
  :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
10775
  :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
10776
  :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 +10779,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10324
10779
  :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
10780
  :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
10781
  :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.
10782
+ :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
10783
  :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
10784
  :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
10785
  """
@@ -10347,6 +10803,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10347
10803
  pulumi.set(__self__, "nsg_ids", nsg_ids)
10348
10804
  if private_ip is not None:
10349
10805
  pulumi.set(__self__, "private_ip", private_ip)
10806
+ if security_attributes is not None:
10807
+ pulumi.set(__self__, "security_attributes", security_attributes)
10350
10808
  if skip_source_dest_check is not None:
10351
10809
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
10352
10810
  if subnet_id is not None:
@@ -10355,6 +10813,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10355
10813
  @property
10356
10814
  @pulumi.getter(name="assignIpv6ip")
10357
10815
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
10816
+ """
10817
+ 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.
10818
+ """
10358
10819
  return pulumi.get(self, "assign_ipv6ip")
10359
10820
 
10360
10821
  @assign_ipv6ip.setter
@@ -10466,6 +10927,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsAr
10466
10927
  def private_ip(self, value: Optional[pulumi.Input[str]]):
10467
10928
  pulumi.set(self, "private_ip", value)
10468
10929
 
10930
+ @property
10931
+ @pulumi.getter(name="securityAttributes")
10932
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
10933
+ """
10934
+ 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"}}}`
10935
+ """
10936
+ return pulumi.get(self, "security_attributes")
10937
+
10938
+ @security_attributes.setter
10939
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
10940
+ pulumi.set(self, "security_attributes", value)
10941
+
10469
10942
  @property
10470
10943
  @pulumi.getter(name="skipSourceDestCheck")
10471
10944
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -10781,8 +11254,6 @@ if not MYPY:
10781
11254
  percentage_of_cores_enabled: NotRequired[pulumi.Input[int]]
10782
11255
  """
10783
11256
  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
11257
  """
10787
11258
  elif False:
10788
11259
  InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -10813,8 +11284,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
10813
11284
  :param pulumi.Input[bool] is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
10814
11285
  :param pulumi.Input[str] numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
10815
11286
  :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
11287
  """
10819
11288
  pulumi.set(__self__, "type", type)
10820
11289
  if are_virtual_instructions_enabled is not None:
@@ -10963,8 +11432,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfigArgs:
10963
11432
  def percentage_of_cores_enabled(self) -> Optional[pulumi.Input[int]]:
10964
11433
  """
10965
11434
  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
11435
  """
10969
11436
  return pulumi.get(self, "percentage_of_cores_enabled")
10970
11437
 
@@ -11419,7 +11886,7 @@ if not MYPY:
11419
11886
  """
11420
11887
  display_name: NotRequired[pulumi.Input[str]]
11421
11888
  """
11422
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11889
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11423
11890
  """
11424
11891
  nic_index: NotRequired[pulumi.Input[int]]
11425
11892
  """
@@ -11436,7 +11903,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11436
11903
  nic_index: Optional[pulumi.Input[int]] = None):
11437
11904
  """
11438
11905
  :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.
11906
+ :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
11907
  :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
11908
  """
11442
11909
  if create_vnic_details is not None:
@@ -11462,7 +11929,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11462
11929
  @pulumi.getter(name="displayName")
11463
11930
  def display_name(self) -> Optional[pulumi.Input[str]]:
11464
11931
  """
11465
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11932
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11466
11933
  """
11467
11934
  return pulumi.get(self, "display_name")
11468
11935
 
@@ -11486,9 +11953,12 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs:
11486
11953
  if not MYPY:
11487
11954
  class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsArgsDict(TypedDict):
11488
11955
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
11956
+ """
11957
+ 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.
11958
+ """
11489
11959
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
11490
11960
  """
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.
11961
+ 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
11962
  """
11493
11963
  assign_public_ip: NotRequired[pulumi.Input[bool]]
11494
11964
  """
@@ -11496,15 +11966,15 @@ if not MYPY:
11496
11966
  """
11497
11967
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11498
11968
  """
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"}`
11969
+ 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
11970
  """
11501
11971
  display_name: NotRequired[pulumi.Input[str]]
11502
11972
  """
11503
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11973
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11504
11974
  """
11505
11975
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11506
11976
  """
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"}`
11977
+ 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
11978
  """
11509
11979
  hostname_label: NotRequired[pulumi.Input[str]]
11510
11980
  """
@@ -11519,6 +11989,10 @@ if not MYPY:
11519
11989
  """
11520
11990
  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
11991
  """
11992
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11993
+ """
11994
+ 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"}}}`
11995
+ """
11522
11996
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
11523
11997
  """
11524
11998
  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 +12017,20 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11543
12017
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
11544
12018
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11545
12019
  private_ip: Optional[pulumi.Input[str]] = None,
12020
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
11546
12021
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
11547
12022
  subnet_id: Optional[pulumi.Input[str]] = None):
11548
12023
  """
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.
12024
+ :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.
12025
+ :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
12026
  :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"}`
12027
+ :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"}`
12028
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12029
+ :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
12030
  :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
12031
  :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
12032
  :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.
12033
+ :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
12034
  :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
12035
  :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
12036
  """
@@ -11577,6 +12054,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11577
12054
  pulumi.set(__self__, "nsg_ids", nsg_ids)
11578
12055
  if private_ip is not None:
11579
12056
  pulumi.set(__self__, "private_ip", private_ip)
12057
+ if security_attributes is not None:
12058
+ pulumi.set(__self__, "security_attributes", security_attributes)
11580
12059
  if skip_source_dest_check is not None:
11581
12060
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
11582
12061
  if subnet_id is not None:
@@ -11585,6 +12064,9 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11585
12064
  @property
11586
12065
  @pulumi.getter(name="assignIpv6ip")
11587
12066
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
12067
+ """
12068
+ 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.
12069
+ """
11588
12070
  return pulumi.get(self, "assign_ipv6ip")
11589
12071
 
11590
12072
  @assign_ipv6ip.setter
@@ -11595,7 +12077,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11595
12077
  @pulumi.getter(name="assignPrivateDnsRecord")
11596
12078
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
11597
12079
  """
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.
12080
+ 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
12081
  """
11600
12082
  return pulumi.get(self, "assign_private_dns_record")
11601
12083
 
@@ -11619,7 +12101,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11619
12101
  @pulumi.getter(name="definedTags")
11620
12102
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11621
12103
  """
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"}`
12104
+ 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
12105
  """
11624
12106
  return pulumi.get(self, "defined_tags")
11625
12107
 
@@ -11631,7 +12113,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11631
12113
  @pulumi.getter(name="displayName")
11632
12114
  def display_name(self) -> Optional[pulumi.Input[str]]:
11633
12115
  """
11634
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12116
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11635
12117
  """
11636
12118
  return pulumi.get(self, "display_name")
11637
12119
 
@@ -11643,7 +12125,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11643
12125
  @pulumi.getter(name="freeformTags")
11644
12126
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11645
12127
  """
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"}`
12128
+ 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
12129
  """
11648
12130
  return pulumi.get(self, "freeform_tags")
11649
12131
 
@@ -11696,6 +12178,18 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsAr
11696
12178
  def private_ip(self, value: Optional[pulumi.Input[str]]):
11697
12179
  pulumi.set(self, "private_ip", value)
11698
12180
 
12181
+ @property
12182
+ @pulumi.getter(name="securityAttributes")
12183
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12184
+ """
12185
+ 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"}}}`
12186
+ """
12187
+ return pulumi.get(self, "security_attributes")
12188
+
12189
+ @security_attributes.setter
12190
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12191
+ pulumi.set(self, "security_attributes", value)
12192
+
11699
12193
  @property
11700
12194
  @pulumi.getter(name="skipSourceDestCheck")
11701
12195
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -11765,7 +12259,7 @@ if not MYPY:
11765
12259
  """
11766
12260
  display_name: NotRequired[pulumi.Input[str]]
11767
12261
  """
11768
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12262
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11769
12263
  """
11770
12264
  nic_index: NotRequired[pulumi.Input[int]]
11771
12265
  """
@@ -11782,7 +12276,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11782
12276
  nic_index: Optional[pulumi.Input[int]] = None):
11783
12277
  """
11784
12278
  :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.
12279
+ :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
12280
  :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
12281
  """
11788
12282
  if create_vnic_details is not None:
@@ -11808,7 +12302,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11808
12302
  @pulumi.getter(name="displayName")
11809
12303
  def display_name(self) -> Optional[pulumi.Input[str]]:
11810
12304
  """
11811
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12305
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11812
12306
  """
11813
12307
  return pulumi.get(self, "display_name")
11814
12308
 
@@ -11832,9 +12326,12 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicArgs:
11832
12326
  if not MYPY:
11833
12327
  class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgsDict(TypedDict):
11834
12328
  assign_ipv6ip: NotRequired[pulumi.Input[bool]]
12329
+ """
12330
+ 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.
12331
+ """
11835
12332
  assign_private_dns_record: NotRequired[pulumi.Input[bool]]
11836
12333
  """
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.
12334
+ 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
12335
  """
11839
12336
  assign_public_ip: NotRequired[pulumi.Input[bool]]
11840
12337
  """
@@ -11842,15 +12339,15 @@ if not MYPY:
11842
12339
  """
11843
12340
  defined_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11844
12341
  """
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"}`
12342
+ 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
12343
  """
11847
12344
  display_name: NotRequired[pulumi.Input[str]]
11848
12345
  """
11849
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12346
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11850
12347
  """
11851
12348
  freeform_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
11852
12349
  """
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"}`
12350
+ 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
12351
  """
11855
12352
  hostname_label: NotRequired[pulumi.Input[str]]
11856
12353
  """
@@ -11865,6 +12362,10 @@ if not MYPY:
11865
12362
  """
11866
12363
  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
12364
  """
12365
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
12366
+ """
12367
+ 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"}}}`
12368
+ """
11868
12369
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
11869
12370
  """
11870
12371
  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 +12390,20 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11889
12390
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
11890
12391
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
11891
12392
  private_ip: Optional[pulumi.Input[str]] = None,
12393
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
11892
12394
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
11893
12395
  subnet_id: Optional[pulumi.Input[str]] = None):
11894
12396
  """
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.
12397
+ :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.
12398
+ :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
12399
  :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"}`
12400
+ :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"}`
12401
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12402
+ :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
12403
  :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
12404
  :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
12405
  :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.
12406
+ :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
12407
  :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
12408
  :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
12409
  """
@@ -11923,6 +12427,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11923
12427
  pulumi.set(__self__, "nsg_ids", nsg_ids)
11924
12428
  if private_ip is not None:
11925
12429
  pulumi.set(__self__, "private_ip", private_ip)
12430
+ if security_attributes is not None:
12431
+ pulumi.set(__self__, "security_attributes", security_attributes)
11926
12432
  if skip_source_dest_check is not None:
11927
12433
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
11928
12434
  if subnet_id is not None:
@@ -11931,6 +12437,9 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11931
12437
  @property
11932
12438
  @pulumi.getter(name="assignIpv6ip")
11933
12439
  def assign_ipv6ip(self) -> Optional[pulumi.Input[bool]]:
12440
+ """
12441
+ 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.
12442
+ """
11934
12443
  return pulumi.get(self, "assign_ipv6ip")
11935
12444
 
11936
12445
  @assign_ipv6ip.setter
@@ -11941,7 +12450,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11941
12450
  @pulumi.getter(name="assignPrivateDnsRecord")
11942
12451
  def assign_private_dns_record(self) -> Optional[pulumi.Input[bool]]:
11943
12452
  """
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.
12453
+ 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
12454
  """
11946
12455
  return pulumi.get(self, "assign_private_dns_record")
11947
12456
 
@@ -11965,7 +12474,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11965
12474
  @pulumi.getter(name="definedTags")
11966
12475
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11967
12476
  """
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"}`
12477
+ 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
12478
  """
11970
12479
  return pulumi.get(self, "defined_tags")
11971
12480
 
@@ -11977,7 +12486,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11977
12486
  @pulumi.getter(name="displayName")
11978
12487
  def display_name(self) -> Optional[pulumi.Input[str]]:
11979
12488
  """
11980
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
12489
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
11981
12490
  """
11982
12491
  return pulumi.get(self, "display_name")
11983
12492
 
@@ -11989,7 +12498,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
11989
12498
  @pulumi.getter(name="freeformTags")
11990
12499
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
11991
12500
  """
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"}`
12501
+ 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
12502
  """
11994
12503
  return pulumi.get(self, "freeform_tags")
11995
12504
 
@@ -12042,6 +12551,18 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs:
12042
12551
  def private_ip(self, value: Optional[pulumi.Input[str]]):
12043
12552
  pulumi.set(self, "private_ip", value)
12044
12553
 
12554
+ @property
12555
+ @pulumi.getter(name="securityAttributes")
12556
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12557
+ """
12558
+ 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"}}}`
12559
+ """
12560
+ return pulumi.get(self, "security_attributes")
12561
+
12562
+ @security_attributes.setter
12563
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12564
+ pulumi.set(self, "security_attributes", value)
12565
+
12045
12566
  @property
12046
12567
  @pulumi.getter(name="skipSourceDestCheck")
12047
12568
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -12168,6 +12689,10 @@ if not MYPY:
12168
12689
 
12169
12690
  Example: `10.0.3.3`
12170
12691
  """
12692
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
12693
+ """
12694
+ 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"}}}`
12695
+ """
12171
12696
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
12172
12697
  """
12173
12698
  (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 +12729,7 @@ class InstanceCreateVnicDetailsArgs:
12204
12729
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
12205
12730
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12206
12731
  private_ip: Optional[pulumi.Input[str]] = None,
12732
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
12207
12733
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
12208
12734
  subnet_id: Optional[pulumi.Input[str]] = None,
12209
12735
  vlan_id: Optional[pulumi.Input[str]] = None):
@@ -12241,6 +12767,7 @@ class InstanceCreateVnicDetailsArgs:
12241
12767
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
12242
12768
 
12243
12769
  Example: `10.0.3.3`
12770
+ :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
12771
  :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
12772
 
12246
12773
  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 +12800,8 @@ class InstanceCreateVnicDetailsArgs:
12273
12800
  pulumi.set(__self__, "nsg_ids", nsg_ids)
12274
12801
  if private_ip is not None:
12275
12802
  pulumi.set(__self__, "private_ip", private_ip)
12803
+ if security_attributes is not None:
12804
+ pulumi.set(__self__, "security_attributes", security_attributes)
12276
12805
  if skip_source_dest_check is not None:
12277
12806
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
12278
12807
  if subnet_id is not None:
@@ -12423,6 +12952,18 @@ class InstanceCreateVnicDetailsArgs:
12423
12952
  def private_ip(self, value: Optional[pulumi.Input[str]]):
12424
12953
  pulumi.set(self, "private_ip", value)
12425
12954
 
12955
+ @property
12956
+ @pulumi.getter(name="securityAttributes")
12957
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
12958
+ """
12959
+ 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"}}}`
12960
+ """
12961
+ return pulumi.get(self, "security_attributes")
12962
+
12963
+ @security_attributes.setter
12964
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
12965
+ pulumi.set(self, "security_attributes", value)
12966
+
12426
12967
  @property
12427
12968
  @pulumi.getter(name="skipSourceDestCheck")
12428
12969
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -12735,6 +13276,10 @@ if not MYPY:
12735
13276
  """
12736
13277
  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
13278
  """
13279
+ is_pv_encryption_in_transit_enabled: NotRequired[pulumi.Input[bool]]
13280
+ """
13281
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
13282
+ """
12738
13283
  is_read_only: NotRequired[pulumi.Input[bool]]
12739
13284
  """
12740
13285
  Whether the attachment was created in read-only mode.
@@ -12766,6 +13311,7 @@ class InstanceLaunchVolumeAttachmentArgs:
12766
13311
  display_name: Optional[pulumi.Input[str]] = None,
12767
13312
  encryption_in_transit_type: Optional[pulumi.Input[str]] = None,
12768
13313
  is_agent_auto_iscsi_login_enabled: Optional[pulumi.Input[bool]] = None,
13314
+ is_pv_encryption_in_transit_enabled: Optional[pulumi.Input[bool]] = None,
12769
13315
  is_read_only: Optional[pulumi.Input[bool]] = None,
12770
13316
  is_shareable: Optional[pulumi.Input[bool]] = None,
12771
13317
  launch_create_volume_details: Optional[pulumi.Input['InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs']] = None,
@@ -12777,6 +13323,7 @@ class InstanceLaunchVolumeAttachmentArgs:
12777
13323
  :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
13324
  :param pulumi.Input[str] encryption_in_transit_type: Refer the top-level definition of encryptionInTransitType. The default value is NONE.
12779
13325
  :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.
13326
+ :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
13327
  :param pulumi.Input[bool] is_read_only: Whether the attachment was created in read-only mode.
12781
13328
  :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
13329
  :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 +13339,8 @@ class InstanceLaunchVolumeAttachmentArgs:
12792
13339
  pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
12793
13340
  if is_agent_auto_iscsi_login_enabled is not None:
12794
13341
  pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
13342
+ if is_pv_encryption_in_transit_enabled is not None:
13343
+ pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
12795
13344
  if is_read_only is not None:
12796
13345
  pulumi.set(__self__, "is_read_only", is_read_only)
12797
13346
  if is_shareable is not None:
@@ -12863,6 +13412,18 @@ class InstanceLaunchVolumeAttachmentArgs:
12863
13412
  def is_agent_auto_iscsi_login_enabled(self, value: Optional[pulumi.Input[bool]]):
12864
13413
  pulumi.set(self, "is_agent_auto_iscsi_login_enabled", value)
12865
13414
 
13415
+ @property
13416
+ @pulumi.getter(name="isPvEncryptionInTransitEnabled")
13417
+ def is_pv_encryption_in_transit_enabled(self) -> Optional[pulumi.Input[bool]]:
13418
+ """
13419
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
13420
+ """
13421
+ return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
13422
+
13423
+ @is_pv_encryption_in_transit_enabled.setter
13424
+ def is_pv_encryption_in_transit_enabled(self, value: Optional[pulumi.Input[bool]]):
13425
+ pulumi.set(self, "is_pv_encryption_in_transit_enabled", value)
13426
+
12866
13427
  @property
12867
13428
  @pulumi.getter(name="isReadOnly")
12868
13429
  def is_read_only(self) -> Optional[pulumi.Input[bool]]:
@@ -14355,7 +14916,7 @@ if not MYPY:
14355
14916
  """
14356
14917
  source_id: NotRequired[pulumi.Input[str]]
14357
14918
  """
14358
- (Updatable) The OCID of the boot volume used to boot the instance.
14919
+ (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
14920
  """
14360
14921
  elif False:
14361
14922
  InstanceSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -14379,7 +14940,7 @@ class InstanceSourceDetailsArgs:
14379
14940
  :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
14941
  :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
14942
  :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.
14943
+ :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
14944
  """
14384
14945
  pulumi.set(__self__, "source_type", source_type)
14385
14946
  if boot_volume_size_in_gbs is not None:
@@ -14473,7 +15034,7 @@ class InstanceSourceDetailsArgs:
14473
15034
  @pulumi.getter(name="sourceId")
14474
15035
  def source_id(self) -> Optional[pulumi.Input[str]]:
14475
15036
  """
14476
- (Updatable) The OCID of the boot volume used to boot the instance.
15037
+ (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
15038
  """
14478
15039
  return pulumi.get(self, "source_id")
14479
15040
 
@@ -15492,6 +16053,55 @@ class IpsecConnectionTunnelManagementPhaseTwoDetailsArgs:
15492
16053
  pulumi.set(self, "remaining_lifetime_last_retrieved", value)
15493
16054
 
15494
16055
 
16056
+ if not MYPY:
16057
+ class IpsecTunnelConfigurationArgsDict(TypedDict):
16058
+ associated_virtual_circuits: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
16059
+ drg_route_table_id: NotRequired[pulumi.Input[str]]
16060
+ oracle_tunnel_ip: NotRequired[pulumi.Input[str]]
16061
+ elif False:
16062
+ IpsecTunnelConfigurationArgsDict: TypeAlias = Mapping[str, Any]
16063
+
16064
+ @pulumi.input_type
16065
+ class IpsecTunnelConfigurationArgs:
16066
+ def __init__(__self__, *,
16067
+ associated_virtual_circuits: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16068
+ drg_route_table_id: Optional[pulumi.Input[str]] = None,
16069
+ oracle_tunnel_ip: Optional[pulumi.Input[str]] = None):
16070
+ if associated_virtual_circuits is not None:
16071
+ pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
16072
+ if drg_route_table_id is not None:
16073
+ pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
16074
+ if oracle_tunnel_ip is not None:
16075
+ pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
16076
+
16077
+ @property
16078
+ @pulumi.getter(name="associatedVirtualCircuits")
16079
+ def associated_virtual_circuits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16080
+ return pulumi.get(self, "associated_virtual_circuits")
16081
+
16082
+ @associated_virtual_circuits.setter
16083
+ def associated_virtual_circuits(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16084
+ pulumi.set(self, "associated_virtual_circuits", value)
16085
+
16086
+ @property
16087
+ @pulumi.getter(name="drgRouteTableId")
16088
+ def drg_route_table_id(self) -> Optional[pulumi.Input[str]]:
16089
+ return pulumi.get(self, "drg_route_table_id")
16090
+
16091
+ @drg_route_table_id.setter
16092
+ def drg_route_table_id(self, value: Optional[pulumi.Input[str]]):
16093
+ pulumi.set(self, "drg_route_table_id", value)
16094
+
16095
+ @property
16096
+ @pulumi.getter(name="oracleTunnelIp")
16097
+ def oracle_tunnel_ip(self) -> Optional[pulumi.Input[str]]:
16098
+ return pulumi.get(self, "oracle_tunnel_ip")
16099
+
16100
+ @oracle_tunnel_ip.setter
16101
+ def oracle_tunnel_ip(self, value: Optional[pulumi.Input[str]]):
16102
+ pulumi.set(self, "oracle_tunnel_ip", value)
16103
+
16104
+
15495
16105
  if not MYPY:
15496
16106
  class NetworkSecurityGroupSecurityRuleIcmpOptionsArgsDict(TypedDict):
15497
16107
  type: pulumi.Input[int]
@@ -17426,6 +18036,10 @@ if not MYPY:
17426
18036
 
17427
18037
  Example: `10.0.3.3`
17428
18038
  """
18039
+ security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
18040
+ """
18041
+ 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"}`
18042
+ """
17429
18043
  skip_source_dest_check: NotRequired[pulumi.Input[bool]]
17430
18044
  """
17431
18045
  (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 +18076,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
17462
18076
  ipv6address_ipv6subnet_cidr_pair_details: Optional[pulumi.Input[Sequence[pulumi.Input['VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs']]]] = None,
17463
18077
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
17464
18078
  private_ip: Optional[pulumi.Input[str]] = None,
18079
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
17465
18080
  skip_source_dest_check: Optional[pulumi.Input[bool]] = None,
17466
18081
  subnet_id: Optional[pulumi.Input[str]] = None,
17467
18082
  vlan_id: Optional[pulumi.Input[str]] = None):
@@ -17500,6 +18115,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
17500
18115
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
17501
18116
 
17502
18117
  Example: `10.0.3.3`
18118
+ :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
18119
  :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
18120
 
17505
18121
  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 +18148,8 @@ class VnicAttachmentCreateVnicDetailsArgs:
17532
18148
  pulumi.set(__self__, "nsg_ids", nsg_ids)
17533
18149
  if private_ip is not None:
17534
18150
  pulumi.set(__self__, "private_ip", private_ip)
18151
+ if security_attributes is not None:
18152
+ pulumi.set(__self__, "security_attributes", security_attributes)
17535
18153
  if skip_source_dest_check is not None:
17536
18154
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
17537
18155
  if subnet_id is not None:
@@ -17683,6 +18301,18 @@ class VnicAttachmentCreateVnicDetailsArgs:
17683
18301
  def private_ip(self, value: Optional[pulumi.Input[str]]):
17684
18302
  pulumi.set(self, "private_ip", value)
17685
18303
 
18304
+ @property
18305
+ @pulumi.getter(name="securityAttributes")
18306
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
18307
+ """
18308
+ 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"}`
18309
+ """
18310
+ return pulumi.get(self, "security_attributes")
18311
+
18312
+ @security_attributes.setter
18313
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
18314
+ pulumi.set(self, "security_attributes", value)
18315
+
17686
18316
  @property
17687
18317
  @pulumi.getter(name="skipSourceDestCheck")
17688
18318
  def skip_source_dest_check(self) -> Optional[pulumi.Input[bool]]:
@@ -18255,6 +18885,14 @@ if not MYPY:
18255
18885
  """
18256
18886
  (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
18257
18887
  """
18888
+ kms_key_id: NotRequired[pulumi.Input[str]]
18889
+ """
18890
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
18891
+ """
18892
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
18893
+ """
18894
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
18895
+ """
18258
18896
  elif False:
18259
18897
  VolumeBlockVolumeReplicaArgsDict: TypeAlias = Mapping[str, Any]
18260
18898
 
@@ -18263,17 +18901,25 @@ class VolumeBlockVolumeReplicaArgs:
18263
18901
  def __init__(__self__, *,
18264
18902
  availability_domain: pulumi.Input[str],
18265
18903
  block_volume_replica_id: Optional[pulumi.Input[str]] = None,
18266
- display_name: Optional[pulumi.Input[str]] = None):
18904
+ display_name: Optional[pulumi.Input[str]] = None,
18905
+ kms_key_id: Optional[pulumi.Input[str]] = None,
18906
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
18267
18907
  """
18268
18908
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
18269
18909
  :param pulumi.Input[str] block_volume_replica_id: The block volume replica's Oracle ID (OCID).
18270
18910
  :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.
18911
+ :param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
18912
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
18271
18913
  """
18272
18914
  pulumi.set(__self__, "availability_domain", availability_domain)
18273
18915
  if block_volume_replica_id is not None:
18274
18916
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
18275
18917
  if display_name is not None:
18276
18918
  pulumi.set(__self__, "display_name", display_name)
18919
+ if kms_key_id is not None:
18920
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
18921
+ if xrr_kms_key_id is not None:
18922
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
18277
18923
 
18278
18924
  @property
18279
18925
  @pulumi.getter(name="availabilityDomain")
@@ -18311,6 +18957,30 @@ class VolumeBlockVolumeReplicaArgs:
18311
18957
  def display_name(self, value: Optional[pulumi.Input[str]]):
18312
18958
  pulumi.set(self, "display_name", value)
18313
18959
 
18960
+ @property
18961
+ @pulumi.getter(name="kmsKeyId")
18962
+ def kms_key_id(self) -> Optional[pulumi.Input[str]]:
18963
+ """
18964
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
18965
+ """
18966
+ return pulumi.get(self, "kms_key_id")
18967
+
18968
+ @kms_key_id.setter
18969
+ def kms_key_id(self, value: Optional[pulumi.Input[str]]):
18970
+ pulumi.set(self, "kms_key_id", value)
18971
+
18972
+ @property
18973
+ @pulumi.getter(name="xrrKmsKeyId")
18974
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
18975
+ """
18976
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
18977
+ """
18978
+ return pulumi.get(self, "xrr_kms_key_id")
18979
+
18980
+ @xrr_kms_key_id.setter
18981
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
18982
+ pulumi.set(self, "xrr_kms_key_id", value)
18983
+
18314
18984
 
18315
18985
  if not MYPY:
18316
18986
  class VolumeGroupBackupSourceDetailsArgsDict(TypedDict):
@@ -18522,6 +19192,10 @@ if not MYPY:
18522
19192
  """
18523
19193
  The volume group replica's Oracle ID (OCID).
18524
19194
  """
19195
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
19196
+ """
19197
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
19198
+ """
18525
19199
  elif False:
18526
19200
  VolumeGroupVolumeGroupReplicaArgsDict: TypeAlias = Mapping[str, Any]
18527
19201
 
@@ -18530,17 +19204,21 @@ class VolumeGroupVolumeGroupReplicaArgs:
18530
19204
  def __init__(__self__, *,
18531
19205
  availability_domain: pulumi.Input[str],
18532
19206
  display_name: Optional[pulumi.Input[str]] = None,
18533
- volume_group_replica_id: Optional[pulumi.Input[str]] = None):
19207
+ volume_group_replica_id: Optional[pulumi.Input[str]] = None,
19208
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
18534
19209
  """
18535
19210
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
18536
19211
  :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.
18537
19212
  :param pulumi.Input[str] volume_group_replica_id: The volume group replica's Oracle ID (OCID).
19213
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
18538
19214
  """
18539
19215
  pulumi.set(__self__, "availability_domain", availability_domain)
18540
19216
  if display_name is not None:
18541
19217
  pulumi.set(__self__, "display_name", display_name)
18542
19218
  if volume_group_replica_id is not None:
18543
19219
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
19220
+ if xrr_kms_key_id is not None:
19221
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
18544
19222
 
18545
19223
  @property
18546
19224
  @pulumi.getter(name="availabilityDomain")
@@ -18578,16 +19256,40 @@ class VolumeGroupVolumeGroupReplicaArgs:
18578
19256
  def volume_group_replica_id(self, value: Optional[pulumi.Input[str]]):
18579
19257
  pulumi.set(self, "volume_group_replica_id", value)
18580
19258
 
19259
+ @property
19260
+ @pulumi.getter(name="xrrKmsKeyId")
19261
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
19262
+ """
19263
+ (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
19264
+ """
19265
+ return pulumi.get(self, "xrr_kms_key_id")
19266
+
19267
+ @xrr_kms_key_id.setter
19268
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
19269
+ pulumi.set(self, "xrr_kms_key_id", value)
19270
+
18581
19271
 
18582
19272
  if not MYPY:
18583
19273
  class VolumeSourceDetailsArgsDict(TypedDict):
18584
- id: pulumi.Input[str]
19274
+ type: pulumi.Input[str]
19275
+ """
19276
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19277
+ """
19278
+ change_block_size_in_bytes: NotRequired[pulumi.Input[str]]
19279
+ """
19280
+ Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
19281
+ """
19282
+ first_backup_id: NotRequired[pulumi.Input[str]]
19283
+ """
19284
+ The OCID of the first volume backup.
19285
+ """
19286
+ id: NotRequired[pulumi.Input[str]]
18585
19287
  """
18586
19288
  The OCID of the block volume replica.
18587
19289
  """
18588
- type: pulumi.Input[str]
19290
+ second_backup_id: NotRequired[pulumi.Input[str]]
18589
19291
  """
18590
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19292
+ The OCID of the second volume backup.
18591
19293
  """
18592
19294
  elif False:
18593
19295
  VolumeSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -18595,38 +19297,87 @@ elif False:
18595
19297
  @pulumi.input_type
18596
19298
  class VolumeSourceDetailsArgs:
18597
19299
  def __init__(__self__, *,
18598
- id: pulumi.Input[str],
18599
- type: pulumi.Input[str]):
19300
+ type: pulumi.Input[str],
19301
+ change_block_size_in_bytes: Optional[pulumi.Input[str]] = None,
19302
+ first_backup_id: Optional[pulumi.Input[str]] = None,
19303
+ id: Optional[pulumi.Input[str]] = None,
19304
+ second_backup_id: Optional[pulumi.Input[str]] = None):
18600
19305
  """
19306
+ :param pulumi.Input[str] type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19307
+ :param pulumi.Input[str] change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
19308
+ :param pulumi.Input[str] first_backup_id: The OCID of the first volume backup.
18601
19309
  :param pulumi.Input[str] id: The OCID of the block volume replica.
18602
- :param pulumi.Input[str] type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19310
+ :param pulumi.Input[str] second_backup_id: The OCID of the second volume backup.
18603
19311
  """
18604
- pulumi.set(__self__, "id", id)
18605
19312
  pulumi.set(__self__, "type", type)
19313
+ if change_block_size_in_bytes is not None:
19314
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
19315
+ if first_backup_id is not None:
19316
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
19317
+ if id is not None:
19318
+ pulumi.set(__self__, "id", id)
19319
+ if second_backup_id is not None:
19320
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
18606
19321
 
18607
19322
  @property
18608
19323
  @pulumi.getter
18609
- def id(self) -> pulumi.Input[str]:
19324
+ def type(self) -> pulumi.Input[str]:
19325
+ """
19326
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19327
+ """
19328
+ return pulumi.get(self, "type")
19329
+
19330
+ @type.setter
19331
+ def type(self, value: pulumi.Input[str]):
19332
+ pulumi.set(self, "type", value)
19333
+
19334
+ @property
19335
+ @pulumi.getter(name="changeBlockSizeInBytes")
19336
+ def change_block_size_in_bytes(self) -> Optional[pulumi.Input[str]]:
19337
+ """
19338
+ Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
19339
+ """
19340
+ return pulumi.get(self, "change_block_size_in_bytes")
19341
+
19342
+ @change_block_size_in_bytes.setter
19343
+ def change_block_size_in_bytes(self, value: Optional[pulumi.Input[str]]):
19344
+ pulumi.set(self, "change_block_size_in_bytes", value)
19345
+
19346
+ @property
19347
+ @pulumi.getter(name="firstBackupId")
19348
+ def first_backup_id(self) -> Optional[pulumi.Input[str]]:
19349
+ """
19350
+ The OCID of the first volume backup.
19351
+ """
19352
+ return pulumi.get(self, "first_backup_id")
19353
+
19354
+ @first_backup_id.setter
19355
+ def first_backup_id(self, value: Optional[pulumi.Input[str]]):
19356
+ pulumi.set(self, "first_backup_id", value)
19357
+
19358
+ @property
19359
+ @pulumi.getter
19360
+ def id(self) -> Optional[pulumi.Input[str]]:
18610
19361
  """
18611
19362
  The OCID of the block volume replica.
18612
19363
  """
18613
19364
  return pulumi.get(self, "id")
18614
19365
 
18615
19366
  @id.setter
18616
- def id(self, value: pulumi.Input[str]):
19367
+ def id(self, value: Optional[pulumi.Input[str]]):
18617
19368
  pulumi.set(self, "id", value)
18618
19369
 
18619
19370
  @property
18620
- @pulumi.getter
18621
- def type(self) -> pulumi.Input[str]:
19371
+ @pulumi.getter(name="secondBackupId")
19372
+ def second_backup_id(self) -> Optional[pulumi.Input[str]]:
18622
19373
  """
18623
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19374
+ The OCID of the second volume backup.
18624
19375
  """
18625
- return pulumi.get(self, "type")
19376
+ return pulumi.get(self, "second_backup_id")
18626
19377
 
18627
- @type.setter
18628
- def type(self, value: pulumi.Input[str]):
18629
- pulumi.set(self, "type", value)
19378
+ @second_backup_id.setter
19379
+ def second_backup_id(self, value: Optional[pulumi.Input[str]]):
19380
+ pulumi.set(self, "second_backup_id", value)
18630
19381
 
18631
19382
 
18632
19383
  if not MYPY: