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
@@ -157,6 +157,7 @@ __all__ = [
157
157
  'IpsecConnectionTunnelManagementEncryptionDomainConfig',
158
158
  'IpsecConnectionTunnelManagementPhaseOneDetails',
159
159
  'IpsecConnectionTunnelManagementPhaseTwoDetails',
160
+ 'IpsecTunnelConfiguration',
160
161
  'NetworkSecurityGroupSecurityRuleIcmpOptions',
161
162
  'NetworkSecurityGroupSecurityRuleTcpOptions',
162
163
  'NetworkSecurityGroupSecurityRuleTcpOptionsDestinationPortRange',
@@ -576,6 +577,7 @@ __all__ = [
576
577
  'GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseOneDetailResult',
577
578
  'GetIpsecConnectionTunnelsIpSecConnectionTunnelPhaseTwoDetailResult',
578
579
  'GetIpsecConnectionsConnectionResult',
580
+ 'GetIpsecConnectionsConnectionTunnelConfigurationResult',
579
581
  'GetIpsecConnectionsFilterResult',
580
582
  'GetIpsecStatusFilterResult',
581
583
  'GetIpsecStatusTunnelResult',
@@ -848,6 +850,10 @@ class BootVolumeBootVolumeReplica(dict):
848
850
  suggest = "boot_volume_replica_id"
849
851
  elif key == "displayName":
850
852
  suggest = "display_name"
853
+ elif key == "kmsKeyId":
854
+ suggest = "kms_key_id"
855
+ elif key == "xrrKmsKeyId":
856
+ suggest = "xrr_kms_key_id"
851
857
 
852
858
  if suggest:
853
859
  pulumi.log.warn(f"Key '{key}' not found in BootVolumeBootVolumeReplica. Access the value via the '{suggest}' property getter instead.")
@@ -863,17 +869,25 @@ class BootVolumeBootVolumeReplica(dict):
863
869
  def __init__(__self__, *,
864
870
  availability_domain: str,
865
871
  boot_volume_replica_id: Optional[str] = None,
866
- display_name: Optional[str] = None):
872
+ display_name: Optional[str] = None,
873
+ kms_key_id: Optional[str] = None,
874
+ xrr_kms_key_id: Optional[str] = None):
867
875
  """
868
876
  :param str availability_domain: (Updatable) The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
869
877
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
870
878
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
879
+ :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
880
+ :param 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).
871
881
  """
872
882
  pulumi.set(__self__, "availability_domain", availability_domain)
873
883
  if boot_volume_replica_id is not None:
874
884
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
875
885
  if display_name is not None:
876
886
  pulumi.set(__self__, "display_name", display_name)
887
+ if kms_key_id is not None:
888
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
889
+ if xrr_kms_key_id is not None:
890
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
877
891
 
878
892
  @property
879
893
  @pulumi.getter(name="availabilityDomain")
@@ -899,34 +913,108 @@ class BootVolumeBootVolumeReplica(dict):
899
913
  """
900
914
  return pulumi.get(self, "display_name")
901
915
 
916
+ @property
917
+ @pulumi.getter(name="kmsKeyId")
918
+ def kms_key_id(self) -> Optional[str]:
919
+ """
920
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
921
+ """
922
+ return pulumi.get(self, "kms_key_id")
923
+
924
+ @property
925
+ @pulumi.getter(name="xrrKmsKeyId")
926
+ def xrr_kms_key_id(self) -> Optional[str]:
927
+ """
928
+ (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).
929
+ """
930
+ return pulumi.get(self, "xrr_kms_key_id")
931
+
902
932
 
903
933
  @pulumi.output_type
904
934
  class BootVolumeSourceDetails(dict):
935
+ @staticmethod
936
+ def __key_warning(key: str):
937
+ suggest = None
938
+ if key == "changeBlockSizeInBytes":
939
+ suggest = "change_block_size_in_bytes"
940
+ elif key == "firstBackupId":
941
+ suggest = "first_backup_id"
942
+ elif key == "secondBackupId":
943
+ suggest = "second_backup_id"
944
+
945
+ if suggest:
946
+ pulumi.log.warn(f"Key '{key}' not found in BootVolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
947
+
948
+ def __getitem__(self, key: str) -> Any:
949
+ BootVolumeSourceDetails.__key_warning(key)
950
+ return super().__getitem__(key)
951
+
952
+ def get(self, key: str, default = None) -> Any:
953
+ BootVolumeSourceDetails.__key_warning(key)
954
+ return super().get(key, default)
955
+
905
956
  def __init__(__self__, *,
906
- id: str,
907
- type: str):
957
+ type: str,
958
+ change_block_size_in_bytes: Optional[str] = None,
959
+ first_backup_id: Optional[str] = None,
960
+ id: Optional[str] = None,
961
+ second_backup_id: Optional[str] = None):
908
962
  """
963
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
964
+ :param 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).
965
+ :param str first_backup_id: The OCID of the first boot volume backup.
909
966
  :param str id: The OCID of the boot volume replica.
910
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
967
+ :param str second_backup_id: The OCID of the second boot volume backup.
911
968
  """
912
- pulumi.set(__self__, "id", id)
913
969
  pulumi.set(__self__, "type", type)
970
+ if change_block_size_in_bytes is not None:
971
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
972
+ if first_backup_id is not None:
973
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
974
+ if id is not None:
975
+ pulumi.set(__self__, "id", id)
976
+ if second_backup_id is not None:
977
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
914
978
 
915
979
  @property
916
980
  @pulumi.getter
917
- def id(self) -> str:
981
+ def type(self) -> str:
982
+ """
983
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
984
+ """
985
+ return pulumi.get(self, "type")
986
+
987
+ @property
988
+ @pulumi.getter(name="changeBlockSizeInBytes")
989
+ def change_block_size_in_bytes(self) -> Optional[str]:
990
+ """
991
+ 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).
992
+ """
993
+ return pulumi.get(self, "change_block_size_in_bytes")
994
+
995
+ @property
996
+ @pulumi.getter(name="firstBackupId")
997
+ def first_backup_id(self) -> Optional[str]:
998
+ """
999
+ The OCID of the first boot volume backup.
1000
+ """
1001
+ return pulumi.get(self, "first_backup_id")
1002
+
1003
+ @property
1004
+ @pulumi.getter
1005
+ def id(self) -> Optional[str]:
918
1006
  """
919
1007
  The OCID of the boot volume replica.
920
1008
  """
921
1009
  return pulumi.get(self, "id")
922
1010
 
923
1011
  @property
924
- @pulumi.getter
925
- def type(self) -> str:
1012
+ @pulumi.getter(name="secondBackupId")
1013
+ def second_backup_id(self) -> Optional[str]:
926
1014
  """
927
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
1015
+ The OCID of the second boot volume backup.
928
1016
  """
929
- return pulumi.get(self, "type")
1017
+ return pulumi.get(self, "second_backup_id")
930
1018
 
931
1019
 
932
1020
  @pulumi.output_type
@@ -5137,7 +5225,6 @@ class InstanceConfigurationInstanceDetails(dict):
5137
5225
  :param str instance_type: The type of instance details. Supported instanceType is compute
5138
5226
  :param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeArgs'] block_volumes: Block volume parameters.
5139
5227
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsArgs' launch_details: Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
5140
-
5141
5228
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
5142
5229
  :param Sequence['InstanceConfigurationInstanceDetailsOptionArgs'] options: Multiple Compute Instance Configuration instance details.
5143
5230
  :param Sequence['InstanceConfigurationInstanceDetailsSecondaryVnicArgs'] secondary_vnics: Secondary VNIC parameters.
@@ -5173,7 +5260,6 @@ class InstanceConfigurationInstanceDetails(dict):
5173
5260
  def launch_details(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetails']:
5174
5261
  """
5175
5262
  Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
5176
-
5177
5263
  See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
5178
5264
  """
5179
5265
  return pulumi.get(self, "launch_details")
@@ -5295,7 +5381,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetails(dict):
5295
5381
  is_shareable: Optional[bool] = None,
5296
5382
  use_chap: Optional[bool] = None):
5297
5383
  """
5298
- :param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
5384
+ :param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized"
5299
5385
  :param str device: The device name.
5300
5386
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5301
5387
  :param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
@@ -5321,7 +5407,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeAttachDetails(dict):
5321
5407
  @pulumi.getter
5322
5408
  def type(self) -> str:
5323
5409
  """
5324
- The type of volume. The only supported values are "iscsi" and "paravirtualized".
5410
+ The type of volume. The only supported values are "iscsi" and "paravirtualized"
5325
5411
  """
5326
5412
  return pulumi.get(self, "type")
5327
5413
 
@@ -5407,6 +5493,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5407
5493
  suggest = "source_details"
5408
5494
  elif key == "vpusPerGb":
5409
5495
  suggest = "vpus_per_gb"
5496
+ elif key == "xrcKmsKeyId":
5497
+ suggest = "xrc_kms_key_id"
5410
5498
 
5411
5499
  if suggest:
5412
5500
  pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
@@ -5433,7 +5521,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5433
5521
  kms_key_id: Optional[str] = None,
5434
5522
  size_in_gbs: Optional[str] = None,
5435
5523
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsSourceDetails'] = None,
5436
- vpus_per_gb: Optional[str] = None):
5524
+ vpus_per_gb: Optional[str] = None,
5525
+ xrc_kms_key_id: Optional[str] = None):
5437
5526
  """
5438
5527
  :param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
5439
5528
  :param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -5450,6 +5539,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5450
5539
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
5451
5540
 
5452
5541
  Allowed values:
5542
+ :param 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).
5453
5543
  """
5454
5544
  if autotune_policies is not None:
5455
5545
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -5479,6 +5569,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5479
5569
  pulumi.set(__self__, "source_details", source_details)
5480
5570
  if vpus_per_gb is not None:
5481
5571
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
5572
+ if xrc_kms_key_id is not None:
5573
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
5482
5574
 
5483
5575
  @property
5484
5576
  @pulumi.getter(name="autotunePolicies")
@@ -5591,6 +5683,14 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5591
5683
  """
5592
5684
  return pulumi.get(self, "vpus_per_gb")
5593
5685
 
5686
+ @property
5687
+ @pulumi.getter(name="xrcKmsKeyId")
5688
+ def xrc_kms_key_id(self) -> Optional[str]:
5689
+ """
5690
+ 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).
5691
+ """
5692
+ return pulumi.get(self, "xrc_kms_key_id")
5693
+
5594
5694
 
5595
5695
  @pulumi.output_type
5596
5696
  class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicy(dict):
@@ -5767,6 +5867,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5767
5867
  suggest = "preemptible_instance_config"
5768
5868
  elif key == "preferredMaintenanceAction":
5769
5869
  suggest = "preferred_maintenance_action"
5870
+ elif key == "securityAttributes":
5871
+ suggest = "security_attributes"
5770
5872
  elif key == "shapeConfig":
5771
5873
  suggest = "shape_config"
5772
5874
  elif key == "sourceDetails":
@@ -5806,6 +5908,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5806
5908
  platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig'] = None,
5807
5909
  preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfig'] = None,
5808
5910
  preferred_maintenance_action: Optional[str] = None,
5911
+ security_attributes: Optional[Mapping[str, str]] = None,
5809
5912
  shape: Optional[str] = None,
5810
5913
  shape_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig'] = None,
5811
5914
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails'] = None):
@@ -5814,18 +5917,40 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5814
5917
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
5815
5918
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5816
5919
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
5817
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
5818
- :param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
5920
+ :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
5921
+ :param str compartment_id: The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
5819
5922
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
5820
5923
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
5821
- :param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
5822
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5924
+
5925
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
5926
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
5927
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5823
5928
  :param Mapping[str, str] extended_metadata: Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
5929
+
5930
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
5931
+
5932
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
5824
5933
  :param str fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
5825
- :param Mapping[str, 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"}`
5934
+
5935
+ If you do not specify the fault domain, the system selects one for you.
5936
+
5937
+ 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.
5938
+
5939
+ Example: `FAULT-DOMAIN-1`
5940
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
5826
5941
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsInstanceOptionsArgs' instance_options: Optional mutable instance options. As a part of Instance Metadata Service Security Header, This allows user to disable the legacy imds endpoints.
5827
5942
  :param str ipxe_script: This is an advanced option.
5828
- :param 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).
5943
+
5944
+ 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.
5945
+
5946
+ 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.
5947
+
5948
+ 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.
5949
+
5950
+ 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).
5951
+
5952
+ For more information about iPXE, see http://ipxe.org.
5953
+ :param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
5829
5954
  :param str launch_mode: Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
5830
5955
  * `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
5831
5956
  * `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
@@ -5833,13 +5958,48 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5833
5958
  * `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
5834
5959
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsLaunchOptionsArgs' launch_options: Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
5835
5960
  :param Mapping[str, str] metadata: Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
5836
- :param 'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs' platform_config: The platform configuration requested for the instance.
5961
+
5962
+ 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:
5963
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
5964
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
5965
+
5966
+ **Providing Cloud-Init Metadata**
5967
+
5968
+ You can use the following metadata key names to provide information to Cloud-Init:
5969
+
5970
+ **"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.
5971
+
5972
+ **"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).
5973
+
5974
+ **Metadata Example**
5975
+
5976
+ "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**
5977
+
5978
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
5979
+
5980
+ 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>
5981
+
5982
+ 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.
5983
+
5984
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
5985
+ :param 'InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfigArgs' platform_config: (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
5986
+
5987
+ 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.
5988
+
5989
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
5837
5990
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigArgs' preemptible_instance_config: Configuration options for preemptible instances.
5838
5991
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
5839
5992
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
5840
5993
  * `REBOOT` - Run maintenance using a reboot.
5994
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
5841
5995
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
5996
+
5997
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
5842
5998
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfigArgs' shape_config: The shape configuration requested for the instance.
5999
+
6000
+ 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.
6001
+
6002
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
5843
6003
  """
5844
6004
  if agent_config is not None:
5845
6005
  pulumi.set(__self__, "agent_config", agent_config)
@@ -5885,6 +6045,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5885
6045
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
5886
6046
  if preferred_maintenance_action is not None:
5887
6047
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
6048
+ if security_attributes is not None:
6049
+ pulumi.set(__self__, "security_attributes", security_attributes)
5888
6050
  if shape is not None:
5889
6051
  pulumi.set(__self__, "shape", shape)
5890
6052
  if shape_config is not None:
@@ -5928,7 +6090,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5928
6090
  @pulumi.getter(name="clusterPlacementGroupId")
5929
6091
  def cluster_placement_group_id(self) -> Optional[str]:
5930
6092
  """
5931
- The clusterPlacementGroup Id of the volume for volume placement.
6093
+ The OCID of the cluster placement group of the instance.
5932
6094
  """
5933
6095
  return pulumi.get(self, "cluster_placement_group_id")
5934
6096
 
@@ -5936,7 +6098,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5936
6098
  @pulumi.getter(name="compartmentId")
5937
6099
  def compartment_id(self) -> Optional[str]:
5938
6100
  """
5939
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
6101
+ The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
5940
6102
  """
5941
6103
  return pulumi.get(self, "compartment_id")
5942
6104
 
@@ -5953,6 +6115,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5953
6115
  def dedicated_vm_host_id(self) -> Optional[str]:
5954
6116
  """
5955
6117
  The OCID of the dedicated virtual machine host to place the instance on.
6118
+
6119
+ Dedicated VM hosts can be used when launching individual instances from an instance configuration. They cannot be used to launch instance pools.
5956
6120
  """
5957
6121
  return pulumi.get(self, "dedicated_vm_host_id")
5958
6122
 
@@ -5960,7 +6124,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5960
6124
  @pulumi.getter(name="definedTags")
5961
6125
  def defined_tags(self) -> Optional[Mapping[str, str]]:
5962
6126
  """
5963
- (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"}`
6127
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
5964
6128
  """
5965
6129
  return pulumi.get(self, "defined_tags")
5966
6130
 
@@ -5968,7 +6132,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5968
6132
  @pulumi.getter(name="displayName")
5969
6133
  def display_name(self) -> Optional[str]:
5970
6134
  """
5971
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6135
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5972
6136
  """
5973
6137
  return pulumi.get(self, "display_name")
5974
6138
 
@@ -5977,6 +6141,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5977
6141
  def extended_metadata(self) -> Optional[Mapping[str, str]]:
5978
6142
  """
5979
6143
  Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the `metadata` object.
6144
+
6145
+ They are distinguished from `metadata` fields in that these can be nested JSON objects (whereas `metadata` fields are string/string maps only).
6146
+
6147
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
5980
6148
  """
5981
6149
  return pulumi.get(self, "extended_metadata")
5982
6150
 
@@ -5985,6 +6153,12 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5985
6153
  def fault_domain(self) -> Optional[str]:
5986
6154
  """
5987
6155
  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.
6156
+
6157
+ If you do not specify the fault domain, the system selects one for you.
6158
+
6159
+ 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.
6160
+
6161
+ Example: `FAULT-DOMAIN-1`
5988
6162
  """
5989
6163
  return pulumi.get(self, "fault_domain")
5990
6164
 
@@ -5992,7 +6166,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5992
6166
  @pulumi.getter(name="freeformTags")
5993
6167
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
5994
6168
  """
5995
- (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"}`
6169
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
5996
6170
  """
5997
6171
  return pulumi.get(self, "freeform_tags")
5998
6172
 
@@ -6009,6 +6183,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6009
6183
  def ipxe_script(self) -> Optional[str]:
6010
6184
  """
6011
6185
  This is an advanced option.
6186
+
6187
+ 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.
6188
+
6189
+ 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.
6190
+
6191
+ 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.
6192
+
6193
+ 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).
6194
+
6195
+ For more information about iPXE, see http://ipxe.org.
6012
6196
  """
6013
6197
  return pulumi.get(self, "ipxe_script")
6014
6198
 
@@ -6016,7 +6200,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6016
6200
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
6017
6201
  def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
6018
6202
  """
6019
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
6203
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
6020
6204
  """
6021
6205
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
6022
6206
 
@@ -6045,6 +6229,30 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6045
6229
  def metadata(self) -> Optional[Mapping[str, str]]:
6046
6230
  """
6047
6231
  Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
6232
+
6233
+ 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:
6234
+ * Provide information to [Cloud-Init](https://cloudinit.readthedocs.org/en/latest/) to be used for various system initialization tasks.
6235
+ * Get information about the instance, including the custom metadata that you provide when you launch the instance.
6236
+
6237
+ **Providing Cloud-Init Metadata**
6238
+
6239
+ You can use the following metadata key names to provide information to Cloud-Init:
6240
+
6241
+ **"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.
6242
+
6243
+ **"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).
6244
+
6245
+ **Metadata Example**
6246
+
6247
+ "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**
6248
+
6249
+ To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
6250
+
6251
+ 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>
6252
+
6253
+ 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.
6254
+
6255
+ The combined size of the `metadata` and `extendedMetadata` objects can be a maximum of 32,000 bytes.
6048
6256
  """
6049
6257
  return pulumi.get(self, "metadata")
6050
6258
 
@@ -6052,7 +6260,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6052
6260
  @pulumi.getter(name="platformConfig")
6053
6261
  def platform_config(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig']:
6054
6262
  """
6055
- The platform configuration requested for the instance.
6263
+ (Optional) (Updatable only for VM's) The platform configuration requested for the instance.
6264
+
6265
+ 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.
6266
+
6267
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
6056
6268
  """
6057
6269
  return pulumi.get(self, "platform_config")
6058
6270
 
@@ -6074,11 +6286,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6074
6286
  """
6075
6287
  return pulumi.get(self, "preferred_maintenance_action")
6076
6288
 
6289
+ @property
6290
+ @pulumi.getter(name="securityAttributes")
6291
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
6292
+ """
6293
+ 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"}}}`
6294
+ """
6295
+ return pulumi.get(self, "security_attributes")
6296
+
6077
6297
  @property
6078
6298
  @pulumi.getter
6079
6299
  def shape(self) -> Optional[str]:
6080
6300
  """
6081
6301
  The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
6302
+
6303
+ You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
6082
6304
  """
6083
6305
  return pulumi.get(self, "shape")
6084
6306
 
@@ -6087,6 +6309,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6087
6309
  def shape_config(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig']:
6088
6310
  """
6089
6311
  The shape configuration requested for the instance.
6312
+
6313
+ 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.
6314
+
6315
+ Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.
6090
6316
  """
6091
6317
  return pulumi.get(self, "shape_config")
6092
6318
 
@@ -6131,19 +6357,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
6131
6357
 
6132
6358
  To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
6133
6359
  :param bool is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
6134
-
6135
- These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
6136
-
6137
- The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
6138
- * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
6139
- * If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
6140
6360
  :param bool is_monitoring_disabled: Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
6141
-
6142
- These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
6143
-
6144
- The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
6145
- * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
6146
- * If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
6147
6361
  :param Sequence['InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfigArgs'] plugins_configs: The configuration of plugins associated with this instance.
6148
6362
  """
6149
6363
  if are_all_plugins_disabled is not None:
@@ -6170,12 +6384,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
6170
6384
  def is_management_disabled(self) -> Optional[bool]:
6171
6385
  """
6172
6386
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
6173
-
6174
- These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
6175
-
6176
- The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
6177
- * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
6178
- * If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
6179
6387
  """
6180
6388
  return pulumi.get(self, "is_management_disabled")
6181
6389
 
@@ -6184,12 +6392,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfig(dict):
6184
6392
  def is_monitoring_disabled(self) -> Optional[bool]:
6185
6393
  """
6186
6394
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
6187
-
6188
- These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
6189
-
6190
- The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
6191
- * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
6192
- * If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
6193
6395
  """
6194
6396
  return pulumi.get(self, "is_monitoring_disabled")
6195
6397
 
@@ -6226,7 +6428,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfig(
6226
6428
  name: Optional[str] = None):
6227
6429
  """
6228
6430
  :param str desired_state: Whether the plugin should be enabled or disabled.
6229
- To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
6230
6431
  :param str name: The plugin name. To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
6231
6432
  """
6232
6433
  if desired_state is not None:
@@ -6239,7 +6440,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsAgentConfigPluginsConfig(
6239
6440
  def desired_state(self) -> Optional[str]:
6240
6441
  """
6241
6442
  Whether the plugin should be enabled or disabled.
6242
- To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
6243
6443
  """
6244
6444
  return pulumi.get(self, "desired_state")
6245
6445
 
@@ -6331,6 +6531,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6331
6531
  suggest = "nsg_ids"
6332
6532
  elif key == "privateIp":
6333
6533
  suggest = "private_ip"
6534
+ elif key == "securityAttributes":
6535
+ suggest = "security_attributes"
6334
6536
  elif key == "skipSourceDestCheck":
6335
6537
  suggest = "skip_source_dest_check"
6336
6538
  elif key == "subnetId":
@@ -6358,17 +6560,21 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6358
6560
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
6359
6561
  nsg_ids: Optional[Sequence[str]] = None,
6360
6562
  private_ip: Optional[str] = None,
6563
+ security_attributes: Optional[Mapping[str, str]] = None,
6361
6564
  skip_source_dest_check: Optional[bool] = None,
6362
6565
  subnet_id: Optional[str] = None):
6363
6566
  """
6364
- :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. Defaults to true. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
6567
+ :param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
6568
+ :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6365
6569
  :param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6366
- :param Mapping[str, str] defined_tags: (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"}`
6367
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6368
- :param Mapping[str, 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"}`
6570
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
6571
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6572
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
6369
6573
  :param str hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6574
+ :param Sequence['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
6370
6575
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
6371
6576
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6577
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
6372
6578
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6373
6579
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6374
6580
  """
@@ -6392,6 +6598,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6392
6598
  pulumi.set(__self__, "nsg_ids", nsg_ids)
6393
6599
  if private_ip is not None:
6394
6600
  pulumi.set(__self__, "private_ip", private_ip)
6601
+ if security_attributes is not None:
6602
+ pulumi.set(__self__, "security_attributes", security_attributes)
6395
6603
  if skip_source_dest_check is not None:
6396
6604
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
6397
6605
  if subnet_id is not None:
@@ -6400,13 +6608,16 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6400
6608
  @property
6401
6609
  @pulumi.getter(name="assignIpv6ip")
6402
6610
  def assign_ipv6ip(self) -> Optional[bool]:
6611
+ """
6612
+ 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.
6613
+ """
6403
6614
  return pulumi.get(self, "assign_ipv6ip")
6404
6615
 
6405
6616
  @property
6406
6617
  @pulumi.getter(name="assignPrivateDnsRecord")
6407
6618
  def assign_private_dns_record(self) -> Optional[bool]:
6408
6619
  """
6409
- 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.
6620
+ Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
6410
6621
  """
6411
6622
  return pulumi.get(self, "assign_private_dns_record")
6412
6623
 
@@ -6422,7 +6633,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6422
6633
  @pulumi.getter(name="definedTags")
6423
6634
  def defined_tags(self) -> Optional[Mapping[str, str]]:
6424
6635
  """
6425
- (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"}`
6636
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
6426
6637
  """
6427
6638
  return pulumi.get(self, "defined_tags")
6428
6639
 
@@ -6430,7 +6641,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6430
6641
  @pulumi.getter(name="displayName")
6431
6642
  def display_name(self) -> Optional[str]:
6432
6643
  """
6433
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6644
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
6434
6645
  """
6435
6646
  return pulumi.get(self, "display_name")
6436
6647
 
@@ -6438,7 +6649,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6438
6649
  @pulumi.getter(name="freeformTags")
6439
6650
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
6440
6651
  """
6441
- (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"}`
6652
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
6442
6653
  """
6443
6654
  return pulumi.get(self, "freeform_tags")
6444
6655
 
@@ -6453,6 +6664,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6453
6664
  @property
6454
6665
  @pulumi.getter(name="ipv6addressIpv6subnetCidrPairDetails")
6455
6666
  def ipv6address_ipv6subnet_cidr_pair_details(self) -> Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']]:
6667
+ """
6668
+ 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.
6669
+ """
6456
6670
  return pulumi.get(self, "ipv6address_ipv6subnet_cidr_pair_details")
6457
6671
 
6458
6672
  @property
@@ -6471,6 +6685,14 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails(dict):
6471
6685
  """
6472
6686
  return pulumi.get(self, "private_ip")
6473
6687
 
6688
+ @property
6689
+ @pulumi.getter(name="securityAttributes")
6690
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
6691
+ """
6692
+ 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"}}}`
6693
+ """
6694
+ return pulumi.get(self, "security_attributes")
6695
+
6474
6696
  @property
6475
6697
  @pulumi.getter(name="skipSourceDestCheck")
6476
6698
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -6510,6 +6732,10 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
6510
6732
  def __init__(__self__, *,
6511
6733
  ipv6address: Optional[str] = None,
6512
6734
  ipv6subnet_cidr: Optional[str] = None):
6735
+ """
6736
+ :param str ipv6address: Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
6737
+ :param str ipv6subnet_cidr: Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
6738
+ """
6513
6739
  if ipv6address is not None:
6514
6740
  pulumi.set(__self__, "ipv6address", ipv6address)
6515
6741
  if ipv6subnet_cidr is not None:
@@ -6518,11 +6744,17 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsIpv6addr
6518
6744
  @property
6519
6745
  @pulumi.getter
6520
6746
  def ipv6address(self) -> Optional[str]:
6747
+ """
6748
+ Optional. An available IPv6 address of your subnet from a valid IPv6 prefix on the subnet (otherwise the IP address is automatically assigned).
6749
+ """
6521
6750
  return pulumi.get(self, "ipv6address")
6522
6751
 
6523
6752
  @property
6524
6753
  @pulumi.getter(name="ipv6subnetCidr")
6525
6754
  def ipv6subnet_cidr(self) -> Optional[str]:
6755
+ """
6756
+ Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
6757
+ """
6526
6758
  return pulumi.get(self, "ipv6subnet_cidr")
6527
6759
 
6528
6760
 
@@ -6749,7 +6981,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6749
6981
  numa_nodes_per_socket: Optional[str] = None,
6750
6982
  percentage_of_cores_enabled: Optional[int] = None):
6751
6983
  """
6752
- :param str type: The type of action to run when the instance is interrupted for eviction.
6984
+ :param str type: The type of platform being configured.
6753
6985
  :param bool are_virtual_instructions_enabled: Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
6754
6986
  :param Mapping[str, str] config_map: Instance Platform Configuration Configuration Map for flexible setting input.
6755
6987
  :param bool is_access_control_service_enabled: Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
@@ -6757,7 +6989,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6757
6989
  :param bool is_measured_boot_enabled: Whether the Measured Boot feature is enabled on the instance.
6758
6990
  :param bool is_memory_encryption_enabled: Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
6759
6991
  :param bool is_secure_boot_enabled: Whether Secure Boot is enabled on the instance.
6760
- :param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
6992
+ :param bool is_symmetric_multi_threading_enabled: (Updatable only for AMD_VM and INTEL_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
6993
+
6994
+ Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
6761
6995
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
6762
6996
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
6763
6997
  :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
@@ -6792,7 +7026,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6792
7026
  @pulumi.getter
6793
7027
  def type(self) -> str:
6794
7028
  """
6795
- The type of action to run when the instance is interrupted for eviction.
7029
+ The type of platform being configured.
6796
7030
  """
6797
7031
  return pulumi.get(self, "type")
6798
7032
 
@@ -6856,7 +7090,9 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6856
7090
  @pulumi.getter(name="isSymmetricMultiThreadingEnabled")
6857
7091
  def is_symmetric_multi_threading_enabled(self) -> Optional[bool]:
6858
7092
  """
6859
- Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
7093
+ (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.
7094
+
7095
+ Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
6860
7096
  """
6861
7097
  return pulumi.get(self, "is_symmetric_multi_threading_enabled")
6862
7098
 
@@ -6999,6 +7235,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig(dict):
6999
7235
  vcpus: Optional[int] = None):
7000
7236
  """
7001
7237
  :param str baseline_ocpu_utilization: The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`.
7238
+
7239
+ The following values are supported:
7240
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
7241
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
7242
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
7002
7243
  :param float memory_in_gbs: The total amount of memory available to the instance, in gigabytes.
7003
7244
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
7004
7245
  :param float ocpus: The total number of OCPUs available to the instance.
@@ -7020,6 +7261,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig(dict):
7020
7261
  def baseline_ocpu_utilization(self) -> Optional[str]:
7021
7262
  """
7022
7263
  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`.
7264
+
7265
+ The following values are supported:
7266
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
7267
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
7268
+ * `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.
7023
7269
  """
7024
7270
  return pulumi.get(self, "baseline_ocpu_utilization")
7025
7271
 
@@ -7100,9 +7346,11 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
7100
7346
  :param str boot_volume_id: The OCID of the boot volume used to boot the instance.
7101
7347
  :param str boot_volume_size_in_gbs: The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB).
7102
7348
  :param str boot_volume_vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
7349
+
7350
+ Allowed values:
7103
7351
  :param str image_id: The OCID of the image used to boot the instance.
7104
7352
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
7105
- :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
7353
+ :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
7106
7354
  """
7107
7355
  pulumi.set(__self__, "source_type", source_type)
7108
7356
  if boot_volume_id is not None:
@@ -7147,6 +7395,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
7147
7395
  def boot_volume_vpus_per_gb(self) -> Optional[str]:
7148
7396
  """
7149
7397
  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.
7398
+
7399
+ Allowed values:
7150
7400
  """
7151
7401
  return pulumi.get(self, "boot_volume_vpus_per_gb")
7152
7402
 
@@ -7170,7 +7420,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails(dict):
7170
7420
  @pulumi.getter(name="kmsKeyId")
7171
7421
  def kms_key_id(self) -> Optional[str]:
7172
7422
  """
7173
- The OCID of the Vault service key to assign as the master encryption key for the volume.
7423
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
7174
7424
  """
7175
7425
  return pulumi.get(self, "kms_key_id")
7176
7426
 
@@ -7206,7 +7456,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
7206
7456
  operating_system: Optional[str] = None,
7207
7457
  operating_system_version: Optional[str] = None):
7208
7458
  """
7209
- :param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7459
+ :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
7210
7460
  :param Mapping[str, str] defined_tags_filter: Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
7211
7461
  :param str operating_system: The image's operating system. Example: `Oracle Linux`
7212
7462
  :param str operating_system_version: The image's operating system version. Example: `7.2`
@@ -7224,7 +7474,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetailsInstanceSour
7224
7474
  @pulumi.getter(name="compartmentId")
7225
7475
  def compartment_id(self) -> Optional[str]:
7226
7476
  """
7227
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7477
+ (Updatable) The OCID of the compartment containing images to search
7228
7478
  """
7229
7479
  return pulumi.get(self, "compartment_id")
7230
7480
 
@@ -7283,6 +7533,8 @@ class InstanceConfigurationInstanceDetailsOption(dict):
7283
7533
  """
7284
7534
  :param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeArgs'] block_volumes: Block volume parameters.
7285
7535
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs' launch_details: Instance launch details for creating an instance from an instance configuration. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.
7536
+
7537
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
7286
7538
  :param Sequence['InstanceConfigurationInstanceDetailsOptionSecondaryVnicArgs'] secondary_vnics: Secondary VNIC parameters.
7287
7539
  """
7288
7540
  if block_volumes is not None:
@@ -7305,6 +7557,8 @@ class InstanceConfigurationInstanceDetailsOption(dict):
7305
7557
  def launch_details(self) -> Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetails']:
7306
7558
  """
7307
7559
  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.
7560
+
7561
+ See [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/LaunchInstanceDetails) for more information.
7308
7562
  """
7309
7563
  return pulumi.get(self, "launch_details")
7310
7564
 
@@ -7417,10 +7671,10 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
7417
7671
  is_shareable: Optional[bool] = None,
7418
7672
  use_chap: Optional[bool] = None):
7419
7673
  """
7420
- :param str type: The type of action to run when the instance is interrupted for eviction.
7674
+ :param str type: The type of volume. The only supported values are "iscsi" and "paravirtualized".
7421
7675
  :param str device: The device name.
7422
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7423
- :param 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).
7676
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7677
+ :param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
7424
7678
  :param bool is_read_only: Whether the attachment should be created in read-only mode.
7425
7679
  :param bool is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
7426
7680
  :param bool use_chap: Whether to use CHAP authentication for the volume attachment. Defaults to false.
@@ -7443,7 +7697,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
7443
7697
  @pulumi.getter
7444
7698
  def type(self) -> str:
7445
7699
  """
7446
- The type of action to run when the instance is interrupted for eviction.
7700
+ The type of volume. The only supported values are "iscsi" and "paravirtualized".
7447
7701
  """
7448
7702
  return pulumi.get(self, "type")
7449
7703
 
@@ -7459,7 +7713,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
7459
7713
  @pulumi.getter(name="displayName")
7460
7714
  def display_name(self) -> Optional[str]:
7461
7715
  """
7462
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7716
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7463
7717
  """
7464
7718
  return pulumi.get(self, "display_name")
7465
7719
 
@@ -7467,7 +7721,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeAttachDetails(dict):
7467
7721
  @pulumi.getter(name="isPvEncryptionInTransitEnabled")
7468
7722
  def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
7469
7723
  """
7470
- Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [InstanceConfigurationLaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/InstanceConfigurationLaunchInstanceDetails).
7724
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
7471
7725
  """
7472
7726
  return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
7473
7727
 
@@ -7529,6 +7783,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7529
7783
  suggest = "source_details"
7530
7784
  elif key == "vpusPerGb":
7531
7785
  suggest = "vpus_per_gb"
7786
+ elif key == "xrcKmsKeyId":
7787
+ suggest = "xrc_kms_key_id"
7532
7788
 
7533
7789
  if suggest:
7534
7790
  pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
@@ -7555,21 +7811,25 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7555
7811
  kms_key_id: Optional[str] = None,
7556
7812
  size_in_gbs: Optional[str] = None,
7557
7813
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetails'] = None,
7558
- vpus_per_gb: Optional[str] = None):
7814
+ vpus_per_gb: Optional[str] = None,
7815
+ xrc_kms_key_id: Optional[str] = None):
7559
7816
  """
7560
7817
  :param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
7561
- :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7818
+ :param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
7562
7819
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
7563
7820
  :param 'InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
7564
7821
  :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
7565
- :param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7566
- :param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
7567
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7568
- :param Mapping[str, 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"}`
7822
+ :param str compartment_id: (Updatable) The OCID of the compartment that contains the volume.
7823
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
7824
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7825
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7569
7826
  :param bool is_auto_tune_enabled: Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the `InstanceConfigurationDetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
7570
7827
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
7571
7828
  :param str size_in_gbs: The size of the volume in GBs.
7572
7829
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
7830
+
7831
+ Allowed values:
7832
+ :param 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).
7573
7833
  """
7574
7834
  if autotune_policies is not None:
7575
7835
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -7599,6 +7859,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7599
7859
  pulumi.set(__self__, "source_details", source_details)
7600
7860
  if vpus_per_gb is not None:
7601
7861
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
7862
+ if xrc_kms_key_id is not None:
7863
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
7602
7864
 
7603
7865
  @property
7604
7866
  @pulumi.getter(name="autotunePolicies")
@@ -7612,7 +7874,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7612
7874
  @pulumi.getter(name="availabilityDomain")
7613
7875
  def availability_domain(self) -> Optional[str]:
7614
7876
  """
7615
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7877
+ The availability domain of the volume. Example: `Uocm:PHX-AD-1`
7616
7878
  """
7617
7879
  return pulumi.get(self, "availability_domain")
7618
7880
 
@@ -7644,7 +7906,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7644
7906
  @pulumi.getter(name="compartmentId")
7645
7907
  def compartment_id(self) -> Optional[str]:
7646
7908
  """
7647
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
7909
+ (Updatable) The OCID of the compartment that contains the volume.
7648
7910
  """
7649
7911
  return pulumi.get(self, "compartment_id")
7650
7912
 
@@ -7652,7 +7914,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7652
7914
  @pulumi.getter(name="definedTags")
7653
7915
  def defined_tags(self) -> Optional[Mapping[str, str]]:
7654
7916
  """
7655
- (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"}`
7917
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
7656
7918
  """
7657
7919
  return pulumi.get(self, "defined_tags")
7658
7920
 
@@ -7660,7 +7922,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7660
7922
  @pulumi.getter(name="displayName")
7661
7923
  def display_name(self) -> Optional[str]:
7662
7924
  """
7663
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7925
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7664
7926
  """
7665
7927
  return pulumi.get(self, "display_name")
7666
7928
 
@@ -7668,7 +7930,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7668
7930
  @pulumi.getter(name="freeformTags")
7669
7931
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
7670
7932
  """
7671
- (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"}`
7933
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
7672
7934
  """
7673
7935
  return pulumi.get(self, "freeform_tags")
7674
7936
 
@@ -7706,9 +7968,19 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7706
7968
  def vpus_per_gb(self) -> Optional[str]:
7707
7969
  """
7708
7970
  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.
7971
+
7972
+ Allowed values:
7709
7973
  """
7710
7974
  return pulumi.get(self, "vpus_per_gb")
7711
7975
 
7976
+ @property
7977
+ @pulumi.getter(name="xrcKmsKeyId")
7978
+ def xrc_kms_key_id(self) -> Optional[str]:
7979
+ """
7980
+ 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).
7981
+ """
7982
+ return pulumi.get(self, "xrc_kms_key_id")
7983
+
7712
7984
 
7713
7985
  @pulumi.output_type
7714
7986
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicy(dict):
@@ -7814,7 +8086,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
7814
8086
  type: str,
7815
8087
  id: Optional[str] = None):
7816
8088
  """
7817
- :param str type: The type of action to run when the instance is interrupted for eviction.
8089
+ :param str type: The type can be one of these values: `volume`, `volumeBackup`
7818
8090
  :param str id: The OCID of the volume backup.
7819
8091
  """
7820
8092
  pulumi.set(__self__, "type", type)
@@ -7825,7 +8097,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDe
7825
8097
  @pulumi.getter
7826
8098
  def type(self) -> str:
7827
8099
  """
7828
- The type of action to run when the instance is interrupted for eviction.
8100
+ The type can be one of these values: `volume`, `volumeBackup`
7829
8101
  """
7830
8102
  return pulumi.get(self, "type")
7831
8103
 
@@ -7885,6 +8157,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7885
8157
  suggest = "preemptible_instance_config"
7886
8158
  elif key == "preferredMaintenanceAction":
7887
8159
  suggest = "preferred_maintenance_action"
8160
+ elif key == "securityAttributes":
8161
+ suggest = "security_attributes"
7888
8162
  elif key == "shapeConfig":
7889
8163
  suggest = "shape_config"
7890
8164
  elif key == "sourceDetails":
@@ -7924,6 +8198,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7924
8198
  platform_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig'] = None,
7925
8199
  preemptible_instance_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsPreemptibleInstanceConfig'] = None,
7926
8200
  preferred_maintenance_action: Optional[str] = None,
8201
+ security_attributes: Optional[Mapping[str, str]] = None,
7927
8202
  shape: Optional[str] = None,
7928
8203
  shape_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfig'] = None,
7929
8204
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsSourceDetails'] = None):
@@ -7933,7 +8208,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7933
8208
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7934
8209
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
7935
8210
  :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
7936
- :param str compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
8211
+ :param str compartment_id: (Updatable) The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
7937
8212
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
7938
8213
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
7939
8214
  :param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
@@ -7956,6 +8231,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7956
8231
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
7957
8232
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
7958
8233
  * `REBOOT` - Run maintenance using a reboot.
8234
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
7959
8235
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
7960
8236
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsShapeConfigArgs' shape_config: The shape configuration requested for the instance.
7961
8237
  """
@@ -8003,6 +8279,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8003
8279
  pulumi.set(__self__, "preemptible_instance_config", preemptible_instance_config)
8004
8280
  if preferred_maintenance_action is not None:
8005
8281
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
8282
+ if security_attributes is not None:
8283
+ pulumi.set(__self__, "security_attributes", security_attributes)
8006
8284
  if shape is not None:
8007
8285
  pulumi.set(__self__, "shape", shape)
8008
8286
  if shape_config is not None:
@@ -8054,7 +8332,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8054
8332
  @pulumi.getter(name="compartmentId")
8055
8333
  def compartment_id(self) -> Optional[str]:
8056
8334
  """
8057
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance configuration.
8335
+ (Updatable) The OCID of the compartment containing the instance. Instances created from instance configurations are placed in the same compartment as the instance that was used to create the instance configuration.
8058
8336
  """
8059
8337
  return pulumi.get(self, "compartment_id")
8060
8338
 
@@ -8192,6 +8470,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8192
8470
  """
8193
8471
  return pulumi.get(self, "preferred_maintenance_action")
8194
8472
 
8473
+ @property
8474
+ @pulumi.getter(name="securityAttributes")
8475
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
8476
+ """
8477
+ 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"}}}`
8478
+ """
8479
+ return pulumi.get(self, "security_attributes")
8480
+
8195
8481
  @property
8196
8482
  @pulumi.getter
8197
8483
  def shape(self) -> Optional[str]:
@@ -8246,8 +8532,22 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
8246
8532
  plugins_configs: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfig']] = None):
8247
8533
  """
8248
8534
  :param bool are_all_plugins_disabled: Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
8535
+
8536
+ To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
8249
8537
  :param bool is_management_disabled: Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
8538
+
8539
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
8540
+
8541
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
8542
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
8543
+ * If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
8250
8544
  :param bool is_monitoring_disabled: Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
8545
+
8546
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
8547
+
8548
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
8549
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
8550
+ * If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
8251
8551
  :param Sequence['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsConfigArgs'] plugins_configs: The configuration of plugins associated with this instance.
8252
8552
  """
8253
8553
  if are_all_plugins_disabled is not None:
@@ -8264,6 +8564,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
8264
8564
  def are_all_plugins_disabled(self) -> Optional[bool]:
8265
8565
  """
8266
8566
  Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
8567
+
8568
+ To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
8267
8569
  """
8268
8570
  return pulumi.get(self, "are_all_plugins_disabled")
8269
8571
 
@@ -8272,6 +8574,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
8272
8574
  def is_management_disabled(self) -> Optional[bool]:
8273
8575
  """
8274
8576
  Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
8577
+
8578
+ These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
8579
+
8580
+ The management plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
8581
+ * If `isManagementDisabled` is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
8582
+ * If `isManagementDisabled` is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.
8275
8583
  """
8276
8584
  return pulumi.get(self, "is_management_disabled")
8277
8585
 
@@ -8280,6 +8588,12 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfig(dict):
8280
8588
  def is_monitoring_disabled(self) -> Optional[bool]:
8281
8589
  """
8282
8590
  Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
8591
+
8592
+ These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
8593
+
8594
+ The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object.
8595
+ * If `isMonitoringDisabled` is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
8596
+ * If `isMonitoringDisabled` is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.
8283
8597
  """
8284
8598
  return pulumi.get(self, "is_monitoring_disabled")
8285
8599
 
@@ -8316,6 +8630,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
8316
8630
  name: Optional[str] = None):
8317
8631
  """
8318
8632
  :param str desired_state: Whether the plugin should be enabled or disabled.
8633
+
8634
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
8319
8635
  :param str name: The plugin name. To get a list of available plugins, use the [ListInstanceagentAvailablePlugins](https://docs.cloud.oracle.com/iaas/api/#/en/instanceagent/20180530/Plugin/ListInstanceagentAvailablePlugins) operation in the Oracle Cloud Agent API. For more information about the available plugins, see [Managing Plugins with Oracle Cloud Agent](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/manage-plugins.htm).
8320
8636
  """
8321
8637
  if desired_state is not None:
@@ -8328,6 +8644,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsAgentConfigPluginsC
8328
8644
  def desired_state(self) -> Optional[str]:
8329
8645
  """
8330
8646
  Whether the plugin should be enabled or disabled.
8647
+
8648
+ To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.
8331
8649
  """
8332
8650
  return pulumi.get(self, "desired_state")
8333
8651
 
@@ -8419,6 +8737,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8419
8737
  suggest = "nsg_ids"
8420
8738
  elif key == "privateIp":
8421
8739
  suggest = "private_ip"
8740
+ elif key == "securityAttributes":
8741
+ suggest = "security_attributes"
8422
8742
  elif key == "skipSourceDestCheck":
8423
8743
  suggest = "skip_source_dest_check"
8424
8744
  elif key == "subnetId":
@@ -8446,9 +8766,11 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8446
8766
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
8447
8767
  nsg_ids: Optional[Sequence[str]] = None,
8448
8768
  private_ip: Optional[str] = None,
8769
+ security_attributes: Optional[Mapping[str, str]] = None,
8449
8770
  skip_source_dest_check: Optional[bool] = None,
8450
8771
  subnet_id: Optional[str] = None):
8451
8772
  """
8773
+ :param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
8452
8774
  :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. Defaults to true. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
8453
8775
  :param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
8454
8776
  :param Mapping[str, str] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
@@ -8457,6 +8779,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8457
8779
  :param str hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
8458
8780
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
8459
8781
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
8782
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
8460
8783
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
8461
8784
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
8462
8785
  """
@@ -8480,6 +8803,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8480
8803
  pulumi.set(__self__, "nsg_ids", nsg_ids)
8481
8804
  if private_ip is not None:
8482
8805
  pulumi.set(__self__, "private_ip", private_ip)
8806
+ if security_attributes is not None:
8807
+ pulumi.set(__self__, "security_attributes", security_attributes)
8483
8808
  if skip_source_dest_check is not None:
8484
8809
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
8485
8810
  if subnet_id is not None:
@@ -8488,6 +8813,9 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8488
8813
  @property
8489
8814
  @pulumi.getter(name="assignIpv6ip")
8490
8815
  def assign_ipv6ip(self) -> Optional[bool]:
8816
+ """
8817
+ 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.
8818
+ """
8491
8819
  return pulumi.get(self, "assign_ipv6ip")
8492
8820
 
8493
8821
  @property
@@ -8559,6 +8887,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails(d
8559
8887
  """
8560
8888
  return pulumi.get(self, "private_ip")
8561
8889
 
8890
+ @property
8891
+ @pulumi.getter(name="securityAttributes")
8892
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
8893
+ """
8894
+ 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"}}}`
8895
+ """
8896
+ return pulumi.get(self, "security_attributes")
8897
+
8562
8898
  @property
8563
8899
  @pulumi.getter(name="skipSourceDestCheck")
8564
8900
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -8845,8 +9181,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
8845
9181
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
8846
9182
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
8847
9183
  :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
8848
-
8849
- If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
8850
9184
  """
8851
9185
  pulumi.set(__self__, "type", type)
8852
9186
  if are_virtual_instructions_enabled is not None:
@@ -8955,8 +9289,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
8955
9289
  def percentage_of_cores_enabled(self) -> Optional[int]:
8956
9290
  """
8957
9291
  The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
8958
-
8959
- If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
8960
9292
  """
8961
9293
  return pulumi.get(self, "percentage_of_cores_enabled")
8962
9294
 
@@ -9356,7 +9688,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnic(dict):
9356
9688
  nic_index: Optional[int] = None):
9357
9689
  """
9358
9690
  :param 'InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
9359
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9691
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9360
9692
  :param int nic_index: Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
9361
9693
  """
9362
9694
  if create_vnic_details is not None:
@@ -9378,7 +9710,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnic(dict):
9378
9710
  @pulumi.getter(name="displayName")
9379
9711
  def display_name(self) -> Optional[str]:
9380
9712
  """
9381
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9713
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9382
9714
  """
9383
9715
  return pulumi.get(self, "display_name")
9384
9716
 
@@ -9416,6 +9748,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9416
9748
  suggest = "nsg_ids"
9417
9749
  elif key == "privateIp":
9418
9750
  suggest = "private_ip"
9751
+ elif key == "securityAttributes":
9752
+ suggest = "security_attributes"
9419
9753
  elif key == "skipSourceDestCheck":
9420
9754
  suggest = "skip_source_dest_check"
9421
9755
  elif key == "subnetId":
@@ -9443,17 +9777,20 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9443
9777
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
9444
9778
  nsg_ids: Optional[Sequence[str]] = None,
9445
9779
  private_ip: Optional[str] = None,
9780
+ security_attributes: Optional[Mapping[str, str]] = None,
9446
9781
  skip_source_dest_check: Optional[bool] = None,
9447
9782
  subnet_id: Optional[str] = None):
9448
9783
  """
9449
- :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. Defaults to true. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
9784
+ :param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
9785
+ :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9450
9786
  :param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9451
- :param Mapping[str, str] defined_tags: (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"}`
9452
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9453
- :param Mapping[str, 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"}`
9787
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
9788
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9789
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9454
9790
  :param str hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9455
9791
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
9456
9792
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9793
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
9457
9794
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9458
9795
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9459
9796
  """
@@ -9477,6 +9814,8 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9477
9814
  pulumi.set(__self__, "nsg_ids", nsg_ids)
9478
9815
  if private_ip is not None:
9479
9816
  pulumi.set(__self__, "private_ip", private_ip)
9817
+ if security_attributes is not None:
9818
+ pulumi.set(__self__, "security_attributes", security_attributes)
9480
9819
  if skip_source_dest_check is not None:
9481
9820
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
9482
9821
  if subnet_id is not None:
@@ -9485,13 +9824,16 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9485
9824
  @property
9486
9825
  @pulumi.getter(name="assignIpv6ip")
9487
9826
  def assign_ipv6ip(self) -> Optional[bool]:
9827
+ """
9828
+ 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.
9829
+ """
9488
9830
  return pulumi.get(self, "assign_ipv6ip")
9489
9831
 
9490
9832
  @property
9491
9833
  @pulumi.getter(name="assignPrivateDnsRecord")
9492
9834
  def assign_private_dns_record(self) -> Optional[bool]:
9493
9835
  """
9494
- 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.
9836
+ Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9495
9837
  """
9496
9838
  return pulumi.get(self, "assign_private_dns_record")
9497
9839
 
@@ -9507,7 +9849,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9507
9849
  @pulumi.getter(name="definedTags")
9508
9850
  def defined_tags(self) -> Optional[Mapping[str, str]]:
9509
9851
  """
9510
- (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"}`
9852
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
9511
9853
  """
9512
9854
  return pulumi.get(self, "defined_tags")
9513
9855
 
@@ -9515,7 +9857,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9515
9857
  @pulumi.getter(name="displayName")
9516
9858
  def display_name(self) -> Optional[str]:
9517
9859
  """
9518
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9860
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9519
9861
  """
9520
9862
  return pulumi.get(self, "display_name")
9521
9863
 
@@ -9523,7 +9865,7 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9523
9865
  @pulumi.getter(name="freeformTags")
9524
9866
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
9525
9867
  """
9526
- (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"}`
9868
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9527
9869
  """
9528
9870
  return pulumi.get(self, "freeform_tags")
9529
9871
 
@@ -9556,6 +9898,14 @@ class InstanceConfigurationInstanceDetailsOptionSecondaryVnicCreateVnicDetails(d
9556
9898
  """
9557
9899
  return pulumi.get(self, "private_ip")
9558
9900
 
9901
+ @property
9902
+ @pulumi.getter(name="securityAttributes")
9903
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
9904
+ """
9905
+ 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"}}}`
9906
+ """
9907
+ return pulumi.get(self, "security_attributes")
9908
+
9559
9909
  @property
9560
9910
  @pulumi.getter(name="skipSourceDestCheck")
9561
9911
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -9640,7 +9990,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnic(dict):
9640
9990
  nic_index: Optional[int] = None):
9641
9991
  """
9642
9992
  :param 'InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
9643
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9993
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9644
9994
  :param int nic_index: Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
9645
9995
  """
9646
9996
  if create_vnic_details is not None:
@@ -9662,7 +10012,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnic(dict):
9662
10012
  @pulumi.getter(name="displayName")
9663
10013
  def display_name(self) -> Optional[str]:
9664
10014
  """
9665
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10015
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9666
10016
  """
9667
10017
  return pulumi.get(self, "display_name")
9668
10018
 
@@ -9700,6 +10050,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9700
10050
  suggest = "nsg_ids"
9701
10051
  elif key == "privateIp":
9702
10052
  suggest = "private_ip"
10053
+ elif key == "securityAttributes":
10054
+ suggest = "security_attributes"
9703
10055
  elif key == "skipSourceDestCheck":
9704
10056
  suggest = "skip_source_dest_check"
9705
10057
  elif key == "subnetId":
@@ -9727,17 +10079,20 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9727
10079
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
9728
10080
  nsg_ids: Optional[Sequence[str]] = None,
9729
10081
  private_ip: Optional[str] = None,
10082
+ security_attributes: Optional[Mapping[str, str]] = None,
9730
10083
  skip_source_dest_check: Optional[bool] = None,
9731
10084
  subnet_id: Optional[str] = None):
9732
10085
  """
9733
- :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. Defaults to true. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
10086
+ :param bool assign_ipv6ip: Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr` is not provided then an IPv6 prefix is chosen for you.
10087
+ :param bool assign_private_dns_record: Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9734
10088
  :param bool assign_public_ip: Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9735
- :param Mapping[str, str] defined_tags: (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"}`
9736
- :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9737
- :param Mapping[str, 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"}`
10089
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
10090
+ :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10091
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9738
10092
  :param str hostname_label: The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9739
10093
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
9740
10094
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
10095
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
9741
10096
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9742
10097
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9743
10098
  """
@@ -9761,6 +10116,8 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9761
10116
  pulumi.set(__self__, "nsg_ids", nsg_ids)
9762
10117
  if private_ip is not None:
9763
10118
  pulumi.set(__self__, "private_ip", private_ip)
10119
+ if security_attributes is not None:
10120
+ pulumi.set(__self__, "security_attributes", security_attributes)
9764
10121
  if skip_source_dest_check is not None:
9765
10122
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
9766
10123
  if subnet_id is not None:
@@ -9769,13 +10126,16 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9769
10126
  @property
9770
10127
  @pulumi.getter(name="assignIpv6ip")
9771
10128
  def assign_ipv6ip(self) -> Optional[bool]:
10129
+ """
10130
+ 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.
10131
+ """
9772
10132
  return pulumi.get(self, "assign_ipv6ip")
9773
10133
 
9774
10134
  @property
9775
10135
  @pulumi.getter(name="assignPrivateDnsRecord")
9776
10136
  def assign_private_dns_record(self) -> Optional[bool]:
9777
10137
  """
9778
- 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.
10138
+ Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
9779
10139
  """
9780
10140
  return pulumi.get(self, "assign_private_dns_record")
9781
10141
 
@@ -9791,7 +10151,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9791
10151
  @pulumi.getter(name="definedTags")
9792
10152
  def defined_tags(self) -> Optional[Mapping[str, str]]:
9793
10153
  """
9794
- (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"}`
10154
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
9795
10155
  """
9796
10156
  return pulumi.get(self, "defined_tags")
9797
10157
 
@@ -9799,7 +10159,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9799
10159
  @pulumi.getter(name="displayName")
9800
10160
  def display_name(self) -> Optional[str]:
9801
10161
  """
9802
- (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10162
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
9803
10163
  """
9804
10164
  return pulumi.get(self, "display_name")
9805
10165
 
@@ -9807,7 +10167,7 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9807
10167
  @pulumi.getter(name="freeformTags")
9808
10168
  def freeform_tags(self) -> Optional[Mapping[str, str]]:
9809
10169
  """
9810
- (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"}`
10170
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
9811
10171
  """
9812
10172
  return pulumi.get(self, "freeform_tags")
9813
10173
 
@@ -9840,6 +10200,14 @@ class InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails(dict):
9840
10200
  """
9841
10201
  return pulumi.get(self, "private_ip")
9842
10202
 
10203
+ @property
10204
+ @pulumi.getter(name="securityAttributes")
10205
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
10206
+ """
10207
+ 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"}}}`
10208
+ """
10209
+ return pulumi.get(self, "security_attributes")
10210
+
9843
10211
  @property
9844
10212
  @pulumi.getter(name="skipSourceDestCheck")
9845
10213
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -9920,6 +10288,8 @@ class InstanceCreateVnicDetails(dict):
9920
10288
  suggest = "nsg_ids"
9921
10289
  elif key == "privateIp":
9922
10290
  suggest = "private_ip"
10291
+ elif key == "securityAttributes":
10292
+ suggest = "security_attributes"
9923
10293
  elif key == "skipSourceDestCheck":
9924
10294
  suggest = "skip_source_dest_check"
9925
10295
  elif key == "subnetId":
@@ -9949,6 +10319,7 @@ class InstanceCreateVnicDetails(dict):
9949
10319
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
9950
10320
  nsg_ids: Optional[Sequence[str]] = None,
9951
10321
  private_ip: Optional[str] = None,
10322
+ security_attributes: Optional[Mapping[str, str]] = None,
9952
10323
  skip_source_dest_check: Optional[bool] = None,
9953
10324
  subnet_id: Optional[str] = None,
9954
10325
  vlan_id: Optional[str] = None):
@@ -9986,6 +10357,7 @@ class InstanceCreateVnicDetails(dict):
9986
10357
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
9987
10358
 
9988
10359
  Example: `10.0.3.3`
10360
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
9989
10361
  :param bool skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
9990
10362
 
9991
10363
  If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
@@ -10018,6 +10390,8 @@ class InstanceCreateVnicDetails(dict):
10018
10390
  pulumi.set(__self__, "nsg_ids", nsg_ids)
10019
10391
  if private_ip is not None:
10020
10392
  pulumi.set(__self__, "private_ip", private_ip)
10393
+ if security_attributes is not None:
10394
+ pulumi.set(__self__, "security_attributes", security_attributes)
10021
10395
  if skip_source_dest_check is not None:
10022
10396
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
10023
10397
  if subnet_id is not None:
@@ -10128,6 +10502,14 @@ class InstanceCreateVnicDetails(dict):
10128
10502
  """
10129
10503
  return pulumi.get(self, "private_ip")
10130
10504
 
10505
+ @property
10506
+ @pulumi.getter(name="securityAttributes")
10507
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
10508
+ """
10509
+ 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"}}}`
10510
+ """
10511
+ return pulumi.get(self, "security_attributes")
10512
+
10131
10513
  @property
10132
10514
  @pulumi.getter(name="skipSourceDestCheck")
10133
10515
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -10380,6 +10762,8 @@ class InstanceLaunchVolumeAttachment(dict):
10380
10762
  suggest = "encryption_in_transit_type"
10381
10763
  elif key == "isAgentAutoIscsiLoginEnabled":
10382
10764
  suggest = "is_agent_auto_iscsi_login_enabled"
10765
+ elif key == "isPvEncryptionInTransitEnabled":
10766
+ suggest = "is_pv_encryption_in_transit_enabled"
10383
10767
  elif key == "isReadOnly":
10384
10768
  suggest = "is_read_only"
10385
10769
  elif key == "isShareable":
@@ -10408,6 +10792,7 @@ class InstanceLaunchVolumeAttachment(dict):
10408
10792
  display_name: Optional[str] = None,
10409
10793
  encryption_in_transit_type: Optional[str] = None,
10410
10794
  is_agent_auto_iscsi_login_enabled: Optional[bool] = None,
10795
+ is_pv_encryption_in_transit_enabled: Optional[bool] = None,
10411
10796
  is_read_only: Optional[bool] = None,
10412
10797
  is_shareable: Optional[bool] = None,
10413
10798
  launch_create_volume_details: Optional['outputs.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails'] = None,
@@ -10419,6 +10804,7 @@ class InstanceLaunchVolumeAttachment(dict):
10419
10804
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10420
10805
  :param str encryption_in_transit_type: Refer the top-level definition of encryptionInTransitType. The default value is NONE.
10421
10806
  :param bool is_agent_auto_iscsi_login_enabled: Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
10807
+ :param bool is_pv_encryption_in_transit_enabled: Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
10422
10808
  :param bool is_read_only: Whether the attachment was created in read-only mode.
10423
10809
  :param bool is_shareable: Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
10424
10810
  :param 'InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs' launch_create_volume_details: Define a volume that will be created and attached or attached to an instance on creation.
@@ -10434,6 +10820,8 @@ class InstanceLaunchVolumeAttachment(dict):
10434
10820
  pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
10435
10821
  if is_agent_auto_iscsi_login_enabled is not None:
10436
10822
  pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
10823
+ if is_pv_encryption_in_transit_enabled is not None:
10824
+ pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
10437
10825
  if is_read_only is not None:
10438
10826
  pulumi.set(__self__, "is_read_only", is_read_only)
10439
10827
  if is_shareable is not None:
@@ -10485,6 +10873,14 @@ class InstanceLaunchVolumeAttachment(dict):
10485
10873
  """
10486
10874
  return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
10487
10875
 
10876
+ @property
10877
+ @pulumi.getter(name="isPvEncryptionInTransitEnabled")
10878
+ def is_pv_encryption_in_transit_enabled(self) -> Optional[bool]:
10879
+ """
10880
+ Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false.
10881
+ """
10882
+ return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
10883
+
10488
10884
  @property
10489
10885
  @pulumi.getter(name="isReadOnly")
10490
10886
  def is_read_only(self) -> Optional[bool]:
@@ -11692,7 +12088,7 @@ class InstanceSourceDetails(dict):
11692
12088
  :param 'InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
11693
12089
  :param bool is_preserve_boot_volume_enabled: (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
11694
12090
  :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11695
- :param str source_id: (Updatable) The OCID of the boot volume used to boot the instance.
12091
+ :param str source_id: (Updatable) The OCID of the boot volume used to boot the instance. Updates are supported only for linux Images. The user will need to manually destroy and re-create the resource for other image types.
11696
12092
  """
11697
12093
  pulumi.set(__self__, "source_type", source_type)
11698
12094
  if boot_volume_size_in_gbs is not None:
@@ -11762,7 +12158,7 @@ class InstanceSourceDetails(dict):
11762
12158
  @pulumi.getter(name="sourceId")
11763
12159
  def source_id(self) -> Optional[str]:
11764
12160
  """
11765
- (Updatable) The OCID of the boot volume used to boot the instance.
12161
+ (Updatable) The OCID of the boot volume used to boot the instance. Updates are supported only for linux Images. The user will need to manually destroy and re-create the resource for other image types.
11766
12162
  """
11767
12163
  return pulumi.get(self, "source_id")
11768
12164
 
@@ -12545,6 +12941,56 @@ class IpsecConnectionTunnelManagementPhaseTwoDetails(dict):
12545
12941
  return pulumi.get(self, "remaining_lifetime_last_retrieved")
12546
12942
 
12547
12943
 
12944
+ @pulumi.output_type
12945
+ class IpsecTunnelConfiguration(dict):
12946
+ @staticmethod
12947
+ def __key_warning(key: str):
12948
+ suggest = None
12949
+ if key == "associatedVirtualCircuits":
12950
+ suggest = "associated_virtual_circuits"
12951
+ elif key == "drgRouteTableId":
12952
+ suggest = "drg_route_table_id"
12953
+ elif key == "oracleTunnelIp":
12954
+ suggest = "oracle_tunnel_ip"
12955
+
12956
+ if suggest:
12957
+ pulumi.log.warn(f"Key '{key}' not found in IpsecTunnelConfiguration. Access the value via the '{suggest}' property getter instead.")
12958
+
12959
+ def __getitem__(self, key: str) -> Any:
12960
+ IpsecTunnelConfiguration.__key_warning(key)
12961
+ return super().__getitem__(key)
12962
+
12963
+ def get(self, key: str, default = None) -> Any:
12964
+ IpsecTunnelConfiguration.__key_warning(key)
12965
+ return super().get(key, default)
12966
+
12967
+ def __init__(__self__, *,
12968
+ associated_virtual_circuits: Optional[Sequence[str]] = None,
12969
+ drg_route_table_id: Optional[str] = None,
12970
+ oracle_tunnel_ip: Optional[str] = None):
12971
+ if associated_virtual_circuits is not None:
12972
+ pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
12973
+ if drg_route_table_id is not None:
12974
+ pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
12975
+ if oracle_tunnel_ip is not None:
12976
+ pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
12977
+
12978
+ @property
12979
+ @pulumi.getter(name="associatedVirtualCircuits")
12980
+ def associated_virtual_circuits(self) -> Optional[Sequence[str]]:
12981
+ return pulumi.get(self, "associated_virtual_circuits")
12982
+
12983
+ @property
12984
+ @pulumi.getter(name="drgRouteTableId")
12985
+ def drg_route_table_id(self) -> Optional[str]:
12986
+ return pulumi.get(self, "drg_route_table_id")
12987
+
12988
+ @property
12989
+ @pulumi.getter(name="oracleTunnelIp")
12990
+ def oracle_tunnel_ip(self) -> Optional[str]:
12991
+ return pulumi.get(self, "oracle_tunnel_ip")
12992
+
12993
+
12548
12994
  @pulumi.output_type
12549
12995
  class NetworkSecurityGroupSecurityRuleIcmpOptions(dict):
12550
12996
  def __init__(__self__, *,
@@ -13958,6 +14404,8 @@ class VnicAttachmentCreateVnicDetails(dict):
13958
14404
  suggest = "nsg_ids"
13959
14405
  elif key == "privateIp":
13960
14406
  suggest = "private_ip"
14407
+ elif key == "securityAttributes":
14408
+ suggest = "security_attributes"
13961
14409
  elif key == "skipSourceDestCheck":
13962
14410
  suggest = "skip_source_dest_check"
13963
14411
  elif key == "subnetId":
@@ -13987,6 +14435,7 @@ class VnicAttachmentCreateVnicDetails(dict):
13987
14435
  ipv6address_ipv6subnet_cidr_pair_details: Optional[Sequence['outputs.VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail']] = None,
13988
14436
  nsg_ids: Optional[Sequence[str]] = None,
13989
14437
  private_ip: Optional[str] = None,
14438
+ security_attributes: Optional[Mapping[str, str]] = None,
13990
14439
  skip_source_dest_check: Optional[bool] = None,
13991
14440
  subnet_id: Optional[str] = None,
13992
14441
  vlan_id: Optional[str] = None):
@@ -14025,6 +14474,7 @@ class VnicAttachmentCreateVnicDetails(dict):
14025
14474
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14026
14475
 
14027
14476
  Example: `10.0.3.3`
14477
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
14028
14478
  :param bool skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
14029
14479
 
14030
14480
  If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
@@ -14057,6 +14507,8 @@ class VnicAttachmentCreateVnicDetails(dict):
14057
14507
  pulumi.set(__self__, "nsg_ids", nsg_ids)
14058
14508
  if private_ip is not None:
14059
14509
  pulumi.set(__self__, "private_ip", private_ip)
14510
+ if security_attributes is not None:
14511
+ pulumi.set(__self__, "security_attributes", security_attributes)
14060
14512
  if skip_source_dest_check is not None:
14061
14513
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
14062
14514
  if subnet_id is not None:
@@ -14168,6 +14620,14 @@ class VnicAttachmentCreateVnicDetails(dict):
14168
14620
  """
14169
14621
  return pulumi.get(self, "private_ip")
14170
14622
 
14623
+ @property
14624
+ @pulumi.getter(name="securityAttributes")
14625
+ def security_attributes(self) -> Optional[Mapping[str, str]]:
14626
+ """
14627
+ 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"}`
14628
+ """
14629
+ return pulumi.get(self, "security_attributes")
14630
+
14171
14631
  @property
14172
14632
  @pulumi.getter(name="skipSourceDestCheck")
14173
14633
  def skip_source_dest_check(self) -> Optional[bool]:
@@ -14609,6 +15069,10 @@ class VolumeBlockVolumeReplica(dict):
14609
15069
  suggest = "block_volume_replica_id"
14610
15070
  elif key == "displayName":
14611
15071
  suggest = "display_name"
15072
+ elif key == "kmsKeyId":
15073
+ suggest = "kms_key_id"
15074
+ elif key == "xrrKmsKeyId":
15075
+ suggest = "xrr_kms_key_id"
14612
15076
 
14613
15077
  if suggest:
14614
15078
  pulumi.log.warn(f"Key '{key}' not found in VolumeBlockVolumeReplica. Access the value via the '{suggest}' property getter instead.")
@@ -14624,17 +15088,25 @@ class VolumeBlockVolumeReplica(dict):
14624
15088
  def __init__(__self__, *,
14625
15089
  availability_domain: str,
14626
15090
  block_volume_replica_id: Optional[str] = None,
14627
- display_name: Optional[str] = None):
15091
+ display_name: Optional[str] = None,
15092
+ kms_key_id: Optional[str] = None,
15093
+ xrr_kms_key_id: Optional[str] = None):
14628
15094
  """
14629
15095
  :param str availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
14630
15096
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
14631
15097
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
15098
+ :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
15099
+ :param 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).
14632
15100
  """
14633
15101
  pulumi.set(__self__, "availability_domain", availability_domain)
14634
15102
  if block_volume_replica_id is not None:
14635
15103
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
14636
15104
  if display_name is not None:
14637
15105
  pulumi.set(__self__, "display_name", display_name)
15106
+ if kms_key_id is not None:
15107
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
15108
+ if xrr_kms_key_id is not None:
15109
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
14638
15110
 
14639
15111
  @property
14640
15112
  @pulumi.getter(name="availabilityDomain")
@@ -14660,6 +15132,22 @@ class VolumeBlockVolumeReplica(dict):
14660
15132
  """
14661
15133
  return pulumi.get(self, "display_name")
14662
15134
 
15135
+ @property
15136
+ @pulumi.getter(name="kmsKeyId")
15137
+ def kms_key_id(self) -> Optional[str]:
15138
+ """
15139
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
15140
+ """
15141
+ return pulumi.get(self, "kms_key_id")
15142
+
15143
+ @property
15144
+ @pulumi.getter(name="xrrKmsKeyId")
15145
+ def xrr_kms_key_id(self) -> Optional[str]:
15146
+ """
15147
+ (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).
15148
+ """
15149
+ return pulumi.get(self, "xrr_kms_key_id")
15150
+
14663
15151
 
14664
15152
  @pulumi.output_type
14665
15153
  class VolumeGroupBackupSourceDetails(dict):
@@ -14831,6 +15319,8 @@ class VolumeGroupVolumeGroupReplica(dict):
14831
15319
  suggest = "display_name"
14832
15320
  elif key == "volumeGroupReplicaId":
14833
15321
  suggest = "volume_group_replica_id"
15322
+ elif key == "xrrKmsKeyId":
15323
+ suggest = "xrr_kms_key_id"
14834
15324
 
14835
15325
  if suggest:
14836
15326
  pulumi.log.warn(f"Key '{key}' not found in VolumeGroupVolumeGroupReplica. Access the value via the '{suggest}' property getter instead.")
@@ -14846,17 +15336,21 @@ class VolumeGroupVolumeGroupReplica(dict):
14846
15336
  def __init__(__self__, *,
14847
15337
  availability_domain: str,
14848
15338
  display_name: Optional[str] = None,
14849
- volume_group_replica_id: Optional[str] = None):
15339
+ volume_group_replica_id: Optional[str] = None,
15340
+ xrr_kms_key_id: Optional[str] = None):
14850
15341
  """
14851
15342
  :param str availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
14852
15343
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14853
15344
  :param str volume_group_replica_id: The volume group replica's Oracle ID (OCID).
15345
+ :param 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).
14854
15346
  """
14855
15347
  pulumi.set(__self__, "availability_domain", availability_domain)
14856
15348
  if display_name is not None:
14857
15349
  pulumi.set(__self__, "display_name", display_name)
14858
15350
  if volume_group_replica_id is not None:
14859
15351
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
15352
+ if xrr_kms_key_id is not None:
15353
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
14860
15354
 
14861
15355
  @property
14862
15356
  @pulumi.getter(name="availabilityDomain")
@@ -14882,34 +15376,100 @@ class VolumeGroupVolumeGroupReplica(dict):
14882
15376
  """
14883
15377
  return pulumi.get(self, "volume_group_replica_id")
14884
15378
 
15379
+ @property
15380
+ @pulumi.getter(name="xrrKmsKeyId")
15381
+ def xrr_kms_key_id(self) -> Optional[str]:
15382
+ """
15383
+ (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).
15384
+ """
15385
+ return pulumi.get(self, "xrr_kms_key_id")
15386
+
14885
15387
 
14886
15388
  @pulumi.output_type
14887
15389
  class VolumeSourceDetails(dict):
15390
+ @staticmethod
15391
+ def __key_warning(key: str):
15392
+ suggest = None
15393
+ if key == "changeBlockSizeInBytes":
15394
+ suggest = "change_block_size_in_bytes"
15395
+ elif key == "firstBackupId":
15396
+ suggest = "first_backup_id"
15397
+ elif key == "secondBackupId":
15398
+ suggest = "second_backup_id"
15399
+
15400
+ if suggest:
15401
+ pulumi.log.warn(f"Key '{key}' not found in VolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
15402
+
15403
+ def __getitem__(self, key: str) -> Any:
15404
+ VolumeSourceDetails.__key_warning(key)
15405
+ return super().__getitem__(key)
15406
+
15407
+ def get(self, key: str, default = None) -> Any:
15408
+ VolumeSourceDetails.__key_warning(key)
15409
+ return super().get(key, default)
15410
+
14888
15411
  def __init__(__self__, *,
14889
- id: str,
14890
- type: str):
15412
+ type: str,
15413
+ change_block_size_in_bytes: Optional[str] = None,
15414
+ first_backup_id: Optional[str] = None,
15415
+ id: Optional[str] = None,
15416
+ second_backup_id: Optional[str] = None):
14891
15417
  """
15418
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
15419
+ :param 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).
15420
+ :param str first_backup_id: The OCID of the first volume backup.
14892
15421
  :param str id: The OCID of the block volume replica.
14893
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
15422
+ :param str second_backup_id: The OCID of the second volume backup.
14894
15423
  """
14895
- pulumi.set(__self__, "id", id)
14896
15424
  pulumi.set(__self__, "type", type)
15425
+ if change_block_size_in_bytes is not None:
15426
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
15427
+ if first_backup_id is not None:
15428
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
15429
+ if id is not None:
15430
+ pulumi.set(__self__, "id", id)
15431
+ if second_backup_id is not None:
15432
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
14897
15433
 
14898
15434
  @property
14899
15435
  @pulumi.getter
14900
- def id(self) -> str:
15436
+ def type(self) -> str:
15437
+ """
15438
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
15439
+ """
15440
+ return pulumi.get(self, "type")
15441
+
15442
+ @property
15443
+ @pulumi.getter(name="changeBlockSizeInBytes")
15444
+ def change_block_size_in_bytes(self) -> Optional[str]:
15445
+ """
15446
+ 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).
15447
+ """
15448
+ return pulumi.get(self, "change_block_size_in_bytes")
15449
+
15450
+ @property
15451
+ @pulumi.getter(name="firstBackupId")
15452
+ def first_backup_id(self) -> Optional[str]:
15453
+ """
15454
+ The OCID of the first volume backup.
15455
+ """
15456
+ return pulumi.get(self, "first_backup_id")
15457
+
15458
+ @property
15459
+ @pulumi.getter
15460
+ def id(self) -> Optional[str]:
14901
15461
  """
14902
15462
  The OCID of the block volume replica.
14903
15463
  """
14904
15464
  return pulumi.get(self, "id")
14905
15465
 
14906
15466
  @property
14907
- @pulumi.getter
14908
- def type(self) -> str:
15467
+ @pulumi.getter(name="secondBackupId")
15468
+ def second_backup_id(self) -> Optional[str]:
14909
15469
  """
14910
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
15470
+ The OCID of the second volume backup.
14911
15471
  """
14912
- return pulumi.get(self, "type")
15472
+ return pulumi.get(self, "second_backup_id")
14913
15473
 
14914
15474
 
14915
15475
  @pulumi.output_type
@@ -15317,6 +15877,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15317
15877
  display_name: str,
15318
15878
  freeform_tags: Mapping[str, str],
15319
15879
  id: str,
15880
+ kms_key_id: str,
15320
15881
  size_in_gbs: str,
15321
15882
  state: str,
15322
15883
  time_created: str,
@@ -15330,6 +15891,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15330
15891
  :param str display_name: A filter to return only resources that match the given display name exactly.
15331
15892
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
15332
15893
  :param str id: The block volume replica's Oracle ID (OCID).
15894
+ :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the block volume replica, 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).
15333
15895
  :param str size_in_gbs: The size of the source block volume, in GBs.
15334
15896
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
15335
15897
  :param str time_created: The date and time the block volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -15343,6 +15905,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15343
15905
  pulumi.set(__self__, "display_name", display_name)
15344
15906
  pulumi.set(__self__, "freeform_tags", freeform_tags)
15345
15907
  pulumi.set(__self__, "id", id)
15908
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
15346
15909
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
15347
15910
  pulumi.set(__self__, "state", state)
15348
15911
  pulumi.set(__self__, "time_created", time_created)
@@ -15405,6 +15968,14 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15405
15968
  """
15406
15969
  return pulumi.get(self, "id")
15407
15970
 
15971
+ @property
15972
+ @pulumi.getter(name="kmsKeyId")
15973
+ def kms_key_id(self) -> str:
15974
+ """
15975
+ The OCID of the Vault service key to assign as the master encryption key for the block volume replica, 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).
15976
+ """
15977
+ return pulumi.get(self, "kms_key_id")
15978
+
15408
15979
  @property
15409
15980
  @pulumi.getter(name="sizeInGbs")
15410
15981
  def size_in_gbs(self) -> str:
@@ -15969,15 +16540,20 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
15969
16540
  def __init__(__self__, *,
15970
16541
  availability_domain: str,
15971
16542
  boot_volume_replica_id: str,
15972
- display_name: str):
16543
+ display_name: str,
16544
+ kms_key_id: str,
16545
+ xrr_kms_key_id: str):
15973
16546
  """
15974
16547
  :param str availability_domain: The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
15975
16548
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
15976
16549
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
16550
+ :param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
15977
16551
  """
15978
16552
  pulumi.set(__self__, "availability_domain", availability_domain)
15979
16553
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
15980
16554
  pulumi.set(__self__, "display_name", display_name)
16555
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
16556
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
15981
16557
 
15982
16558
  @property
15983
16559
  @pulumi.getter(name="availabilityDomain")
@@ -16003,6 +16579,19 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
16003
16579
  """
16004
16580
  return pulumi.get(self, "display_name")
16005
16581
 
16582
+ @property
16583
+ @pulumi.getter(name="kmsKeyId")
16584
+ def kms_key_id(self) -> str:
16585
+ """
16586
+ The OCID of the Vault service master encryption key assigned to the boot volume.
16587
+ """
16588
+ return pulumi.get(self, "kms_key_id")
16589
+
16590
+ @property
16591
+ @pulumi.getter(name="xrrKmsKeyId")
16592
+ def xrr_kms_key_id(self) -> str:
16593
+ return pulumi.get(self, "xrr_kms_key_id")
16594
+
16006
16595
 
16007
16596
  @pulumi.output_type
16008
16597
  class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
@@ -16015,6 +16604,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16015
16604
  freeform_tags: Mapping[str, str],
16016
16605
  id: str,
16017
16606
  image_id: str,
16607
+ kms_key_id: str,
16018
16608
  size_in_gbs: str,
16019
16609
  state: str,
16020
16610
  time_created: str,
@@ -16029,6 +16619,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16029
16619
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
16030
16620
  :param str id: The boot volume replica's Oracle ID (OCID).
16031
16621
  :param str image_id: The image OCID used to create the boot volume the replica is replicated from.
16622
+ :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume replica, 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).
16032
16623
  :param str size_in_gbs: The size of the source boot volume, in GBs.
16033
16624
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
16034
16625
  :param str time_created: The date and time the boot volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -16043,6 +16634,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16043
16634
  pulumi.set(__self__, "freeform_tags", freeform_tags)
16044
16635
  pulumi.set(__self__, "id", id)
16045
16636
  pulumi.set(__self__, "image_id", image_id)
16637
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
16046
16638
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
16047
16639
  pulumi.set(__self__, "state", state)
16048
16640
  pulumi.set(__self__, "time_created", time_created)
@@ -16113,6 +16705,14 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16113
16705
  """
16114
16706
  return pulumi.get(self, "image_id")
16115
16707
 
16708
+ @property
16709
+ @pulumi.getter(name="kmsKeyId")
16710
+ def kms_key_id(self) -> str:
16711
+ """
16712
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume replica, 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).
16713
+ """
16714
+ return pulumi.get(self, "kms_key_id")
16715
+
16116
16716
  @property
16117
16717
  @pulumi.getter(name="sizeInGbs")
16118
16718
  def size_in_gbs(self) -> str:
@@ -16184,15 +16784,40 @@ class GetBootVolumeReplicasFilterResult(dict):
16184
16784
  @pulumi.output_type
16185
16785
  class GetBootVolumeSourceDetailResult(dict):
16186
16786
  def __init__(__self__, *,
16787
+ change_block_size_in_bytes: str,
16788
+ first_backup_id: str,
16187
16789
  id: str,
16790
+ second_backup_id: str,
16188
16791
  type: str):
16189
16792
  """
16793
+ :param 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).
16794
+ :param str first_backup_id: The OCID of the first boot volume backup.
16190
16795
  :param str id: The OCID of the boot volume replica.
16191
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
16796
+ :param str second_backup_id: The OCID of the second boot volume backup.
16797
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16192
16798
  """
16799
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
16800
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
16193
16801
  pulumi.set(__self__, "id", id)
16802
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
16194
16803
  pulumi.set(__self__, "type", type)
16195
16804
 
16805
+ @property
16806
+ @pulumi.getter(name="changeBlockSizeInBytes")
16807
+ def change_block_size_in_bytes(self) -> str:
16808
+ """
16809
+ 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).
16810
+ """
16811
+ return pulumi.get(self, "change_block_size_in_bytes")
16812
+
16813
+ @property
16814
+ @pulumi.getter(name="firstBackupId")
16815
+ def first_backup_id(self) -> str:
16816
+ """
16817
+ The OCID of the first boot volume backup.
16818
+ """
16819
+ return pulumi.get(self, "first_backup_id")
16820
+
16196
16821
  @property
16197
16822
  @pulumi.getter
16198
16823
  def id(self) -> str:
@@ -16201,11 +16826,19 @@ class GetBootVolumeSourceDetailResult(dict):
16201
16826
  """
16202
16827
  return pulumi.get(self, "id")
16203
16828
 
16829
+ @property
16830
+ @pulumi.getter(name="secondBackupId")
16831
+ def second_backup_id(self) -> str:
16832
+ """
16833
+ The OCID of the second boot volume backup.
16834
+ """
16835
+ return pulumi.get(self, "second_backup_id")
16836
+
16204
16837
  @property
16205
16838
  @pulumi.getter
16206
16839
  def type(self) -> str:
16207
16840
  """
16208
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
16841
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16209
16842
  """
16210
16843
  return pulumi.get(self, "type")
16211
16844
 
@@ -16236,7 +16869,8 @@ class GetBootVolumesBootVolumeResult(dict):
16236
16869
  system_tags: Mapping[str, str],
16237
16870
  time_created: str,
16238
16871
  volume_group_id: str,
16239
- vpus_per_gb: str):
16872
+ vpus_per_gb: str,
16873
+ xrc_kms_key_id: str):
16240
16874
  """
16241
16875
  :param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
16242
16876
  :param Sequence['GetBootVolumesBootVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
@@ -16284,6 +16918,7 @@ class GetBootVolumesBootVolumeResult(dict):
16284
16918
  pulumi.set(__self__, "time_created", time_created)
16285
16919
  pulumi.set(__self__, "volume_group_id", volume_group_id)
16286
16920
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
16921
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
16287
16922
 
16288
16923
  @property
16289
16924
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -16469,6 +17104,11 @@ class GetBootVolumesBootVolumeResult(dict):
16469
17104
  """
16470
17105
  return pulumi.get(self, "vpus_per_gb")
16471
17106
 
17107
+ @property
17108
+ @pulumi.getter(name="xrcKmsKeyId")
17109
+ def xrc_kms_key_id(self) -> str:
17110
+ return pulumi.get(self, "xrc_kms_key_id")
17111
+
16472
17112
 
16473
17113
  @pulumi.output_type
16474
17114
  class GetBootVolumesBootVolumeAutotunePolicyResult(dict):
@@ -16504,15 +17144,20 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
16504
17144
  def __init__(__self__, *,
16505
17145
  availability_domain: str,
16506
17146
  boot_volume_replica_id: str,
16507
- display_name: str):
17147
+ display_name: str,
17148
+ kms_key_id: str,
17149
+ xrr_kms_key_id: str):
16508
17150
  """
16509
17151
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
16510
17152
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
16511
17153
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
17154
+ :param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
16512
17155
  """
16513
17156
  pulumi.set(__self__, "availability_domain", availability_domain)
16514
17157
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
16515
17158
  pulumi.set(__self__, "display_name", display_name)
17159
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
17160
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
16516
17161
 
16517
17162
  @property
16518
17163
  @pulumi.getter(name="availabilityDomain")
@@ -16538,19 +17183,57 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
16538
17183
  """
16539
17184
  return pulumi.get(self, "display_name")
16540
17185
 
17186
+ @property
17187
+ @pulumi.getter(name="kmsKeyId")
17188
+ def kms_key_id(self) -> str:
17189
+ """
17190
+ The OCID of the Vault service master encryption key assigned to the boot volume.
17191
+ """
17192
+ return pulumi.get(self, "kms_key_id")
17193
+
17194
+ @property
17195
+ @pulumi.getter(name="xrrKmsKeyId")
17196
+ def xrr_kms_key_id(self) -> str:
17197
+ return pulumi.get(self, "xrr_kms_key_id")
17198
+
16541
17199
 
16542
17200
  @pulumi.output_type
16543
17201
  class GetBootVolumesBootVolumeSourceDetailResult(dict):
16544
17202
  def __init__(__self__, *,
17203
+ change_block_size_in_bytes: str,
17204
+ first_backup_id: str,
16545
17205
  id: str,
17206
+ second_backup_id: str,
16546
17207
  type: str):
16547
17208
  """
17209
+ :param 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).
17210
+ :param str first_backup_id: The OCID of the first boot volume backup.
16548
17211
  :param str id: The OCID of the boot volume replica.
16549
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
17212
+ :param str second_backup_id: The OCID of the second boot volume backup.
17213
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16550
17214
  """
17215
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
17216
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
16551
17217
  pulumi.set(__self__, "id", id)
17218
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
16552
17219
  pulumi.set(__self__, "type", type)
16553
17220
 
17221
+ @property
17222
+ @pulumi.getter(name="changeBlockSizeInBytes")
17223
+ def change_block_size_in_bytes(self) -> str:
17224
+ """
17225
+ 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).
17226
+ """
17227
+ return pulumi.get(self, "change_block_size_in_bytes")
17228
+
17229
+ @property
17230
+ @pulumi.getter(name="firstBackupId")
17231
+ def first_backup_id(self) -> str:
17232
+ """
17233
+ The OCID of the first boot volume backup.
17234
+ """
17235
+ return pulumi.get(self, "first_backup_id")
17236
+
16554
17237
  @property
16555
17238
  @pulumi.getter
16556
17239
  def id(self) -> str:
@@ -16559,11 +17242,19 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
16559
17242
  """
16560
17243
  return pulumi.get(self, "id")
16561
17244
 
17245
+ @property
17246
+ @pulumi.getter(name="secondBackupId")
17247
+ def second_backup_id(self) -> str:
17248
+ """
17249
+ The OCID of the second boot volume backup.
17250
+ """
17251
+ return pulumi.get(self, "second_backup_id")
17252
+
16562
17253
  @property
16563
17254
  @pulumi.getter
16564
17255
  def type(self) -> str:
16565
17256
  """
16566
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
17257
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16567
17258
  """
16568
17259
  return pulumi.get(self, "type")
16569
17260
 
@@ -26047,7 +26738,8 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26047
26738
  kms_key_id: str,
26048
26739
  size_in_gbs: str,
26049
26740
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
26050
- vpus_per_gb: str):
26741
+ vpus_per_gb: str,
26742
+ xrc_kms_key_id: str):
26051
26743
  """
26052
26744
  :param Sequence['GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
26053
26745
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -26062,6 +26754,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26062
26754
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
26063
26755
  :param str size_in_gbs: The size of the volume in GBs.
26064
26756
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
26757
+ :param 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).
26065
26758
  """
26066
26759
  pulumi.set(__self__, "autotune_policies", autotune_policies)
26067
26760
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -26077,6 +26770,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26077
26770
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
26078
26771
  pulumi.set(__self__, "source_details", source_details)
26079
26772
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
26773
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
26080
26774
 
26081
26775
  @property
26082
26776
  @pulumi.getter(name="autotunePolicies")
@@ -26187,6 +26881,14 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26187
26881
  """
26188
26882
  return pulumi.get(self, "vpus_per_gb")
26189
26883
 
26884
+ @property
26885
+ @pulumi.getter(name="xrcKmsKeyId")
26886
+ def xrc_kms_key_id(self) -> str:
26887
+ """
26888
+ 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).
26889
+ """
26890
+ return pulumi.get(self, "xrc_kms_key_id")
26891
+
26190
26892
 
26191
26893
  @pulumi.output_type
26192
26894
  class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -26300,6 +27002,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26300
27002
  platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
26301
27003
  preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
26302
27004
  preferred_maintenance_action: str,
27005
+ security_attributes: Mapping[str, str],
26303
27006
  shape: str,
26304
27007
  shape_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailShapeConfigResult'],
26305
27008
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailSourceDetailResult']):
@@ -26332,6 +27035,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26332
27035
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
26333
27036
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
26334
27037
  * `REBOOT` - Run maintenance using a reboot.
27038
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
26335
27039
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
26336
27040
  :param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
26337
27041
  """
@@ -26357,6 +27061,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26357
27061
  pulumi.set(__self__, "platform_configs", platform_configs)
26358
27062
  pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
26359
27063
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
27064
+ pulumi.set(__self__, "security_attributes", security_attributes)
26360
27065
  pulumi.set(__self__, "shape", shape)
26361
27066
  pulumi.set(__self__, "shape_configs", shape_configs)
26362
27067
  pulumi.set(__self__, "source_details", source_details)
@@ -26543,6 +27248,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26543
27248
  """
26544
27249
  return pulumi.get(self, "preferred_maintenance_action")
26545
27250
 
27251
+ @property
27252
+ @pulumi.getter(name="securityAttributes")
27253
+ def security_attributes(self) -> Mapping[str, str]:
27254
+ """
27255
+ 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"}}}`
27256
+ """
27257
+ return pulumi.get(self, "security_attributes")
27258
+
26546
27259
  @property
26547
27260
  @pulumi.getter
26548
27261
  def shape(self) -> str:
@@ -26691,6 +27404,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
26691
27404
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
26692
27405
  nsg_ids: Sequence[str],
26693
27406
  private_ip: str,
27407
+ security_attributes: Mapping[str, str],
26694
27408
  skip_source_dest_check: bool,
26695
27409
  subnet_id: str):
26696
27410
  """
@@ -26704,6 +27418,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
26704
27418
  :param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
26705
27419
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
26706
27420
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
27421
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
26707
27422
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
26708
27423
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
26709
27424
  """
@@ -26717,6 +27432,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
26717
27432
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
26718
27433
  pulumi.set(__self__, "nsg_ids", nsg_ids)
26719
27434
  pulumi.set(__self__, "private_ip", private_ip)
27435
+ pulumi.set(__self__, "security_attributes", security_attributes)
26720
27436
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
26721
27437
  pulumi.set(__self__, "subnet_id", subnet_id)
26722
27438
 
@@ -26800,6 +27516,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult(d
26800
27516
  """
26801
27517
  return pulumi.get(self, "private_ip")
26802
27518
 
27519
+ @property
27520
+ @pulumi.getter(name="securityAttributes")
27521
+ def security_attributes(self) -> Mapping[str, str]:
27522
+ """
27523
+ 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"}}}`
27524
+ """
27525
+ return pulumi.get(self, "security_attributes")
27526
+
26803
27527
  @property
26804
27528
  @pulumi.getter(name="skipSourceDestCheck")
26805
27529
  def skip_source_dest_check(self) -> bool:
@@ -27530,7 +28254,8 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27530
28254
  kms_key_id: str,
27531
28255
  size_in_gbs: str,
27532
28256
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
27533
- vpus_per_gb: str):
28257
+ vpus_per_gb: str,
28258
+ xrc_kms_key_id: str):
27534
28259
  """
27535
28260
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
27536
28261
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -27545,6 +28270,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27545
28270
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
27546
28271
  :param str size_in_gbs: The size of the volume in GBs.
27547
28272
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
28273
+ :param 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).
27548
28274
  """
27549
28275
  pulumi.set(__self__, "autotune_policies", autotune_policies)
27550
28276
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -27560,6 +28286,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27560
28286
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
27561
28287
  pulumi.set(__self__, "source_details", source_details)
27562
28288
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
28289
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
27563
28290
 
27564
28291
  @property
27565
28292
  @pulumi.getter(name="autotunePolicies")
@@ -27670,6 +28397,14 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27670
28397
  """
27671
28398
  return pulumi.get(self, "vpus_per_gb")
27672
28399
 
28400
+ @property
28401
+ @pulumi.getter(name="xrcKmsKeyId")
28402
+ def xrc_kms_key_id(self) -> str:
28403
+ """
28404
+ 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).
28405
+ """
28406
+ return pulumi.get(self, "xrc_kms_key_id")
28407
+
27673
28408
 
27674
28409
  @pulumi.output_type
27675
28410
  class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -27783,6 +28518,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27783
28518
  platform_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
27784
28519
  preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
27785
28520
  preferred_maintenance_action: str,
28521
+ security_attributes: Mapping[str, str],
27786
28522
  shape: str,
27787
28523
  shape_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigResult'],
27788
28524
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailSourceDetailResult']):
@@ -27815,6 +28551,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27815
28551
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
27816
28552
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
27817
28553
  * `REBOOT` - Run maintenance using a reboot.
28554
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
27818
28555
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
27819
28556
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
27820
28557
  """
@@ -27840,6 +28577,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27840
28577
  pulumi.set(__self__, "platform_configs", platform_configs)
27841
28578
  pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
27842
28579
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
28580
+ pulumi.set(__self__, "security_attributes", security_attributes)
27843
28581
  pulumi.set(__self__, "shape", shape)
27844
28582
  pulumi.set(__self__, "shape_configs", shape_configs)
27845
28583
  pulumi.set(__self__, "source_details", source_details)
@@ -28026,6 +28764,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
28026
28764
  """
28027
28765
  return pulumi.get(self, "preferred_maintenance_action")
28028
28766
 
28767
+ @property
28768
+ @pulumi.getter(name="securityAttributes")
28769
+ def security_attributes(self) -> Mapping[str, str]:
28770
+ """
28771
+ 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"}}}`
28772
+ """
28773
+ return pulumi.get(self, "security_attributes")
28774
+
28029
28775
  @property
28030
28776
  @pulumi.getter
28031
28777
  def shape(self) -> str:
@@ -28174,6 +28920,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
28174
28920
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
28175
28921
  nsg_ids: Sequence[str],
28176
28922
  private_ip: str,
28923
+ security_attributes: Mapping[str, str],
28177
28924
  skip_source_dest_check: bool,
28178
28925
  subnet_id: str):
28179
28926
  """
@@ -28187,6 +28934,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
28187
28934
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
28188
28935
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
28189
28936
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
28937
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
28190
28938
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
28191
28939
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
28192
28940
  """
@@ -28200,6 +28948,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
28200
28948
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
28201
28949
  pulumi.set(__self__, "nsg_ids", nsg_ids)
28202
28950
  pulumi.set(__self__, "private_ip", private_ip)
28951
+ pulumi.set(__self__, "security_attributes", security_attributes)
28203
28952
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
28204
28953
  pulumi.set(__self__, "subnet_id", subnet_id)
28205
28954
 
@@ -28283,6 +29032,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailRe
28283
29032
  """
28284
29033
  return pulumi.get(self, "private_ip")
28285
29034
 
29035
+ @property
29036
+ @pulumi.getter(name="securityAttributes")
29037
+ def security_attributes(self) -> Mapping[str, str]:
29038
+ """
29039
+ 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"}}}`
29040
+ """
29041
+ return pulumi.get(self, "security_attributes")
29042
+
28286
29043
  @property
28287
29044
  @pulumi.getter(name="skipSourceDestCheck")
28288
29045
  def skip_source_dest_check(self) -> bool:
@@ -28875,6 +29632,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
28875
29632
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
28876
29633
  nsg_ids: Sequence[str],
28877
29634
  private_ip: str,
29635
+ security_attributes: Mapping[str, str],
28878
29636
  skip_source_dest_check: bool,
28879
29637
  subnet_id: str):
28880
29638
  """
@@ -28888,6 +29646,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
28888
29646
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
28889
29647
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
28890
29648
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
29649
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
28891
29650
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
28892
29651
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
28893
29652
  """
@@ -28901,6 +29660,7 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
28901
29660
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
28902
29661
  pulumi.set(__self__, "nsg_ids", nsg_ids)
28903
29662
  pulumi.set(__self__, "private_ip", private_ip)
29663
+ pulumi.set(__self__, "security_attributes", security_attributes)
28904
29664
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
28905
29665
  pulumi.set(__self__, "subnet_id", subnet_id)
28906
29666
 
@@ -28984,6 +29744,14 @@ class GetInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailR
28984
29744
  """
28985
29745
  return pulumi.get(self, "private_ip")
28986
29746
 
29747
+ @property
29748
+ @pulumi.getter(name="securityAttributes")
29749
+ def security_attributes(self) -> Mapping[str, str]:
29750
+ """
29751
+ 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"}}}`
29752
+ """
29753
+ return pulumi.get(self, "security_attributes")
29754
+
28987
29755
  @property
28988
29756
  @pulumi.getter(name="skipSourceDestCheck")
28989
29757
  def skip_source_dest_check(self) -> bool:
@@ -29083,6 +29851,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
29083
29851
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
29084
29852
  nsg_ids: Sequence[str],
29085
29853
  private_ip: str,
29854
+ security_attributes: Mapping[str, str],
29086
29855
  skip_source_dest_check: bool,
29087
29856
  subnet_id: str):
29088
29857
  """
@@ -29096,6 +29865,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
29096
29865
  :param Sequence['GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
29097
29866
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
29098
29867
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
29868
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
29099
29869
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
29100
29870
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
29101
29871
  """
@@ -29109,6 +29879,7 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
29109
29879
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
29110
29880
  pulumi.set(__self__, "nsg_ids", nsg_ids)
29111
29881
  pulumi.set(__self__, "private_ip", private_ip)
29882
+ pulumi.set(__self__, "security_attributes", security_attributes)
29112
29883
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
29113
29884
  pulumi.set(__self__, "subnet_id", subnet_id)
29114
29885
 
@@ -29192,6 +29963,14 @@ class GetInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailResult(
29192
29963
  """
29193
29964
  return pulumi.get(self, "private_ip")
29194
29965
 
29966
+ @property
29967
+ @pulumi.getter(name="securityAttributes")
29968
+ def security_attributes(self) -> Mapping[str, str]:
29969
+ """
29970
+ 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"}}}`
29971
+ """
29972
+ return pulumi.get(self, "security_attributes")
29973
+
29195
29974
  @property
29196
29975
  @pulumi.getter(name="skipSourceDestCheck")
29197
29976
  def skip_source_dest_check(self) -> bool:
@@ -29578,7 +30357,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29578
30357
  kms_key_id: str,
29579
30358
  size_in_gbs: str,
29580
30359
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
29581
- vpus_per_gb: str):
30360
+ vpus_per_gb: str,
30361
+ xrc_kms_key_id: str):
29582
30362
  """
29583
30363
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
29584
30364
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -29593,6 +30373,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29593
30373
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
29594
30374
  :param str size_in_gbs: The size of the volume in GBs.
29595
30375
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
30376
+ :param 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).
29596
30377
  """
29597
30378
  pulumi.set(__self__, "autotune_policies", autotune_policies)
29598
30379
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -29608,6 +30389,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29608
30389
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
29609
30390
  pulumi.set(__self__, "source_details", source_details)
29610
30391
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
30392
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
29611
30393
 
29612
30394
  @property
29613
30395
  @pulumi.getter(name="autotunePolicies")
@@ -29718,6 +30500,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29718
30500
  """
29719
30501
  return pulumi.get(self, "vpus_per_gb")
29720
30502
 
30503
+ @property
30504
+ @pulumi.getter(name="xrcKmsKeyId")
30505
+ def xrc_kms_key_id(self) -> str:
30506
+ """
30507
+ 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).
30508
+ """
30509
+ return pulumi.get(self, "xrc_kms_key_id")
30510
+
29721
30511
 
29722
30512
  @pulumi.output_type
29723
30513
  class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -29831,6 +30621,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29831
30621
  platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult'],
29832
30622
  preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPreemptibleInstanceConfigResult'],
29833
30623
  preferred_maintenance_action: str,
30624
+ security_attributes: Mapping[str, str],
29834
30625
  shape: str,
29835
30626
  shape_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailShapeConfigResult'],
29836
30627
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailSourceDetailResult']):
@@ -29863,6 +30654,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29863
30654
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
29864
30655
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
29865
30656
  * `REBOOT` - Run maintenance using a reboot.
30657
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
29866
30658
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
29867
30659
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
29868
30660
  """
@@ -29888,6 +30680,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29888
30680
  pulumi.set(__self__, "platform_configs", platform_configs)
29889
30681
  pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
29890
30682
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
30683
+ pulumi.set(__self__, "security_attributes", security_attributes)
29891
30684
  pulumi.set(__self__, "shape", shape)
29892
30685
  pulumi.set(__self__, "shape_configs", shape_configs)
29893
30686
  pulumi.set(__self__, "source_details", source_details)
@@ -30074,6 +30867,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
30074
30867
  """
30075
30868
  return pulumi.get(self, "preferred_maintenance_action")
30076
30869
 
30870
+ @property
30871
+ @pulumi.getter(name="securityAttributes")
30872
+ def security_attributes(self) -> Mapping[str, str]:
30873
+ """
30874
+ 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"}}}`
30875
+ """
30876
+ return pulumi.get(self, "security_attributes")
30877
+
30077
30878
  @property
30078
30879
  @pulumi.getter
30079
30880
  def shape(self) -> str:
@@ -30222,6 +31023,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
30222
31023
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
30223
31024
  nsg_ids: Sequence[str],
30224
31025
  private_ip: str,
31026
+ security_attributes: Mapping[str, str],
30225
31027
  skip_source_dest_check: bool,
30226
31028
  subnet_id: str):
30227
31029
  """
@@ -30235,6 +31037,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
30235
31037
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
30236
31038
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
30237
31039
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
31040
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
30238
31041
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
30239
31042
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
30240
31043
  """
@@ -30248,6 +31051,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
30248
31051
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
30249
31052
  pulumi.set(__self__, "nsg_ids", nsg_ids)
30250
31053
  pulumi.set(__self__, "private_ip", private_ip)
31054
+ pulumi.set(__self__, "security_attributes", security_attributes)
30251
31055
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
30252
31056
  pulumi.set(__self__, "subnet_id", subnet_id)
30253
31057
 
@@ -30331,6 +31135,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCr
30331
31135
  """
30332
31136
  return pulumi.get(self, "private_ip")
30333
31137
 
31138
+ @property
31139
+ @pulumi.getter(name="securityAttributes")
31140
+ def security_attributes(self) -> Mapping[str, str]:
31141
+ """
31142
+ 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"}}}`
31143
+ """
31144
+ return pulumi.get(self, "security_attributes")
31145
+
30334
31146
  @property
30335
31147
  @pulumi.getter(name="skipSourceDestCheck")
30336
31148
  def skip_source_dest_check(self) -> bool:
@@ -31061,7 +31873,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31061
31873
  kms_key_id: str,
31062
31874
  size_in_gbs: str,
31063
31875
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
31064
- vpus_per_gb: str):
31876
+ vpus_per_gb: str,
31877
+ xrc_kms_key_id: str):
31065
31878
  """
31066
31879
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
31067
31880
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -31076,6 +31889,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31076
31889
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
31077
31890
  :param str size_in_gbs: The size of the volume in GBs.
31078
31891
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
31892
+ :param 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).
31079
31893
  """
31080
31894
  pulumi.set(__self__, "autotune_policies", autotune_policies)
31081
31895
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -31091,6 +31905,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31091
31905
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
31092
31906
  pulumi.set(__self__, "source_details", source_details)
31093
31907
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
31908
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
31094
31909
 
31095
31910
  @property
31096
31911
  @pulumi.getter(name="autotunePolicies")
@@ -31201,6 +32016,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31201
32016
  """
31202
32017
  return pulumi.get(self, "vpus_per_gb")
31203
32018
 
32019
+ @property
32020
+ @pulumi.getter(name="xrcKmsKeyId")
32021
+ def xrc_kms_key_id(self) -> str:
32022
+ """
32023
+ 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).
32024
+ """
32025
+ return pulumi.get(self, "xrc_kms_key_id")
32026
+
31204
32027
 
31205
32028
  @pulumi.output_type
31206
32029
  class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -31314,6 +32137,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31314
32137
  platform_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResult'],
31315
32138
  preemptible_instance_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailPreemptibleInstanceConfigResult'],
31316
32139
  preferred_maintenance_action: str,
32140
+ security_attributes: Mapping[str, str],
31317
32141
  shape: str,
31318
32142
  shape_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigResult'],
31319
32143
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailSourceDetailResult']):
@@ -31346,6 +32170,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31346
32170
  :param str preferred_maintenance_action: The preferred maintenance action for an instance. The default is LIVE_MIGRATE, if live migration is supported.
31347
32171
  * `LIVE_MIGRATE` - Run maintenance using a live migration.
31348
32172
  * `REBOOT` - Run maintenance using a reboot.
32173
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
31349
32174
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
31350
32175
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
31351
32176
  """
@@ -31371,6 +32196,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31371
32196
  pulumi.set(__self__, "platform_configs", platform_configs)
31372
32197
  pulumi.set(__self__, "preemptible_instance_configs", preemptible_instance_configs)
31373
32198
  pulumi.set(__self__, "preferred_maintenance_action", preferred_maintenance_action)
32199
+ pulumi.set(__self__, "security_attributes", security_attributes)
31374
32200
  pulumi.set(__self__, "shape", shape)
31375
32201
  pulumi.set(__self__, "shape_configs", shape_configs)
31376
32202
  pulumi.set(__self__, "source_details", source_details)
@@ -31557,6 +32383,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31557
32383
  """
31558
32384
  return pulumi.get(self, "preferred_maintenance_action")
31559
32385
 
32386
+ @property
32387
+ @pulumi.getter(name="securityAttributes")
32388
+ def security_attributes(self) -> Mapping[str, str]:
32389
+ """
32390
+ 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"}}}`
32391
+ """
32392
+ return pulumi.get(self, "security_attributes")
32393
+
31560
32394
  @property
31561
32395
  @pulumi.getter
31562
32396
  def shape(self) -> str:
@@ -31705,6 +32539,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31705
32539
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
31706
32540
  nsg_ids: Sequence[str],
31707
32541
  private_ip: str,
32542
+ security_attributes: Mapping[str, str],
31708
32543
  skip_source_dest_check: bool,
31709
32544
  subnet_id: str):
31710
32545
  """
@@ -31718,6 +32553,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31718
32553
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
31719
32554
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
31720
32555
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
32556
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
31721
32557
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
31722
32558
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
31723
32559
  """
@@ -31731,6 +32567,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31731
32567
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
31732
32568
  pulumi.set(__self__, "nsg_ids", nsg_ids)
31733
32569
  pulumi.set(__self__, "private_ip", private_ip)
32570
+ pulumi.set(__self__, "security_attributes", security_attributes)
31734
32571
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
31735
32572
  pulumi.set(__self__, "subnet_id", subnet_id)
31736
32573
 
@@ -31814,6 +32651,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31814
32651
  """
31815
32652
  return pulumi.get(self, "private_ip")
31816
32653
 
32654
+ @property
32655
+ @pulumi.getter(name="securityAttributes")
32656
+ def security_attributes(self) -> Mapping[str, str]:
32657
+ """
32658
+ 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"}}}`
32659
+ """
32660
+ return pulumi.get(self, "security_attributes")
32661
+
31817
32662
  @property
31818
32663
  @pulumi.getter(name="skipSourceDestCheck")
31819
32664
  def skip_source_dest_check(self) -> bool:
@@ -32406,6 +33251,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
32406
33251
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
32407
33252
  nsg_ids: Sequence[str],
32408
33253
  private_ip: str,
33254
+ security_attributes: Mapping[str, str],
32409
33255
  skip_source_dest_check: bool,
32410
33256
  subnet_id: str):
32411
33257
  """
@@ -32419,6 +33265,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
32419
33265
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
32420
33266
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
32421
33267
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
33268
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
32422
33269
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
32423
33270
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
32424
33271
  """
@@ -32432,6 +33279,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
32432
33279
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
32433
33280
  pulumi.set(__self__, "nsg_ids", nsg_ids)
32434
33281
  pulumi.set(__self__, "private_ip", private_ip)
33282
+ pulumi.set(__self__, "security_attributes", security_attributes)
32435
33283
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
32436
33284
  pulumi.set(__self__, "subnet_id", subnet_id)
32437
33285
 
@@ -32515,6 +33363,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionSecondar
32515
33363
  """
32516
33364
  return pulumi.get(self, "private_ip")
32517
33365
 
33366
+ @property
33367
+ @pulumi.getter(name="securityAttributes")
33368
+ def security_attributes(self) -> Mapping[str, str]:
33369
+ """
33370
+ 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"}}}`
33371
+ """
33372
+ return pulumi.get(self, "security_attributes")
33373
+
32518
33374
  @property
32519
33375
  @pulumi.getter(name="skipSourceDestCheck")
32520
33376
  def skip_source_dest_check(self) -> bool:
@@ -32614,6 +33470,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
32614
33470
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
32615
33471
  nsg_ids: Sequence[str],
32616
33472
  private_ip: str,
33473
+ security_attributes: Mapping[str, str],
32617
33474
  skip_source_dest_check: bool,
32618
33475
  subnet_id: str):
32619
33476
  """
@@ -32627,6 +33484,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
32627
33484
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailArgs'] ipv6address_ipv6subnet_cidr_pair_details: A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure selects an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
32628
33485
  :param Sequence[str] nsg_ids: A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
32629
33486
  :param str private_ip: A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
33487
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
32630
33488
  :param bool skip_source_dest_check: Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
32631
33489
  :param str subnet_id: The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
32632
33490
  """
@@ -32640,6 +33498,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
32640
33498
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
32641
33499
  pulumi.set(__self__, "nsg_ids", nsg_ids)
32642
33500
  pulumi.set(__self__, "private_ip", private_ip)
33501
+ pulumi.set(__self__, "security_attributes", security_attributes)
32643
33502
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
32644
33503
  pulumi.set(__self__, "subnet_id", subnet_id)
32645
33504
 
@@ -32723,6 +33582,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailSecondaryVnicC
32723
33582
  """
32724
33583
  return pulumi.get(self, "private_ip")
32725
33584
 
33585
+ @property
33586
+ @pulumi.getter(name="securityAttributes")
33587
+ def security_attributes(self) -> Mapping[str, str]:
33588
+ """
33589
+ 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"}}}`
33590
+ """
33591
+ return pulumi.get(self, "security_attributes")
33592
+
32726
33593
  @property
32727
33594
  @pulumi.getter(name="skipSourceDestCheck")
32728
33595
  def skip_source_dest_check(self) -> bool:
@@ -32933,6 +33800,7 @@ class GetInstanceCreateVnicDetailResult(dict):
32933
33800
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstanceCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
32934
33801
  nsg_ids: Sequence[str],
32935
33802
  private_ip: str,
33803
+ security_attributes: Mapping[str, str],
32936
33804
  skip_source_dest_check: bool,
32937
33805
  subnet_id: str,
32938
33806
  vlan_id: str):
@@ -32942,6 +33810,7 @@ class GetInstanceCreateVnicDetailResult(dict):
32942
33810
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
32943
33811
  :param str hostname_label: The hostname for the instance VNIC's primary private IP.
32944
33812
  :param str private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
33813
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
32945
33814
  """
32946
33815
  pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
32947
33816
  pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
@@ -32953,6 +33822,7 @@ class GetInstanceCreateVnicDetailResult(dict):
32953
33822
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
32954
33823
  pulumi.set(__self__, "nsg_ids", nsg_ids)
32955
33824
  pulumi.set(__self__, "private_ip", private_ip)
33825
+ pulumi.set(__self__, "security_attributes", security_attributes)
32956
33826
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
32957
33827
  pulumi.set(__self__, "subnet_id", subnet_id)
32958
33828
  pulumi.set(__self__, "vlan_id", vlan_id)
@@ -33022,6 +33892,14 @@ class GetInstanceCreateVnicDetailResult(dict):
33022
33892
  """
33023
33893
  return pulumi.get(self, "private_ip")
33024
33894
 
33895
+ @property
33896
+ @pulumi.getter(name="securityAttributes")
33897
+ def security_attributes(self) -> Mapping[str, str]:
33898
+ """
33899
+ 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"}}}`
33900
+ """
33901
+ return pulumi.get(self, "security_attributes")
33902
+
33025
33903
  @property
33026
33904
  @pulumi.getter(name="skipSourceDestCheck")
33027
33905
  def skip_source_dest_check(self) -> bool:
@@ -33247,6 +34125,7 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
33247
34125
  display_name: str,
33248
34126
  encryption_in_transit_type: str,
33249
34127
  is_agent_auto_iscsi_login_enabled: bool,
34128
+ is_pv_encryption_in_transit_enabled: bool,
33250
34129
  is_read_only: bool,
33251
34130
  is_shareable: bool,
33252
34131
  launch_create_volume_details: Sequence['outputs.GetInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult'],
@@ -33255,12 +34134,14 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
33255
34134
  volume_id: str):
33256
34135
  """
33257
34136
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
34137
+ :param bool is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
33258
34138
  :param str type: (Required) The type of action to run when the instance is interrupted for eviction.
33259
34139
  """
33260
34140
  pulumi.set(__self__, "device", device)
33261
34141
  pulumi.set(__self__, "display_name", display_name)
33262
34142
  pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
33263
34143
  pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
34144
+ pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
33264
34145
  pulumi.set(__self__, "is_read_only", is_read_only)
33265
34146
  pulumi.set(__self__, "is_shareable", is_shareable)
33266
34147
  pulumi.set(__self__, "launch_create_volume_details", launch_create_volume_details)
@@ -33291,6 +34172,14 @@ class GetInstanceLaunchVolumeAttachmentResult(dict):
33291
34172
  def is_agent_auto_iscsi_login_enabled(self) -> bool:
33292
34173
  return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
33293
34174
 
34175
+ @property
34176
+ @pulumi.getter(name="isPvEncryptionInTransitEnabled")
34177
+ def is_pv_encryption_in_transit_enabled(self) -> bool:
34178
+ """
34179
+ Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
34180
+ """
34181
+ return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
34182
+
33294
34183
  @property
33295
34184
  @pulumi.getter(name="isReadOnly")
33296
34185
  def is_read_only(self) -> bool:
@@ -35320,6 +36209,8 @@ class GetInstancesInstanceResult(dict):
35320
36209
  private_ip: str,
35321
36210
  public_ip: str,
35322
36211
  region: str,
36212
+ security_attributes: Mapping[str, str],
36213
+ security_attributes_state: str,
35323
36214
  shape: str,
35324
36215
  shape_configs: Sequence['outputs.GetInstancesInstanceShapeConfigResult'],
35325
36216
  source_details: Sequence['outputs.GetInstancesInstanceSourceDetailResult'],
@@ -35362,6 +36253,8 @@ class GetInstancesInstanceResult(dict):
35362
36253
  :param Sequence['GetInstancesInstancePreemptibleInstanceConfigArgs'] preemptible_instance_configs: (Optional) Configuration options for preemptible instances.
35363
36254
  :param bool preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
35364
36255
  :param str region: The region that contains the availability domain the instance is running in.
36256
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
36257
+ :param str security_attributes_state: The lifecycle state of the `securityAttributes`
35365
36258
  :param str shape: The shape of the instance. The shape determines the number of CPUs and the amount of memory allocated to the instance. You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
35366
36259
  :param Sequence['GetInstancesInstanceShapeConfigArgs'] shape_configs: The shape configuration for an instance. The shape configuration determines the resources allocated to an instance.
35367
36260
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
@@ -35404,6 +36297,8 @@ class GetInstancesInstanceResult(dict):
35404
36297
  pulumi.set(__self__, "private_ip", private_ip)
35405
36298
  pulumi.set(__self__, "public_ip", public_ip)
35406
36299
  pulumi.set(__self__, "region", region)
36300
+ pulumi.set(__self__, "security_attributes", security_attributes)
36301
+ pulumi.set(__self__, "security_attributes_state", security_attributes_state)
35407
36302
  pulumi.set(__self__, "shape", shape)
35408
36303
  pulumi.set(__self__, "shape_configs", shape_configs)
35409
36304
  pulumi.set(__self__, "source_details", source_details)
@@ -35679,6 +36574,22 @@ class GetInstancesInstanceResult(dict):
35679
36574
  """
35680
36575
  return pulumi.get(self, "region")
35681
36576
 
36577
+ @property
36578
+ @pulumi.getter(name="securityAttributes")
36579
+ def security_attributes(self) -> Mapping[str, str]:
36580
+ """
36581
+ 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"}}}`
36582
+ """
36583
+ return pulumi.get(self, "security_attributes")
36584
+
36585
+ @property
36586
+ @pulumi.getter(name="securityAttributesState")
36587
+ def security_attributes_state(self) -> str:
36588
+ """
36589
+ The lifecycle state of the `securityAttributes`
36590
+ """
36591
+ return pulumi.get(self, "security_attributes_state")
36592
+
35682
36593
  @property
35683
36594
  @pulumi.getter
35684
36595
  def shape(self) -> str:
@@ -35870,6 +36781,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
35870
36781
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetInstancesInstanceCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
35871
36782
  nsg_ids: Sequence[str],
35872
36783
  private_ip: str,
36784
+ security_attributes: Mapping[str, str],
35873
36785
  skip_source_dest_check: bool,
35874
36786
  subnet_id: str,
35875
36787
  vlan_id: str):
@@ -35877,6 +36789,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
35877
36789
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
35878
36790
  :param str display_name: A filter to return only resources that match the given display name exactly.
35879
36791
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
36792
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
35880
36793
  """
35881
36794
  pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
35882
36795
  pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
@@ -35888,6 +36801,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
35888
36801
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
35889
36802
  pulumi.set(__self__, "nsg_ids", nsg_ids)
35890
36803
  pulumi.set(__self__, "private_ip", private_ip)
36804
+ pulumi.set(__self__, "security_attributes", security_attributes)
35891
36805
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
35892
36806
  pulumi.set(__self__, "subnet_id", subnet_id)
35893
36807
  pulumi.set(__self__, "vlan_id", vlan_id)
@@ -35951,6 +36865,14 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
35951
36865
  def private_ip(self) -> str:
35952
36866
  return pulumi.get(self, "private_ip")
35953
36867
 
36868
+ @property
36869
+ @pulumi.getter(name="securityAttributes")
36870
+ def security_attributes(self) -> Mapping[str, str]:
36871
+ """
36872
+ 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"}}}`
36873
+ """
36874
+ return pulumi.get(self, "security_attributes")
36875
+
35954
36876
  @property
35955
36877
  @pulumi.getter(name="skipSourceDestCheck")
35956
36878
  def skip_source_dest_check(self) -> bool:
@@ -36114,6 +37036,7 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
36114
37036
  display_name: str,
36115
37037
  encryption_in_transit_type: str,
36116
37038
  is_agent_auto_iscsi_login_enabled: bool,
37039
+ is_pv_encryption_in_transit_enabled: bool,
36117
37040
  is_read_only: bool,
36118
37041
  is_shareable: bool,
36119
37042
  launch_create_volume_details: Sequence['outputs.GetInstancesInstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailResult'],
@@ -36122,12 +37045,14 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
36122
37045
  volume_id: str):
36123
37046
  """
36124
37047
  :param str display_name: A filter to return only resources that match the given display name exactly.
37048
+ :param bool is_pv_encryption_in_transit_enabled: Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
36125
37049
  :param str type: (Required) The type of action to run when the instance is interrupted for eviction.
36126
37050
  """
36127
37051
  pulumi.set(__self__, "device", device)
36128
37052
  pulumi.set(__self__, "display_name", display_name)
36129
37053
  pulumi.set(__self__, "encryption_in_transit_type", encryption_in_transit_type)
36130
37054
  pulumi.set(__self__, "is_agent_auto_iscsi_login_enabled", is_agent_auto_iscsi_login_enabled)
37055
+ pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
36131
37056
  pulumi.set(__self__, "is_read_only", is_read_only)
36132
37057
  pulumi.set(__self__, "is_shareable", is_shareable)
36133
37058
  pulumi.set(__self__, "launch_create_volume_details", launch_create_volume_details)
@@ -36158,6 +37083,14 @@ class GetInstancesInstanceLaunchVolumeAttachmentResult(dict):
36158
37083
  def is_agent_auto_iscsi_login_enabled(self) -> bool:
36159
37084
  return pulumi.get(self, "is_agent_auto_iscsi_login_enabled")
36160
37085
 
37086
+ @property
37087
+ @pulumi.getter(name="isPvEncryptionInTransitEnabled")
37088
+ def is_pv_encryption_in_transit_enabled(self) -> bool:
37089
+ """
37090
+ Deprecated. Instead use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/datatypes/LaunchInstanceDetails).
37091
+ """
37092
+ return pulumi.get(self, "is_pv_encryption_in_transit_enabled")
37093
+
36161
37094
  @property
36162
37095
  @pulumi.getter(name="isReadOnly")
36163
37096
  def is_read_only(self) -> bool:
@@ -38622,7 +39555,8 @@ class GetIpsecConnectionsConnectionResult(dict):
38622
39555
  state: str,
38623
39556
  static_routes: Sequence[str],
38624
39557
  time_created: str,
38625
- transport_type: str):
39558
+ transport_type: str,
39559
+ tunnel_configurations: Sequence['outputs.GetIpsecConnectionsConnectionTunnelConfigurationResult']):
38626
39560
  """
38627
39561
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
38628
39562
  :param str cpe_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CPE.
@@ -38651,6 +39585,7 @@ class GetIpsecConnectionsConnectionResult(dict):
38651
39585
  pulumi.set(__self__, "static_routes", static_routes)
38652
39586
  pulumi.set(__self__, "time_created", time_created)
38653
39587
  pulumi.set(__self__, "transport_type", transport_type)
39588
+ pulumi.set(__self__, "tunnel_configurations", tunnel_configurations)
38654
39589
 
38655
39590
  @property
38656
39591
  @pulumi.getter(name="compartmentId")
@@ -38756,6 +39691,37 @@ class GetIpsecConnectionsConnectionResult(dict):
38756
39691
  """
38757
39692
  return pulumi.get(self, "transport_type")
38758
39693
 
39694
+ @property
39695
+ @pulumi.getter(name="tunnelConfigurations")
39696
+ def tunnel_configurations(self) -> Sequence['outputs.GetIpsecConnectionsConnectionTunnelConfigurationResult']:
39697
+ return pulumi.get(self, "tunnel_configurations")
39698
+
39699
+
39700
+ @pulumi.output_type
39701
+ class GetIpsecConnectionsConnectionTunnelConfigurationResult(dict):
39702
+ def __init__(__self__, *,
39703
+ associated_virtual_circuits: Sequence[str],
39704
+ drg_route_table_id: str,
39705
+ oracle_tunnel_ip: str):
39706
+ pulumi.set(__self__, "associated_virtual_circuits", associated_virtual_circuits)
39707
+ pulumi.set(__self__, "drg_route_table_id", drg_route_table_id)
39708
+ pulumi.set(__self__, "oracle_tunnel_ip", oracle_tunnel_ip)
39709
+
39710
+ @property
39711
+ @pulumi.getter(name="associatedVirtualCircuits")
39712
+ def associated_virtual_circuits(self) -> Sequence[str]:
39713
+ return pulumi.get(self, "associated_virtual_circuits")
39714
+
39715
+ @property
39716
+ @pulumi.getter(name="drgRouteTableId")
39717
+ def drg_route_table_id(self) -> str:
39718
+ return pulumi.get(self, "drg_route_table_id")
39719
+
39720
+ @property
39721
+ @pulumi.getter(name="oracleTunnelIp")
39722
+ def oracle_tunnel_ip(self) -> str:
39723
+ return pulumi.get(self, "oracle_tunnel_ip")
39724
+
38759
39725
 
38760
39726
  @pulumi.output_type
38761
39727
  class GetIpsecConnectionsFilterResult(dict):
@@ -44021,6 +44987,7 @@ class GetVcnsVirtualNetworkResult(dict):
44021
44987
  ipv6private_cidr_blocks: Sequence[str],
44022
44988
  is_ipv6enabled: bool,
44023
44989
  is_oracle_gua_allocation_enabled: bool,
44990
+ security_attributes: Mapping[str, str],
44024
44991
  state: str,
44025
44992
  time_created: str,
44026
44993
  vcn_domain_name: str):
@@ -44039,6 +45006,7 @@ class GetVcnsVirtualNetworkResult(dict):
44039
45006
  :param str id: The VCN's Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)).
44040
45007
  :param Sequence[str] ipv6cidr_blocks: For an IPv6-enabled VCN, this is the list of IPv6 prefixes for the VCN's IP address space. The prefixes are provided by Oracle and the sizes are always /56.
44041
45008
  :param Sequence[str] ipv6private_cidr_blocks: For an IPv6-enabled VCN, this is the list of Private IPv6 prefixes for the VCN's IP address space.
45009
+ :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
44042
45010
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
44043
45011
  :param str time_created: The date and time the VCN was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
44044
45012
  :param str vcn_domain_name: The VCN's domain name, which consists of the VCN's DNS label, and the `oraclevcn.com` domain.
@@ -44060,6 +45028,7 @@ class GetVcnsVirtualNetworkResult(dict):
44060
45028
  pulumi.set(__self__, "ipv6private_cidr_blocks", ipv6private_cidr_blocks)
44061
45029
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
44062
45030
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
45031
+ pulumi.set(__self__, "security_attributes", security_attributes)
44063
45032
  pulumi.set(__self__, "state", state)
44064
45033
  pulumi.set(__self__, "time_created", time_created)
44065
45034
  pulumi.set(__self__, "vcn_domain_name", vcn_domain_name)
@@ -44191,6 +45160,14 @@ class GetVcnsVirtualNetworkResult(dict):
44191
45160
  def is_oracle_gua_allocation_enabled(self) -> bool:
44192
45161
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
44193
45162
 
45163
+ @property
45164
+ @pulumi.getter(name="securityAttributes")
45165
+ def security_attributes(self) -> Mapping[str, str]:
45166
+ """
45167
+ 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"}`
45168
+ """
45169
+ return pulumi.get(self, "security_attributes")
45170
+
44194
45171
  @property
44195
45172
  @pulumi.getter
44196
45173
  def state(self) -> str:
@@ -45025,6 +46002,7 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
45025
46002
  ipv6private_cidr_blocks: Sequence[str],
45026
46003
  is_ipv6enabled: bool,
45027
46004
  is_oracle_gua_allocation_enabled: bool,
46005
+ security_attributes: Mapping[str, str],
45028
46006
  state: str,
45029
46007
  time_created: str,
45030
46008
  vcn_domain_name: str):
@@ -45045,6 +46023,7 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
45045
46023
  pulumi.set(__self__, "ipv6private_cidr_blocks", ipv6private_cidr_blocks)
45046
46024
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
45047
46025
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
46026
+ pulumi.set(__self__, "security_attributes", security_attributes)
45048
46027
  pulumi.set(__self__, "state", state)
45049
46028
  pulumi.set(__self__, "time_created", time_created)
45050
46029
  pulumi.set(__self__, "vcn_domain_name", vcn_domain_name)
@@ -45134,6 +46113,11 @@ class GetVirtualNetworksVirtualNetworkResult(dict):
45134
46113
  def is_oracle_gua_allocation_enabled(self) -> bool:
45135
46114
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
45136
46115
 
46116
+ @property
46117
+ @pulumi.getter(name="securityAttributes")
46118
+ def security_attributes(self) -> Mapping[str, str]:
46119
+ return pulumi.get(self, "security_attributes")
46120
+
45137
46121
  @property
45138
46122
  @pulumi.getter
45139
46123
  def state(self) -> str:
@@ -45532,6 +46516,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
45532
46516
  ipv6address_ipv6subnet_cidr_pair_details: Sequence['outputs.GetVnicAttachmentsVnicAttachmentCreateVnicDetailIpv6addressIpv6subnetCidrPairDetailResult'],
45533
46517
  nsg_ids: Sequence[str],
45534
46518
  private_ip: str,
46519
+ security_attributes: Mapping[str, str],
45535
46520
  skip_source_dest_check: bool,
45536
46521
  subnet_id: str,
45537
46522
  vlan_id: str):
@@ -45550,6 +46535,7 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
45550
46535
  pulumi.set(__self__, "ipv6address_ipv6subnet_cidr_pair_details", ipv6address_ipv6subnet_cidr_pair_details)
45551
46536
  pulumi.set(__self__, "nsg_ids", nsg_ids)
45552
46537
  pulumi.set(__self__, "private_ip", private_ip)
46538
+ pulumi.set(__self__, "security_attributes", security_attributes)
45553
46539
  pulumi.set(__self__, "skip_source_dest_check", skip_source_dest_check)
45554
46540
  pulumi.set(__self__, "subnet_id", subnet_id)
45555
46541
  pulumi.set(__self__, "vlan_id", vlan_id)
@@ -45607,6 +46593,11 @@ class GetVnicAttachmentsVnicAttachmentCreateVnicDetailResult(dict):
45607
46593
  def private_ip(self) -> str:
45608
46594
  return pulumi.get(self, "private_ip")
45609
46595
 
46596
+ @property
46597
+ @pulumi.getter(name="securityAttributes")
46598
+ def security_attributes(self) -> Mapping[str, str]:
46599
+ return pulumi.get(self, "security_attributes")
46600
+
45610
46601
  @property
45611
46602
  @pulumi.getter(name="skipSourceDestCheck")
45612
46603
  def skip_source_dest_check(self) -> bool:
@@ -46291,17 +47282,20 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
46291
47282
  asset_id: str,
46292
47283
  id: str,
46293
47284
  policy_id: str,
46294
- time_created: str):
47285
+ time_created: str,
47286
+ xrc_kms_key_id: str):
46295
47287
  """
46296
47288
  :param str asset_id: The OCID of an asset (e.g. a volume).
46297
47289
  :param str id: The OCID of the volume backup policy assignment.
46298
47290
  :param str policy_id: The OCID of the volume backup policy that has been assigned to the volume.
46299
47291
  :param str time_created: The date and time the volume backup policy was assigned to the volume. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
47292
+ :param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block / boot 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).
46300
47293
  """
46301
47294
  pulumi.set(__self__, "asset_id", asset_id)
46302
47295
  pulumi.set(__self__, "id", id)
46303
47296
  pulumi.set(__self__, "policy_id", policy_id)
46304
47297
  pulumi.set(__self__, "time_created", time_created)
47298
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
46305
47299
 
46306
47300
  @property
46307
47301
  @pulumi.getter(name="assetId")
@@ -46335,6 +47329,14 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
46335
47329
  """
46336
47330
  return pulumi.get(self, "time_created")
46337
47331
 
47332
+ @property
47333
+ @pulumi.getter(name="xrcKmsKeyId")
47334
+ def xrc_kms_key_id(self) -> str:
47335
+ """
47336
+ The OCID of the Vault service key which is the master encryption key for the block / boot 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).
47337
+ """
47338
+ return pulumi.get(self, "xrc_kms_key_id")
47339
+
46338
47340
 
46339
47341
  @pulumi.output_type
46340
47342
  class GetVolumeBackupsFilterResult(dict):
@@ -46625,15 +47627,20 @@ class GetVolumeBlockVolumeReplicaResult(dict):
46625
47627
  def __init__(__self__, *,
46626
47628
  availability_domain: str,
46627
47629
  block_volume_replica_id: str,
46628
- display_name: str):
47630
+ display_name: str,
47631
+ kms_key_id: str,
47632
+ xrr_kms_key_id: str):
46629
47633
  """
46630
47634
  :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
46631
47635
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
46632
47636
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
47637
+ :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
46633
47638
  """
46634
47639
  pulumi.set(__self__, "availability_domain", availability_domain)
46635
47640
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
46636
47641
  pulumi.set(__self__, "display_name", display_name)
47642
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
47643
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
46637
47644
 
46638
47645
  @property
46639
47646
  @pulumi.getter(name="availabilityDomain")
@@ -46659,6 +47666,19 @@ class GetVolumeBlockVolumeReplicaResult(dict):
46659
47666
  """
46660
47667
  return pulumi.get(self, "display_name")
46661
47668
 
47669
+ @property
47670
+ @pulumi.getter(name="kmsKeyId")
47671
+ def kms_key_id(self) -> str:
47672
+ """
47673
+ The OCID of the Vault service key which is the master encryption key for the volume.
47674
+ """
47675
+ return pulumi.get(self, "kms_key_id")
47676
+
47677
+ @property
47678
+ @pulumi.getter(name="xrrKmsKeyId")
47679
+ def xrr_kms_key_id(self) -> str:
47680
+ return pulumi.get(self, "xrr_kms_key_id")
47681
+
46662
47682
 
46663
47683
  @pulumi.output_type
46664
47684
  class GetVolumeGroupBackupsFilterResult(dict):
@@ -47196,7 +48216,8 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47196
48216
  time_created: str,
47197
48217
  volume_group_replicas: Sequence['outputs.GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult'],
47198
48218
  volume_group_replicas_deletion: bool,
47199
- volume_ids: Sequence[str]):
48219
+ volume_ids: Sequence[str],
48220
+ xrc_kms_key_id: str):
47200
48221
  """
47201
48222
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
47202
48223
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -47231,6 +48252,7 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47231
48252
  pulumi.set(__self__, "volume_group_replicas", volume_group_replicas)
47232
48253
  pulumi.set(__self__, "volume_group_replicas_deletion", volume_group_replicas_deletion)
47233
48254
  pulumi.set(__self__, "volume_ids", volume_ids)
48255
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
47234
48256
 
47235
48257
  @property
47236
48258
  @pulumi.getter(name="availabilityDomain")
@@ -47365,6 +48387,11 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47365
48387
  """
47366
48388
  return pulumi.get(self, "volume_ids")
47367
48389
 
48390
+ @property
48391
+ @pulumi.getter(name="xrcKmsKeyId")
48392
+ def xrc_kms_key_id(self) -> str:
48393
+ return pulumi.get(self, "xrc_kms_key_id")
48394
+
47368
48395
 
47369
48396
  @pulumi.output_type
47370
48397
  class GetVolumeGroupsVolumeGroupSourceDetailResult(dict):
@@ -47433,7 +48460,8 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
47433
48460
  def __init__(__self__, *,
47434
48461
  availability_domain: str,
47435
48462
  display_name: str,
47436
- volume_group_replica_id: str):
48463
+ volume_group_replica_id: str,
48464
+ xrr_kms_key_id: str):
47437
48465
  """
47438
48466
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
47439
48467
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -47442,6 +48470,7 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
47442
48470
  pulumi.set(__self__, "availability_domain", availability_domain)
47443
48471
  pulumi.set(__self__, "display_name", display_name)
47444
48472
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
48473
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
47445
48474
 
47446
48475
  @property
47447
48476
  @pulumi.getter(name="availabilityDomain")
@@ -47467,19 +48496,49 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
47467
48496
  """
47468
48497
  return pulumi.get(self, "volume_group_replica_id")
47469
48498
 
48499
+ @property
48500
+ @pulumi.getter(name="xrrKmsKeyId")
48501
+ def xrr_kms_key_id(self) -> str:
48502
+ return pulumi.get(self, "xrr_kms_key_id")
48503
+
47470
48504
 
47471
48505
  @pulumi.output_type
47472
48506
  class GetVolumeSourceDetailResult(dict):
47473
48507
  def __init__(__self__, *,
48508
+ change_block_size_in_bytes: str,
48509
+ first_backup_id: str,
47474
48510
  id: str,
48511
+ second_backup_id: str,
47475
48512
  type: str):
47476
48513
  """
48514
+ :param 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).
48515
+ :param str first_backup_id: The OCID of the first volume backup.
47477
48516
  :param str id: The OCID of the block volume replica.
47478
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
48517
+ :param str second_backup_id: The OCID of the second volume backup.
48518
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
47479
48519
  """
48520
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
48521
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
47480
48522
  pulumi.set(__self__, "id", id)
48523
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
47481
48524
  pulumi.set(__self__, "type", type)
47482
48525
 
48526
+ @property
48527
+ @pulumi.getter(name="changeBlockSizeInBytes")
48528
+ def change_block_size_in_bytes(self) -> str:
48529
+ """
48530
+ 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).
48531
+ """
48532
+ return pulumi.get(self, "change_block_size_in_bytes")
48533
+
48534
+ @property
48535
+ @pulumi.getter(name="firstBackupId")
48536
+ def first_backup_id(self) -> str:
48537
+ """
48538
+ The OCID of the first volume backup.
48539
+ """
48540
+ return pulumi.get(self, "first_backup_id")
48541
+
47483
48542
  @property
47484
48543
  @pulumi.getter
47485
48544
  def id(self) -> str:
@@ -47488,11 +48547,19 @@ class GetVolumeSourceDetailResult(dict):
47488
48547
  """
47489
48548
  return pulumi.get(self, "id")
47490
48549
 
48550
+ @property
48551
+ @pulumi.getter(name="secondBackupId")
48552
+ def second_backup_id(self) -> str:
48553
+ """
48554
+ The OCID of the second volume backup.
48555
+ """
48556
+ return pulumi.get(self, "second_backup_id")
48557
+
47491
48558
  @property
47492
48559
  @pulumi.getter
47493
48560
  def type(self) -> str:
47494
48561
  """
47495
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
48562
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
47496
48563
  """
47497
48564
  return pulumi.get(self, "type")
47498
48565
 
@@ -47550,7 +48617,8 @@ class GetVolumesVolumeResult(dict):
47550
48617
  time_created: str,
47551
48618
  volume_backup_id: str,
47552
48619
  volume_group_id: str,
47553
- vpus_per_gb: str):
48620
+ vpus_per_gb: str,
48621
+ xrc_kms_key_id: str):
47554
48622
  """
47555
48623
  :param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this volume is effectively tuned to.
47556
48624
  :param Sequence['GetVolumesVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
@@ -47566,7 +48634,8 @@ class GetVolumesVolumeResult(dict):
47566
48634
  :param bool is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
47567
48635
  :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
47568
48636
  :param str size_in_gbs: The size of the volume in GBs.
47569
- :param str size_in_mbs: The size of the volume in MBs. This field is deprecated. Use `size_in_gbs` instead.
48637
+ :param str size_in_mbs: The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
48638
+ :param Sequence['GetVolumesVolumeSourceDetailArgs'] source_details: Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
47570
48639
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
47571
48640
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
47572
48641
  :param str time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -47597,6 +48666,7 @@ class GetVolumesVolumeResult(dict):
47597
48666
  pulumi.set(__self__, "volume_backup_id", volume_backup_id)
47598
48667
  pulumi.set(__self__, "volume_group_id", volume_group_id)
47599
48668
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
48669
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
47600
48670
 
47601
48671
  @property
47602
48672
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -47726,13 +48796,16 @@ class GetVolumesVolumeResult(dict):
47726
48796
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
47727
48797
  def size_in_mbs(self) -> str:
47728
48798
  """
47729
- The size of the volume in MBs. This field is deprecated. Use `size_in_gbs` instead.
48799
+ The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
47730
48800
  """
47731
48801
  return pulumi.get(self, "size_in_mbs")
47732
48802
 
47733
48803
  @property
47734
48804
  @pulumi.getter(name="sourceDetails")
47735
48805
  def source_details(self) -> Sequence['outputs.GetVolumesVolumeSourceDetailResult']:
48806
+ """
48807
+ Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
48808
+ """
47736
48809
  return pulumi.get(self, "source_details")
47737
48810
 
47738
48811
  @property
@@ -47780,6 +48853,11 @@ class GetVolumesVolumeResult(dict):
47780
48853
  """
47781
48854
  return pulumi.get(self, "vpus_per_gb")
47782
48855
 
48856
+ @property
48857
+ @pulumi.getter(name="xrcKmsKeyId")
48858
+ def xrc_kms_key_id(self) -> str:
48859
+ return pulumi.get(self, "xrc_kms_key_id")
48860
+
47783
48861
 
47784
48862
  @pulumi.output_type
47785
48863
  class GetVolumesVolumeAutotunePolicyResult(dict):
@@ -47815,15 +48893,20 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
47815
48893
  def __init__(__self__, *,
47816
48894
  availability_domain: str,
47817
48895
  block_volume_replica_id: str,
47818
- display_name: str):
48896
+ display_name: str,
48897
+ kms_key_id: str,
48898
+ xrr_kms_key_id: str):
47819
48899
  """
47820
48900
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
47821
48901
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
47822
48902
  :param str display_name: A filter to return only resources that match the given display name exactly.
48903
+ :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
47823
48904
  """
47824
48905
  pulumi.set(__self__, "availability_domain", availability_domain)
47825
48906
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
47826
48907
  pulumi.set(__self__, "display_name", display_name)
48908
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
48909
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
47827
48910
 
47828
48911
  @property
47829
48912
  @pulumi.getter(name="availabilityDomain")
@@ -47849,19 +48932,57 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
47849
48932
  """
47850
48933
  return pulumi.get(self, "display_name")
47851
48934
 
48935
+ @property
48936
+ @pulumi.getter(name="kmsKeyId")
48937
+ def kms_key_id(self) -> str:
48938
+ """
48939
+ The OCID of the Vault service key which is the master encryption key for the volume.
48940
+ """
48941
+ return pulumi.get(self, "kms_key_id")
48942
+
48943
+ @property
48944
+ @pulumi.getter(name="xrrKmsKeyId")
48945
+ def xrr_kms_key_id(self) -> str:
48946
+ return pulumi.get(self, "xrr_kms_key_id")
48947
+
47852
48948
 
47853
48949
  @pulumi.output_type
47854
48950
  class GetVolumesVolumeSourceDetailResult(dict):
47855
48951
  def __init__(__self__, *,
48952
+ change_block_size_in_bytes: str,
48953
+ first_backup_id: str,
47856
48954
  id: str,
48955
+ second_backup_id: str,
47857
48956
  type: str):
47858
48957
  """
48958
+ :param 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).
48959
+ :param str first_backup_id: The OCID of the first volume backup.
47859
48960
  :param str id: The OCID of the block volume replica.
47860
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
48961
+ :param str second_backup_id: The OCID of the second volume backup.
48962
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
47861
48963
  """
48964
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
48965
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
47862
48966
  pulumi.set(__self__, "id", id)
48967
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
47863
48968
  pulumi.set(__self__, "type", type)
47864
48969
 
48970
+ @property
48971
+ @pulumi.getter(name="changeBlockSizeInBytes")
48972
+ def change_block_size_in_bytes(self) -> str:
48973
+ """
48974
+ 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).
48975
+ """
48976
+ return pulumi.get(self, "change_block_size_in_bytes")
48977
+
48978
+ @property
48979
+ @pulumi.getter(name="firstBackupId")
48980
+ def first_backup_id(self) -> str:
48981
+ """
48982
+ The OCID of the first volume backup.
48983
+ """
48984
+ return pulumi.get(self, "first_backup_id")
48985
+
47865
48986
  @property
47866
48987
  @pulumi.getter
47867
48988
  def id(self) -> str:
@@ -47870,11 +48991,19 @@ class GetVolumesVolumeSourceDetailResult(dict):
47870
48991
  """
47871
48992
  return pulumi.get(self, "id")
47872
48993
 
48994
+ @property
48995
+ @pulumi.getter(name="secondBackupId")
48996
+ def second_backup_id(self) -> str:
48997
+ """
48998
+ The OCID of the second volume backup.
48999
+ """
49000
+ return pulumi.get(self, "second_backup_id")
49001
+
47873
49002
  @property
47874
49003
  @pulumi.getter
47875
49004
  def type(self) -> str:
47876
49005
  """
47877
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
49006
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
47878
49007
  """
47879
49008
  return pulumi.get(self, "type")
47880
49009