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
@@ -347,6 +347,8 @@ __all__ = [
347
347
  'VirtualCircuitCrossConnectMappingArgsDict',
348
348
  'VirtualCircuitPublicPrefixArgs',
349
349
  'VirtualCircuitPublicPrefixArgsDict',
350
+ 'VirtualCircuitVirtualCircuitRedundancyMetadataArgs',
351
+ 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict',
350
352
  'VirtualNetworkByoipv6cidrDetailArgs',
351
353
  'VirtualNetworkByoipv6cidrDetailArgsDict',
352
354
  'VnicAttachmentCreateVnicDetailsArgs',
@@ -695,6 +697,14 @@ if not MYPY:
695
697
  """
696
698
  (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
697
699
  """
700
+ kms_key_id: NotRequired[pulumi.Input[str]]
701
+ """
702
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
703
+ """
704
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
705
+ """
706
+ (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).
707
+ """
698
708
  elif False:
699
709
  BootVolumeBootVolumeReplicaArgsDict: TypeAlias = Mapping[str, Any]
700
710
 
@@ -703,17 +713,25 @@ class BootVolumeBootVolumeReplicaArgs:
703
713
  def __init__(__self__, *,
704
714
  availability_domain: pulumi.Input[str],
705
715
  boot_volume_replica_id: Optional[pulumi.Input[str]] = None,
706
- display_name: Optional[pulumi.Input[str]] = None):
716
+ display_name: Optional[pulumi.Input[str]] = None,
717
+ kms_key_id: Optional[pulumi.Input[str]] = None,
718
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
707
719
  """
708
720
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the boot volume replica. Example: `Uocm:PHX-AD-1`
709
721
  :param pulumi.Input[str] boot_volume_replica_id: The boot volume replica's Oracle ID (OCID).
710
722
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
723
+ :param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
724
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region boot volume replicas, which will be used in the destination region to encrypt the boot volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
711
725
  """
712
726
  pulumi.set(__self__, "availability_domain", availability_domain)
713
727
  if boot_volume_replica_id is not None:
714
728
  pulumi.set(__self__, "boot_volume_replica_id", boot_volume_replica_id)
715
729
  if display_name is not None:
716
730
  pulumi.set(__self__, "display_name", display_name)
731
+ if kms_key_id is not None:
732
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
733
+ if xrr_kms_key_id is not None:
734
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
717
735
 
718
736
  @property
719
737
  @pulumi.getter(name="availabilityDomain")
@@ -751,16 +769,52 @@ class BootVolumeBootVolumeReplicaArgs:
751
769
  def display_name(self, value: Optional[pulumi.Input[str]]):
752
770
  pulumi.set(self, "display_name", value)
753
771
 
772
+ @property
773
+ @pulumi.getter(name="kmsKeyId")
774
+ def kms_key_id(self) -> Optional[pulumi.Input[str]]:
775
+ """
776
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
777
+ """
778
+ return pulumi.get(self, "kms_key_id")
779
+
780
+ @kms_key_id.setter
781
+ def kms_key_id(self, value: Optional[pulumi.Input[str]]):
782
+ pulumi.set(self, "kms_key_id", value)
783
+
784
+ @property
785
+ @pulumi.getter(name="xrrKmsKeyId")
786
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
787
+ """
788
+ (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).
789
+ """
790
+ return pulumi.get(self, "xrr_kms_key_id")
791
+
792
+ @xrr_kms_key_id.setter
793
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
794
+ pulumi.set(self, "xrr_kms_key_id", value)
795
+
754
796
 
755
797
  if not MYPY:
756
798
  class BootVolumeSourceDetailsArgsDict(TypedDict):
757
- id: pulumi.Input[str]
799
+ type: pulumi.Input[str]
800
+ """
801
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
802
+ """
803
+ change_block_size_in_bytes: NotRequired[pulumi.Input[str]]
804
+ """
805
+ 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).
806
+ """
807
+ first_backup_id: NotRequired[pulumi.Input[str]]
808
+ """
809
+ The OCID of the first boot volume backup.
810
+ """
811
+ id: NotRequired[pulumi.Input[str]]
758
812
  """
759
813
  The OCID of the boot volume replica.
760
814
  """
761
- type: pulumi.Input[str]
815
+ second_backup_id: NotRequired[pulumi.Input[str]]
762
816
  """
763
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
817
+ The OCID of the second boot volume backup.
764
818
  """
765
819
  elif False:
766
820
  BootVolumeSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -768,38 +822,87 @@ elif False:
768
822
  @pulumi.input_type
769
823
  class BootVolumeSourceDetailsArgs:
770
824
  def __init__(__self__, *,
771
- id: pulumi.Input[str],
772
- type: pulumi.Input[str]):
825
+ type: pulumi.Input[str],
826
+ change_block_size_in_bytes: Optional[pulumi.Input[str]] = None,
827
+ first_backup_id: Optional[pulumi.Input[str]] = None,
828
+ id: Optional[pulumi.Input[str]] = None,
829
+ second_backup_id: Optional[pulumi.Input[str]] = None):
773
830
  """
831
+ :param pulumi.Input[str] type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
832
+ :param pulumi.Input[str] change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
833
+ :param pulumi.Input[str] first_backup_id: The OCID of the first boot volume backup.
774
834
  :param pulumi.Input[str] id: The OCID of the boot volume replica.
775
- :param pulumi.Input[str] type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
835
+ :param pulumi.Input[str] second_backup_id: The OCID of the second boot volume backup.
776
836
  """
777
- pulumi.set(__self__, "id", id)
778
837
  pulumi.set(__self__, "type", type)
838
+ if change_block_size_in_bytes is not None:
839
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
840
+ if first_backup_id is not None:
841
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
842
+ if id is not None:
843
+ pulumi.set(__self__, "id", id)
844
+ if second_backup_id is not None:
845
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
779
846
 
780
847
  @property
781
848
  @pulumi.getter
782
- def id(self) -> pulumi.Input[str]:
849
+ def type(self) -> pulumi.Input[str]:
850
+ """
851
+ The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
852
+ """
853
+ return pulumi.get(self, "type")
854
+
855
+ @type.setter
856
+ def type(self, value: pulumi.Input[str]):
857
+ pulumi.set(self, "type", value)
858
+
859
+ @property
860
+ @pulumi.getter(name="changeBlockSizeInBytes")
861
+ def change_block_size_in_bytes(self) -> Optional[pulumi.Input[str]]:
862
+ """
863
+ 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).
864
+ """
865
+ return pulumi.get(self, "change_block_size_in_bytes")
866
+
867
+ @change_block_size_in_bytes.setter
868
+ def change_block_size_in_bytes(self, value: Optional[pulumi.Input[str]]):
869
+ pulumi.set(self, "change_block_size_in_bytes", value)
870
+
871
+ @property
872
+ @pulumi.getter(name="firstBackupId")
873
+ def first_backup_id(self) -> Optional[pulumi.Input[str]]:
874
+ """
875
+ The OCID of the first boot volume backup.
876
+ """
877
+ return pulumi.get(self, "first_backup_id")
878
+
879
+ @first_backup_id.setter
880
+ def first_backup_id(self, value: Optional[pulumi.Input[str]]):
881
+ pulumi.set(self, "first_backup_id", value)
882
+
883
+ @property
884
+ @pulumi.getter
885
+ def id(self) -> Optional[pulumi.Input[str]]:
783
886
  """
784
887
  The OCID of the boot volume replica.
785
888
  """
786
889
  return pulumi.get(self, "id")
787
890
 
788
891
  @id.setter
789
- def id(self, value: pulumi.Input[str]):
892
+ def id(self, value: Optional[pulumi.Input[str]]):
790
893
  pulumi.set(self, "id", value)
791
894
 
792
895
  @property
793
- @pulumi.getter
794
- def type(self) -> pulumi.Input[str]:
896
+ @pulumi.getter(name="secondBackupId")
897
+ def second_backup_id(self) -> Optional[pulumi.Input[str]]:
795
898
  """
796
- The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeReplica`
899
+ The OCID of the second boot volume backup.
797
900
  """
798
- return pulumi.get(self, "type")
901
+ return pulumi.get(self, "second_backup_id")
799
902
 
800
- @type.setter
801
- def type(self, value: pulumi.Input[str]):
802
- pulumi.set(self, "type", value)
903
+ @second_backup_id.setter
904
+ def second_backup_id(self, value: Optional[pulumi.Input[str]]):
905
+ pulumi.set(self, "second_backup_id", value)
803
906
 
804
907
 
805
908
  if not MYPY:
@@ -6459,6 +6562,10 @@ if not MYPY:
6459
6562
 
6460
6563
  Allowed values:
6461
6564
  """
6565
+ xrc_kms_key_id: NotRequired[pulumi.Input[str]]
6566
+ """
6567
+ 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).
6568
+ """
6462
6569
  elif False:
6463
6570
  InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgsDict: TypeAlias = Mapping[str, Any]
6464
6571
 
@@ -6478,7 +6585,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6478
6585
  kms_key_id: Optional[pulumi.Input[str]] = None,
6479
6586
  size_in_gbs: Optional[pulumi.Input[str]] = None,
6480
6587
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsSourceDetailsArgs']] = None,
6481
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
6588
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
6589
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
6482
6590
  """
6483
6591
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
6484
6592
  :param pulumi.Input[str] availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -6495,6 +6603,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6495
6603
  :param pulumi.Input[str] vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
6496
6604
 
6497
6605
  Allowed values:
6606
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
6498
6607
  """
6499
6608
  if autotune_policies is not None:
6500
6609
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -6524,6 +6633,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6524
6633
  pulumi.set(__self__, "source_details", source_details)
6525
6634
  if vpus_per_gb is not None:
6526
6635
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
6636
+ if xrc_kms_key_id is not None:
6637
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
6527
6638
 
6528
6639
  @property
6529
6640
  @pulumi.getter(name="autotunePolicies")
@@ -6692,6 +6803,18 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
6692
6803
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
6693
6804
  pulumi.set(self, "vpus_per_gb", value)
6694
6805
 
6806
+ @property
6807
+ @pulumi.getter(name="xrcKmsKeyId")
6808
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
6809
+ """
6810
+ 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).
6811
+ """
6812
+ return pulumi.get(self, "xrc_kms_key_id")
6813
+
6814
+ @xrc_kms_key_id.setter
6815
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
6816
+ pulumi.set(self, "xrc_kms_key_id", value)
6817
+
6695
6818
 
6696
6819
  if not MYPY:
6697
6820
  class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgsDict(TypedDict):
@@ -9378,6 +9501,10 @@ if not MYPY:
9378
9501
 
9379
9502
  Allowed values:
9380
9503
  """
9504
+ xrc_kms_key_id: NotRequired[pulumi.Input[str]]
9505
+ """
9506
+ 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).
9507
+ """
9381
9508
  elif False:
9382
9509
  InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgsDict: TypeAlias = Mapping[str, Any]
9383
9510
 
@@ -9397,7 +9524,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9397
9524
  kms_key_id: Optional[pulumi.Input[str]] = None,
9398
9525
  size_in_gbs: Optional[pulumi.Input[str]] = None,
9399
9526
  source_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsSourceDetailsArgs']] = None,
9400
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
9527
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
9528
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
9401
9529
  """
9402
9530
  :param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
9403
9531
  :param pulumi.Input[str] availability_domain: The availability domain of the volume. Example: `Uocm:PHX-AD-1`
@@ -9414,6 +9542,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9414
9542
  :param pulumi.Input[str] vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
9415
9543
 
9416
9544
  Allowed values:
9545
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the block volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
9417
9546
  """
9418
9547
  if autotune_policies is not None:
9419
9548
  pulumi.set(__self__, "autotune_policies", autotune_policies)
@@ -9443,6 +9572,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9443
9572
  pulumi.set(__self__, "source_details", source_details)
9444
9573
  if vpus_per_gb is not None:
9445
9574
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
9575
+ if xrc_kms_key_id is not None:
9576
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
9446
9577
 
9447
9578
  @property
9448
9579
  @pulumi.getter(name="autotunePolicies")
@@ -9611,6 +9742,18 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
9611
9742
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
9612
9743
  pulumi.set(self, "vpus_per_gb", value)
9613
9744
 
9745
+ @property
9746
+ @pulumi.getter(name="xrcKmsKeyId")
9747
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
9748
+ """
9749
+ 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).
9750
+ """
9751
+ return pulumi.get(self, "xrc_kms_key_id")
9752
+
9753
+ @xrc_kms_key_id.setter
9754
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
9755
+ pulumi.set(self, "xrc_kms_key_id", value)
9756
+
9614
9757
 
9615
9758
  if not MYPY:
9616
9759
  class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgsDict(TypedDict):
@@ -17795,6 +17938,78 @@ class VirtualCircuitPublicPrefixArgs:
17795
17938
  pulumi.set(self, "cidr_block", value)
17796
17939
 
17797
17940
 
17941
+ if not MYPY:
17942
+ class VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict(TypedDict):
17943
+ configured_redundancy_level: NotRequired[pulumi.Input[str]]
17944
+ """
17945
+ The configured redundancy level of the virtual circuit
17946
+ """
17947
+ ipv4bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
17948
+ """
17949
+ IPV4 BGP redundancy status indicates if the configured redundancy level is met
17950
+ """
17951
+ ipv6bgp_session_redundancy_status: NotRequired[pulumi.Input[str]]
17952
+ """
17953
+ IPV6 BGP redundancy status indicates if the configured redundancy level is met
17954
+ """
17955
+ elif False:
17956
+ VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict: TypeAlias = Mapping[str, Any]
17957
+
17958
+ @pulumi.input_type
17959
+ class VirtualCircuitVirtualCircuitRedundancyMetadataArgs:
17960
+ def __init__(__self__, *,
17961
+ configured_redundancy_level: Optional[pulumi.Input[str]] = None,
17962
+ ipv4bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None,
17963
+ ipv6bgp_session_redundancy_status: Optional[pulumi.Input[str]] = None):
17964
+ """
17965
+ :param pulumi.Input[str] configured_redundancy_level: The configured redundancy level of the virtual circuit
17966
+ :param pulumi.Input[str] ipv4bgp_session_redundancy_status: IPV4 BGP redundancy status indicates if the configured redundancy level is met
17967
+ :param pulumi.Input[str] ipv6bgp_session_redundancy_status: IPV6 BGP redundancy status indicates if the configured redundancy level is met
17968
+ """
17969
+ if configured_redundancy_level is not None:
17970
+ pulumi.set(__self__, "configured_redundancy_level", configured_redundancy_level)
17971
+ if ipv4bgp_session_redundancy_status is not None:
17972
+ pulumi.set(__self__, "ipv4bgp_session_redundancy_status", ipv4bgp_session_redundancy_status)
17973
+ if ipv6bgp_session_redundancy_status is not None:
17974
+ pulumi.set(__self__, "ipv6bgp_session_redundancy_status", ipv6bgp_session_redundancy_status)
17975
+
17976
+ @property
17977
+ @pulumi.getter(name="configuredRedundancyLevel")
17978
+ def configured_redundancy_level(self) -> Optional[pulumi.Input[str]]:
17979
+ """
17980
+ The configured redundancy level of the virtual circuit
17981
+ """
17982
+ return pulumi.get(self, "configured_redundancy_level")
17983
+
17984
+ @configured_redundancy_level.setter
17985
+ def configured_redundancy_level(self, value: Optional[pulumi.Input[str]]):
17986
+ pulumi.set(self, "configured_redundancy_level", value)
17987
+
17988
+ @property
17989
+ @pulumi.getter(name="ipv4bgpSessionRedundancyStatus")
17990
+ def ipv4bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
17991
+ """
17992
+ IPV4 BGP redundancy status indicates if the configured redundancy level is met
17993
+ """
17994
+ return pulumi.get(self, "ipv4bgp_session_redundancy_status")
17995
+
17996
+ @ipv4bgp_session_redundancy_status.setter
17997
+ def ipv4bgp_session_redundancy_status(self, value: Optional[pulumi.Input[str]]):
17998
+ pulumi.set(self, "ipv4bgp_session_redundancy_status", value)
17999
+
18000
+ @property
18001
+ @pulumi.getter(name="ipv6bgpSessionRedundancyStatus")
18002
+ def ipv6bgp_session_redundancy_status(self) -> Optional[pulumi.Input[str]]:
18003
+ """
18004
+ IPV6 BGP redundancy status indicates if the configured redundancy level is met
18005
+ """
18006
+ return pulumi.get(self, "ipv6bgp_session_redundancy_status")
18007
+
18008
+ @ipv6bgp_session_redundancy_status.setter
18009
+ def ipv6bgp_session_redundancy_status(self, value: Optional[pulumi.Input[str]]):
18010
+ pulumi.set(self, "ipv6bgp_session_redundancy_status", value)
18011
+
18012
+
17798
18013
  if not MYPY:
17799
18014
  class VirtualNetworkByoipv6cidrDetailArgsDict(TypedDict):
17800
18015
  byoipv6range_id: pulumi.Input[str]
@@ -18744,6 +18959,14 @@ if not MYPY:
18744
18959
  """
18745
18960
  (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
18746
18961
  """
18962
+ kms_key_id: NotRequired[pulumi.Input[str]]
18963
+ """
18964
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
18965
+ """
18966
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
18967
+ """
18968
+ (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).
18969
+ """
18747
18970
  elif False:
18748
18971
  VolumeBlockVolumeReplicaArgsDict: TypeAlias = Mapping[str, Any]
18749
18972
 
@@ -18752,17 +18975,25 @@ class VolumeBlockVolumeReplicaArgs:
18752
18975
  def __init__(__self__, *,
18753
18976
  availability_domain: pulumi.Input[str],
18754
18977
  block_volume_replica_id: Optional[pulumi.Input[str]] = None,
18755
- display_name: Optional[pulumi.Input[str]] = None):
18978
+ display_name: Optional[pulumi.Input[str]] = None,
18979
+ kms_key_id: Optional[pulumi.Input[str]] = None,
18980
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
18756
18981
  """
18757
18982
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
18758
18983
  :param pulumi.Input[str] block_volume_replica_id: The block volume replica's Oracle ID (OCID).
18759
18984
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
18985
+ :param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
18986
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region block volume replicas, which will be used in the destination region to encrypt the block volume replica's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
18760
18987
  """
18761
18988
  pulumi.set(__self__, "availability_domain", availability_domain)
18762
18989
  if block_volume_replica_id is not None:
18763
18990
  pulumi.set(__self__, "block_volume_replica_id", block_volume_replica_id)
18764
18991
  if display_name is not None:
18765
18992
  pulumi.set(__self__, "display_name", display_name)
18993
+ if kms_key_id is not None:
18994
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
18995
+ if xrr_kms_key_id is not None:
18996
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
18766
18997
 
18767
18998
  @property
18768
18999
  @pulumi.getter(name="availabilityDomain")
@@ -18800,6 +19031,30 @@ class VolumeBlockVolumeReplicaArgs:
18800
19031
  def display_name(self, value: Optional[pulumi.Input[str]]):
18801
19032
  pulumi.set(self, "display_name", value)
18802
19033
 
19034
+ @property
19035
+ @pulumi.getter(name="kmsKeyId")
19036
+ def kms_key_id(self) -> Optional[pulumi.Input[str]]:
19037
+ """
19038
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the volume.
19039
+ """
19040
+ return pulumi.get(self, "kms_key_id")
19041
+
19042
+ @kms_key_id.setter
19043
+ def kms_key_id(self, value: Optional[pulumi.Input[str]]):
19044
+ pulumi.set(self, "kms_key_id", value)
19045
+
19046
+ @property
19047
+ @pulumi.getter(name="xrrKmsKeyId")
19048
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
19049
+ """
19050
+ (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).
19051
+ """
19052
+ return pulumi.get(self, "xrr_kms_key_id")
19053
+
19054
+ @xrr_kms_key_id.setter
19055
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
19056
+ pulumi.set(self, "xrr_kms_key_id", value)
19057
+
18803
19058
 
18804
19059
  if not MYPY:
18805
19060
  class VolumeGroupBackupSourceDetailsArgsDict(TypedDict):
@@ -19011,6 +19266,10 @@ if not MYPY:
19011
19266
  """
19012
19267
  The volume group replica's Oracle ID (OCID).
19013
19268
  """
19269
+ xrr_kms_key_id: NotRequired[pulumi.Input[str]]
19270
+ """
19271
+ (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).
19272
+ """
19014
19273
  elif False:
19015
19274
  VolumeGroupVolumeGroupReplicaArgsDict: TypeAlias = Mapping[str, Any]
19016
19275
 
@@ -19019,17 +19278,21 @@ class VolumeGroupVolumeGroupReplicaArgs:
19019
19278
  def __init__(__self__, *,
19020
19279
  availability_domain: pulumi.Input[str],
19021
19280
  display_name: Optional[pulumi.Input[str]] = None,
19022
- volume_group_replica_id: Optional[pulumi.Input[str]] = None):
19281
+ volume_group_replica_id: Optional[pulumi.Input[str]] = None,
19282
+ xrr_kms_key_id: Optional[pulumi.Input[str]] = None):
19023
19283
  """
19024
19284
  :param pulumi.Input[str] availability_domain: (Updatable) The availability domain of the volume group replica. Example: `Uocm:PHX-AD-1`
19025
19285
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
19026
19286
  :param pulumi.Input[str] volume_group_replica_id: The volume group replica's Oracle ID (OCID).
19287
+ :param pulumi.Input[str] xrr_kms_key_id: (Updatable) The OCID of the Vault service key which is the master encryption key for the cross region volume group's replicas, which will be used in the destination region to encrypt the volume group's replicas encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
19027
19288
  """
19028
19289
  pulumi.set(__self__, "availability_domain", availability_domain)
19029
19290
  if display_name is not None:
19030
19291
  pulumi.set(__self__, "display_name", display_name)
19031
19292
  if volume_group_replica_id is not None:
19032
19293
  pulumi.set(__self__, "volume_group_replica_id", volume_group_replica_id)
19294
+ if xrr_kms_key_id is not None:
19295
+ pulumi.set(__self__, "xrr_kms_key_id", xrr_kms_key_id)
19033
19296
 
19034
19297
  @property
19035
19298
  @pulumi.getter(name="availabilityDomain")
@@ -19067,16 +19330,40 @@ class VolumeGroupVolumeGroupReplicaArgs:
19067
19330
  def volume_group_replica_id(self, value: Optional[pulumi.Input[str]]):
19068
19331
  pulumi.set(self, "volume_group_replica_id", value)
19069
19332
 
19333
+ @property
19334
+ @pulumi.getter(name="xrrKmsKeyId")
19335
+ def xrr_kms_key_id(self) -> Optional[pulumi.Input[str]]:
19336
+ """
19337
+ (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).
19338
+ """
19339
+ return pulumi.get(self, "xrr_kms_key_id")
19340
+
19341
+ @xrr_kms_key_id.setter
19342
+ def xrr_kms_key_id(self, value: Optional[pulumi.Input[str]]):
19343
+ pulumi.set(self, "xrr_kms_key_id", value)
19344
+
19070
19345
 
19071
19346
  if not MYPY:
19072
19347
  class VolumeSourceDetailsArgsDict(TypedDict):
19073
- id: pulumi.Input[str]
19348
+ type: pulumi.Input[str]
19349
+ """
19350
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19351
+ """
19352
+ change_block_size_in_bytes: NotRequired[pulumi.Input[str]]
19353
+ """
19354
+ 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).
19355
+ """
19356
+ first_backup_id: NotRequired[pulumi.Input[str]]
19357
+ """
19358
+ The OCID of the first volume backup.
19359
+ """
19360
+ id: NotRequired[pulumi.Input[str]]
19074
19361
  """
19075
19362
  The OCID of the block volume replica.
19076
19363
  """
19077
- type: pulumi.Input[str]
19364
+ second_backup_id: NotRequired[pulumi.Input[str]]
19078
19365
  """
19079
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19366
+ The OCID of the second volume backup.
19080
19367
  """
19081
19368
  elif False:
19082
19369
  VolumeSourceDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -19084,38 +19371,87 @@ elif False:
19084
19371
  @pulumi.input_type
19085
19372
  class VolumeSourceDetailsArgs:
19086
19373
  def __init__(__self__, *,
19087
- id: pulumi.Input[str],
19088
- type: pulumi.Input[str]):
19374
+ type: pulumi.Input[str],
19375
+ change_block_size_in_bytes: Optional[pulumi.Input[str]] = None,
19376
+ first_backup_id: Optional[pulumi.Input[str]] = None,
19377
+ id: Optional[pulumi.Input[str]] = None,
19378
+ second_backup_id: Optional[pulumi.Input[str]] = None):
19089
19379
  """
19380
+ :param pulumi.Input[str] type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19381
+ :param pulumi.Input[str] change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
19382
+ :param pulumi.Input[str] first_backup_id: The OCID of the first volume backup.
19090
19383
  :param pulumi.Input[str] id: The OCID of the block volume replica.
19091
- :param pulumi.Input[str] type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19384
+ :param pulumi.Input[str] second_backup_id: The OCID of the second volume backup.
19092
19385
  """
19093
- pulumi.set(__self__, "id", id)
19094
19386
  pulumi.set(__self__, "type", type)
19387
+ if change_block_size_in_bytes is not None:
19388
+ pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
19389
+ if first_backup_id is not None:
19390
+ pulumi.set(__self__, "first_backup_id", first_backup_id)
19391
+ if id is not None:
19392
+ pulumi.set(__self__, "id", id)
19393
+ if second_backup_id is not None:
19394
+ pulumi.set(__self__, "second_backup_id", second_backup_id)
19095
19395
 
19096
19396
  @property
19097
19397
  @pulumi.getter
19098
- def id(self) -> pulumi.Input[str]:
19398
+ def type(self) -> pulumi.Input[str]:
19399
+ """
19400
+ The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
19401
+ """
19402
+ return pulumi.get(self, "type")
19403
+
19404
+ @type.setter
19405
+ def type(self, value: pulumi.Input[str]):
19406
+ pulumi.set(self, "type", value)
19407
+
19408
+ @property
19409
+ @pulumi.getter(name="changeBlockSizeInBytes")
19410
+ def change_block_size_in_bytes(self) -> Optional[pulumi.Input[str]]:
19411
+ """
19412
+ 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).
19413
+ """
19414
+ return pulumi.get(self, "change_block_size_in_bytes")
19415
+
19416
+ @change_block_size_in_bytes.setter
19417
+ def change_block_size_in_bytes(self, value: Optional[pulumi.Input[str]]):
19418
+ pulumi.set(self, "change_block_size_in_bytes", value)
19419
+
19420
+ @property
19421
+ @pulumi.getter(name="firstBackupId")
19422
+ def first_backup_id(self) -> Optional[pulumi.Input[str]]:
19423
+ """
19424
+ The OCID of the first volume backup.
19425
+ """
19426
+ return pulumi.get(self, "first_backup_id")
19427
+
19428
+ @first_backup_id.setter
19429
+ def first_backup_id(self, value: Optional[pulumi.Input[str]]):
19430
+ pulumi.set(self, "first_backup_id", value)
19431
+
19432
+ @property
19433
+ @pulumi.getter
19434
+ def id(self) -> Optional[pulumi.Input[str]]:
19099
19435
  """
19100
19436
  The OCID of the block volume replica.
19101
19437
  """
19102
19438
  return pulumi.get(self, "id")
19103
19439
 
19104
19440
  @id.setter
19105
- def id(self, value: pulumi.Input[str]):
19441
+ def id(self, value: Optional[pulumi.Input[str]]):
19106
19442
  pulumi.set(self, "id", value)
19107
19443
 
19108
19444
  @property
19109
- @pulumi.getter
19110
- def type(self) -> pulumi.Input[str]:
19445
+ @pulumi.getter(name="secondBackupId")
19446
+ def second_backup_id(self) -> Optional[pulumi.Input[str]]:
19111
19447
  """
19112
- The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`
19448
+ The OCID of the second volume backup.
19113
19449
  """
19114
- return pulumi.get(self, "type")
19450
+ return pulumi.get(self, "second_backup_id")
19115
19451
 
19116
- @type.setter
19117
- def type(self, value: pulumi.Input[str]):
19118
- pulumi.set(self, "type", value)
19452
+ @second_backup_id.setter
19453
+ def second_backup_id(self, value: Optional[pulumi.Input[str]]):
19454
+ pulumi.set(self, "second_backup_id", value)
19119
19455
 
19120
19456
 
19121
19457
  if not MYPY: