pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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 (97) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +373 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_instance.py +1 -1
  12. pulumi_oci/core/get_virtual_circuit.py +18 -4
  13. pulumi_oci/core/get_volume.py +18 -4
  14. pulumi_oci/core/instance.py +7 -7
  15. pulumi_oci/core/instance_configuration.py +4 -0
  16. pulumi_oci/core/outputs.py +738 -53
  17. pulumi_oci/core/virtual_circuit.py +30 -2
  18. pulumi_oci/core/volume.py +110 -12
  19. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  20. pulumi_oci/core/volume_group.py +56 -5
  21. pulumi_oci/database/_inputs.py +642 -0
  22. pulumi_oci/database/autonomous_container_database.py +14 -14
  23. pulumi_oci/database/autonomous_database.py +75 -0
  24. pulumi_oci/database/get_autonomous_container_database.py +3 -3
  25. pulumi_oci/database/get_autonomous_database.py +29 -1
  26. pulumi_oci/database/get_autonomous_databases.py +22 -28
  27. pulumi_oci/database/outputs.py +1669 -86
  28. pulumi_oci/datasafe/__init__.py +1 -0
  29. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  30. pulumi_oci/datascience/_inputs.py +353 -0
  31. pulumi_oci/datascience/get_model.py +85 -1
  32. pulumi_oci/datascience/get_models.py +5 -0
  33. pulumi_oci/datascience/model.py +206 -66
  34. pulumi_oci/datascience/outputs.py +759 -0
  35. pulumi_oci/desktops/_inputs.py +175 -13
  36. pulumi_oci/desktops/desktop_pool.py +67 -0
  37. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  38. pulumi_oci/desktops/outputs.py +339 -18
  39. pulumi_oci/dns/__init__.py +2 -0
  40. pulumi_oci/dns/_inputs.py +1157 -12
  41. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  42. pulumi_oci/dns/get_records.py +45 -13
  43. pulumi_oci/dns/get_resolver.py +8 -6
  44. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  45. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  46. pulumi_oci/dns/get_resolvers.py +12 -12
  47. pulumi_oci/dns/get_rrset.py +16 -16
  48. pulumi_oci/dns/get_rrsets.py +12 -10
  49. pulumi_oci/dns/get_view.py +8 -4
  50. pulumi_oci/dns/get_views.py +12 -12
  51. pulumi_oci/dns/get_zones.py +33 -13
  52. pulumi_oci/dns/outputs.py +1388 -79
  53. pulumi_oci/dns/record.py +12 -12
  54. pulumi_oci/dns/resolver.py +7 -7
  55. pulumi_oci/dns/resolver_endpoint.py +2 -2
  56. pulumi_oci/dns/rrset.py +50 -41
  57. pulumi_oci/dns/zone.py +176 -17
  58. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  59. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  60. pulumi_oci/filestorage/_inputs.py +651 -0
  61. pulumi_oci/filestorage/export.py +96 -3
  62. pulumi_oci/filestorage/file_system.py +93 -0
  63. pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
  64. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
  65. pulumi_oci/filestorage/get_outbound_connector.py +26 -1
  66. pulumi_oci/filestorage/get_replication.py +27 -1
  67. pulumi_oci/filestorage/get_snapshot.py +27 -1
  68. pulumi_oci/filestorage/mount_target.py +108 -0
  69. pulumi_oci/filestorage/outbound_connector.py +93 -0
  70. pulumi_oci/filestorage/outputs.py +1218 -2
  71. pulumi_oci/filestorage/replication.py +95 -0
  72. pulumi_oci/filestorage/snapshot.py +97 -2
  73. pulumi_oci/goldengate/__init__.py +1 -0
  74. pulumi_oci/goldengate/_inputs.py +165 -0
  75. pulumi_oci/goldengate/connection.py +49 -35
  76. pulumi_oci/goldengate/database_registration.py +7 -7
  77. pulumi_oci/goldengate/deployment.py +79 -4
  78. pulumi_oci/goldengate/get_deployment.py +30 -2
  79. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  80. pulumi_oci/goldengate/outputs.py +409 -2
  81. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
  82. pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
  83. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  84. pulumi_oci/pulumi-plugin.json +1 -1
  85. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
  86. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
  87. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
  88. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  89. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  90. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  91. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  92. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  93. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  94. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  95. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  96. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  97. {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
@@ -182,6 +182,7 @@ __all__ = [
182
182
  'VcnByoipv6cidrDetail',
183
183
  'VirtualCircuitCrossConnectMapping',
184
184
  'VirtualCircuitPublicPrefix',
185
+ 'VirtualCircuitVirtualCircuitRedundancyMetadata',
185
186
  'VirtualNetworkByoipv6cidrDetail',
186
187
  'VnicAttachmentCreateVnicDetails',
187
188
  'VnicAttachmentCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail',
@@ -687,10 +688,12 @@ __all__ = [
687
688
  'GetVirtualCircuitPublicPrefixResult',
688
689
  'GetVirtualCircuitPublicPrefixesFilterResult',
689
690
  'GetVirtualCircuitPublicPrefixesVirtualCircuitPublicPrefixResult',
691
+ 'GetVirtualCircuitVirtualCircuitRedundancyMetadataResult',
690
692
  'GetVirtualCircuitsFilterResult',
691
693
  'GetVirtualCircuitsVirtualCircuitResult',
692
694
  'GetVirtualCircuitsVirtualCircuitCrossConnectMappingResult',
693
695
  'GetVirtualCircuitsVirtualCircuitPublicPrefixResult',
696
+ 'GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult',
694
697
  'GetVirtualNetworksFilterResult',
695
698
  'GetVirtualNetworksVirtualNetworkResult',
696
699
  'GetVirtualNetworksVirtualNetworkByoipv6cidrDetailResult',
@@ -850,6 +853,10 @@ class BootVolumeBootVolumeReplica(dict):
850
853
  suggest = "boot_volume_replica_id"
851
854
  elif key == "displayName":
852
855
  suggest = "display_name"
856
+ elif key == "kmsKeyId":
857
+ suggest = "kms_key_id"
858
+ elif key == "xrrKmsKeyId":
859
+ suggest = "xrr_kms_key_id"
853
860
 
854
861
  if suggest:
855
862
  pulumi.log.warn(f"Key '{key}' not found in BootVolumeBootVolumeReplica. Access the value via the '{suggest}' property getter instead.")
@@ -865,17 +872,25 @@ class BootVolumeBootVolumeReplica(dict):
865
872
  def __init__(__self__, *,
866
873
  availability_domain: str,
867
874
  boot_volume_replica_id: Optional[str] = None,
868
- display_name: Optional[str] = None):
875
+ display_name: Optional[str] = None,
876
+ kms_key_id: Optional[str] = None,
877
+ xrr_kms_key_id: Optional[str] = None):
869
878
  """
870
879
  :param str availability_domain: (Updatable) The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
871
880
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
872
881
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
882
+ :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
883
+ :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).
873
884
  """
874
885
  pulumi.set(__self__, "availability_domain", availability_domain)
875
886
  if boot_volume_replica_id is not None:
876
887
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
877
888
  if display_name is not None:
878
889
  pulumi.set(__self__, "display_name", display_name)
890
+ if kms_key_id is not None:
891
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
892
+ if xrr_kms_key_id is not None:
893
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
879
894
 
880
895
  @property
881
896
  @pulumi.getter(name="availabilityDomain")
@@ -901,34 +916,108 @@ class BootVolumeBootVolumeReplica(dict):
901
916
  """
902
917
  return pulumi.get(self, "display_name")
903
918
 
919
+ @property
920
+ @pulumi.getter(name="kmsKeyId")
921
+ def kms_key_id(self) -> Optional[str]:
922
+ """
923
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
924
+ """
925
+ return pulumi.get(self, "kms_key_id")
926
+
927
+ @property
928
+ @pulumi.getter(name="xrrKmsKeyId")
929
+ def xrr_kms_key_id(self) -> Optional[str]:
930
+ """
931
+ (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).
932
+ """
933
+ return pulumi.get(self, "xrr_kms_key_id")
934
+
904
935
 
905
936
  @pulumi.output_type
906
937
  class BootVolumeSourceDetails(dict):
938
+ @staticmethod
939
+ def __key_warning(key: str):
940
+ suggest = None
941
+ if key == "changeBlockSizeInBytes":
942
+ suggest = "change_block_size_in_bytes"
943
+ elif key == "firstBackupId":
944
+ suggest = "first_backup_id"
945
+ elif key == "secondBackupId":
946
+ suggest = "second_backup_id"
947
+
948
+ if suggest:
949
+ pulumi.log.warn(f"Key '{key}' not found in BootVolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
950
+
951
+ def __getitem__(self, key: str) -> Any:
952
+ BootVolumeSourceDetails.__key_warning(key)
953
+ return super().__getitem__(key)
954
+
955
+ def get(self, key: str, default = None) -> Any:
956
+ BootVolumeSourceDetails.__key_warning(key)
957
+ return super().get(key, default)
958
+
907
959
  def __init__(__self__, *,
908
- id: str,
909
- type: str):
960
+ type: str,
961
+ change_block_size_in_bytes: Optional[str] = None,
962
+ first_backup_id: Optional[str] = None,
963
+ id: Optional[str] = None,
964
+ second_backup_id: Optional[str] = None):
910
965
  """
966
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
967
+ :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).
968
+ :param str first_backup_id: The OCID of the first boot volume backup.
911
969
  :param str id: The OCID of the boot volume replica.
912
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
970
+ :param str second_backup_id: The OCID of the second boot volume backup.
913
971
  """
914
- pulumi.set(__self__, "id", id)
915
972
  pulumi.set(__self__, "type", type)
973
+ if change_block_size_in_bytes is not None:
974
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
975
+ if first_backup_id is not None:
976
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
977
+ if id is not None:
978
+ pulumi.set(__self__, "id", id)
979
+ if second_backup_id is not None:
980
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
916
981
 
917
982
  @property
918
983
  @pulumi.getter
919
- def id(self) -> str:
984
+ def type(self) -> str:
985
+ """
986
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
987
+ """
988
+ return pulumi.get(self, "type")
989
+
990
+ @property
991
+ @pulumi.getter(name="changeBlockSizeInBytes")
992
+ def change_block_size_in_bytes(self) -> Optional[str]:
993
+ """
994
+ 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).
995
+ """
996
+ return pulumi.get(self, "change_block_size_in_bytes")
997
+
998
+ @property
999
+ @pulumi.getter(name="firstBackupId")
1000
+ def first_backup_id(self) -> Optional[str]:
1001
+ """
1002
+ The OCID of the first boot volume backup.
1003
+ """
1004
+ return pulumi.get(self, "first_backup_id")
1005
+
1006
+ @property
1007
+ @pulumi.getter
1008
+ def id(self) -> Optional[str]:
920
1009
  """
921
1010
  The OCID of the boot volume replica.
922
1011
  """
923
1012
  return pulumi.get(self, "id")
924
1013
 
925
1014
  @property
926
- @pulumi.getter
927
- def type(self) -> str:
1015
+ @pulumi.getter(name="secondBackupId")
1016
+ def second_backup_id(self) -> Optional[str]:
928
1017
  """
929
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
1018
+ The OCID of the second boot volume backup.
930
1019
  """
931
- return pulumi.get(self, "type")
1020
+ return pulumi.get(self, "second_backup_id")
932
1021
 
933
1022
 
934
1023
  @pulumi.output_type
@@ -5407,6 +5496,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5407
5496
  suggest = "source_details"
5408
5497
  elif key == "vpusPerGb":
5409
5498
  suggest = "vpus_per_gb"
5499
+ elif key == "xrcKmsKeyId":
5500
+ suggest = "xrc_kms_key_id"
5410
5501
 
5411
5502
  if suggest:
5412
5503
  pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
@@ -5433,7 +5524,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5433
5524
  kms_key_id: Optional[str] = None,
5434
5525
  size_in_gbs: Optional[str] = None,
5435
5526
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsSourceDetails'] = None,
5436
- vpus_per_gb: Optional[str] = None):
5527
+ vpus_per_gb: Optional[str] = None,
5528
+ xrc_kms_key_id: Optional[str] = None):
5437
5529
  """
5438
5530
  :param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
5439
5531
  :param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -5450,6 +5542,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5450
5542
  :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
5543
 
5452
5544
  Allowed values:
5545
+ :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
5546
  """
5454
5547
  if autotune_policies is not None:
5455
5548
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -5479,6 +5572,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5479
5572
  pulumi.set(__self__, "source_details", source_details)
5480
5573
  if vpus_per_gb is not None:
5481
5574
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
5575
+ if xrc_kms_key_id is not None:
5576
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
5482
5577
 
5483
5578
  @property
5484
5579
  @pulumi.getter(name="autotunePolicies")
@@ -5591,6 +5686,14 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5591
5686
  """
5592
5687
  return pulumi.get(self, "vpus_per_gb")
5593
5688
 
5689
+ @property
5690
+ @pulumi.getter(name="xrcKmsKeyId")
5691
+ def xrc_kms_key_id(self) -> Optional[str]:
5692
+ """
5693
+ 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).
5694
+ """
5695
+ return pulumi.get(self, "xrc_kms_key_id")
5696
+
5594
5697
 
5595
5698
  @pulumi.output_type
5596
5699
  class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicy(dict):
@@ -7683,6 +7786,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7683
7786
  suggest = "source_details"
7684
7787
  elif key == "vpusPerGb":
7685
7788
  suggest = "vpus_per_gb"
7789
+ elif key == "xrcKmsKeyId":
7790
+ suggest = "xrc_kms_key_id"
7686
7791
 
7687
7792
  if suggest:
7688
7793
  pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
@@ -7709,7 +7814,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7709
7814
  kms_key_id: Optional[str] = None,
7710
7815
  size_in_gbs: Optional[str] = None,
7711
7816
  source_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetails'] = None,
7712
- vpus_per_gb: Optional[str] = None):
7817
+ vpus_per_gb: Optional[str] = None,
7818
+ xrc_kms_key_id: Optional[str] = None):
7713
7819
  """
7714
7820
  :param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
7715
7821
  :param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -7726,6 +7832,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7726
7832
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
7727
7833
 
7728
7834
  Allowed values:
7835
+ :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).
7729
7836
  """
7730
7837
  if autotune_policies is not None:
7731
7838
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -7755,6 +7862,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7755
7862
  pulumi.set(__self__, "source_details", source_details)
7756
7863
  if vpus_per_gb is not None:
7757
7864
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
7865
+ if xrc_kms_key_id is not None:
7866
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
7758
7867
 
7759
7868
  @property
7760
7869
  @pulumi.getter(name="autotunePolicies")
@@ -7867,6 +7976,14 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7867
7976
  """
7868
7977
  return pulumi.get(self, "vpus_per_gb")
7869
7978
 
7979
+ @property
7980
+ @pulumi.getter(name="xrcKmsKeyId")
7981
+ def xrc_kms_key_id(self) -> Optional[str]:
7982
+ """
7983
+ 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).
7984
+ """
7985
+ return pulumi.get(self, "xrc_kms_key_id")
7986
+
7870
7987
 
7871
7988
  @pulumi.output_type
7872
7989
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicy(dict):
@@ -14227,6 +14344,70 @@ class VirtualCircuitPublicPrefix(dict):
14227
14344
  return pulumi.get(self, "cidr_block")
14228
14345
 
14229
14346
 
14347
+ @pulumi.output_type
14348
+ class VirtualCircuitVirtualCircuitRedundancyMetadata(dict):
14349
+ @staticmethod
14350
+ def __key_warning(key: str):
14351
+ suggest = None
14352
+ if key == "configuredRedundancyLevel":
14353
+ suggest = "configured_redundancy_level"
14354
+ elif key == "ipv4bgpSessionRedundancyStatus":
14355
+ suggest = "ipv4bgp_session_redundancy_status"
14356
+ elif key == "ipv6bgpSessionRedundancyStatus":
14357
+ suggest = "ipv6bgp_session_redundancy_status"
14358
+
14359
+ if suggest:
14360
+ pulumi.log.warn(f"Key '{key}' not found in VirtualCircuitVirtualCircuitRedundancyMetadata. Access the value via the '{suggest}' property getter instead.")
14361
+
14362
+ def __getitem__(self, key: str) -> Any:
14363
+ VirtualCircuitVirtualCircuitRedundancyMetadata.__key_warning(key)
14364
+ return super().__getitem__(key)
14365
+
14366
+ def get(self, key: str, default = None) -> Any:
14367
+ VirtualCircuitVirtualCircuitRedundancyMetadata.__key_warning(key)
14368
+ return super().get(key, default)
14369
+
14370
+ def __init__(__self__, *,
14371
+ configured_redundancy_level: Optional[str] = None,
14372
+ ipv4bgp_session_redundancy_status: Optional[str] = None,
14373
+ ipv6bgp_session_redundancy_status: Optional[str] = None):
14374
+ """
14375
+ :param str configured_redundancy_level: The configured redundancy level of the virtual circuit
14376
+ :param str ipv4bgp_session_redundancy_status: IPV4 BGP redundancy status indicates if the configured redundancy level is met
14377
+ :param str ipv6bgp_session_redundancy_status: IPV6 BGP redundancy status indicates if the configured redundancy level is met
14378
+ """
14379
+ if configured_redundancy_level is not None:
14380
+ pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
14381
+ if ipv4bgp_session_redundancy_status is not None:
14382
+ pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
14383
+ if ipv6bgp_session_redundancy_status is not None:
14384
+ pulumi.set(__self__, "ipv6bgp_session_redundancy_status", ipv6bgp_session_redundancy_status)
14385
+
14386
+ @property
14387
+ @pulumi.getter(name="configuredRedundancyLevel")
14388
+ def configured_redundancy_level(self) -> Optional[str]:
14389
+ """
14390
+ The configured redundancy level of the virtual circuit
14391
+ """
14392
+ return pulumi.get(self, "configured_redundancy_level")
14393
+
14394
+ @property
14395
+ @pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
14396
+ def ipv4bgp_session_redundancy_status(self) -> Optional[str]:
14397
+ """
14398
+ IPV4 BGP redundancy status indicates if the configured redundancy level is met
14399
+ """
14400
+ return pulumi.get(self, "ipv4bgp_session_redundancy_status")
14401
+
14402
+ @property
14403
+ @pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
14404
+ def ipv6bgp_session_redundancy_status(self) -> Optional[str]:
14405
+ """
14406
+ IPV6 BGP redundancy status indicates if the configured redundancy level is met
14407
+ """
14408
+ return pulumi.get(self, "ipv6bgp_session_redundancy_status")
14409
+
14410
+
14230
14411
  @pulumi.output_type
14231
14412
  class VirtualNetworkByoipv6cidrDetail(dict):
14232
14413
  @staticmethod
@@ -14955,6 +15136,10 @@ class VolumeBlockVolumeReplica(dict):
14955
15136
  suggest = "block_volume_replica_id"
14956
15137
  elif key == "displayName":
14957
15138
  suggest = "display_name"
15139
+ elif key == "kmsKeyId":
15140
+ suggest = "kms_key_id"
15141
+ elif key == "xrrKmsKeyId":
15142
+ suggest = "xrr_kms_key_id"
14958
15143
 
14959
15144
  if suggest:
14960
15145
  pulumi.log.warn(f"Key '{key}' not found in VolumeBlockVolumeReplica. Access the value via the '{suggest}' property getter instead.")
@@ -14970,17 +15155,25 @@ class VolumeBlockVolumeReplica(dict):
14970
15155
  def __init__(__self__, *,
14971
15156
  availability_domain: str,
14972
15157
  block_volume_replica_id: Optional[str] = None,
14973
- display_name: Optional[str] = None):
15158
+ display_name: Optional[str] = None,
15159
+ kms_key_id: Optional[str] = None,
15160
+ xrr_kms_key_id: Optional[str] = None):
14974
15161
  """
14975
15162
  :param str availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
14976
15163
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
14977
15164
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
15165
+ :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
15166
+ :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).
14978
15167
  """
14979
15168
  pulumi.set(__self__, "availability_domain", availability_domain)
14980
15169
  if block_volume_replica_id is not None:
14981
15170
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
14982
15171
  if display_name is not None:
14983
15172
  pulumi.set(__self__, "display_name", display_name)
15173
+ if kms_key_id is not None:
15174
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
15175
+ if xrr_kms_key_id is not None:
15176
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
14984
15177
 
14985
15178
  @property
14986
15179
  @pulumi.getter(name="availabilityDomain")
@@ -15006,6 +15199,22 @@ class VolumeBlockVolumeReplica(dict):
15006
15199
  """
15007
15200
  return pulumi.get(self, "display_name")
15008
15201
 
15202
+ @property
15203
+ @pulumi.getter(name="kmsKeyId")
15204
+ def kms_key_id(self) -> Optional[str]:
15205
+ """
15206
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
15207
+ """
15208
+ return pulumi.get(self, "kms_key_id")
15209
+
15210
+ @property
15211
+ @pulumi.getter(name="xrrKmsKeyId")
15212
+ def xrr_kms_key_id(self) -> Optional[str]:
15213
+ """
15214
+ (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).
15215
+ """
15216
+ return pulumi.get(self, "xrr_kms_key_id")
15217
+
15009
15218
 
15010
15219
  @pulumi.output_type
15011
15220
  class VolumeGroupBackupSourceDetails(dict):
@@ -15177,6 +15386,8 @@ class VolumeGroupVolumeGroupReplica(dict):
15177
15386
  suggest = "display_name"
15178
15387
  elif key == "volumeGroupReplicaId":
15179
15388
  suggest = "volume_group_replica_id"
15389
+ elif key == "xrrKmsKeyId":
15390
+ suggest = "xrr_kms_key_id"
15180
15391
 
15181
15392
  if suggest:
15182
15393
  pulumi.log.warn(f"Key '{key}' not found in VolumeGroupVolumeGroupReplica. Access the value via the '{suggest}' property getter instead.")
@@ -15192,17 +15403,21 @@ class VolumeGroupVolumeGroupReplica(dict):
15192
15403
  def __init__(__self__, *,
15193
15404
  availability_domain: str,
15194
15405
  display_name: Optional[str] = None,
15195
- volume_group_replica_id: Optional[str] = None):
15406
+ volume_group_replica_id: Optional[str] = None,
15407
+ xrr_kms_key_id: Optional[str] = None):
15196
15408
  """
15197
15409
  :param str availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
15198
15410
  :param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
15199
15411
  :param str volume_group_replica_id: The volume group replica's Oracle ID (OCID).
15412
+ :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).
15200
15413
  """
15201
15414
  pulumi.set(__self__, "availability_domain", availability_domain)
15202
15415
  if display_name is not None:
15203
15416
  pulumi.set(__self__, "display_name", display_name)
15204
15417
  if volume_group_replica_id is not None:
15205
15418
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
15419
+ if xrr_kms_key_id is not None:
15420
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
15206
15421
 
15207
15422
  @property
15208
15423
  @pulumi.getter(name="availabilityDomain")
@@ -15228,34 +15443,100 @@ class VolumeGroupVolumeGroupReplica(dict):
15228
15443
  """
15229
15444
  return pulumi.get(self, "volume_group_replica_id")
15230
15445
 
15446
+ @property
15447
+ @pulumi.getter(name="xrrKmsKeyId")
15448
+ def xrr_kms_key_id(self) -> Optional[str]:
15449
+ """
15450
+ (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).
15451
+ """
15452
+ return pulumi.get(self, "xrr_kms_key_id")
15453
+
15231
15454
 
15232
15455
  @pulumi.output_type
15233
15456
  class VolumeSourceDetails(dict):
15457
+ @staticmethod
15458
+ def __key_warning(key: str):
15459
+ suggest = None
15460
+ if key == "changeBlockSizeInBytes":
15461
+ suggest = "change_block_size_in_bytes"
15462
+ elif key == "firstBackupId":
15463
+ suggest = "first_backup_id"
15464
+ elif key == "secondBackupId":
15465
+ suggest = "second_backup_id"
15466
+
15467
+ if suggest:
15468
+ pulumi.log.warn(f"Key '{key}' not found in VolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
15469
+
15470
+ def __getitem__(self, key: str) -> Any:
15471
+ VolumeSourceDetails.__key_warning(key)
15472
+ return super().__getitem__(key)
15473
+
15474
+ def get(self, key: str, default = None) -> Any:
15475
+ VolumeSourceDetails.__key_warning(key)
15476
+ return super().get(key, default)
15477
+
15234
15478
  def __init__(__self__, *,
15235
- id: str,
15236
- type: str):
15479
+ type: str,
15480
+ change_block_size_in_bytes: Optional[str] = None,
15481
+ first_backup_id: Optional[str] = None,
15482
+ id: Optional[str] = None,
15483
+ second_backup_id: Optional[str] = None):
15237
15484
  """
15485
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
15486
+ :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).
15487
+ :param str first_backup_id: The OCID of the first volume backup.
15238
15488
  :param str id: The OCID of the block volume replica.
15239
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
15489
+ :param str second_backup_id: The OCID of the second volume backup.
15240
15490
  """
15241
- pulumi.set(__self__, "id", id)
15242
15491
  pulumi.set(__self__, "type", type)
15492
+ if change_block_size_in_bytes is not None:
15493
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
15494
+ if first_backup_id is not None:
15495
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
15496
+ if id is not None:
15497
+ pulumi.set(__self__, "id", id)
15498
+ if second_backup_id is not None:
15499
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
15243
15500
 
15244
15501
  @property
15245
15502
  @pulumi.getter
15246
- def id(self) -> str:
15503
+ def type(self) -> str:
15504
+ """
15505
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
15506
+ """
15507
+ return pulumi.get(self, "type")
15508
+
15509
+ @property
15510
+ @pulumi.getter(name="changeBlockSizeInBytes")
15511
+ def change_block_size_in_bytes(self) -> Optional[str]:
15512
+ """
15513
+ 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).
15514
+ """
15515
+ return pulumi.get(self, "change_block_size_in_bytes")
15516
+
15517
+ @property
15518
+ @pulumi.getter(name="firstBackupId")
15519
+ def first_backup_id(self) -> Optional[str]:
15520
+ """
15521
+ The OCID of the first volume backup.
15522
+ """
15523
+ return pulumi.get(self, "first_backup_id")
15524
+
15525
+ @property
15526
+ @pulumi.getter
15527
+ def id(self) -> Optional[str]:
15247
15528
  """
15248
15529
  The OCID of the block volume replica.
15249
15530
  """
15250
15531
  return pulumi.get(self, "id")
15251
15532
 
15252
15533
  @property
15253
- @pulumi.getter
15254
- def type(self) -> str:
15534
+ @pulumi.getter(name="secondBackupId")
15535
+ def second_backup_id(self) -> Optional[str]:
15255
15536
  """
15256
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
15537
+ The OCID of the second volume backup.
15257
15538
  """
15258
- return pulumi.get(self, "type")
15539
+ return pulumi.get(self, "second_backup_id")
15259
15540
 
15260
15541
 
15261
15542
  @pulumi.output_type
@@ -15663,6 +15944,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15663
15944
  display_name: str,
15664
15945
  freeform_tags: Mapping[str, str],
15665
15946
  id: str,
15947
+ kms_key_id: str,
15666
15948
  size_in_gbs: str,
15667
15949
  state: str,
15668
15950
  time_created: str,
@@ -15676,6 +15958,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15676
15958
  :param str display_name: A filter to return only resources that match the given display name exactly.
15677
15959
  :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"}`
15678
15960
  :param str id: The block volume replica's Oracle ID (OCID).
15961
+ :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).
15679
15962
  :param str size_in_gbs: The size of the source block volume, in GBs.
15680
15963
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
15681
15964
  :param str time_created: The date and time the block volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -15689,6 +15972,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15689
15972
  pulumi.set(__self__, "display_name", display_name)
15690
15973
  pulumi.set(__self__, "freeform_tags", freeform_tags)
15691
15974
  pulumi.set(__self__, "id", id)
15975
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
15692
15976
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
15693
15977
  pulumi.set(__self__, "state", state)
15694
15978
  pulumi.set(__self__, "time_created", time_created)
@@ -15751,6 +16035,14 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
15751
16035
  """
15752
16036
  return pulumi.get(self, "id")
15753
16037
 
16038
+ @property
16039
+ @pulumi.getter(name="kmsKeyId")
16040
+ def kms_key_id(self) -> str:
16041
+ """
16042
+ 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).
16043
+ """
16044
+ return pulumi.get(self, "kms_key_id")
16045
+
15754
16046
  @property
15755
16047
  @pulumi.getter(name="sizeInGbs")
15756
16048
  def size_in_gbs(self) -> str:
@@ -16315,15 +16607,20 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
16315
16607
  def __init__(__self__, *,
16316
16608
  availability_domain: str,
16317
16609
  boot_volume_replica_id: str,
16318
- display_name: str):
16610
+ display_name: str,
16611
+ kms_key_id: str,
16612
+ xrr_kms_key_id: str):
16319
16613
  """
16320
16614
  :param str availability_domain: The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
16321
16615
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
16322
16616
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
16617
+ :param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
16323
16618
  """
16324
16619
  pulumi.set(__self__, "availability_domain", availability_domain)
16325
16620
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
16326
16621
  pulumi.set(__self__, "display_name", display_name)
16622
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
16623
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
16327
16624
 
16328
16625
  @property
16329
16626
  @pulumi.getter(name="availabilityDomain")
@@ -16349,6 +16646,19 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
16349
16646
  """
16350
16647
  return pulumi.get(self, "display_name")
16351
16648
 
16649
+ @property
16650
+ @pulumi.getter(name="kmsKeyId")
16651
+ def kms_key_id(self) -> str:
16652
+ """
16653
+ The OCID of the Vault service master encryption key assigned to the boot volume.
16654
+ """
16655
+ return pulumi.get(self, "kms_key_id")
16656
+
16657
+ @property
16658
+ @pulumi.getter(name="xrrKmsKeyId")
16659
+ def xrr_kms_key_id(self) -> str:
16660
+ return pulumi.get(self, "xrr_kms_key_id")
16661
+
16352
16662
 
16353
16663
  @pulumi.output_type
16354
16664
  class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
@@ -16361,6 +16671,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16361
16671
  freeform_tags: Mapping[str, str],
16362
16672
  id: str,
16363
16673
  image_id: str,
16674
+ kms_key_id: str,
16364
16675
  size_in_gbs: str,
16365
16676
  state: str,
16366
16677
  time_created: str,
@@ -16375,6 +16686,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16375
16686
  :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"}`
16376
16687
  :param str id: The boot volume replica's Oracle ID (OCID).
16377
16688
  :param str image_id: The image OCID used to create the boot volume the replica is replicated from.
16689
+ :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).
16378
16690
  :param str size_in_gbs: The size of the source boot volume, in GBs.
16379
16691
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
16380
16692
  :param str time_created: The date and time the boot volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -16389,6 +16701,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16389
16701
  pulumi.set(__self__, "freeform_tags", freeform_tags)
16390
16702
  pulumi.set(__self__, "id", id)
16391
16703
  pulumi.set(__self__, "image_id", image_id)
16704
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
16392
16705
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
16393
16706
  pulumi.set(__self__, "state", state)
16394
16707
  pulumi.set(__self__, "time_created", time_created)
@@ -16459,6 +16772,14 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
16459
16772
  """
16460
16773
  return pulumi.get(self, "image_id")
16461
16774
 
16775
+ @property
16776
+ @pulumi.getter(name="kmsKeyId")
16777
+ def kms_key_id(self) -> str:
16778
+ """
16779
+ 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).
16780
+ """
16781
+ return pulumi.get(self, "kms_key_id")
16782
+
16462
16783
  @property
16463
16784
  @pulumi.getter(name="sizeInGbs")
16464
16785
  def size_in_gbs(self) -> str:
@@ -16530,15 +16851,40 @@ class GetBootVolumeReplicasFilterResult(dict):
16530
16851
  @pulumi.output_type
16531
16852
  class GetBootVolumeSourceDetailResult(dict):
16532
16853
  def __init__(__self__, *,
16854
+ change_block_size_in_bytes: str,
16855
+ first_backup_id: str,
16533
16856
  id: str,
16857
+ second_backup_id: str,
16534
16858
  type: str):
16535
16859
  """
16860
+ :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).
16861
+ :param str first_backup_id: The OCID of the first boot volume backup.
16536
16862
  :param str id: The OCID of the boot volume replica.
16537
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
16863
+ :param str second_backup_id: The OCID of the second boot volume backup.
16864
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16538
16865
  """
16866
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
16867
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
16539
16868
  pulumi.set(__self__, "id", id)
16869
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
16540
16870
  pulumi.set(__self__, "type", type)
16541
16871
 
16872
+ @property
16873
+ @pulumi.getter(name="changeBlockSizeInBytes")
16874
+ def change_block_size_in_bytes(self) -> str:
16875
+ """
16876
+ 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).
16877
+ """
16878
+ return pulumi.get(self, "change_block_size_in_bytes")
16879
+
16880
+ @property
16881
+ @pulumi.getter(name="firstBackupId")
16882
+ def first_backup_id(self) -> str:
16883
+ """
16884
+ The OCID of the first boot volume backup.
16885
+ """
16886
+ return pulumi.get(self, "first_backup_id")
16887
+
16542
16888
  @property
16543
16889
  @pulumi.getter
16544
16890
  def id(self) -> str:
@@ -16547,11 +16893,19 @@ class GetBootVolumeSourceDetailResult(dict):
16547
16893
  """
16548
16894
  return pulumi.get(self, "id")
16549
16895
 
16896
+ @property
16897
+ @pulumi.getter(name="secondBackupId")
16898
+ def second_backup_id(self) -> str:
16899
+ """
16900
+ The OCID of the second boot volume backup.
16901
+ """
16902
+ return pulumi.get(self, "second_backup_id")
16903
+
16550
16904
  @property
16551
16905
  @pulumi.getter
16552
16906
  def type(self) -> str:
16553
16907
  """
16554
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
16908
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16555
16909
  """
16556
16910
  return pulumi.get(self, "type")
16557
16911
 
@@ -16582,7 +16936,8 @@ class GetBootVolumesBootVolumeResult(dict):
16582
16936
  system_tags: Mapping[str, str],
16583
16937
  time_created: str,
16584
16938
  volume_group_id: str,
16585
- vpus_per_gb: str):
16939
+ vpus_per_gb: str,
16940
+ xrc_kms_key_id: str):
16586
16941
  """
16587
16942
  :param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
16588
16943
  :param Sequence['GetBootVolumesBootVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
@@ -16630,6 +16985,7 @@ class GetBootVolumesBootVolumeResult(dict):
16630
16985
  pulumi.set(__self__, "time_created", time_created)
16631
16986
  pulumi.set(__self__, "volume_group_id", volume_group_id)
16632
16987
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
16988
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
16633
16989
 
16634
16990
  @property
16635
16991
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -16815,6 +17171,11 @@ class GetBootVolumesBootVolumeResult(dict):
16815
17171
  """
16816
17172
  return pulumi.get(self, "vpus_per_gb")
16817
17173
 
17174
+ @property
17175
+ @pulumi.getter(name="xrcKmsKeyId")
17176
+ def xrc_kms_key_id(self) -> str:
17177
+ return pulumi.get(self, "xrc_kms_key_id")
17178
+
16818
17179
 
16819
17180
  @pulumi.output_type
16820
17181
  class GetBootVolumesBootVolumeAutotunePolicyResult(dict):
@@ -16850,15 +17211,20 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
16850
17211
  def __init__(__self__, *,
16851
17212
  availability_domain: str,
16852
17213
  boot_volume_replica_id: str,
16853
- display_name: str):
17214
+ display_name: str,
17215
+ kms_key_id: str,
17216
+ xrr_kms_key_id: str):
16854
17217
  """
16855
17218
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
16856
17219
  :param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
16857
17220
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
17221
+ :param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
16858
17222
  """
16859
17223
  pulumi.set(__self__, "availability_domain", availability_domain)
16860
17224
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
16861
17225
  pulumi.set(__self__, "display_name", display_name)
17226
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
17227
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
16862
17228
 
16863
17229
  @property
16864
17230
  @pulumi.getter(name="availabilityDomain")
@@ -16884,19 +17250,57 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
16884
17250
  """
16885
17251
  return pulumi.get(self, "display_name")
16886
17252
 
17253
+ @property
17254
+ @pulumi.getter(name="kmsKeyId")
17255
+ def kms_key_id(self) -> str:
17256
+ """
17257
+ The OCID of the Vault service master encryption key assigned to the boot volume.
17258
+ """
17259
+ return pulumi.get(self, "kms_key_id")
17260
+
17261
+ @property
17262
+ @pulumi.getter(name="xrrKmsKeyId")
17263
+ def xrr_kms_key_id(self) -> str:
17264
+ return pulumi.get(self, "xrr_kms_key_id")
17265
+
16887
17266
 
16888
17267
  @pulumi.output_type
16889
17268
  class GetBootVolumesBootVolumeSourceDetailResult(dict):
16890
17269
  def __init__(__self__, *,
17270
+ change_block_size_in_bytes: str,
17271
+ first_backup_id: str,
16891
17272
  id: str,
17273
+ second_backup_id: str,
16892
17274
  type: str):
16893
17275
  """
17276
+ :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).
17277
+ :param str first_backup_id: The OCID of the first boot volume backup.
16894
17278
  :param str id: The OCID of the boot volume replica.
16895
- :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
17279
+ :param str second_backup_id: The OCID of the second boot volume backup.
17280
+ :param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16896
17281
  """
17282
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
17283
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
16897
17284
  pulumi.set(__self__, "id", id)
17285
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
16898
17286
  pulumi.set(__self__, "type", type)
16899
17287
 
17288
+ @property
17289
+ @pulumi.getter(name="changeBlockSizeInBytes")
17290
+ def change_block_size_in_bytes(self) -> str:
17291
+ """
17292
+ 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).
17293
+ """
17294
+ return pulumi.get(self, "change_block_size_in_bytes")
17295
+
17296
+ @property
17297
+ @pulumi.getter(name="firstBackupId")
17298
+ def first_backup_id(self) -> str:
17299
+ """
17300
+ The OCID of the first boot volume backup.
17301
+ """
17302
+ return pulumi.get(self, "first_backup_id")
17303
+
16900
17304
  @property
16901
17305
  @pulumi.getter
16902
17306
  def id(self) -> str:
@@ -16905,11 +17309,19 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
16905
17309
  """
16906
17310
  return pulumi.get(self, "id")
16907
17311
 
17312
+ @property
17313
+ @pulumi.getter(name="secondBackupId")
17314
+ def second_backup_id(self) -> str:
17315
+ """
17316
+ The OCID of the second boot volume backup.
17317
+ """
17318
+ return pulumi.get(self, "second_backup_id")
17319
+
16908
17320
  @property
16909
17321
  @pulumi.getter
16910
17322
  def type(self) -> str:
16911
17323
  """
16912
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
17324
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
16913
17325
  """
16914
17326
  return pulumi.get(self, "type")
16915
17327
 
@@ -26393,7 +26805,8 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26393
26805
  kms_key_id: str,
26394
26806
  size_in_gbs: str,
26395
26807
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
26396
- vpus_per_gb: str):
26808
+ vpus_per_gb: str,
26809
+ xrc_kms_key_id: str):
26397
26810
  """
26398
26811
  :param Sequence['GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
26399
26812
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -26408,6 +26821,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26408
26821
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
26409
26822
  :param str size_in_gbs: The size of the volume in GBs.
26410
26823
  :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.
26824
+ :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).
26411
26825
  """
26412
26826
  pulumi.set(__self__, "autotune_policies", autotune_policies)
26413
26827
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -26423,6 +26837,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26423
26837
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
26424
26838
  pulumi.set(__self__, "source_details", source_details)
26425
26839
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
26840
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
26426
26841
 
26427
26842
  @property
26428
26843
  @pulumi.getter(name="autotunePolicies")
@@ -26533,6 +26948,14 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26533
26948
  """
26534
26949
  return pulumi.get(self, "vpus_per_gb")
26535
26950
 
26951
+ @property
26952
+ @pulumi.getter(name="xrcKmsKeyId")
26953
+ def xrc_kms_key_id(self) -> str:
26954
+ """
26955
+ 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).
26956
+ """
26957
+ return pulumi.get(self, "xrc_kms_key_id")
26958
+
26536
26959
 
26537
26960
  @pulumi.output_type
26538
26961
  class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -27898,7 +28321,8 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27898
28321
  kms_key_id: str,
27899
28322
  size_in_gbs: str,
27900
28323
  source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
27901
- vpus_per_gb: str):
28324
+ vpus_per_gb: str,
28325
+ xrc_kms_key_id: str):
27902
28326
  """
27903
28327
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
27904
28328
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -27913,6 +28337,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27913
28337
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
27914
28338
  :param str size_in_gbs: The size of the volume in GBs.
27915
28339
  :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.
28340
+ :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).
27916
28341
  """
27917
28342
  pulumi.set(__self__, "autotune_policies", autotune_policies)
27918
28343
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -27928,6 +28353,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27928
28353
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
27929
28354
  pulumi.set(__self__, "source_details", source_details)
27930
28355
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
28356
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
27931
28357
 
27932
28358
  @property
27933
28359
  @pulumi.getter(name="autotunePolicies")
@@ -28038,6 +28464,14 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
28038
28464
  """
28039
28465
  return pulumi.get(self, "vpus_per_gb")
28040
28466
 
28467
+ @property
28468
+ @pulumi.getter(name="xrcKmsKeyId")
28469
+ def xrc_kms_key_id(self) -> str:
28470
+ """
28471
+ 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).
28472
+ """
28473
+ return pulumi.get(self, "xrc_kms_key_id")
28474
+
28041
28475
 
28042
28476
  @pulumi.output_type
28043
28477
  class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -29990,7 +30424,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29990
30424
  kms_key_id: str,
29991
30425
  size_in_gbs: str,
29992
30426
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
29993
- vpus_per_gb: str):
30427
+ vpus_per_gb: str,
30428
+ xrc_kms_key_id: str):
29994
30429
  """
29995
30430
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
29996
30431
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -30005,6 +30440,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
30005
30440
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
30006
30441
  :param str size_in_gbs: The size of the volume in GBs.
30007
30442
  :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.
30443
+ :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).
30008
30444
  """
30009
30445
  pulumi.set(__self__, "autotune_policies", autotune_policies)
30010
30446
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -30020,6 +30456,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
30020
30456
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
30021
30457
  pulumi.set(__self__, "source_details", source_details)
30022
30458
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
30459
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
30023
30460
 
30024
30461
  @property
30025
30462
  @pulumi.getter(name="autotunePolicies")
@@ -30130,6 +30567,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
30130
30567
  """
30131
30568
  return pulumi.get(self, "vpus_per_gb")
30132
30569
 
30570
+ @property
30571
+ @pulumi.getter(name="xrcKmsKeyId")
30572
+ def xrc_kms_key_id(self) -> str:
30573
+ """
30574
+ 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).
30575
+ """
30576
+ return pulumi.get(self, "xrc_kms_key_id")
30577
+
30133
30578
 
30134
30579
  @pulumi.output_type
30135
30580
  class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -31495,7 +31940,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31495
31940
  kms_key_id: str,
31496
31941
  size_in_gbs: str,
31497
31942
  source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
31498
- vpus_per_gb: str):
31943
+ vpus_per_gb: str,
31944
+ xrc_kms_key_id: str):
31499
31945
  """
31500
31946
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
31501
31947
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
@@ -31510,6 +31956,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31510
31956
  :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
31511
31957
  :param str size_in_gbs: The size of the volume in GBs.
31512
31958
  :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.
31959
+ :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).
31513
31960
  """
31514
31961
  pulumi.set(__self__, "autotune_policies", autotune_policies)
31515
31962
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -31525,6 +31972,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31525
31972
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
31526
31973
  pulumi.set(__self__, "source_details", source_details)
31527
31974
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
31975
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
31528
31976
 
31529
31977
  @property
31530
31978
  @pulumi.getter(name="autotunePolicies")
@@ -31635,6 +32083,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31635
32083
  """
31636
32084
  return pulumi.get(self, "vpus_per_gb")
31637
32085
 
32086
+ @property
32087
+ @pulumi.getter(name="xrcKmsKeyId")
32088
+ def xrc_kms_key_id(self) -> str:
32089
+ """
32090
+ 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).
32091
+ """
32092
+ return pulumi.get(self, "xrc_kms_key_id")
32093
+
31638
32094
 
31639
32095
  @pulumi.output_type
31640
32096
  class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
@@ -33421,7 +33877,7 @@ class GetInstanceCreateVnicDetailResult(dict):
33421
33877
  :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"}`
33422
33878
  :param str hostname_label: The hostname for the instance VNIC's primary private IP.
33423
33879
  :param str private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
33424
- :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
33880
+ :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"}`
33425
33881
  """
33426
33882
  pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
33427
33883
  pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
@@ -33507,7 +33963,7 @@ class GetInstanceCreateVnicDetailResult(dict):
33507
33963
  @pulumi.getter(name="securityAttributes")
33508
33964
  def security_attributes(self) -> Mapping[str, str]:
33509
33965
  """
33510
- Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
33966
+ 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"}`
33511
33967
  """
33512
33968
  return pulumi.get(self, "security_attributes")
33513
33969
 
@@ -35864,7 +36320,7 @@ class GetInstancesInstanceResult(dict):
35864
36320
  :param Sequence['GetInstancesInstancePreemptibleInstanceConfigArgs'] preemptible_instance_configs: (Optional) Configuration options for preemptible instances.
35865
36321
  :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.
35866
36322
  :param str region: The region that contains the availability domain the instance is running in.
35867
- :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
36323
+ :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"}`
35868
36324
  :param str security_attributes_state: The lifecycle state of the `securityAttributes`
35869
36325
  :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).
35870
36326
  :param Sequence['GetInstancesInstanceShapeConfigArgs'] shape_configs: The shape configuration for an instance. The shape configuration determines the resources allocated to an instance.
@@ -36189,7 +36645,7 @@ class GetInstancesInstanceResult(dict):
36189
36645
  @pulumi.getter(name="securityAttributes")
36190
36646
  def security_attributes(self) -> Mapping[str, str]:
36191
36647
  """
36192
- Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
36648
+ 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"}`
36193
36649
  """
36194
36650
  return pulumi.get(self, "security_attributes")
36195
36651
 
@@ -36400,7 +36856,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
36400
36856
  :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"}`
36401
36857
  :param str display_name: A filter to return only resources that match the given display name exactly.
36402
36858
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
36403
- :param Mapping[str, str] security_attributes: Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
36859
+ :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"}`
36404
36860
  """
36405
36861
  pulumi.set(__self__, "assign_ipv6ip", assign_ipv6ip)
36406
36862
  pulumi.set(__self__, "assign_private_dns_record", assign_private_dns_record)
@@ -36480,7 +36936,7 @@ class GetInstancesInstanceCreateVnicDetailResult(dict):
36480
36936
  @pulumi.getter(name="securityAttributes")
36481
36937
  def security_attributes(self) -> Mapping[str, str]:
36482
36938
  """
36483
- Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
36939
+ 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"}`
36484
36940
  """
36485
36941
  return pulumi.get(self, "security_attributes")
36486
36942
 
@@ -45108,6 +45564,46 @@ class GetVirtualCircuitPublicPrefixesVirtualCircuitPublicPrefixResult(dict):
45108
45564
  return pulumi.get(self, "verification_state")
45109
45565
 
45110
45566
 
45567
+ @pulumi.output_type
45568
+ class GetVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
45569
+ def __init__(__self__, *,
45570
+ configured_redundancy_level: str,
45571
+ ipv4bgp_session_redundancy_status: str,
45572
+ ipv6bgp_session_redundancy_status: str):
45573
+ """
45574
+ :param str configured_redundancy_level: The configured redundancy level of the virtual circuit
45575
+ :param str ipv4bgp_session_redundancy_status: IPV4 BGP redundancy status indicates if the configured redundancy level is met
45576
+ :param str ipv6bgp_session_redundancy_status: IPV6 BGP redundancy status indicates if the configured redundancy level is met
45577
+ """
45578
+ pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
45579
+ pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
45580
+ pulumi.set(__self__, "ipv6bgp_session_redundancy_status", ipv6bgp_session_redundancy_status)
45581
+
45582
+ @property
45583
+ @pulumi.getter(name="configuredRedundancyLevel")
45584
+ def configured_redundancy_level(self) -> str:
45585
+ """
45586
+ The configured redundancy level of the virtual circuit
45587
+ """
45588
+ return pulumi.get(self, "configured_redundancy_level")
45589
+
45590
+ @property
45591
+ @pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
45592
+ def ipv4bgp_session_redundancy_status(self) -> str:
45593
+ """
45594
+ IPV4 BGP redundancy status indicates if the configured redundancy level is met
45595
+ """
45596
+ return pulumi.get(self, "ipv4bgp_session_redundancy_status")
45597
+
45598
+ @property
45599
+ @pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
45600
+ def ipv6bgp_session_redundancy_status(self) -> str:
45601
+ """
45602
+ IPV6 BGP redundancy status indicates if the configured redundancy level is met
45603
+ """
45604
+ return pulumi.get(self, "ipv6bgp_session_redundancy_status")
45605
+
45606
+
45111
45607
  @pulumi.output_type
45112
45608
  class GetVirtualCircuitsFilterResult(dict):
45113
45609
  def __init__(__self__, *,
@@ -45167,7 +45663,8 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
45167
45663
  state: str,
45168
45664
  time_created: str,
45169
45665
  type: str,
45170
- virtual_circuit_id: str):
45666
+ virtual_circuit_id: str,
45667
+ virtual_circuit_redundancy_metadatas: Sequence['outputs.GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult']):
45171
45668
  """
45172
45669
  :param str bandwidth_shape_name: The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see [ListFastConnectProviderServiceVirtualCircuitBandwidthShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/FastConnectProviderService/ListFastConnectProviderVirtualCircuitBandwidthShapes). Example: `10 Gbps`
45173
45670
  :param str bgp_admin_state: Set to `ENABLED` (the default) to activate the BGP session of the virtual circuit, set to `DISABLED` to deactivate the virtual circuit.
@@ -45198,6 +45695,7 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
45198
45695
  :param str state: A filter to return only resources that match the specified lifecycle state. The value is case insensitive.
45199
45696
  :param str time_created: The date and time the virtual circuit was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
45200
45697
  :param str type: Whether the virtual circuit supports private or public peering. For more information, see [FastConnect Overview](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm).
45698
+ :param Sequence['GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataArgs'] virtual_circuit_redundancy_metadatas: Redundancy level details of the virtual circuit
45201
45699
  """
45202
45700
  pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
45203
45701
  pulumi.set(__self__, "bgp_admin_state", bgp_admin_state)
@@ -45229,6 +45727,7 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
45229
45727
  pulumi.set(__self__, "time_created", time_created)
45230
45728
  pulumi.set(__self__, "type", type)
45231
45729
  pulumi.set(__self__, "virtual_circuit_id", virtual_circuit_id)
45730
+ pulumi.set(__self__, "virtual_circuit_redundancy_metadatas", virtual_circuit_redundancy_metadatas)
45232
45731
 
45233
45732
  @property
45234
45733
  @pulumi.getter(name="bandwidthShapeName")
@@ -45469,6 +45968,14 @@ class GetVirtualCircuitsVirtualCircuitResult(dict):
45469
45968
  def virtual_circuit_id(self) -> str:
45470
45969
  return pulumi.get(self, "virtual_circuit_id")
45471
45970
 
45971
+ @property
45972
+ @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
45973
+ def virtual_circuit_redundancy_metadatas(self) -> Sequence['outputs.GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult']:
45974
+ """
45975
+ Redundancy level details of the virtual circuit
45976
+ """
45977
+ return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
45978
+
45472
45979
 
45473
45980
  @pulumi.output_type
45474
45981
  class GetVirtualCircuitsVirtualCircuitCrossConnectMappingResult(dict):
@@ -45566,6 +46073,46 @@ class GetVirtualCircuitsVirtualCircuitPublicPrefixResult(dict):
45566
46073
  return pulumi.get(self, "cidr_block")
45567
46074
 
45568
46075
 
46076
+ @pulumi.output_type
46077
+ class GetVirtualCircuitsVirtualCircuitVirtualCircuitRedundancyMetadataResult(dict):
46078
+ def __init__(__self__, *,
46079
+ configured_redundancy_level: str,
46080
+ ipv4bgp_session_redundancy_status: str,
46081
+ ipv6bgp_session_redundancy_status: str):
46082
+ """
46083
+ :param str configured_redundancy_level: The configured redundancy level of the virtual circuit
46084
+ :param str ipv4bgp_session_redundancy_status: IPV4 BGP redundancy status indicates if the configured redundancy level is met
46085
+ :param str ipv6bgp_session_redundancy_status: IPV6 BGP redundancy status indicates if the configured redundancy level is met
46086
+ """
46087
+ pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
46088
+ pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
46089
+ pulumi.set(__self__, "ipv6bgp_session_redundancy_status", ipv6bgp_session_redundancy_status)
46090
+
46091
+ @property
46092
+ @pulumi.getter(name="configuredRedundancyLevel")
46093
+ def configured_redundancy_level(self) -> str:
46094
+ """
46095
+ The configured redundancy level of the virtual circuit
46096
+ """
46097
+ return pulumi.get(self, "configured_redundancy_level")
46098
+
46099
+ @property
46100
+ @pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
46101
+ def ipv4bgp_session_redundancy_status(self) -> str:
46102
+ """
46103
+ IPV4 BGP redundancy status indicates if the configured redundancy level is met
46104
+ """
46105
+ return pulumi.get(self, "ipv4bgp_session_redundancy_status")
46106
+
46107
+ @property
46108
+ @pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
46109
+ def ipv6bgp_session_redundancy_status(self) -> str:
46110
+ """
46111
+ IPV6 BGP redundancy status indicates if the configured redundancy level is met
46112
+ """
46113
+ return pulumi.get(self, "ipv6bgp_session_redundancy_status")
46114
+
46115
+
45569
46116
  @pulumi.output_type
45570
46117
  class GetVirtualNetworksFilterResult(dict):
45571
46118
  def __init__(__self__, *,
@@ -46893,17 +47440,20 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
46893
47440
  asset_id: str,
46894
47441
  id: str,
46895
47442
  policy_id: str,
46896
- time_created: str):
47443
+ time_created: str,
47444
+ xrc_kms_key_id: str):
46897
47445
  """
46898
47446
  :param str asset_id: The OCID of an asset (e.g. a volume).
46899
47447
  :param str id: The OCID of the volume backup policy assignment.
46900
47448
  :param str policy_id: The OCID of the volume backup policy that has been assigned to the volume.
46901
47449
  :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).
47450
+ :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).
46902
47451
  """
46903
47452
  pulumi.set(__self__, "asset_id", asset_id)
46904
47453
  pulumi.set(__self__, "id", id)
46905
47454
  pulumi.set(__self__, "policy_id", policy_id)
46906
47455
  pulumi.set(__self__, "time_created", time_created)
47456
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
46907
47457
 
46908
47458
  @property
46909
47459
  @pulumi.getter(name="assetId")
@@ -46937,6 +47487,14 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
46937
47487
  """
46938
47488
  return pulumi.get(self, "time_created")
46939
47489
 
47490
+ @property
47491
+ @pulumi.getter(name="xrcKmsKeyId")
47492
+ def xrc_kms_key_id(self) -> str:
47493
+ """
47494
+ 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).
47495
+ """
47496
+ return pulumi.get(self, "xrc_kms_key_id")
47497
+
46940
47498
 
46941
47499
  @pulumi.output_type
46942
47500
  class GetVolumeBackupsFilterResult(dict):
@@ -47227,15 +47785,20 @@ class GetVolumeBlockVolumeReplicaResult(dict):
47227
47785
  def __init__(__self__, *,
47228
47786
  availability_domain: str,
47229
47787
  block_volume_replica_id: str,
47230
- display_name: str):
47788
+ display_name: str,
47789
+ kms_key_id: str,
47790
+ xrr_kms_key_id: str):
47231
47791
  """
47232
47792
  :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
47233
47793
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
47234
47794
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
47795
+ :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
47235
47796
  """
47236
47797
  pulumi.set(__self__, "availability_domain", availability_domain)
47237
47798
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
47238
47799
  pulumi.set(__self__, "display_name", display_name)
47800
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
47801
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
47239
47802
 
47240
47803
  @property
47241
47804
  @pulumi.getter(name="availabilityDomain")
@@ -47261,6 +47824,19 @@ class GetVolumeBlockVolumeReplicaResult(dict):
47261
47824
  """
47262
47825
  return pulumi.get(self, "display_name")
47263
47826
 
47827
+ @property
47828
+ @pulumi.getter(name="kmsKeyId")
47829
+ def kms_key_id(self) -> str:
47830
+ """
47831
+ The OCID of the Vault service key which is the master encryption key for the volume.
47832
+ """
47833
+ return pulumi.get(self, "kms_key_id")
47834
+
47835
+ @property
47836
+ @pulumi.getter(name="xrrKmsKeyId")
47837
+ def xrr_kms_key_id(self) -> str:
47838
+ return pulumi.get(self, "xrr_kms_key_id")
47839
+
47264
47840
 
47265
47841
  @pulumi.output_type
47266
47842
  class GetVolumeGroupBackupsFilterResult(dict):
@@ -47798,7 +48374,8 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47798
48374
  time_created: str,
47799
48375
  volume_group_replicas: Sequence['outputs.GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult'],
47800
48376
  volume_group_replicas_deletion: bool,
47801
- volume_ids: Sequence[str]):
48377
+ volume_ids: Sequence[str],
48378
+ xrc_kms_key_id: str):
47802
48379
  """
47803
48380
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
47804
48381
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -47833,6 +48410,7 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47833
48410
  pulumi.set(__self__, "volume_group_replicas", volume_group_replicas)
47834
48411
  pulumi.set(__self__, "volume_group_replicas_deletion", volume_group_replicas_deletion)
47835
48412
  pulumi.set(__self__, "volume_ids", volume_ids)
48413
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
47836
48414
 
47837
48415
  @property
47838
48416
  @pulumi.getter(name="availabilityDomain")
@@ -47967,6 +48545,11 @@ class GetVolumeGroupsVolumeGroupResult(dict):
47967
48545
  """
47968
48546
  return pulumi.get(self, "volume_ids")
47969
48547
 
48548
+ @property
48549
+ @pulumi.getter(name="xrcKmsKeyId")
48550
+ def xrc_kms_key_id(self) -> str:
48551
+ return pulumi.get(self, "xrc_kms_key_id")
48552
+
47970
48553
 
47971
48554
  @pulumi.output_type
47972
48555
  class GetVolumeGroupsVolumeGroupSourceDetailResult(dict):
@@ -48035,7 +48618,8 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
48035
48618
  def __init__(__self__, *,
48036
48619
  availability_domain: str,
48037
48620
  display_name: str,
48038
- volume_group_replica_id: str):
48621
+ volume_group_replica_id: str,
48622
+ xrr_kms_key_id: str):
48039
48623
  """
48040
48624
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
48041
48625
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -48044,6 +48628,7 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
48044
48628
  pulumi.set(__self__, "availability_domain", availability_domain)
48045
48629
  pulumi.set(__self__, "display_name", display_name)
48046
48630
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
48631
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
48047
48632
 
48048
48633
  @property
48049
48634
  @pulumi.getter(name="availabilityDomain")
@@ -48069,19 +48654,49 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
48069
48654
  """
48070
48655
  return pulumi.get(self, "volume_group_replica_id")
48071
48656
 
48657
+ @property
48658
+ @pulumi.getter(name="xrrKmsKeyId")
48659
+ def xrr_kms_key_id(self) -> str:
48660
+ return pulumi.get(self, "xrr_kms_key_id")
48661
+
48072
48662
 
48073
48663
  @pulumi.output_type
48074
48664
  class GetVolumeSourceDetailResult(dict):
48075
48665
  def __init__(__self__, *,
48666
+ change_block_size_in_bytes: str,
48667
+ first_backup_id: str,
48076
48668
  id: str,
48669
+ second_backup_id: str,
48077
48670
  type: str):
48078
48671
  """
48672
+ :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).
48673
+ :param str first_backup_id: The OCID of the first volume backup.
48079
48674
  :param str id: The OCID of the block volume replica.
48080
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
48675
+ :param str second_backup_id: The OCID of the second volume backup.
48676
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
48081
48677
  """
48678
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
48679
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
48082
48680
  pulumi.set(__self__, "id", id)
48681
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
48083
48682
  pulumi.set(__self__, "type", type)
48084
48683
 
48684
+ @property
48685
+ @pulumi.getter(name="changeBlockSizeInBytes")
48686
+ def change_block_size_in_bytes(self) -> str:
48687
+ """
48688
+ 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).
48689
+ """
48690
+ return pulumi.get(self, "change_block_size_in_bytes")
48691
+
48692
+ @property
48693
+ @pulumi.getter(name="firstBackupId")
48694
+ def first_backup_id(self) -> str:
48695
+ """
48696
+ The OCID of the first volume backup.
48697
+ """
48698
+ return pulumi.get(self, "first_backup_id")
48699
+
48085
48700
  @property
48086
48701
  @pulumi.getter
48087
48702
  def id(self) -> str:
@@ -48090,11 +48705,19 @@ class GetVolumeSourceDetailResult(dict):
48090
48705
  """
48091
48706
  return pulumi.get(self, "id")
48092
48707
 
48708
+ @property
48709
+ @pulumi.getter(name="secondBackupId")
48710
+ def second_backup_id(self) -> str:
48711
+ """
48712
+ The OCID of the second volume backup.
48713
+ """
48714
+ return pulumi.get(self, "second_backup_id")
48715
+
48093
48716
  @property
48094
48717
  @pulumi.getter
48095
48718
  def type(self) -> str:
48096
48719
  """
48097
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
48720
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
48098
48721
  """
48099
48722
  return pulumi.get(self, "type")
48100
48723
 
@@ -48152,7 +48775,8 @@ class GetVolumesVolumeResult(dict):
48152
48775
  time_created: str,
48153
48776
  volume_backup_id: str,
48154
48777
  volume_group_id: str,
48155
- vpus_per_gb: str):
48778
+ vpus_per_gb: str,
48779
+ xrc_kms_key_id: str):
48156
48780
  """
48157
48781
  :param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this volume is effectively tuned to.
48158
48782
  :param Sequence['GetVolumesVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
@@ -48168,7 +48792,8 @@ class GetVolumesVolumeResult(dict):
48168
48792
  :param bool is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
48169
48793
  :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
48170
48794
  :param str size_in_gbs: The size of the volume in GBs.
48171
- :param str size_in_mbs: The size of the volume in MBs. This field is deprecated. Use `size_in_gbs` instead.
48795
+ :param str size_in_mbs: The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
48796
+ :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.
48172
48797
  :param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
48173
48798
  :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"}`
48174
48799
  :param str time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -48199,6 +48824,7 @@ class GetVolumesVolumeResult(dict):
48199
48824
  pulumi.set(__self__, "volume_backup_id", volume_backup_id)
48200
48825
  pulumi.set(__self__, "volume_group_id", volume_group_id)
48201
48826
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
48827
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
48202
48828
 
48203
48829
  @property
48204
48830
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -48328,13 +48954,16 @@ class GetVolumesVolumeResult(dict):
48328
48954
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
48329
48955
  def size_in_mbs(self) -> str:
48330
48956
  """
48331
- The size of the volume in MBs. This field is deprecated. Use `size_in_gbs` instead.
48957
+ The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
48332
48958
  """
48333
48959
  return pulumi.get(self, "size_in_mbs")
48334
48960
 
48335
48961
  @property
48336
48962
  @pulumi.getter(name="sourceDetails")
48337
48963
  def source_details(self) -> Sequence['outputs.GetVolumesVolumeSourceDetailResult']:
48964
+ """
48965
+ 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.
48966
+ """
48338
48967
  return pulumi.get(self, "source_details")
48339
48968
 
48340
48969
  @property
@@ -48382,6 +49011,11 @@ class GetVolumesVolumeResult(dict):
48382
49011
  """
48383
49012
  return pulumi.get(self, "vpus_per_gb")
48384
49013
 
49014
+ @property
49015
+ @pulumi.getter(name="xrcKmsKeyId")
49016
+ def xrc_kms_key_id(self) -> str:
49017
+ return pulumi.get(self, "xrc_kms_key_id")
49018
+
48385
49019
 
48386
49020
  @pulumi.output_type
48387
49021
  class GetVolumesVolumeAutotunePolicyResult(dict):
@@ -48417,15 +49051,20 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
48417
49051
  def __init__(__self__, *,
48418
49052
  availability_domain: str,
48419
49053
  block_volume_replica_id: str,
48420
- display_name: str):
49054
+ display_name: str,
49055
+ kms_key_id: str,
49056
+ xrr_kms_key_id: str):
48421
49057
  """
48422
49058
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
48423
49059
  :param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
48424
49060
  :param str display_name: A filter to return only resources that match the given display name exactly.
49061
+ :param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
48425
49062
  """
48426
49063
  pulumi.set(__self__, "availability_domain", availability_domain)
48427
49064
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
48428
49065
  pulumi.set(__self__, "display_name", display_name)
49066
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
49067
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
48429
49068
 
48430
49069
  @property
48431
49070
  @pulumi.getter(name="availabilityDomain")
@@ -48451,19 +49090,57 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
48451
49090
  """
48452
49091
  return pulumi.get(self, "display_name")
48453
49092
 
49093
+ @property
49094
+ @pulumi.getter(name="kmsKeyId")
49095
+ def kms_key_id(self) -> str:
49096
+ """
49097
+ The OCID of the Vault service key which is the master encryption key for the volume.
49098
+ """
49099
+ return pulumi.get(self, "kms_key_id")
49100
+
49101
+ @property
49102
+ @pulumi.getter(name="xrrKmsKeyId")
49103
+ def xrr_kms_key_id(self) -> str:
49104
+ return pulumi.get(self, "xrr_kms_key_id")
49105
+
48454
49106
 
48455
49107
  @pulumi.output_type
48456
49108
  class GetVolumesVolumeSourceDetailResult(dict):
48457
49109
  def __init__(__self__, *,
49110
+ change_block_size_in_bytes: str,
49111
+ first_backup_id: str,
48458
49112
  id: str,
49113
+ second_backup_id: str,
48459
49114
  type: str):
48460
49115
  """
49116
+ :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).
49117
+ :param str first_backup_id: The OCID of the first volume backup.
48461
49118
  :param str id: The OCID of the block volume replica.
48462
- :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
49119
+ :param str second_backup_id: The OCID of the second volume backup.
49120
+ :param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
48463
49121
  """
49122
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
49123
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
48464
49124
  pulumi.set(__self__, "id", id)
49125
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
48465
49126
  pulumi.set(__self__, "type", type)
48466
49127
 
49128
+ @property
49129
+ @pulumi.getter(name="changeBlockSizeInBytes")
49130
+ def change_block_size_in_bytes(self) -> str:
49131
+ """
49132
+ 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).
49133
+ """
49134
+ return pulumi.get(self, "change_block_size_in_bytes")
49135
+
49136
+ @property
49137
+ @pulumi.getter(name="firstBackupId")
49138
+ def first_backup_id(self) -> str:
49139
+ """
49140
+ The OCID of the first volume backup.
49141
+ """
49142
+ return pulumi.get(self, "first_backup_id")
49143
+
48467
49144
  @property
48468
49145
  @pulumi.getter
48469
49146
  def id(self) -> str:
@@ -48472,11 +49149,19 @@ class GetVolumesVolumeSourceDetailResult(dict):
48472
49149
  """
48473
49150
  return pulumi.get(self, "id")
48474
49151
 
49152
+ @property
49153
+ @pulumi.getter(name="secondBackupId")
49154
+ def second_backup_id(self) -> str:
49155
+ """
49156
+ The OCID of the second volume backup.
49157
+ """
49158
+ return pulumi.get(self, "second_backup_id")
49159
+
48475
49160
  @property
48476
49161
  @pulumi.getter
48477
49162
  def type(self) -> str:
48478
49163
  """
48479
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
49164
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
48480
49165
  """
48481
49166
  return pulumi.get(self, "type")
48482
49167