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
pulumi_oci/core/volume.py CHANGED
@@ -37,8 +37,7 @@ class VolumeArgs:
37
37
  size_in_mbs: Optional[pulumi.Input[str]] = None,
38
38
  source_details: Optional[pulumi.Input['VolumeSourceDetailsArgs']] = None,
39
39
  volume_backup_id: Optional[pulumi.Input[str]] = None,
40
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
41
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
40
+ vpus_per_gb: Optional[pulumi.Input[str]] = None):
42
41
  """
43
42
  The set of arguments for constructing a Volume resource.
44
43
  :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`
@@ -53,17 +52,11 @@ class VolumeArgs:
53
52
  :param pulumi.Input[bool] is_auto_tune_enabled: (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
54
53
  :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.
55
54
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
56
- :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
57
- :param pulumi.Input['VolumeSourceDetailsArgs'] 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.
55
+ :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
58
56
  :param pulumi.Input[str] volume_backup_id: The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
59
57
  :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.
60
58
 
61
59
  Allowed values:
62
- :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).
63
-
64
-
65
- ** IMPORTANT **
66
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
67
60
  """
68
61
  pulumi.set(__self__, "availability_domain", availability_domain)
69
62
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -103,8 +96,6 @@ class VolumeArgs:
103
96
  pulumi.set(__self__, "volume_backup_id", volume_backup_id)
104
97
  if vpus_per_gb is not None:
105
98
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
106
- if xrc_kms_key_id is not None:
107
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
108
99
 
109
100
  @property
110
101
  @pulumi.getter(name="availabilityDomain")
@@ -265,7 +256,7 @@ class VolumeArgs:
265
256
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
266
257
  def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
267
258
  """
268
- The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
259
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
269
260
  """
270
261
  return pulumi.get(self, "size_in_mbs")
271
262
 
@@ -276,9 +267,6 @@ class VolumeArgs:
276
267
  @property
277
268
  @pulumi.getter(name="sourceDetails")
278
269
  def source_details(self) -> Optional[pulumi.Input['VolumeSourceDetailsArgs']]:
279
- """
280
- 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.
281
- """
282
270
  return pulumi.get(self, "source_details")
283
271
 
284
272
  @source_details.setter
@@ -311,22 +299,6 @@ class VolumeArgs:
311
299
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
312
300
  pulumi.set(self, "vpus_per_gb", value)
313
301
 
314
- @property
315
- @pulumi.getter(name="xrcKmsKeyId")
316
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
317
- """
318
- 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).
319
-
320
-
321
- ** IMPORTANT **
322
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
323
- """
324
- return pulumi.get(self, "xrc_kms_key_id")
325
-
326
- @xrc_kms_key_id.setter
327
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
328
- pulumi.set(self, "xrc_kms_key_id", value)
329
-
330
302
 
331
303
  @pulumi.input_type
332
304
  class _VolumeState:
@@ -353,8 +325,7 @@ class _VolumeState:
353
325
  time_created: Optional[pulumi.Input[str]] = None,
354
326
  volume_backup_id: Optional[pulumi.Input[str]] = None,
355
327
  volume_group_id: Optional[pulumi.Input[str]] = None,
356
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
357
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
328
+ vpus_per_gb: Optional[pulumi.Input[str]] = None):
358
329
  """
359
330
  Input properties used for looking up and filtering Volume resources.
360
331
  :param pulumi.Input[str] auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this volume is effectively tuned to.
@@ -371,8 +342,7 @@ class _VolumeState:
371
342
  :param pulumi.Input[bool] is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
372
343
  :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.
373
344
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
374
- :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
375
- :param pulumi.Input['VolumeSourceDetailsArgs'] 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.
345
+ :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
376
346
  :param pulumi.Input[str] state: The current state of a volume.
377
347
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
378
348
  :param pulumi.Input[str] time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -381,11 +351,6 @@ class _VolumeState:
381
351
  :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.
382
352
 
383
353
  Allowed values:
384
- :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).
385
-
386
-
387
- ** IMPORTANT **
388
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
389
354
  """
390
355
  if auto_tuned_vpus_per_gb is not None:
391
356
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -439,8 +404,6 @@ class _VolumeState:
439
404
  pulumi.set(__self__, "volume_group_id", volume_group_id)
440
405
  if vpus_per_gb is not None:
441
406
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
442
- if xrc_kms_key_id is not None:
443
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
444
407
 
445
408
  @property
446
409
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -625,7 +588,7 @@ class _VolumeState:
625
588
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
626
589
  def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
627
590
  """
628
- The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
591
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
629
592
  """
630
593
  return pulumi.get(self, "size_in_mbs")
631
594
 
@@ -636,9 +599,6 @@ class _VolumeState:
636
599
  @property
637
600
  @pulumi.getter(name="sourceDetails")
638
601
  def source_details(self) -> Optional[pulumi.Input['VolumeSourceDetailsArgs']]:
639
- """
640
- 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.
641
- """
642
602
  return pulumi.get(self, "source_details")
643
603
 
644
604
  @source_details.setter
@@ -719,22 +679,6 @@ class _VolumeState:
719
679
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
720
680
  pulumi.set(self, "vpus_per_gb", value)
721
681
 
722
- @property
723
- @pulumi.getter(name="xrcKmsKeyId")
724
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
725
- """
726
- 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).
727
-
728
-
729
- ** IMPORTANT **
730
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
731
- """
732
- return pulumi.get(self, "xrc_kms_key_id")
733
-
734
- @xrc_kms_key_id.setter
735
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
736
- pulumi.set(self, "xrc_kms_key_id", value)
737
-
738
682
 
739
683
  class Volume(pulumi.CustomResource):
740
684
  @overload
@@ -758,7 +702,6 @@ class Volume(pulumi.CustomResource):
758
702
  source_details: Optional[pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']]] = None,
759
703
  volume_backup_id: Optional[pulumi.Input[str]] = None,
760
704
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
761
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
762
705
  __props__=None):
763
706
  """
764
707
  This resource provides the Volume resource in Oracle Cloud Infrastructure Core service.
@@ -795,7 +738,6 @@ class Volume(pulumi.CustomResource):
795
738
  block_volume_replicas=[{
796
739
  "availability_domain": volume_block_volume_replicas_availability_domain,
797
740
  "display_name": volume_block_volume_replicas_display_name,
798
- "xrr_kms_key_id": test_key["id"],
799
741
  }],
800
742
  cluster_placement_group_id=test_group["id"],
801
743
  defined_tags={
@@ -810,14 +752,10 @@ class Volume(pulumi.CustomResource):
810
752
  size_in_gbs=volume_size_in_gbs,
811
753
  size_in_mbs=volume_size_in_mbs,
812
754
  source_details={
813
- "type": volume_source_details_type,
814
- "change_block_size_in_bytes": volume_source_details_change_block_size_in_bytes,
815
- "first_backup_id": test_backup["id"],
816
755
  "id": volume_source_details_id,
817
- "second_backup_id": test_backup["id"],
756
+ "type": volume_source_details_type,
818
757
  },
819
758
  vpus_per_gb=volume_vpus_per_gb,
820
- xrc_kms_key_id=test_key["id"],
821
759
  block_volume_replicas_deletion=True)
822
760
  ```
823
761
 
@@ -843,17 +781,11 @@ class Volume(pulumi.CustomResource):
843
781
  :param pulumi.Input[bool] is_auto_tune_enabled: (Updatable) Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
844
782
  :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.
845
783
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
846
- :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
847
- :param pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']] 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.
784
+ :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
848
785
  :param pulumi.Input[str] volume_backup_id: The OCID of the volume backup from which the data should be restored on the newly created volume. This field is deprecated. Use the sourceDetails field instead to specify the backup for the volume.
849
786
  :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.
850
787
 
851
788
  Allowed values:
852
- :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).
853
-
854
-
855
- ** IMPORTANT **
856
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
857
789
  """
858
790
  ...
859
791
  @overload
@@ -896,7 +828,6 @@ class Volume(pulumi.CustomResource):
896
828
  block_volume_replicas=[{
897
829
  "availability_domain": volume_block_volume_replicas_availability_domain,
898
830
  "display_name": volume_block_volume_replicas_display_name,
899
- "xrr_kms_key_id": test_key["id"],
900
831
  }],
901
832
  cluster_placement_group_id=test_group["id"],
902
833
  defined_tags={
@@ -911,14 +842,10 @@ class Volume(pulumi.CustomResource):
911
842
  size_in_gbs=volume_size_in_gbs,
912
843
  size_in_mbs=volume_size_in_mbs,
913
844
  source_details={
914
- "type": volume_source_details_type,
915
- "change_block_size_in_bytes": volume_source_details_change_block_size_in_bytes,
916
- "first_backup_id": test_backup["id"],
917
845
  "id": volume_source_details_id,
918
- "second_backup_id": test_backup["id"],
846
+ "type": volume_source_details_type,
919
847
  },
920
848
  vpus_per_gb=volume_vpus_per_gb,
921
- xrc_kms_key_id=test_key["id"],
922
849
  block_volume_replicas_deletion=True)
923
850
  ```
924
851
 
@@ -962,7 +889,6 @@ class Volume(pulumi.CustomResource):
962
889
  source_details: Optional[pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']]] = None,
963
890
  volume_backup_id: Optional[pulumi.Input[str]] = None,
964
891
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
965
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
966
892
  __props__=None):
967
893
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
968
894
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -993,7 +919,6 @@ class Volume(pulumi.CustomResource):
993
919
  __props__.__dict__["source_details"] = source_details
994
920
  __props__.__dict__["volume_backup_id"] = volume_backup_id
995
921
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
996
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
997
922
  __props__.__dict__["auto_tuned_vpus_per_gb"] = None
998
923
  __props__.__dict__["is_hydrated"] = None
999
924
  __props__.__dict__["state"] = None
@@ -1032,8 +957,7 @@ class Volume(pulumi.CustomResource):
1032
957
  time_created: Optional[pulumi.Input[str]] = None,
1033
958
  volume_backup_id: Optional[pulumi.Input[str]] = None,
1034
959
  volume_group_id: Optional[pulumi.Input[str]] = None,
1035
- vpus_per_gb: Optional[pulumi.Input[str]] = None,
1036
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'Volume':
960
+ vpus_per_gb: Optional[pulumi.Input[str]] = None) -> 'Volume':
1037
961
  """
1038
962
  Get an existing Volume resource's state with the given name, id, and optional extra
1039
963
  properties used to qualify the lookup.
@@ -1055,8 +979,7 @@ class Volume(pulumi.CustomResource):
1055
979
  :param pulumi.Input[bool] is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
1056
980
  :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.
1057
981
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
1058
- :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
1059
- :param pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']] 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.
982
+ :param pulumi.Input[str] size_in_mbs: The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
1060
983
  :param pulumi.Input[str] state: The current state of a volume.
1061
984
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1062
985
  :param pulumi.Input[str] time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -1065,11 +988,6 @@ class Volume(pulumi.CustomResource):
1065
988
  :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.
1066
989
 
1067
990
  Allowed values:
1068
- :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).
1069
-
1070
-
1071
- ** IMPORTANT **
1072
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1073
991
  """
1074
992
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1075
993
 
@@ -1098,7 +1016,6 @@ class Volume(pulumi.CustomResource):
1098
1016
  __props__.__dict__["volume_backup_id"] = volume_backup_id
1099
1017
  __props__.__dict__["volume_group_id"] = volume_group_id
1100
1018
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
1101
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
1102
1019
  return Volume(resource_name, opts=opts, __props__=__props__)
1103
1020
 
1104
1021
  @property
@@ -1224,16 +1141,13 @@ class Volume(pulumi.CustomResource):
1224
1141
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
1225
1142
  def size_in_mbs(self) -> pulumi.Output[str]:
1226
1143
  """
1227
- The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
1144
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use `size_in_gbs` instead.
1228
1145
  """
1229
1146
  return pulumi.get(self, "size_in_mbs")
1230
1147
 
1231
1148
  @property
1232
1149
  @pulumi.getter(name="sourceDetails")
1233
1150
  def source_details(self) -> pulumi.Output['outputs.VolumeSourceDetails']:
1234
- """
1235
- 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.
1236
- """
1237
1151
  return pulumi.get(self, "source_details")
1238
1152
 
1239
1153
  @property
@@ -1286,15 +1200,3 @@ class Volume(pulumi.CustomResource):
1286
1200
  """
1287
1201
  return pulumi.get(self, "vpus_per_gb")
1288
1202
 
1289
- @property
1290
- @pulumi.getter(name="xrcKmsKeyId")
1291
- def xrc_kms_key_id(self) -> pulumi.Output[str]:
1292
- """
1293
- 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).
1294
-
1295
-
1296
- ** IMPORTANT **
1297
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1298
- """
1299
- return pulumi.get(self, "xrc_kms_key_id")
1300
-
@@ -20,13 +20,11 @@ __all__ = ['VolumeBackupPolicyAssignmentArgs', 'VolumeBackupPolicyAssignment']
20
20
  class VolumeBackupPolicyAssignmentArgs:
21
21
  def __init__(__self__, *,
22
22
  asset_id: pulumi.Input[str],
23
- policy_id: pulumi.Input[str],
24
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
23
+ policy_id: pulumi.Input[str]):
25
24
  """
26
25
  The set of arguments for constructing a VolumeBackupPolicyAssignment resource.
27
26
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
28
27
  :param pulumi.Input[str] policy_id: The OCID of the volume backup policy to assign to the volume.
29
- :param pulumi.Input[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).
30
28
 
31
29
 
32
30
  ** IMPORTANT **
@@ -34,8 +32,6 @@ class VolumeBackupPolicyAssignmentArgs:
34
32
  """
35
33
  pulumi.set(__self__, "asset_id", asset_id)
36
34
  pulumi.set(__self__, "policy_id", policy_id)
37
- if xrc_kms_key_id is not None:
38
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
39
35
 
40
36
  @property
41
37
  @pulumi.getter(name="assetId")
@@ -54,28 +50,16 @@ class VolumeBackupPolicyAssignmentArgs:
54
50
  def policy_id(self) -> pulumi.Input[str]:
55
51
  """
56
52
  The OCID of the volume backup policy to assign to the volume.
57
- """
58
- return pulumi.get(self, "policy_id")
59
-
60
- @policy_id.setter
61
- def policy_id(self, value: pulumi.Input[str]):
62
- pulumi.set(self, "policy_id", value)
63
-
64
- @property
65
- @pulumi.getter(name="xrcKmsKeyId")
66
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
67
- """
68
- 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).
69
53
 
70
54
 
71
55
  ** IMPORTANT **
72
56
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
73
57
  """
74
- return pulumi.get(self, "xrc_kms_key_id")
58
+ return pulumi.get(self, "policy_id")
75
59
 
76
- @xrc_kms_key_id.setter
77
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
78
- pulumi.set(self, "xrc_kms_key_id", value)
60
+ @policy_id.setter
61
+ def policy_id(self, value: pulumi.Input[str]):
62
+ pulumi.set(self, "policy_id", value)
79
63
 
80
64
 
81
65
  @pulumi.input_type
@@ -83,18 +67,16 @@ class _VolumeBackupPolicyAssignmentState:
83
67
  def __init__(__self__, *,
84
68
  asset_id: Optional[pulumi.Input[str]] = None,
85
69
  policy_id: Optional[pulumi.Input[str]] = None,
86
- time_created: Optional[pulumi.Input[str]] = None,
87
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
70
+ time_created: Optional[pulumi.Input[str]] = None):
88
71
  """
89
72
  Input properties used for looking up and filtering VolumeBackupPolicyAssignment resources.
90
73
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
91
74
  :param pulumi.Input[str] policy_id: The OCID of the volume backup policy to assign to the volume.
92
- :param pulumi.Input[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).
93
- :param pulumi.Input[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).
94
75
 
95
76
 
96
77
  ** IMPORTANT **
97
78
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
79
+ :param pulumi.Input[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).
98
80
  """
99
81
  if asset_id is not None:
100
82
  pulumi.set(__self__, "asset_id", asset_id)
@@ -102,8 +84,6 @@ class _VolumeBackupPolicyAssignmentState:
102
84
  pulumi.set(__self__, "policy_id", policy_id)
103
85
  if time_created is not None:
104
86
  pulumi.set(__self__, "time_created", time_created)
105
- if xrc_kms_key_id is not None:
106
- pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
107
87
 
108
88
  @property
109
89
  @pulumi.getter(name="assetId")
@@ -122,6 +102,10 @@ class _VolumeBackupPolicyAssignmentState:
122
102
  def policy_id(self) -> Optional[pulumi.Input[str]]:
123
103
  """
124
104
  The OCID of the volume backup policy to assign to the volume.
105
+
106
+
107
+ ** IMPORTANT **
108
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
125
109
  """
126
110
  return pulumi.get(self, "policy_id")
127
111
 
@@ -141,22 +125,6 @@ class _VolumeBackupPolicyAssignmentState:
141
125
  def time_created(self, value: Optional[pulumi.Input[str]]):
142
126
  pulumi.set(self, "time_created", value)
143
127
 
144
- @property
145
- @pulumi.getter(name="xrcKmsKeyId")
146
- def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
147
- """
148
- 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).
149
-
150
-
151
- ** IMPORTANT **
152
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
153
- """
154
- return pulumi.get(self, "xrc_kms_key_id")
155
-
156
- @xrc_kms_key_id.setter
157
- def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
158
- pulumi.set(self, "xrc_kms_key_id", value)
159
-
160
128
 
161
129
  class VolumeBackupPolicyAssignment(pulumi.CustomResource):
162
130
  @overload
@@ -165,7 +133,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
165
133
  opts: Optional[pulumi.ResourceOptions] = None,
166
134
  asset_id: Optional[pulumi.Input[str]] = None,
167
135
  policy_id: Optional[pulumi.Input[str]] = None,
168
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
169
136
  __props__=None):
170
137
  """
171
138
  This resource provides the Volume Backup Policy Assignment resource in Oracle Cloud Infrastructure Core service.
@@ -182,8 +149,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
182
149
 
183
150
  test_volume_backup_policy_assignment = oci.core.VolumeBackupPolicyAssignment("test_volume_backup_policy_assignment",
184
151
  asset_id=test_volume["id"],
185
- policy_id=test_volume_backup_policy["id"],
186
- xrc_kms_key_id=test_key["id"])
152
+ policy_id=test_volume_backup_policy["id"])
187
153
  ```
188
154
 
189
155
  ## Import
@@ -198,7 +164,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
198
164
  :param pulumi.ResourceOptions opts: Options for the resource.
199
165
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
200
166
  :param pulumi.Input[str] policy_id: The OCID of the volume backup policy to assign to the volume.
201
- :param pulumi.Input[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).
202
167
 
203
168
 
204
169
  ** IMPORTANT **
@@ -225,8 +190,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
225
190
 
226
191
  test_volume_backup_policy_assignment = oci.core.VolumeBackupPolicyAssignment("test_volume_backup_policy_assignment",
227
192
  asset_id=test_volume["id"],
228
- policy_id=test_volume_backup_policy["id"],
229
- xrc_kms_key_id=test_key["id"])
193
+ policy_id=test_volume_backup_policy["id"])
230
194
  ```
231
195
 
232
196
  ## Import
@@ -254,7 +218,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
254
218
  opts: Optional[pulumi.ResourceOptions] = None,
255
219
  asset_id: Optional[pulumi.Input[str]] = None,
256
220
  policy_id: Optional[pulumi.Input[str]] = None,
257
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
258
221
  __props__=None):
259
222
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
260
223
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -270,7 +233,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
270
233
  if policy_id is None and not opts.urn:
271
234
  raise TypeError("Missing required property 'policy_id'")
272
235
  __props__.__dict__["policy_id"] = policy_id
273
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
274
236
  __props__.__dict__["time_created"] = None
275
237
  super(VolumeBackupPolicyAssignment, __self__).__init__(
276
238
  'oci:Core/volumeBackupPolicyAssignment:VolumeBackupPolicyAssignment',
@@ -284,8 +246,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
284
246
  opts: Optional[pulumi.ResourceOptions] = None,
285
247
  asset_id: Optional[pulumi.Input[str]] = None,
286
248
  policy_id: Optional[pulumi.Input[str]] = None,
287
- time_created: Optional[pulumi.Input[str]] = None,
288
- xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'VolumeBackupPolicyAssignment':
249
+ time_created: Optional[pulumi.Input[str]] = None) -> 'VolumeBackupPolicyAssignment':
289
250
  """
290
251
  Get an existing VolumeBackupPolicyAssignment resource's state with the given name, id, and optional extra
291
252
  properties used to qualify the lookup.
@@ -295,12 +256,11 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
295
256
  :param pulumi.ResourceOptions opts: Options for the resource.
296
257
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
297
258
  :param pulumi.Input[str] policy_id: The OCID of the volume backup policy to assign to the volume.
298
- :param pulumi.Input[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).
299
- :param pulumi.Input[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).
300
259
 
301
260
 
302
261
  ** IMPORTANT **
303
262
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
263
+ :param pulumi.Input[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).
304
264
  """
305
265
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
306
266
 
@@ -309,7 +269,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
309
269
  __props__.__dict__["asset_id"] = asset_id
310
270
  __props__.__dict__["policy_id"] = policy_id
311
271
  __props__.__dict__["time_created"] = time_created
312
- __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
313
272
  return VolumeBackupPolicyAssignment(resource_name, opts=opts, __props__=__props__)
314
273
 
315
274
  @property
@@ -325,6 +284,10 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
325
284
  def policy_id(self) -> pulumi.Output[str]:
326
285
  """
327
286
  The OCID of the volume backup policy to assign to the volume.
287
+
288
+
289
+ ** IMPORTANT **
290
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
328
291
  """
329
292
  return pulumi.get(self, "policy_id")
330
293
 
@@ -336,15 +299,3 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
336
299
  """
337
300
  return pulumi.get(self, "time_created")
338
301
 
339
- @property
340
- @pulumi.getter(name="xrcKmsKeyId")
341
- def xrc_kms_key_id(self) -> pulumi.Output[str]:
342
- """
343
- 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).
344
-
345
-
346
- ** IMPORTANT **
347
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
348
- """
349
- return pulumi.get(self, "xrc_kms_key_id")
350
-