pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.13.0a1729613556__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +299 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +573 -46
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
pulumi_oci/core/outputs.py
CHANGED
@@ -850,6 +850,10 @@ class BootVolumeBootVolumeReplica(dict):
|
|
850
850
|
suggest = "boot_volume_replica_id"
|
851
851
|
elif key == "displayName":
|
852
852
|
suggest = "display_name"
|
853
|
+
elif key == "kmsKeyId":
|
854
|
+
suggest = "kms_key_id"
|
855
|
+
elif key == "xrrKmsKeyId":
|
856
|
+
suggest = "xrr_kms_key_id"
|
853
857
|
|
854
858
|
if suggest:
|
855
859
|
pulumi.log.warn(f"Key '{key}' not found in BootVolumeBootVolumeReplica. Access the value via the '{suggest}' property getter instead.")
|
@@ -865,17 +869,25 @@ class BootVolumeBootVolumeReplica(dict):
|
|
865
869
|
def __init__(__self__, *,
|
866
870
|
availability_domain: str,
|
867
871
|
boot_volume_replica_id: Optional[str] = None,
|
868
|
-
display_name: Optional[str] = None
|
872
|
+
display_name: Optional[str] = None,
|
873
|
+
kms_key_id: Optional[str] = None,
|
874
|
+
xrr_kms_key_id: Optional[str] = None):
|
869
875
|
"""
|
870
876
|
:param str availability_domain: (Updatable) The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
|
871
877
|
:param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
|
872
878
|
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
879
|
+
:param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
880
|
+
:param str xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
873
881
|
"""
|
874
882
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
875
883
|
if boot_volume_replica_id is not None:
|
876
884
|
pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
|
877
885
|
if display_name is not None:
|
878
886
|
pulumi.set(__self__, "display_name", display_name)
|
887
|
+
if kms_key_id is not None:
|
888
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
889
|
+
if xrr_kms_key_id is not None:
|
890
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
879
891
|
|
880
892
|
@property
|
881
893
|
@pulumi.getter(name="availabilityDomain")
|
@@ -901,34 +913,108 @@ class BootVolumeBootVolumeReplica(dict):
|
|
901
913
|
"""
|
902
914
|
return pulumi.get(self, "display_name")
|
903
915
|
|
916
|
+
@property
|
917
|
+
@pulumi.getter(name="kmsKeyId")
|
918
|
+
def kms_key_id(self) -> Optional[str]:
|
919
|
+
"""
|
920
|
+
(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
921
|
+
"""
|
922
|
+
return pulumi.get(self, "kms_key_id")
|
923
|
+
|
924
|
+
@property
|
925
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
926
|
+
def xrr_kms_key_id(self) -> Optional[str]:
|
927
|
+
"""
|
928
|
+
(Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
929
|
+
"""
|
930
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
931
|
+
|
904
932
|
|
905
933
|
@pulumi.output_type
|
906
934
|
class BootVolumeSourceDetails(dict):
|
935
|
+
@staticmethod
|
936
|
+
def __key_warning(key: str):
|
937
|
+
suggest = None
|
938
|
+
if key == "changeBlockSizeInBytes":
|
939
|
+
suggest = "change_block_size_in_bytes"
|
940
|
+
elif key == "firstBackupId":
|
941
|
+
suggest = "first_backup_id"
|
942
|
+
elif key == "secondBackupId":
|
943
|
+
suggest = "second_backup_id"
|
944
|
+
|
945
|
+
if suggest:
|
946
|
+
pulumi.log.warn(f"Key '{key}' not found in BootVolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
|
947
|
+
|
948
|
+
def __getitem__(self, key: str) -> Any:
|
949
|
+
BootVolumeSourceDetails.__key_warning(key)
|
950
|
+
return super().__getitem__(key)
|
951
|
+
|
952
|
+
def get(self, key: str, default = None) -> Any:
|
953
|
+
BootVolumeSourceDetails.__key_warning(key)
|
954
|
+
return super().get(key, default)
|
955
|
+
|
907
956
|
def __init__(__self__, *,
|
908
|
-
|
909
|
-
|
957
|
+
type: str,
|
958
|
+
change_block_size_in_bytes: Optional[str] = None,
|
959
|
+
first_backup_id: Optional[str] = None,
|
960
|
+
id: Optional[str] = None,
|
961
|
+
second_backup_id: Optional[str] = None):
|
910
962
|
"""
|
963
|
+
:param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
964
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
965
|
+
:param str first_backup_id: The OCID of the first boot volume backup.
|
911
966
|
:param str id: The OCID of the boot volume replica.
|
912
|
-
:param str
|
967
|
+
:param str second_backup_id: The OCID of the second boot volume backup.
|
913
968
|
"""
|
914
|
-
pulumi.set(__self__, "id", id)
|
915
969
|
pulumi.set(__self__, "type", type)
|
970
|
+
if change_block_size_in_bytes is not None:
|
971
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
972
|
+
if first_backup_id is not None:
|
973
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
974
|
+
if id is not None:
|
975
|
+
pulumi.set(__self__, "id", id)
|
976
|
+
if second_backup_id is not None:
|
977
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
916
978
|
|
917
979
|
@property
|
918
980
|
@pulumi.getter
|
919
|
-
def
|
981
|
+
def type(self) -> str:
|
982
|
+
"""
|
983
|
+
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
984
|
+
"""
|
985
|
+
return pulumi.get(self, "type")
|
986
|
+
|
987
|
+
@property
|
988
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
989
|
+
def change_block_size_in_bytes(self) -> Optional[str]:
|
990
|
+
"""
|
991
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
992
|
+
"""
|
993
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
994
|
+
|
995
|
+
@property
|
996
|
+
@pulumi.getter(name="firstBackupId")
|
997
|
+
def first_backup_id(self) -> Optional[str]:
|
998
|
+
"""
|
999
|
+
The OCID of the first boot volume backup.
|
1000
|
+
"""
|
1001
|
+
return pulumi.get(self, "first_backup_id")
|
1002
|
+
|
1003
|
+
@property
|
1004
|
+
@pulumi.getter
|
1005
|
+
def id(self) -> Optional[str]:
|
920
1006
|
"""
|
921
1007
|
The OCID of the boot volume replica.
|
922
1008
|
"""
|
923
1009
|
return pulumi.get(self, "id")
|
924
1010
|
|
925
1011
|
@property
|
926
|
-
@pulumi.getter
|
927
|
-
def
|
1012
|
+
@pulumi.getter(name="secondBackupId")
|
1013
|
+
def second_backup_id(self) -> Optional[str]:
|
928
1014
|
"""
|
929
|
-
The
|
1015
|
+
The OCID of the second boot volume backup.
|
930
1016
|
"""
|
931
|
-
return pulumi.get(self, "
|
1017
|
+
return pulumi.get(self, "second_backup_id")
|
932
1018
|
|
933
1019
|
|
934
1020
|
@pulumi.output_type
|
@@ -5407,6 +5493,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
|
|
5407
5493
|
suggest = "source_details"
|
5408
5494
|
elif key == "vpusPerGb":
|
5409
5495
|
suggest = "vpus_per_gb"
|
5496
|
+
elif key == "xrcKmsKeyId":
|
5497
|
+
suggest = "xrc_kms_key_id"
|
5410
5498
|
|
5411
5499
|
if suggest:
|
5412
5500
|
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
|
@@ -5433,7 +5521,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
|
|
5433
5521
|
kms_key_id: Optional[str] = None,
|
5434
5522
|
size_in_gbs: Optional[str] = None,
|
5435
5523
|
source_details: Optional['outputs.InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsSourceDetails'] = None,
|
5436
|
-
vpus_per_gb: Optional[str] = None
|
5524
|
+
vpus_per_gb: Optional[str] = None,
|
5525
|
+
xrc_kms_key_id: Optional[str] = None):
|
5437
5526
|
"""
|
5438
5527
|
:param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
5439
5528
|
:param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
|
@@ -5450,6 +5539,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
|
|
5450
5539
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
5451
5540
|
|
5452
5541
|
Allowed values:
|
5542
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
5453
5543
|
"""
|
5454
5544
|
if autotune_policies is not None:
|
5455
5545
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
@@ -5479,6 +5569,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
|
|
5479
5569
|
pulumi.set(__self__, "source_details", source_details)
|
5480
5570
|
if vpus_per_gb is not None:
|
5481
5571
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
5572
|
+
if xrc_kms_key_id is not None:
|
5573
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
5482
5574
|
|
5483
5575
|
@property
|
5484
5576
|
@pulumi.getter(name="autotunePolicies")
|
@@ -5591,6 +5683,14 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
|
|
5591
5683
|
"""
|
5592
5684
|
return pulumi.get(self, "vpus_per_gb")
|
5593
5685
|
|
5686
|
+
@property
|
5687
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
5688
|
+
def xrc_kms_key_id(self) -> Optional[str]:
|
5689
|
+
"""
|
5690
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
5691
|
+
"""
|
5692
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
5693
|
+
|
5594
5694
|
|
5595
5695
|
@pulumi.output_type
|
5596
5696
|
class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicy(dict):
|
@@ -7683,6 +7783,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7683
7783
|
suggest = "source_details"
|
7684
7784
|
elif key == "vpusPerGb":
|
7685
7785
|
suggest = "vpus_per_gb"
|
7786
|
+
elif key == "xrcKmsKeyId":
|
7787
|
+
suggest = "xrc_kms_key_id"
|
7686
7788
|
|
7687
7789
|
if suggest:
|
7688
7790
|
pulumi.log.warn(f"Key '{key}' not found in InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails. Access the value via the '{suggest}' property getter instead.")
|
@@ -7709,7 +7811,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7709
7811
|
kms_key_id: Optional[str] = None,
|
7710
7812
|
size_in_gbs: Optional[str] = None,
|
7711
7813
|
source_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetails'] = None,
|
7712
|
-
vpus_per_gb: Optional[str] = None
|
7814
|
+
vpus_per_gb: Optional[str] = None,
|
7815
|
+
xrc_kms_key_id: Optional[str] = None):
|
7713
7816
|
"""
|
7714
7817
|
:param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
7715
7818
|
:param str availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
|
@@ -7726,6 +7829,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7726
7829
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
7727
7830
|
|
7728
7831
|
Allowed values:
|
7832
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
7729
7833
|
"""
|
7730
7834
|
if autotune_policies is not None:
|
7731
7835
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
@@ -7755,6 +7859,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7755
7859
|
pulumi.set(__self__, "source_details", source_details)
|
7756
7860
|
if vpus_per_gb is not None:
|
7757
7861
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
7862
|
+
if xrc_kms_key_id is not None:
|
7863
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
7758
7864
|
|
7759
7865
|
@property
|
7760
7866
|
@pulumi.getter(name="autotunePolicies")
|
@@ -7867,6 +7973,14 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
|
|
7867
7973
|
"""
|
7868
7974
|
return pulumi.get(self, "vpus_per_gb")
|
7869
7975
|
|
7976
|
+
@property
|
7977
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
7978
|
+
def xrc_kms_key_id(self) -> Optional[str]:
|
7979
|
+
"""
|
7980
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
7981
|
+
"""
|
7982
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
7983
|
+
|
7870
7984
|
|
7871
7985
|
@pulumi.output_type
|
7872
7986
|
class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicy(dict):
|
@@ -14955,6 +15069,10 @@ class VolumeBlockVolumeReplica(dict):
|
|
14955
15069
|
suggest = "block_volume_replica_id"
|
14956
15070
|
elif key == "displayName":
|
14957
15071
|
suggest = "display_name"
|
15072
|
+
elif key == "kmsKeyId":
|
15073
|
+
suggest = "kms_key_id"
|
15074
|
+
elif key == "xrrKmsKeyId":
|
15075
|
+
suggest = "xrr_kms_key_id"
|
14958
15076
|
|
14959
15077
|
if suggest:
|
14960
15078
|
pulumi.log.warn(f"Key '{key}' not found in VolumeBlockVolumeReplica. Access the value via the '{suggest}' property getter instead.")
|
@@ -14970,17 +15088,25 @@ class VolumeBlockVolumeReplica(dict):
|
|
14970
15088
|
def __init__(__self__, *,
|
14971
15089
|
availability_domain: str,
|
14972
15090
|
block_volume_replica_id: Optional[str] = None,
|
14973
|
-
display_name: Optional[str] = None
|
15091
|
+
display_name: Optional[str] = None,
|
15092
|
+
kms_key_id: Optional[str] = None,
|
15093
|
+
xrr_kms_key_id: Optional[str] = None):
|
14974
15094
|
"""
|
14975
15095
|
:param str availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
14976
15096
|
:param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
|
14977
15097
|
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
15098
|
+
:param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
|
15099
|
+
:param str xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
14978
15100
|
"""
|
14979
15101
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
14980
15102
|
if block_volume_replica_id is not None:
|
14981
15103
|
pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
|
14982
15104
|
if display_name is not None:
|
14983
15105
|
pulumi.set(__self__, "display_name", display_name)
|
15106
|
+
if kms_key_id is not None:
|
15107
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
15108
|
+
if xrr_kms_key_id is not None:
|
15109
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
14984
15110
|
|
14985
15111
|
@property
|
14986
15112
|
@pulumi.getter(name="availabilityDomain")
|
@@ -15006,6 +15132,22 @@ class VolumeBlockVolumeReplica(dict):
|
|
15006
15132
|
"""
|
15007
15133
|
return pulumi.get(self, "display_name")
|
15008
15134
|
|
15135
|
+
@property
|
15136
|
+
@pulumi.getter(name="kmsKeyId")
|
15137
|
+
def kms_key_id(self) -> Optional[str]:
|
15138
|
+
"""
|
15139
|
+
(Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
|
15140
|
+
"""
|
15141
|
+
return pulumi.get(self, "kms_key_id")
|
15142
|
+
|
15143
|
+
@property
|
15144
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
15145
|
+
def xrr_kms_key_id(self) -> Optional[str]:
|
15146
|
+
"""
|
15147
|
+
(Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
15148
|
+
"""
|
15149
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
15150
|
+
|
15009
15151
|
|
15010
15152
|
@pulumi.output_type
|
15011
15153
|
class VolumeGroupBackupSourceDetails(dict):
|
@@ -15177,6 +15319,8 @@ class VolumeGroupVolumeGroupReplica(dict):
|
|
15177
15319
|
suggest = "display_name"
|
15178
15320
|
elif key == "volumeGroupReplicaId":
|
15179
15321
|
suggest = "volume_group_replica_id"
|
15322
|
+
elif key == "xrrKmsKeyId":
|
15323
|
+
suggest = "xrr_kms_key_id"
|
15180
15324
|
|
15181
15325
|
if suggest:
|
15182
15326
|
pulumi.log.warn(f"Key '{key}' not found in VolumeGroupVolumeGroupReplica. Access the value via the '{suggest}' property getter instead.")
|
@@ -15192,17 +15336,21 @@ class VolumeGroupVolumeGroupReplica(dict):
|
|
15192
15336
|
def __init__(__self__, *,
|
15193
15337
|
availability_domain: str,
|
15194
15338
|
display_name: Optional[str] = None,
|
15195
|
-
volume_group_replica_id: Optional[str] = None
|
15339
|
+
volume_group_replica_id: Optional[str] = None,
|
15340
|
+
xrr_kms_key_id: Optional[str] = None):
|
15196
15341
|
"""
|
15197
15342
|
:param str availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
|
15198
15343
|
:param str display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
15199
15344
|
:param str volume_group_replica_id: The volume group replica's Oracle ID (OCID).
|
15345
|
+
:param str xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
15200
15346
|
"""
|
15201
15347
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
15202
15348
|
if display_name is not None:
|
15203
15349
|
pulumi.set(__self__, "display_name", display_name)
|
15204
15350
|
if volume_group_replica_id is not None:
|
15205
15351
|
pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
|
15352
|
+
if xrr_kms_key_id is not None:
|
15353
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
15206
15354
|
|
15207
15355
|
@property
|
15208
15356
|
@pulumi.getter(name="availabilityDomain")
|
@@ -15228,34 +15376,100 @@ class VolumeGroupVolumeGroupReplica(dict):
|
|
15228
15376
|
"""
|
15229
15377
|
return pulumi.get(self, "volume_group_replica_id")
|
15230
15378
|
|
15379
|
+
@property
|
15380
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
15381
|
+
def xrr_kms_key_id(self) -> Optional[str]:
|
15382
|
+
"""
|
15383
|
+
(Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
15384
|
+
"""
|
15385
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
15386
|
+
|
15231
15387
|
|
15232
15388
|
@pulumi.output_type
|
15233
15389
|
class VolumeSourceDetails(dict):
|
15390
|
+
@staticmethod
|
15391
|
+
def __key_warning(key: str):
|
15392
|
+
suggest = None
|
15393
|
+
if key == "changeBlockSizeInBytes":
|
15394
|
+
suggest = "change_block_size_in_bytes"
|
15395
|
+
elif key == "firstBackupId":
|
15396
|
+
suggest = "first_backup_id"
|
15397
|
+
elif key == "secondBackupId":
|
15398
|
+
suggest = "second_backup_id"
|
15399
|
+
|
15400
|
+
if suggest:
|
15401
|
+
pulumi.log.warn(f"Key '{key}' not found in VolumeSourceDetails. Access the value via the '{suggest}' property getter instead.")
|
15402
|
+
|
15403
|
+
def __getitem__(self, key: str) -> Any:
|
15404
|
+
VolumeSourceDetails.__key_warning(key)
|
15405
|
+
return super().__getitem__(key)
|
15406
|
+
|
15407
|
+
def get(self, key: str, default = None) -> Any:
|
15408
|
+
VolumeSourceDetails.__key_warning(key)
|
15409
|
+
return super().get(key, default)
|
15410
|
+
|
15234
15411
|
def __init__(__self__, *,
|
15235
|
-
|
15236
|
-
|
15412
|
+
type: str,
|
15413
|
+
change_block_size_in_bytes: Optional[str] = None,
|
15414
|
+
first_backup_id: Optional[str] = None,
|
15415
|
+
id: Optional[str] = None,
|
15416
|
+
second_backup_id: Optional[str] = None):
|
15237
15417
|
"""
|
15418
|
+
:param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
15419
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
15420
|
+
:param str first_backup_id: The OCID of the first volume backup.
|
15238
15421
|
:param str id: The OCID of the block volume replica.
|
15239
|
-
:param str
|
15422
|
+
:param str second_backup_id: The OCID of the second volume backup.
|
15240
15423
|
"""
|
15241
|
-
pulumi.set(__self__, "id", id)
|
15242
15424
|
pulumi.set(__self__, "type", type)
|
15425
|
+
if change_block_size_in_bytes is not None:
|
15426
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
15427
|
+
if first_backup_id is not None:
|
15428
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
15429
|
+
if id is not None:
|
15430
|
+
pulumi.set(__self__, "id", id)
|
15431
|
+
if second_backup_id is not None:
|
15432
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
15243
15433
|
|
15244
15434
|
@property
|
15245
15435
|
@pulumi.getter
|
15246
|
-
def
|
15436
|
+
def type(self) -> str:
|
15437
|
+
"""
|
15438
|
+
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
15439
|
+
"""
|
15440
|
+
return pulumi.get(self, "type")
|
15441
|
+
|
15442
|
+
@property
|
15443
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
15444
|
+
def change_block_size_in_bytes(self) -> Optional[str]:
|
15445
|
+
"""
|
15446
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
15447
|
+
"""
|
15448
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
15449
|
+
|
15450
|
+
@property
|
15451
|
+
@pulumi.getter(name="firstBackupId")
|
15452
|
+
def first_backup_id(self) -> Optional[str]:
|
15453
|
+
"""
|
15454
|
+
The OCID of the first volume backup.
|
15455
|
+
"""
|
15456
|
+
return pulumi.get(self, "first_backup_id")
|
15457
|
+
|
15458
|
+
@property
|
15459
|
+
@pulumi.getter
|
15460
|
+
def id(self) -> Optional[str]:
|
15247
15461
|
"""
|
15248
15462
|
The OCID of the block volume replica.
|
15249
15463
|
"""
|
15250
15464
|
return pulumi.get(self, "id")
|
15251
15465
|
|
15252
15466
|
@property
|
15253
|
-
@pulumi.getter
|
15254
|
-
def
|
15467
|
+
@pulumi.getter(name="secondBackupId")
|
15468
|
+
def second_backup_id(self) -> Optional[str]:
|
15255
15469
|
"""
|
15256
|
-
The
|
15470
|
+
The OCID of the second volume backup.
|
15257
15471
|
"""
|
15258
|
-
return pulumi.get(self, "
|
15472
|
+
return pulumi.get(self, "second_backup_id")
|
15259
15473
|
|
15260
15474
|
|
15261
15475
|
@pulumi.output_type
|
@@ -15663,6 +15877,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
|
|
15663
15877
|
display_name: str,
|
15664
15878
|
freeform_tags: Mapping[str, str],
|
15665
15879
|
id: str,
|
15880
|
+
kms_key_id: str,
|
15666
15881
|
size_in_gbs: str,
|
15667
15882
|
state: str,
|
15668
15883
|
time_created: str,
|
@@ -15676,6 +15891,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
|
|
15676
15891
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
15677
15892
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
15678
15893
|
:param str id: The block volume replica's Oracle ID (OCID).
|
15894
|
+
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the block volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
15679
15895
|
:param str size_in_gbs: The size of the source block volume, in GBs.
|
15680
15896
|
:param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
15681
15897
|
:param str time_created: The date and time the block volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -15689,6 +15905,7 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
|
|
15689
15905
|
pulumi.set(__self__, "display_name", display_name)
|
15690
15906
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
15691
15907
|
pulumi.set(__self__, "id", id)
|
15908
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
15692
15909
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
15693
15910
|
pulumi.set(__self__, "state", state)
|
15694
15911
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -15751,6 +15968,14 @@ class GetBlockVolumeReplicasBlockVolumeReplicaResult(dict):
|
|
15751
15968
|
"""
|
15752
15969
|
return pulumi.get(self, "id")
|
15753
15970
|
|
15971
|
+
@property
|
15972
|
+
@pulumi.getter(name="kmsKeyId")
|
15973
|
+
def kms_key_id(self) -> str:
|
15974
|
+
"""
|
15975
|
+
The OCID of the Vault service key to assign as the master encryption key for the block volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
15976
|
+
"""
|
15977
|
+
return pulumi.get(self, "kms_key_id")
|
15978
|
+
|
15754
15979
|
@property
|
15755
15980
|
@pulumi.getter(name="sizeInGbs")
|
15756
15981
|
def size_in_gbs(self) -> str:
|
@@ -16315,15 +16540,20 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
|
|
16315
16540
|
def __init__(__self__, *,
|
16316
16541
|
availability_domain: str,
|
16317
16542
|
boot_volume_replica_id: str,
|
16318
|
-
display_name: str
|
16543
|
+
display_name: str,
|
16544
|
+
kms_key_id: str,
|
16545
|
+
xrr_kms_key_id: str):
|
16319
16546
|
"""
|
16320
16547
|
:param str availability_domain: The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
|
16321
16548
|
:param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
|
16322
16549
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
16550
|
+
:param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
|
16323
16551
|
"""
|
16324
16552
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
16325
16553
|
pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
|
16326
16554
|
pulumi.set(__self__, "display_name", display_name)
|
16555
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
16556
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
16327
16557
|
|
16328
16558
|
@property
|
16329
16559
|
@pulumi.getter(name="availabilityDomain")
|
@@ -16349,6 +16579,19 @@ class GetBootVolumeBootVolumeReplicaResult(dict):
|
|
16349
16579
|
"""
|
16350
16580
|
return pulumi.get(self, "display_name")
|
16351
16581
|
|
16582
|
+
@property
|
16583
|
+
@pulumi.getter(name="kmsKeyId")
|
16584
|
+
def kms_key_id(self) -> str:
|
16585
|
+
"""
|
16586
|
+
The OCID of the Vault service master encryption key assigned to the boot volume.
|
16587
|
+
"""
|
16588
|
+
return pulumi.get(self, "kms_key_id")
|
16589
|
+
|
16590
|
+
@property
|
16591
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
16592
|
+
def xrr_kms_key_id(self) -> str:
|
16593
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
16594
|
+
|
16352
16595
|
|
16353
16596
|
@pulumi.output_type
|
16354
16597
|
class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
|
@@ -16361,6 +16604,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
|
|
16361
16604
|
freeform_tags: Mapping[str, str],
|
16362
16605
|
id: str,
|
16363
16606
|
image_id: str,
|
16607
|
+
kms_key_id: str,
|
16364
16608
|
size_in_gbs: str,
|
16365
16609
|
state: str,
|
16366
16610
|
time_created: str,
|
@@ -16375,6 +16619,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
|
|
16375
16619
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
16376
16620
|
:param str id: The boot volume replica's Oracle ID (OCID).
|
16377
16621
|
:param str image_id: The image OCID used to create the boot volume the replica is replicated from.
|
16622
|
+
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
16378
16623
|
:param str size_in_gbs: The size of the source boot volume, in GBs.
|
16379
16624
|
:param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
16380
16625
|
:param str time_created: The date and time the boot volume replica was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -16389,6 +16634,7 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
|
|
16389
16634
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
16390
16635
|
pulumi.set(__self__, "id", id)
|
16391
16636
|
pulumi.set(__self__, "image_id", image_id)
|
16637
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
16392
16638
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
16393
16639
|
pulumi.set(__self__, "state", state)
|
16394
16640
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -16459,6 +16705,14 @@ class GetBootVolumeReplicasBootVolumeReplicaResult(dict):
|
|
16459
16705
|
"""
|
16460
16706
|
return pulumi.get(self, "image_id")
|
16461
16707
|
|
16708
|
+
@property
|
16709
|
+
@pulumi.getter(name="kmsKeyId")
|
16710
|
+
def kms_key_id(self) -> str:
|
16711
|
+
"""
|
16712
|
+
The OCID of the Vault service key to assign as the master encryption key for the boot volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
16713
|
+
"""
|
16714
|
+
return pulumi.get(self, "kms_key_id")
|
16715
|
+
|
16462
16716
|
@property
|
16463
16717
|
@pulumi.getter(name="sizeInGbs")
|
16464
16718
|
def size_in_gbs(self) -> str:
|
@@ -16530,15 +16784,40 @@ class GetBootVolumeReplicasFilterResult(dict):
|
|
16530
16784
|
@pulumi.output_type
|
16531
16785
|
class GetBootVolumeSourceDetailResult(dict):
|
16532
16786
|
def __init__(__self__, *,
|
16787
|
+
change_block_size_in_bytes: str,
|
16788
|
+
first_backup_id: str,
|
16533
16789
|
id: str,
|
16790
|
+
second_backup_id: str,
|
16534
16791
|
type: str):
|
16535
16792
|
"""
|
16793
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16794
|
+
:param str first_backup_id: The OCID of the first boot volume backup.
|
16536
16795
|
:param str id: The OCID of the boot volume replica.
|
16537
|
-
:param str
|
16796
|
+
:param str second_backup_id: The OCID of the second boot volume backup.
|
16797
|
+
:param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16538
16798
|
"""
|
16799
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
16800
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
16539
16801
|
pulumi.set(__self__, "id", id)
|
16802
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
16540
16803
|
pulumi.set(__self__, "type", type)
|
16541
16804
|
|
16805
|
+
@property
|
16806
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
16807
|
+
def change_block_size_in_bytes(self) -> str:
|
16808
|
+
"""
|
16809
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16810
|
+
"""
|
16811
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
16812
|
+
|
16813
|
+
@property
|
16814
|
+
@pulumi.getter(name="firstBackupId")
|
16815
|
+
def first_backup_id(self) -> str:
|
16816
|
+
"""
|
16817
|
+
The OCID of the first boot volume backup.
|
16818
|
+
"""
|
16819
|
+
return pulumi.get(self, "first_backup_id")
|
16820
|
+
|
16542
16821
|
@property
|
16543
16822
|
@pulumi.getter
|
16544
16823
|
def id(self) -> str:
|
@@ -16547,11 +16826,19 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16547
16826
|
"""
|
16548
16827
|
return pulumi.get(self, "id")
|
16549
16828
|
|
16829
|
+
@property
|
16830
|
+
@pulumi.getter(name="secondBackupId")
|
16831
|
+
def second_backup_id(self) -> str:
|
16832
|
+
"""
|
16833
|
+
The OCID of the second boot volume backup.
|
16834
|
+
"""
|
16835
|
+
return pulumi.get(self, "second_backup_id")
|
16836
|
+
|
16550
16837
|
@property
|
16551
16838
|
@pulumi.getter
|
16552
16839
|
def type(self) -> str:
|
16553
16840
|
"""
|
16554
|
-
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
|
16841
|
+
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16555
16842
|
"""
|
16556
16843
|
return pulumi.get(self, "type")
|
16557
16844
|
|
@@ -16582,7 +16869,8 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
16582
16869
|
system_tags: Mapping[str, str],
|
16583
16870
|
time_created: str,
|
16584
16871
|
volume_group_id: str,
|
16585
|
-
vpus_per_gb: str
|
16872
|
+
vpus_per_gb: str,
|
16873
|
+
xrc_kms_key_id: str):
|
16586
16874
|
"""
|
16587
16875
|
:param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
|
16588
16876
|
:param Sequence['GetBootVolumesBootVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
@@ -16630,6 +16918,7 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
16630
16918
|
pulumi.set(__self__, "time_created", time_created)
|
16631
16919
|
pulumi.set(__self__, "volume_group_id", volume_group_id)
|
16632
16920
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
16921
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
16633
16922
|
|
16634
16923
|
@property
|
16635
16924
|
@pulumi.getter(name="autoTunedVpusPerGb")
|
@@ -16815,6 +17104,11 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
16815
17104
|
"""
|
16816
17105
|
return pulumi.get(self, "vpus_per_gb")
|
16817
17106
|
|
17107
|
+
@property
|
17108
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
17109
|
+
def xrc_kms_key_id(self) -> str:
|
17110
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
17111
|
+
|
16818
17112
|
|
16819
17113
|
@pulumi.output_type
|
16820
17114
|
class GetBootVolumesBootVolumeAutotunePolicyResult(dict):
|
@@ -16850,15 +17144,20 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
|
|
16850
17144
|
def __init__(__self__, *,
|
16851
17145
|
availability_domain: str,
|
16852
17146
|
boot_volume_replica_id: str,
|
16853
|
-
display_name: str
|
17147
|
+
display_name: str,
|
17148
|
+
kms_key_id: str,
|
17149
|
+
xrr_kms_key_id: str):
|
16854
17150
|
"""
|
16855
17151
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
16856
17152
|
:param str boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
|
16857
17153
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
17154
|
+
:param str kms_key_id: The OCID of the Vault service master encryption key assigned to the boot volume.
|
16858
17155
|
"""
|
16859
17156
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
16860
17157
|
pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
|
16861
17158
|
pulumi.set(__self__, "display_name", display_name)
|
17159
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
17160
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
16862
17161
|
|
16863
17162
|
@property
|
16864
17163
|
@pulumi.getter(name="availabilityDomain")
|
@@ -16884,19 +17183,57 @@ class GetBootVolumesBootVolumeBootVolumeReplicaResult(dict):
|
|
16884
17183
|
"""
|
16885
17184
|
return pulumi.get(self, "display_name")
|
16886
17185
|
|
17186
|
+
@property
|
17187
|
+
@pulumi.getter(name="kmsKeyId")
|
17188
|
+
def kms_key_id(self) -> str:
|
17189
|
+
"""
|
17190
|
+
The OCID of the Vault service master encryption key assigned to the boot volume.
|
17191
|
+
"""
|
17192
|
+
return pulumi.get(self, "kms_key_id")
|
17193
|
+
|
17194
|
+
@property
|
17195
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
17196
|
+
def xrr_kms_key_id(self) -> str:
|
17197
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
17198
|
+
|
16887
17199
|
|
16888
17200
|
@pulumi.output_type
|
16889
17201
|
class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
16890
17202
|
def __init__(__self__, *,
|
17203
|
+
change_block_size_in_bytes: str,
|
17204
|
+
first_backup_id: str,
|
16891
17205
|
id: str,
|
17206
|
+
second_backup_id: str,
|
16892
17207
|
type: str):
|
16893
17208
|
"""
|
17209
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17210
|
+
:param str first_backup_id: The OCID of the first boot volume backup.
|
16894
17211
|
:param str id: The OCID of the boot volume replica.
|
16895
|
-
:param str
|
17212
|
+
:param str second_backup_id: The OCID of the second boot volume backup.
|
17213
|
+
:param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16896
17214
|
"""
|
17215
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
17216
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
16897
17217
|
pulumi.set(__self__, "id", id)
|
17218
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
16898
17219
|
pulumi.set(__self__, "type", type)
|
16899
17220
|
|
17221
|
+
@property
|
17222
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
17223
|
+
def change_block_size_in_bytes(self) -> str:
|
17224
|
+
"""
|
17225
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17226
|
+
"""
|
17227
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
17228
|
+
|
17229
|
+
@property
|
17230
|
+
@pulumi.getter(name="firstBackupId")
|
17231
|
+
def first_backup_id(self) -> str:
|
17232
|
+
"""
|
17233
|
+
The OCID of the first boot volume backup.
|
17234
|
+
"""
|
17235
|
+
return pulumi.get(self, "first_backup_id")
|
17236
|
+
|
16900
17237
|
@property
|
16901
17238
|
@pulumi.getter
|
16902
17239
|
def id(self) -> str:
|
@@ -16905,11 +17242,19 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
16905
17242
|
"""
|
16906
17243
|
return pulumi.get(self, "id")
|
16907
17244
|
|
17245
|
+
@property
|
17246
|
+
@pulumi.getter(name="secondBackupId")
|
17247
|
+
def second_backup_id(self) -> str:
|
17248
|
+
"""
|
17249
|
+
The OCID of the second boot volume backup.
|
17250
|
+
"""
|
17251
|
+
return pulumi.get(self, "second_backup_id")
|
17252
|
+
|
16908
17253
|
@property
|
16909
17254
|
@pulumi.getter
|
16910
17255
|
def type(self) -> str:
|
16911
17256
|
"""
|
16912
|
-
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
|
17257
|
+
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16913
17258
|
"""
|
16914
17259
|
return pulumi.get(self, "type")
|
16915
17260
|
|
@@ -26393,7 +26738,8 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
|
|
26393
26738
|
kms_key_id: str,
|
26394
26739
|
size_in_gbs: str,
|
26395
26740
|
source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
|
26396
|
-
vpus_per_gb: str
|
26741
|
+
vpus_per_gb: str,
|
26742
|
+
xrc_kms_key_id: str):
|
26397
26743
|
"""
|
26398
26744
|
:param Sequence['GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
26399
26745
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
@@ -26408,6 +26754,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
|
|
26408
26754
|
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
26409
26755
|
:param str size_in_gbs: The size of the volume in GBs.
|
26410
26756
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
26757
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
26411
26758
|
"""
|
26412
26759
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
26413
26760
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -26423,6 +26770,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
|
|
26423
26770
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
26424
26771
|
pulumi.set(__self__, "source_details", source_details)
|
26425
26772
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
26773
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
26426
26774
|
|
26427
26775
|
@property
|
26428
26776
|
@pulumi.getter(name="autotunePolicies")
|
@@ -26533,6 +26881,14 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
|
|
26533
26881
|
"""
|
26534
26882
|
return pulumi.get(self, "vpus_per_gb")
|
26535
26883
|
|
26884
|
+
@property
|
26885
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
26886
|
+
def xrc_kms_key_id(self) -> str:
|
26887
|
+
"""
|
26888
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
26889
|
+
"""
|
26890
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
26891
|
+
|
26536
26892
|
|
26537
26893
|
@pulumi.output_type
|
26538
26894
|
class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
|
@@ -27898,7 +28254,8 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
|
|
27898
28254
|
kms_key_id: str,
|
27899
28255
|
size_in_gbs: str,
|
27900
28256
|
source_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
|
27901
|
-
vpus_per_gb: str
|
28257
|
+
vpus_per_gb: str,
|
28258
|
+
xrc_kms_key_id: str):
|
27902
28259
|
"""
|
27903
28260
|
:param Sequence['GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
27904
28261
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
@@ -27913,6 +28270,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
|
|
27913
28270
|
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
27914
28271
|
:param str size_in_gbs: The size of the volume in GBs.
|
27915
28272
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
28273
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
27916
28274
|
"""
|
27917
28275
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
27918
28276
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -27928,6 +28286,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
|
|
27928
28286
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
27929
28287
|
pulumi.set(__self__, "source_details", source_details)
|
27930
28288
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
28289
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
27931
28290
|
|
27932
28291
|
@property
|
27933
28292
|
@pulumi.getter(name="autotunePolicies")
|
@@ -28038,6 +28397,14 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
|
|
28038
28397
|
"""
|
28039
28398
|
return pulumi.get(self, "vpus_per_gb")
|
28040
28399
|
|
28400
|
+
@property
|
28401
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
28402
|
+
def xrc_kms_key_id(self) -> str:
|
28403
|
+
"""
|
28404
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
28405
|
+
"""
|
28406
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
28407
|
+
|
28041
28408
|
|
28042
28409
|
@pulumi.output_type
|
28043
28410
|
class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
|
@@ -29990,7 +30357,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
|
|
29990
30357
|
kms_key_id: str,
|
29991
30358
|
size_in_gbs: str,
|
29992
30359
|
source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailSourceDetailResult'],
|
29993
|
-
vpus_per_gb: str
|
30360
|
+
vpus_per_gb: str,
|
30361
|
+
xrc_kms_key_id: str):
|
29994
30362
|
"""
|
29995
30363
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
29996
30364
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
@@ -30005,6 +30373,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
|
|
30005
30373
|
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
30006
30374
|
:param str size_in_gbs: The size of the volume in GBs.
|
30007
30375
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
30376
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
30008
30377
|
"""
|
30009
30378
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
30010
30379
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -30020,6 +30389,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
|
|
30020
30389
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
30021
30390
|
pulumi.set(__self__, "source_details", source_details)
|
30022
30391
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
30392
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
30023
30393
|
|
30024
30394
|
@property
|
30025
30395
|
@pulumi.getter(name="autotunePolicies")
|
@@ -30130,6 +30500,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
|
|
30130
30500
|
"""
|
30131
30501
|
return pulumi.get(self, "vpus_per_gb")
|
30132
30502
|
|
30503
|
+
@property
|
30504
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
30505
|
+
def xrc_kms_key_id(self) -> str:
|
30506
|
+
"""
|
30507
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
30508
|
+
"""
|
30509
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
30510
|
+
|
30133
30511
|
|
30134
30512
|
@pulumi.output_type
|
30135
30513
|
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailAutotunePolicyResult(dict):
|
@@ -31495,7 +31873,8 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
|
|
31495
31873
|
kms_key_id: str,
|
31496
31874
|
size_in_gbs: str,
|
31497
31875
|
source_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailSourceDetailResult'],
|
31498
|
-
vpus_per_gb: str
|
31876
|
+
vpus_per_gb: str,
|
31877
|
+
xrc_kms_key_id: str):
|
31499
31878
|
"""
|
31500
31879
|
:param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
31501
31880
|
:param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
@@ -31510,6 +31889,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
|
|
31510
31889
|
:param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the volume.
|
31511
31890
|
:param str size_in_gbs: The size of the volume in GBs.
|
31512
31891
|
:param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
31892
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
31513
31893
|
"""
|
31514
31894
|
pulumi.set(__self__, "autotune_policies", autotune_policies)
|
31515
31895
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -31525,6 +31905,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
|
|
31525
31905
|
pulumi.set(__self__, "size_in_gbs", size_in_gbs)
|
31526
31906
|
pulumi.set(__self__, "source_details", source_details)
|
31527
31907
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
31908
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
31528
31909
|
|
31529
31910
|
@property
|
31530
31911
|
@pulumi.getter(name="autotunePolicies")
|
@@ -31635,6 +32016,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
|
|
31635
32016
|
"""
|
31636
32017
|
return pulumi.get(self, "vpus_per_gb")
|
31637
32018
|
|
32019
|
+
@property
|
32020
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
32021
|
+
def xrc_kms_key_id(self) -> str:
|
32022
|
+
"""
|
32023
|
+
The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
32024
|
+
"""
|
32025
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
32026
|
+
|
31638
32027
|
|
31639
32028
|
@pulumi.output_type
|
31640
32029
|
class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailAutotunePolicyResult(dict):
|
@@ -46893,17 +47282,20 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
|
|
46893
47282
|
asset_id: str,
|
46894
47283
|
id: str,
|
46895
47284
|
policy_id: str,
|
46896
|
-
time_created: str
|
47285
|
+
time_created: str,
|
47286
|
+
xrc_kms_key_id: str):
|
46897
47287
|
"""
|
46898
47288
|
:param str asset_id: The OCID of an asset (e.g. a volume).
|
46899
47289
|
:param str id: The OCID of the volume backup policy assignment.
|
46900
47290
|
:param str policy_id: The OCID of the volume backup policy that has been assigned to the volume.
|
46901
47291
|
:param str time_created: The date and time the volume backup policy was assigned to the volume. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
47292
|
+
:param str xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block / boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
46902
47293
|
"""
|
46903
47294
|
pulumi.set(__self__, "asset_id", asset_id)
|
46904
47295
|
pulumi.set(__self__, "id", id)
|
46905
47296
|
pulumi.set(__self__, "policy_id", policy_id)
|
46906
47297
|
pulumi.set(__self__, "time_created", time_created)
|
47298
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
46907
47299
|
|
46908
47300
|
@property
|
46909
47301
|
@pulumi.getter(name="assetId")
|
@@ -46937,6 +47329,14 @@ class GetVolumeBackupPolicyAssignmentsVolumeBackupPolicyAssignmentResult(dict):
|
|
46937
47329
|
"""
|
46938
47330
|
return pulumi.get(self, "time_created")
|
46939
47331
|
|
47332
|
+
@property
|
47333
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
47334
|
+
def xrc_kms_key_id(self) -> str:
|
47335
|
+
"""
|
47336
|
+
The OCID of the Vault service key which is the master encryption key for the block / boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
|
47337
|
+
"""
|
47338
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
47339
|
+
|
46940
47340
|
|
46941
47341
|
@pulumi.output_type
|
46942
47342
|
class GetVolumeBackupsFilterResult(dict):
|
@@ -47227,15 +47627,20 @@ class GetVolumeBlockVolumeReplicaResult(dict):
|
|
47227
47627
|
def __init__(__self__, *,
|
47228
47628
|
availability_domain: str,
|
47229
47629
|
block_volume_replica_id: str,
|
47230
|
-
display_name: str
|
47630
|
+
display_name: str,
|
47631
|
+
kms_key_id: str,
|
47632
|
+
xrr_kms_key_id: str):
|
47231
47633
|
"""
|
47232
47634
|
:param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
|
47233
47635
|
:param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
|
47234
47636
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
47637
|
+
:param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
|
47235
47638
|
"""
|
47236
47639
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
47237
47640
|
pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
|
47238
47641
|
pulumi.set(__self__, "display_name", display_name)
|
47642
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
47643
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
47239
47644
|
|
47240
47645
|
@property
|
47241
47646
|
@pulumi.getter(name="availabilityDomain")
|
@@ -47261,6 +47666,19 @@ class GetVolumeBlockVolumeReplicaResult(dict):
|
|
47261
47666
|
"""
|
47262
47667
|
return pulumi.get(self, "display_name")
|
47263
47668
|
|
47669
|
+
@property
|
47670
|
+
@pulumi.getter(name="kmsKeyId")
|
47671
|
+
def kms_key_id(self) -> str:
|
47672
|
+
"""
|
47673
|
+
The OCID of the Vault service key which is the master encryption key for the volume.
|
47674
|
+
"""
|
47675
|
+
return pulumi.get(self, "kms_key_id")
|
47676
|
+
|
47677
|
+
@property
|
47678
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
47679
|
+
def xrr_kms_key_id(self) -> str:
|
47680
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
47681
|
+
|
47264
47682
|
|
47265
47683
|
@pulumi.output_type
|
47266
47684
|
class GetVolumeGroupBackupsFilterResult(dict):
|
@@ -47798,7 +48216,8 @@ class GetVolumeGroupsVolumeGroupResult(dict):
|
|
47798
48216
|
time_created: str,
|
47799
48217
|
volume_group_replicas: Sequence['outputs.GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult'],
|
47800
48218
|
volume_group_replicas_deletion: bool,
|
47801
|
-
volume_ids: Sequence[str]
|
48219
|
+
volume_ids: Sequence[str],
|
48220
|
+
xrc_kms_key_id: str):
|
47802
48221
|
"""
|
47803
48222
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
47804
48223
|
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
@@ -47833,6 +48252,7 @@ class GetVolumeGroupsVolumeGroupResult(dict):
|
|
47833
48252
|
pulumi.set(__self__, "volume_group_replicas", volume_group_replicas)
|
47834
48253
|
pulumi.set(__self__, "volume_group_replicas_deletion", volume_group_replicas_deletion)
|
47835
48254
|
pulumi.set(__self__, "volume_ids", volume_ids)
|
48255
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
47836
48256
|
|
47837
48257
|
@property
|
47838
48258
|
@pulumi.getter(name="availabilityDomain")
|
@@ -47967,6 +48387,11 @@ class GetVolumeGroupsVolumeGroupResult(dict):
|
|
47967
48387
|
"""
|
47968
48388
|
return pulumi.get(self, "volume_ids")
|
47969
48389
|
|
48390
|
+
@property
|
48391
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
48392
|
+
def xrc_kms_key_id(self) -> str:
|
48393
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
48394
|
+
|
47970
48395
|
|
47971
48396
|
@pulumi.output_type
|
47972
48397
|
class GetVolumeGroupsVolumeGroupSourceDetailResult(dict):
|
@@ -48035,7 +48460,8 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
|
|
48035
48460
|
def __init__(__self__, *,
|
48036
48461
|
availability_domain: str,
|
48037
48462
|
display_name: str,
|
48038
|
-
volume_group_replica_id: str
|
48463
|
+
volume_group_replica_id: str,
|
48464
|
+
xrr_kms_key_id: str):
|
48039
48465
|
"""
|
48040
48466
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
48041
48467
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
@@ -48044,6 +48470,7 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
|
|
48044
48470
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
48045
48471
|
pulumi.set(__self__, "display_name", display_name)
|
48046
48472
|
pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
|
48473
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
48047
48474
|
|
48048
48475
|
@property
|
48049
48476
|
@pulumi.getter(name="availabilityDomain")
|
@@ -48069,19 +48496,49 @@ class GetVolumeGroupsVolumeGroupVolumeGroupReplicaResult(dict):
|
|
48069
48496
|
"""
|
48070
48497
|
return pulumi.get(self, "volume_group_replica_id")
|
48071
48498
|
|
48499
|
+
@property
|
48500
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
48501
|
+
def xrr_kms_key_id(self) -> str:
|
48502
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
48503
|
+
|
48072
48504
|
|
48073
48505
|
@pulumi.output_type
|
48074
48506
|
class GetVolumeSourceDetailResult(dict):
|
48075
48507
|
def __init__(__self__, *,
|
48508
|
+
change_block_size_in_bytes: str,
|
48509
|
+
first_backup_id: str,
|
48076
48510
|
id: str,
|
48511
|
+
second_backup_id: str,
|
48077
48512
|
type: str):
|
48078
48513
|
"""
|
48514
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48515
|
+
:param str first_backup_id: The OCID of the first volume backup.
|
48079
48516
|
:param str id: The OCID of the block volume replica.
|
48080
|
-
:param str
|
48517
|
+
:param str second_backup_id: The OCID of the second volume backup.
|
48518
|
+
:param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48081
48519
|
"""
|
48520
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
48521
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
48082
48522
|
pulumi.set(__self__, "id", id)
|
48523
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
48083
48524
|
pulumi.set(__self__, "type", type)
|
48084
48525
|
|
48526
|
+
@property
|
48527
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
48528
|
+
def change_block_size_in_bytes(self) -> str:
|
48529
|
+
"""
|
48530
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48531
|
+
"""
|
48532
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
48533
|
+
|
48534
|
+
@property
|
48535
|
+
@pulumi.getter(name="firstBackupId")
|
48536
|
+
def first_backup_id(self) -> str:
|
48537
|
+
"""
|
48538
|
+
The OCID of the first volume backup.
|
48539
|
+
"""
|
48540
|
+
return pulumi.get(self, "first_backup_id")
|
48541
|
+
|
48085
48542
|
@property
|
48086
48543
|
@pulumi.getter
|
48087
48544
|
def id(self) -> str:
|
@@ -48090,11 +48547,19 @@ class GetVolumeSourceDetailResult(dict):
|
|
48090
48547
|
"""
|
48091
48548
|
return pulumi.get(self, "id")
|
48092
48549
|
|
48550
|
+
@property
|
48551
|
+
@pulumi.getter(name="secondBackupId")
|
48552
|
+
def second_backup_id(self) -> str:
|
48553
|
+
"""
|
48554
|
+
The OCID of the second volume backup.
|
48555
|
+
"""
|
48556
|
+
return pulumi.get(self, "second_backup_id")
|
48557
|
+
|
48093
48558
|
@property
|
48094
48559
|
@pulumi.getter
|
48095
48560
|
def type(self) -> str:
|
48096
48561
|
"""
|
48097
|
-
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
|
48562
|
+
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48098
48563
|
"""
|
48099
48564
|
return pulumi.get(self, "type")
|
48100
48565
|
|
@@ -48152,7 +48617,8 @@ class GetVolumesVolumeResult(dict):
|
|
48152
48617
|
time_created: str,
|
48153
48618
|
volume_backup_id: str,
|
48154
48619
|
volume_group_id: str,
|
48155
|
-
vpus_per_gb: str
|
48620
|
+
vpus_per_gb: str,
|
48621
|
+
xrc_kms_key_id: str):
|
48156
48622
|
"""
|
48157
48623
|
:param str auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this volume is effectively tuned to.
|
48158
48624
|
:param Sequence['GetVolumesVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
|
@@ -48168,7 +48634,8 @@ class GetVolumesVolumeResult(dict):
|
|
48168
48634
|
:param bool is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
|
48169
48635
|
:param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
|
48170
48636
|
: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
|
48637
|
+
:param str size_in_mbs: The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
|
48638
|
+
:param Sequence['GetVolumesVolumeSourceDetailArgs'] source_details: Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
|
48172
48639
|
:param str state: A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
|
48173
48640
|
:param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
48174
48641
|
:param str time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
@@ -48199,6 +48666,7 @@ class GetVolumesVolumeResult(dict):
|
|
48199
48666
|
pulumi.set(__self__, "volume_backup_id", volume_backup_id)
|
48200
48667
|
pulumi.set(__self__, "volume_group_id", volume_group_id)
|
48201
48668
|
pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
|
48669
|
+
pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
|
48202
48670
|
|
48203
48671
|
@property
|
48204
48672
|
@pulumi.getter(name="autoTunedVpusPerGb")
|
@@ -48328,13 +48796,16 @@ class GetVolumesVolumeResult(dict):
|
|
48328
48796
|
@_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
|
48329
48797
|
def size_in_mbs(self) -> str:
|
48330
48798
|
"""
|
48331
|
-
The size of the volume in MBs. This field is deprecated. Use
|
48799
|
+
The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
|
48332
48800
|
"""
|
48333
48801
|
return pulumi.get(self, "size_in_mbs")
|
48334
48802
|
|
48335
48803
|
@property
|
48336
48804
|
@pulumi.getter(name="sourceDetails")
|
48337
48805
|
def source_details(self) -> Sequence['outputs.GetVolumesVolumeSourceDetailResult']:
|
48806
|
+
"""
|
48807
|
+
Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
|
48808
|
+
"""
|
48338
48809
|
return pulumi.get(self, "source_details")
|
48339
48810
|
|
48340
48811
|
@property
|
@@ -48382,6 +48853,11 @@ class GetVolumesVolumeResult(dict):
|
|
48382
48853
|
"""
|
48383
48854
|
return pulumi.get(self, "vpus_per_gb")
|
48384
48855
|
|
48856
|
+
@property
|
48857
|
+
@pulumi.getter(name="xrcKmsKeyId")
|
48858
|
+
def xrc_kms_key_id(self) -> str:
|
48859
|
+
return pulumi.get(self, "xrc_kms_key_id")
|
48860
|
+
|
48385
48861
|
|
48386
48862
|
@pulumi.output_type
|
48387
48863
|
class GetVolumesVolumeAutotunePolicyResult(dict):
|
@@ -48417,15 +48893,20 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
|
|
48417
48893
|
def __init__(__self__, *,
|
48418
48894
|
availability_domain: str,
|
48419
48895
|
block_volume_replica_id: str,
|
48420
|
-
display_name: str
|
48896
|
+
display_name: str,
|
48897
|
+
kms_key_id: str,
|
48898
|
+
xrr_kms_key_id: str):
|
48421
48899
|
"""
|
48422
48900
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
48423
48901
|
:param str block_volume_replica_id: The block volume replica's Oracle ID (OCID).
|
48424
48902
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
48903
|
+
:param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
|
48425
48904
|
"""
|
48426
48905
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
48427
48906
|
pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
|
48428
48907
|
pulumi.set(__self__, "display_name", display_name)
|
48908
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
48909
|
+
pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
|
48429
48910
|
|
48430
48911
|
@property
|
48431
48912
|
@pulumi.getter(name="availabilityDomain")
|
@@ -48451,19 +48932,57 @@ class GetVolumesVolumeBlockVolumeReplicaResult(dict):
|
|
48451
48932
|
"""
|
48452
48933
|
return pulumi.get(self, "display_name")
|
48453
48934
|
|
48935
|
+
@property
|
48936
|
+
@pulumi.getter(name="kmsKeyId")
|
48937
|
+
def kms_key_id(self) -> str:
|
48938
|
+
"""
|
48939
|
+
The OCID of the Vault service key which is the master encryption key for the volume.
|
48940
|
+
"""
|
48941
|
+
return pulumi.get(self, "kms_key_id")
|
48942
|
+
|
48943
|
+
@property
|
48944
|
+
@pulumi.getter(name="xrrKmsKeyId")
|
48945
|
+
def xrr_kms_key_id(self) -> str:
|
48946
|
+
return pulumi.get(self, "xrr_kms_key_id")
|
48947
|
+
|
48454
48948
|
|
48455
48949
|
@pulumi.output_type
|
48456
48950
|
class GetVolumesVolumeSourceDetailResult(dict):
|
48457
48951
|
def __init__(__self__, *,
|
48952
|
+
change_block_size_in_bytes: str,
|
48953
|
+
first_backup_id: str,
|
48458
48954
|
id: str,
|
48955
|
+
second_backup_id: str,
|
48459
48956
|
type: str):
|
48460
48957
|
"""
|
48958
|
+
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48959
|
+
:param str first_backup_id: The OCID of the first volume backup.
|
48461
48960
|
:param str id: The OCID of the block volume replica.
|
48462
|
-
:param str
|
48961
|
+
:param str second_backup_id: The OCID of the second volume backup.
|
48962
|
+
:param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48463
48963
|
"""
|
48964
|
+
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
48965
|
+
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
48464
48966
|
pulumi.set(__self__, "id", id)
|
48967
|
+
pulumi.set(__self__, "second_backup_id", second_backup_id)
|
48465
48968
|
pulumi.set(__self__, "type", type)
|
48466
48969
|
|
48970
|
+
@property
|
48971
|
+
@pulumi.getter(name="changeBlockSizeInBytes")
|
48972
|
+
def change_block_size_in_bytes(self) -> str:
|
48973
|
+
"""
|
48974
|
+
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48975
|
+
"""
|
48976
|
+
return pulumi.get(self, "change_block_size_in_bytes")
|
48977
|
+
|
48978
|
+
@property
|
48979
|
+
@pulumi.getter(name="firstBackupId")
|
48980
|
+
def first_backup_id(self) -> str:
|
48981
|
+
"""
|
48982
|
+
The OCID of the first volume backup.
|
48983
|
+
"""
|
48984
|
+
return pulumi.get(self, "first_backup_id")
|
48985
|
+
|
48467
48986
|
@property
|
48468
48987
|
@pulumi.getter
|
48469
48988
|
def id(self) -> str:
|
@@ -48472,11 +48991,19 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
48472
48991
|
"""
|
48473
48992
|
return pulumi.get(self, "id")
|
48474
48993
|
|
48994
|
+
@property
|
48995
|
+
@pulumi.getter(name="secondBackupId")
|
48996
|
+
def second_backup_id(self) -> str:
|
48997
|
+
"""
|
48998
|
+
The OCID of the second volume backup.
|
48999
|
+
"""
|
49000
|
+
return pulumi.get(self, "second_backup_id")
|
49001
|
+
|
48475
49002
|
@property
|
48476
49003
|
@pulumi.getter
|
48477
49004
|
def type(self) -> str:
|
48478
49005
|
"""
|
48479
|
-
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
|
49006
|
+
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48480
49007
|
"""
|
48481
49008
|
return pulumi.get(self, "type")
|
48482
49009
|
|