pulumi-oci 2.13.0__py3-none-any.whl → 2.13.0a1729059403__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 (65) hide show
  1. pulumi_oci/__init__.py +19 -24
  2. pulumi_oci/containerengine/_inputs.py +0 -341
  3. pulumi_oci/containerengine/cluster.py +0 -64
  4. pulumi_oci/containerengine/get_cluster.py +1 -12
  5. pulumi_oci/containerengine/outputs.py +0 -582
  6. pulumi_oci/core/_inputs.py +37 -299
  7. pulumi_oci/core/boot_volume.py +5 -90
  8. pulumi_oci/core/get_block_volume_replica.py +1 -15
  9. pulumi_oci/core/get_boot_volume.py +4 -15
  10. pulumi_oci/core/get_boot_volume_replica.py +1 -15
  11. pulumi_oci/core/get_volume.py +4 -18
  12. pulumi_oci/core/instance_configuration.py +0 -4
  13. pulumi_oci/core/outputs.py +46 -573
  14. pulumi_oci/core/volume.py +12 -110
  15. pulumi_oci/core/volume_backup_policy_assignment.py +19 -68
  16. pulumi_oci/core/volume_group.py +5 -56
  17. pulumi_oci/datasafe/__init__.py +0 -1
  18. pulumi_oci/desktops/_inputs.py +13 -175
  19. pulumi_oci/desktops/desktop_pool.py +0 -67
  20. pulumi_oci/desktops/get_desktop_pool.py +1 -16
  21. pulumi_oci/desktops/outputs.py +18 -339
  22. pulumi_oci/dns/__init__.py +0 -2
  23. pulumi_oci/dns/_inputs.py +12 -1157
  24. pulumi_oci/dns/action_create_zone_from_zone_file.py +2 -42
  25. pulumi_oci/dns/get_records.py +13 -45
  26. pulumi_oci/dns/get_resolver.py +6 -8
  27. pulumi_oci/dns/get_resolver_endpoint.py +6 -8
  28. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  29. pulumi_oci/dns/get_resolvers.py +12 -12
  30. pulumi_oci/dns/get_rrset.py +16 -16
  31. pulumi_oci/dns/get_rrsets.py +10 -12
  32. pulumi_oci/dns/get_view.py +4 -8
  33. pulumi_oci/dns/get_views.py +12 -12
  34. pulumi_oci/dns/get_zones.py +13 -33
  35. pulumi_oci/dns/outputs.py +79 -1388
  36. pulumi_oci/dns/record.py +12 -12
  37. pulumi_oci/dns/resolver.py +7 -7
  38. pulumi_oci/dns/resolver_endpoint.py +2 -2
  39. pulumi_oci/dns/rrset.py +41 -50
  40. pulumi_oci/dns/zone.py +17 -176
  41. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  42. pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
  43. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +323 -0
  44. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
  45. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +660 -0
  46. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
  47. pulumi_oci/globallydistributeddatabase/outputs.py +2063 -0
  48. pulumi_oci/globallydistributeddatabase/private_endpoint.py +747 -0
  49. pulumi_oci/globallydistributeddatabase/sharded_database.py +1821 -0
  50. pulumi_oci/goldengate/__init__.py +0 -1
  51. pulumi_oci/goldengate/_inputs.py +0 -165
  52. pulumi_oci/goldengate/connection.py +35 -49
  53. pulumi_oci/goldengate/database_registration.py +7 -7
  54. pulumi_oci/goldengate/deployment.py +4 -79
  55. pulumi_oci/goldengate/get_deployment.py +2 -30
  56. pulumi_oci/goldengate/outputs.py +2 -409
  57. pulumi_oci/pulumi-plugin.json +1 -1
  58. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/METADATA +1 -1
  59. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/RECORD +61 -56
  60. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/WHEEL +1 -1
  61. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +0 -271
  62. pulumi_oci/dns/zone_promote_dnssec_key_version.py +0 -328
  63. pulumi_oci/dns/zone_stage_dnssec_key_version.py +0 -318
  64. pulumi_oci/goldengate/get_deployment_environments.py +0 -144
  65. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/top_level.txt +0 -0
@@ -35,8 +35,7 @@ class BootVolumeArgs:
35
35
  is_auto_tune_enabled: Optional[pulumi.Input[bool]] = None,
36
36
  kms_key_id: Optional[pulumi.Input[str]] = None,
37
37
  size_in_gbs: Optional[pulumi.Input[str]] = None,
38
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
39
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
38
+ vpus_per_gb: Optional[pulumi.Input[str]] = None):
40
39
  """
41
40
  The set of arguments for constructing a BootVolume resource.
42
41
  :param pulumi.Input[str] availability_domain: The availability domain of the volume. Omissible for cloning a volume. The new volume will be created in the availability domain of the source volume. Example: `Uocm:PHX-AD-1`
@@ -54,11 +53,6 @@ class BootVolumeArgs:
54
53
  :param pulumi.Input[str] vpus_per_gb: (Updatable) 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.
55
54
 
56
55
  Allowed values:
57
- :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the 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).
58
-
59
-
60
- ** IMPORTANT **
61
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
62
56
  """
63
57
  pulumi.set(__self__, "availability_domain", availability_domain)
64
58
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -90,8 +84,6 @@ class BootVolumeArgs:
90
84
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
91
85
  if vpus_per_gb is not None:
92
86
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
93
- if xrc_kms_key_id is not None:
94
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
95
87
 
96
88
  @property
97
89
  @pulumi.getter(name="availabilityDomain")
@@ -270,22 +262,6 @@ class BootVolumeArgs:
270
262
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
271
263
  pulumi.set(self, "vpus_per_gb", value)
272
264
 
273
- @property
274
- @pulumi.getter(name="xrcKmsKeyId")
275
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
276
- """
277
- The OCID of the Vault service key which is the master encryption key for the 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).
278
-
279
-
280
- ** IMPORTANT **
281
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
282
- """
283
- return pulumi.get(self, "xrc_kms_key_id")
284
-
285
- @xrc_kms_key_id.setter
286
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
287
- pulumi.set(self, "xrc_kms_key_id", value)
288
-
289
265
 
290
266
  @pulumi.input_type
291
267
  class _BootVolumeState:
@@ -312,8 +288,7 @@ class _BootVolumeState:
312
288
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
313
289
  time_created: Optional[pulumi.Input[str]] = None,
314
290
  volume_group_id: Optional[pulumi.Input[str]] = None,
315
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
316
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
291
+ vpus_per_gb: Optional[pulumi.Input[str]] = None):
317
292
  """
318
293
  Input properties used for looking up and filtering BootVolume resources.
319
294
  :param pulumi.Input[str] auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
@@ -339,11 +314,6 @@ class _BootVolumeState:
339
314
  :param pulumi.Input[str] vpus_per_gb: (Updatable) 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.
340
315
 
341
316
  Allowed values:
342
- :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the 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).
343
-
344
-
345
- ** IMPORTANT **
346
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
347
317
  """
348
318
  if auto_tuned_vpus_per_gb is not None:
349
319
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -394,8 +364,6 @@ class _BootVolumeState:
394
364
  pulumi.set(__self__, "volume_group_id", volume_group_id)
395
365
  if vpus_per_gb is not None:
396
366
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
397
- if xrc_kms_key_id is not None:
398
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
399
367
 
400
368
  @property
401
369
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -670,22 +638,6 @@ class _BootVolumeState:
670
638
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
671
639
  pulumi.set(self, "vpus_per_gb", value)
672
640
 
673
- @property
674
- @pulumi.getter(name="xrcKmsKeyId")
675
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
676
- """
677
- The OCID of the Vault service key which is the master encryption key for the 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).
678
-
679
-
680
- ** IMPORTANT **
681
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
682
- """
683
- return pulumi.get(self, "xrc_kms_key_id")
684
-
685
- @xrc_kms_key_id.setter
686
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
687
- pulumi.set(self, "xrc_kms_key_id", value)
688
-
689
641
 
690
642
  class BootVolume(pulumi.CustomResource):
691
643
  @overload
@@ -707,7 +659,6 @@ class BootVolume(pulumi.CustomResource):
707
659
  size_in_gbs: Optional[pulumi.Input[str]] = None,
708
660
  source_details: Optional[pulumi.Input[Union['BootVolumeSourceDetailsArgs', 'BootVolumeSourceDetailsArgsDict']]] = None,
709
661
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
710
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
711
662
  __props__=None):
712
663
  """
713
664
  This resource provides the Boot Volume resource in Oracle Cloud Infrastructure Core service.
@@ -726,11 +677,8 @@ class BootVolume(pulumi.CustomResource):
726
677
  test_boot_volume = oci.core.BootVolume("test_boot_volume",
727
678
  compartment_id=compartment_id,
728
679
  source_details={
729
- "type": boot_volume_source_details_type,
730
- "change_block_size_in_bytes": boot_volume_source_details_change_block_size_in_bytes,
731
- "first_backup_id": test_backup["id"],
732
680
  "id": boot_volume_source_details_id,
733
- "second_backup_id": test_backup["id"],
681
+ "type": boot_volume_source_details_type,
734
682
  },
735
683
  autotune_policies=[{
736
684
  "autotune_type": boot_volume_autotune_policies_autotune_type,
@@ -741,7 +689,6 @@ class BootVolume(pulumi.CustomResource):
741
689
  boot_volume_replicas=[{
742
690
  "availability_domain": boot_volume_boot_volume_replicas_availability_domain,
743
691
  "display_name": boot_volume_boot_volume_replicas_display_name,
744
- "xrr_kms_key_id": test_key["id"],
745
692
  }],
746
693
  cluster_placement_group_id=test_group["id"],
747
694
  defined_tags={
@@ -755,7 +702,6 @@ class BootVolume(pulumi.CustomResource):
755
702
  kms_key_id=test_key["id"],
756
703
  size_in_gbs=boot_volume_size_in_gbs,
757
704
  vpus_per_gb=boot_volume_vpus_per_gb,
758
- xrc_kms_key_id=test_key["id"],
759
705
  boot_volume_replicas_deletion=True)
760
706
  ```
761
707
 
@@ -784,11 +730,6 @@ class BootVolume(pulumi.CustomResource):
784
730
  :param pulumi.Input[str] vpus_per_gb: (Updatable) 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.
785
731
 
786
732
  Allowed values:
787
- :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the 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).
788
-
789
-
790
- ** IMPORTANT **
791
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
792
733
  """
793
734
  ...
794
735
  @overload
@@ -813,11 +754,8 @@ class BootVolume(pulumi.CustomResource):
813
754
  test_boot_volume = oci.core.BootVolume("test_boot_volume",
814
755
  compartment_id=compartment_id,
815
756
  source_details={
816
- "type": boot_volume_source_details_type,
817
- "change_block_size_in_bytes": boot_volume_source_details_change_block_size_in_bytes,
818
- "first_backup_id": test_backup["id"],
819
757
  "id": boot_volume_source_details_id,
820
- "second_backup_id": test_backup["id"],
758
+ "type": boot_volume_source_details_type,
821
759
  },
822
760
  autotune_policies=[{
823
761
  "autotune_type": boot_volume_autotune_policies_autotune_type,
@@ -828,7 +766,6 @@ class BootVolume(pulumi.CustomResource):
828
766
  boot_volume_replicas=[{
829
767
  "availability_domain": boot_volume_boot_volume_replicas_availability_domain,
830
768
  "display_name": boot_volume_boot_volume_replicas_display_name,
831
- "xrr_kms_key_id": test_key["id"],
832
769
  }],
833
770
  cluster_placement_group_id=test_group["id"],
834
771
  defined_tags={
@@ -842,7 +779,6 @@ class BootVolume(pulumi.CustomResource):
842
779
  kms_key_id=test_key["id"],
843
780
  size_in_gbs=boot_volume_size_in_gbs,
844
781
  vpus_per_gb=boot_volume_vpus_per_gb,
845
- xrc_kms_key_id=test_key["id"],
846
782
  boot_volume_replicas_deletion=True)
847
783
  ```
848
784
 
@@ -884,7 +820,6 @@ class BootVolume(pulumi.CustomResource):
884
820
  size_in_gbs: Optional[pulumi.Input[str]] = None,
885
821
  source_details: Optional[pulumi.Input[Union['BootVolumeSourceDetailsArgs', 'BootVolumeSourceDetailsArgsDict']]] = None,
886
822
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
887
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
888
823
  __props__=None):
889
824
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
890
825
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -915,7 +850,6 @@ class BootVolume(pulumi.CustomResource):
915
850
  raise TypeError("Missing required property 'source_details'")
916
851
  __props__.__dict__["source_details"] = source_details
917
852
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
918
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
919
853
  __props__.__dict__["auto_tuned_vpus_per_gb"] = None
920
854
  __props__.__dict__["image_id"] = None
921
855
  __props__.__dict__["is_hydrated"] = None
@@ -956,8 +890,7 @@ class BootVolume(pulumi.CustomResource):
956
890
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
957
891
  time_created: Optional[pulumi.Input[str]] = None,
958
892
  volume_group_id: Optional[pulumi.Input[str]] = None,
959
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
960
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'BootVolume':
893
+ vpus_per_gb: Optional[pulumi.Input[str]] = None) -> 'BootVolume':
961
894
  """
962
895
  Get an existing BootVolume resource's state with the given name, id, and optional extra
963
896
  properties used to qualify the lookup.
@@ -988,11 +921,6 @@ class BootVolume(pulumi.CustomResource):
988
921
  :param pulumi.Input[str] vpus_per_gb: (Updatable) 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.
989
922
 
990
923
  Allowed values:
991
- :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the 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).
992
-
993
-
994
- ** IMPORTANT **
995
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
996
924
  """
997
925
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
998
926
 
@@ -1021,7 +949,6 @@ class BootVolume(pulumi.CustomResource):
1021
949
  __props__.__dict__["time_created"] = time_created
1022
950
  __props__.__dict__["volume_group_id"] = volume_group_id
1023
951
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
1024
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
1025
952
  return BootVolume(resource_name, opts=opts, __props__=__props__)
1026
953
 
1027
954
  @property
@@ -1205,15 +1132,3 @@ class BootVolume(pulumi.CustomResource):
1205
1132
  """
1206
1133
  return pulumi.get(self, "vpus_per_gb")
1207
1134
 
1208
- @property
1209
- @pulumi.getter(name="xrcKmsKeyId")
1210
- def xrc_kms_key_id(self) -> pulumi.Output[str]:
1211
- """
1212
- The OCID of the Vault service key which is the master encryption key for the 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).
1213
-
1214
-
1215
- ** IMPORTANT **
1216
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1217
- """
1218
- return pulumi.get(self, "xrc_kms_key_id")
1219
-
@@ -26,7 +26,7 @@ class GetBlockVolumeReplicaResult:
26
26
  """
27
27
  A collection of values returned by getBlockVolumeReplica.
28
28
  """
29
- def __init__(__self__, availability_domain=None, block_volume_id=None, block_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, kms_key_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
29
+ def __init__(__self__, availability_domain=None, block_volume_id=None, block_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
30
30
  if availability_domain and not isinstance(availability_domain, str):
31
31
  raise TypeError("Expected argument 'availability_domain' to be a str")
32
32
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -51,9 +51,6 @@ class GetBlockVolumeReplicaResult:
51
51
  if id and not isinstance(id, str):
52
52
  raise TypeError("Expected argument 'id' to be a str")
53
53
  pulumi.set(__self__, "id", id)
54
- if kms_key_id and not isinstance(kms_key_id, str):
55
- raise TypeError("Expected argument 'kms_key_id' to be a str")
56
- pulumi.set(__self__, "kms_key_id", kms_key_id)
57
54
  if size_in_gbs and not isinstance(size_in_gbs, str):
58
55
  raise TypeError("Expected argument 'size_in_gbs' to be a str")
59
56
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
@@ -131,14 +128,6 @@ class GetBlockVolumeReplicaResult:
131
128
  """
132
129
  return pulumi.get(self, "id")
133
130
 
134
- @property
135
- @pulumi.getter(name="kmsKeyId")
136
- def kms_key_id(self) -> str:
137
- """
138
- 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).
139
- """
140
- return pulumi.get(self, "kms_key_id")
141
-
142
131
  @property
143
132
  @pulumi.getter(name="sizeInGbs")
144
133
  def size_in_gbs(self) -> str:
@@ -191,7 +180,6 @@ class AwaitableGetBlockVolumeReplicaResult(GetBlockVolumeReplicaResult):
191
180
  display_name=self.display_name,
192
181
  freeform_tags=self.freeform_tags,
193
182
  id=self.id,
194
- kms_key_id=self.kms_key_id,
195
183
  size_in_gbs=self.size_in_gbs,
196
184
  state=self.state,
197
185
  time_created=self.time_created,
@@ -232,7 +220,6 @@ def get_block_volume_replica(block_volume_replica_id: Optional[str] = None,
232
220
  display_name=pulumi.get(__ret__, 'display_name'),
233
221
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
234
222
  id=pulumi.get(__ret__, 'id'),
235
- kms_key_id=pulumi.get(__ret__, 'kms_key_id'),
236
223
  size_in_gbs=pulumi.get(__ret__, 'size_in_gbs'),
237
224
  state=pulumi.get(__ret__, 'state'),
238
225
  time_created=pulumi.get(__ret__, 'time_created'),
@@ -270,7 +257,6 @@ def get_block_volume_replica_output(block_volume_replica_id: Optional[pulumi.Inp
270
257
  display_name=pulumi.get(__response__, 'display_name'),
271
258
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
272
259
  id=pulumi.get(__response__, 'id'),
273
- kms_key_id=pulumi.get(__response__, 'kms_key_id'),
274
260
  size_in_gbs=pulumi.get(__response__, 'size_in_gbs'),
275
261
  state=pulumi.get(__response__, 'state'),
276
262
  time_created=pulumi.get(__response__, 'time_created'),
@@ -27,7 +27,7 @@ class GetBootVolumeResult:
27
27
  """
28
28
  A collection of values returned by getBootVolume.
29
29
  """
30
- def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, boot_volume_id=None, boot_volume_replicas=None, boot_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_group_id=None, vpus_per_gb=None, xrc_kms_key_id=None):
30
+ def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, boot_volume_id=None, boot_volume_replicas=None, boot_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_group_id=None, vpus_per_gb=None):
31
31
  if auto_tuned_vpus_per_gb and not isinstance(auto_tuned_vpus_per_gb, str):
32
32
  raise TypeError("Expected argument 'auto_tuned_vpus_per_gb' to be a str")
33
33
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -103,9 +103,6 @@ class GetBootVolumeResult:
103
103
  if vpus_per_gb and not isinstance(vpus_per_gb, str):
104
104
  raise TypeError("Expected argument 'vpus_per_gb' to be a str")
105
105
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
106
- if xrc_kms_key_id and not isinstance(xrc_kms_key_id, str):
107
- raise TypeError("Expected argument 'xrc_kms_key_id' to be a str")
108
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
109
106
 
110
107
  @property
111
108
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -296,11 +293,6 @@ class GetBootVolumeResult:
296
293
  """
297
294
  return pulumi.get(self, "vpus_per_gb")
298
295
 
299
- @property
300
- @pulumi.getter(name="xrcKmsKeyId")
301
- def xrc_kms_key_id(self) -> str:
302
- return pulumi.get(self, "xrc_kms_key_id")
303
-
304
296
 
305
297
  class AwaitableGetBootVolumeResult(GetBootVolumeResult):
306
298
  # pylint: disable=using-constant-test
@@ -332,8 +324,7 @@ class AwaitableGetBootVolumeResult(GetBootVolumeResult):
332
324
  system_tags=self.system_tags,
333
325
  time_created=self.time_created,
334
326
  volume_group_id=self.volume_group_id,
335
- vpus_per_gb=self.vpus_per_gb,
336
- xrc_kms_key_id=self.xrc_kms_key_id)
327
+ vpus_per_gb=self.vpus_per_gb)
337
328
 
338
329
 
339
330
  def get_boot_volume(boot_volume_id: Optional[str] = None,
@@ -385,8 +376,7 @@ def get_boot_volume(boot_volume_id: Optional[str] = None,
385
376
  system_tags=pulumi.get(__ret__, 'system_tags'),
386
377
  time_created=pulumi.get(__ret__, 'time_created'),
387
378
  volume_group_id=pulumi.get(__ret__, 'volume_group_id'),
388
- vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'),
389
- xrc_kms_key_id=pulumi.get(__ret__, 'xrc_kms_key_id'))
379
+ vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'))
390
380
  def get_boot_volume_output(boot_volume_id: Optional[pulumi.Input[str]] = None,
391
381
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBootVolumeResult]:
392
382
  """
@@ -435,5 +425,4 @@ def get_boot_volume_output(boot_volume_id: Optional[pulumi.Input[str]] = None,
435
425
  system_tags=pulumi.get(__response__, 'system_tags'),
436
426
  time_created=pulumi.get(__response__, 'time_created'),
437
427
  volume_group_id=pulumi.get(__response__, 'volume_group_id'),
438
- vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb'),
439
- xrc_kms_key_id=pulumi.get(__response__, 'xrc_kms_key_id')))
428
+ vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb')))
@@ -26,7 +26,7 @@ class GetBootVolumeReplicaResult:
26
26
  """
27
27
  A collection of values returned by getBootVolumeReplica.
28
28
  """
29
- def __init__(__self__, availability_domain=None, boot_volume_id=None, boot_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, kms_key_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
29
+ def __init__(__self__, availability_domain=None, boot_volume_id=None, boot_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
30
30
  if availability_domain and not isinstance(availability_domain, str):
31
31
  raise TypeError("Expected argument 'availability_domain' to be a str")
32
32
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -54,9 +54,6 @@ class GetBootVolumeReplicaResult:
54
54
  if image_id and not isinstance(image_id, str):
55
55
  raise TypeError("Expected argument 'image_id' to be a str")
56
56
  pulumi.set(__self__, "image_id", image_id)
57
- if kms_key_id and not isinstance(kms_key_id, str):
58
- raise TypeError("Expected argument 'kms_key_id' to be a str")
59
- pulumi.set(__self__, "kms_key_id", kms_key_id)
60
57
  if size_in_gbs and not isinstance(size_in_gbs, str):
61
58
  raise TypeError("Expected argument 'size_in_gbs' to be a str")
62
59
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
@@ -142,14 +139,6 @@ class GetBootVolumeReplicaResult:
142
139
  """
143
140
  return pulumi.get(self, "image_id")
144
141
 
145
- @property
146
- @pulumi.getter(name="kmsKeyId")
147
- def kms_key_id(self) -> str:
148
- """
149
- 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).
150
- """
151
- return pulumi.get(self, "kms_key_id")
152
-
153
142
  @property
154
143
  @pulumi.getter(name="sizeInGbs")
155
144
  def size_in_gbs(self) -> str:
@@ -203,7 +192,6 @@ class AwaitableGetBootVolumeReplicaResult(GetBootVolumeReplicaResult):
203
192
  freeform_tags=self.freeform_tags,
204
193
  id=self.id,
205
194
  image_id=self.image_id,
206
- kms_key_id=self.kms_key_id,
207
195
  size_in_gbs=self.size_in_gbs,
208
196
  state=self.state,
209
197
  time_created=self.time_created,
@@ -245,7 +233,6 @@ def get_boot_volume_replica(boot_volume_replica_id: Optional[str] = None,
245
233
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
246
234
  id=pulumi.get(__ret__, 'id'),
247
235
  image_id=pulumi.get(__ret__, 'image_id'),
248
- kms_key_id=pulumi.get(__ret__, 'kms_key_id'),
249
236
  size_in_gbs=pulumi.get(__ret__, 'size_in_gbs'),
250
237
  state=pulumi.get(__ret__, 'state'),
251
238
  time_created=pulumi.get(__ret__, 'time_created'),
@@ -284,7 +271,6 @@ def get_boot_volume_replica_output(boot_volume_replica_id: Optional[pulumi.Input
284
271
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
285
272
  id=pulumi.get(__response__, 'id'),
286
273
  image_id=pulumi.get(__response__, 'image_id'),
287
- kms_key_id=pulumi.get(__response__, 'kms_key_id'),
288
274
  size_in_gbs=pulumi.get(__response__, 'size_in_gbs'),
289
275
  state=pulumi.get(__response__, 'state'),
290
276
  time_created=pulumi.get(__response__, 'time_created'),
@@ -27,7 +27,7 @@ class GetVolumeResult:
27
27
  """
28
28
  A collection of values returned by getVolume.
29
29
  """
30
- def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, block_volume_replicas=None, block_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_backup_id=None, volume_group_id=None, volume_id=None, vpus_per_gb=None, xrc_kms_key_id=None):
30
+ def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, block_volume_replicas=None, block_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_backup_id=None, volume_group_id=None, volume_id=None, vpus_per_gb=None):
31
31
  if auto_tuned_vpus_per_gb and not isinstance(auto_tuned_vpus_per_gb, str):
32
32
  raise TypeError("Expected argument 'auto_tuned_vpus_per_gb' to be a str")
33
33
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -103,9 +103,6 @@ class GetVolumeResult:
103
103
  if vpus_per_gb and not isinstance(vpus_per_gb, str):
104
104
  raise TypeError("Expected argument 'vpus_per_gb' to be a str")
105
105
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
106
- if xrc_kms_key_id and not isinstance(xrc_kms_key_id, str):
107
- raise TypeError("Expected argument 'xrc_kms_key_id' to be a str")
108
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
109
106
 
110
107
  @property
111
108
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -242,9 +239,6 @@ class GetVolumeResult:
242
239
  @property
243
240
  @pulumi.getter(name="sourceDetails")
244
241
  def source_details(self) -> Sequence['outputs.GetVolumeSourceDetailResult']:
245
- """
246
- 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.
247
- """
248
242
  return pulumi.get(self, "source_details")
249
243
 
250
244
  @property
@@ -297,11 +291,6 @@ class GetVolumeResult:
297
291
  """
298
292
  return pulumi.get(self, "vpus_per_gb")
299
293
 
300
- @property
301
- @pulumi.getter(name="xrcKmsKeyId")
302
- def xrc_kms_key_id(self) -> str:
303
- return pulumi.get(self, "xrc_kms_key_id")
304
-
305
294
 
306
295
  class AwaitableGetVolumeResult(GetVolumeResult):
307
296
  # pylint: disable=using-constant-test
@@ -333,8 +322,7 @@ class AwaitableGetVolumeResult(GetVolumeResult):
333
322
  volume_backup_id=self.volume_backup_id,
334
323
  volume_group_id=self.volume_group_id,
335
324
  volume_id=self.volume_id,
336
- vpus_per_gb=self.vpus_per_gb,
337
- xrc_kms_key_id=self.xrc_kms_key_id)
325
+ vpus_per_gb=self.vpus_per_gb)
338
326
 
339
327
 
340
328
  def get_volume(volume_id: Optional[str] = None,
@@ -386,8 +374,7 @@ def get_volume(volume_id: Optional[str] = None,
386
374
  volume_backup_id=pulumi.get(__ret__, 'volume_backup_id'),
387
375
  volume_group_id=pulumi.get(__ret__, 'volume_group_id'),
388
376
  volume_id=pulumi.get(__ret__, 'volume_id'),
389
- vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'),
390
- xrc_kms_key_id=pulumi.get(__ret__, 'xrc_kms_key_id'))
377
+ vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'))
391
378
  def get_volume_output(volume_id: Optional[pulumi.Input[str]] = None,
392
379
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVolumeResult]:
393
380
  """
@@ -436,5 +423,4 @@ def get_volume_output(volume_id: Optional[pulumi.Input[str]] = None,
436
423
  volume_backup_id=pulumi.get(__response__, 'volume_backup_id'),
437
424
  volume_group_id=pulumi.get(__response__, 'volume_group_id'),
438
425
  volume_id=pulumi.get(__response__, 'volume_id'),
439
- vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb'),
440
- xrc_kms_key_id=pulumi.get(__response__, 'xrc_kms_key_id')))
426
+ vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb')))
@@ -411,7 +411,6 @@ class InstanceConfiguration(pulumi.CustomResource):
411
411
  "id": instance_configuration_instance_details_block_volumes_create_details_source_details_id,
412
412
  },
413
413
  "vpus_per_gb": instance_configuration_instance_details_block_volumes_create_details_vpus_per_gb,
414
- "xrc_kms_key_id": test_key["id"],
415
414
  },
416
415
  "volume_id": test_volume["id"],
417
416
  }],
@@ -559,7 +558,6 @@ class InstanceConfiguration(pulumi.CustomResource):
559
558
  "id": instance_configuration_instance_details_options_block_volumes_create_details_source_details_id,
560
559
  },
561
560
  "vpus_per_gb": instance_configuration_instance_details_options_block_volumes_create_details_vpus_per_gb,
562
- "xrc_kms_key_id": test_key["id"],
563
561
  },
564
562
  "volume_id": test_volume["id"],
565
563
  }],
@@ -821,7 +819,6 @@ class InstanceConfiguration(pulumi.CustomResource):
821
819
  "id": instance_configuration_instance_details_block_volumes_create_details_source_details_id,
822
820
  },
823
821
  "vpus_per_gb": instance_configuration_instance_details_block_volumes_create_details_vpus_per_gb,
824
- "xrc_kms_key_id": test_key["id"],
825
822
  },
826
823
  "volume_id": test_volume["id"],
827
824
  }],
@@ -969,7 +966,6 @@ class InstanceConfiguration(pulumi.CustomResource):
969
966
  "id": instance_configuration_instance_details_options_block_volumes_create_details_source_details_id,
970
967
  },
971
968
  "vpus_per_gb": instance_configuration_instance_details_options_block_volumes_create_details_vpus_per_gb,
972
- "xrc_kms_key_id": test_key["id"],
973
969
  },
974
970
  "volume_id": test_volume["id"],
975
971
  }],