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
@@ -370,7 +370,8 @@ class _VirtualCircuitState:
370
370
  service_type: Optional[pulumi.Input[str]] = None,
371
371
  state: Optional[pulumi.Input[str]] = None,
372
372
  time_created: Optional[pulumi.Input[str]] = None,
373
- type: Optional[pulumi.Input[str]] = None):
373
+ type: Optional[pulumi.Input[str]] = None,
374
+ virtual_circuit_redundancy_metadatas: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]]] = None):
374
375
  """
375
376
  Input properties used for looking up and filtering VirtualCircuit resources.
376
377
  :param pulumi.Input[str] bandwidth_shape_name: (Updatable) The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see [ListFastConnectProviderServiceVirtualCircuitBandwidthShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/FastConnectProviderService/ListFastConnectProviderVirtualCircuitBandwidthShapes). Example: `10 Gbps`
@@ -405,6 +406,7 @@ class _VirtualCircuitState:
405
406
 
406
407
  ** IMPORTANT **
407
408
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
409
+ :param pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]] virtual_circuit_redundancy_metadatas: Redundancy level details of the virtual circuit
408
410
  """
409
411
  if bandwidth_shape_name is not None:
410
412
  pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
@@ -468,6 +470,8 @@ class _VirtualCircuitState:
468
470
  pulumi.set(__self__, "time_created", time_created)
469
471
  if type is not None:
470
472
  pulumi.set(__self__, "type", type)
473
+ if virtual_circuit_redundancy_metadatas is not None:
474
+ pulumi.set(__self__, "virtual_circuit_redundancy_metadatas", virtual_circuit_redundancy_metadatas)
471
475
 
472
476
  @property
473
477
  @pulumi.getter(name="bandwidthShapeName")
@@ -811,6 +815,18 @@ class _VirtualCircuitState:
811
815
  def type(self, value: Optional[pulumi.Input[str]]):
812
816
  pulumi.set(self, "type", value)
813
817
 
818
+ @property
819
+ @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
820
+ def virtual_circuit_redundancy_metadatas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]]]:
821
+ """
822
+ Redundancy level details of the virtual circuit
823
+ """
824
+ return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
825
+
826
+ @virtual_circuit_redundancy_metadatas.setter
827
+ def virtual_circuit_redundancy_metadatas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualCircuitVirtualCircuitRedundancyMetadataArgs']]]]):
828
+ pulumi.set(self, "virtual_circuit_redundancy_metadatas", value)
829
+
814
830
 
815
831
  class VirtualCircuit(pulumi.CustomResource):
816
832
  @overload
@@ -1094,6 +1110,7 @@ class VirtualCircuit(pulumi.CustomResource):
1094
1110
  __props__.__dict__["service_type"] = None
1095
1111
  __props__.__dict__["state"] = None
1096
1112
  __props__.__dict__["time_created"] = None
1113
+ __props__.__dict__["virtual_circuit_redundancy_metadatas"] = None
1097
1114
  super(VirtualCircuit, __self__).__init__(
1098
1115
  'oci:Core/virtualCircuit:VirtualCircuit',
1099
1116
  resource_name,
@@ -1131,7 +1148,8 @@ class VirtualCircuit(pulumi.CustomResource):
1131
1148
  service_type: Optional[pulumi.Input[str]] = None,
1132
1149
  state: Optional[pulumi.Input[str]] = None,
1133
1150
  time_created: Optional[pulumi.Input[str]] = None,
1134
- type: Optional[pulumi.Input[str]] = None) -> 'VirtualCircuit':
1151
+ type: Optional[pulumi.Input[str]] = None,
1152
+ virtual_circuit_redundancy_metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]]] = None) -> 'VirtualCircuit':
1135
1153
  """
1136
1154
  Get an existing VirtualCircuit resource's state with the given name, id, and optional extra
1137
1155
  properties used to qualify the lookup.
@@ -1171,6 +1189,7 @@ class VirtualCircuit(pulumi.CustomResource):
1171
1189
 
1172
1190
  ** IMPORTANT **
1173
1191
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1192
+ :param pulumi.Input[Sequence[pulumi.Input[Union['VirtualCircuitVirtualCircuitRedundancyMetadataArgs', 'VirtualCircuitVirtualCircuitRedundancyMetadataArgsDict']]]] virtual_circuit_redundancy_metadatas: Redundancy level details of the virtual circuit
1174
1193
  """
1175
1194
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1176
1195
 
@@ -1204,6 +1223,7 @@ class VirtualCircuit(pulumi.CustomResource):
1204
1223
  __props__.__dict__["state"] = state
1205
1224
  __props__.__dict__["time_created"] = time_created
1206
1225
  __props__.__dict__["type"] = type
1226
+ __props__.__dict__["virtual_circuit_redundancy_metadatas"] = virtual_circuit_redundancy_metadatas
1207
1227
  return VirtualCircuit(resource_name, opts=opts, __props__=__props__)
1208
1228
 
1209
1229
  @property
@@ -1436,3 +1456,11 @@ class VirtualCircuit(pulumi.CustomResource):
1436
1456
  """
1437
1457
  return pulumi.get(self, "type")
1438
1458
 
1459
+ @property
1460
+ @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
1461
+ def virtual_circuit_redundancy_metadatas(self) -> pulumi.Output[Sequence['outputs.VirtualCircuitVirtualCircuitRedundancyMetadata']]:
1462
+ """
1463
+ Redundancy level details of the virtual circuit
1464
+ """
1465
+ return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
1466
+
pulumi_oci/core/volume.py CHANGED
@@ -37,7 +37,8 @@ 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):
40
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
41
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
41
42
  """
42
43
  The set of arguments for constructing a Volume resource.
43
44
  :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`
@@ -52,11 +53,17 @@ class VolumeArgs:
52
53
  :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.
53
54
  :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.
54
55
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
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.
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.
56
58
  :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.
57
59
  :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.
58
60
 
59
61
  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
60
67
  """
61
68
  pulumi.set(__self__, "availability_domain", availability_domain)
62
69
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -96,6 +103,8 @@ class VolumeArgs:
96
103
  pulumi.set(__self__, "volume_backup_id", volume_backup_id)
97
104
  if vpus_per_gb is not None:
98
105
  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)
99
108
 
100
109
  @property
101
110
  @pulumi.getter(name="availabilityDomain")
@@ -256,7 +265,7 @@ class VolumeArgs:
256
265
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
257
266
  def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
258
267
  """
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.
268
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
260
269
  """
261
270
  return pulumi.get(self, "size_in_mbs")
262
271
 
@@ -267,6 +276,9 @@ class VolumeArgs:
267
276
  @property
268
277
  @pulumi.getter(name="sourceDetails")
269
278
  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
+ """
270
282
  return pulumi.get(self, "source_details")
271
283
 
272
284
  @source_details.setter
@@ -299,6 +311,22 @@ class VolumeArgs:
299
311
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
300
312
  pulumi.set(self, "vpus_per_gb", value)
301
313
 
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
+
302
330
 
303
331
  @pulumi.input_type
304
332
  class _VolumeState:
@@ -325,7 +353,8 @@ class _VolumeState:
325
353
  time_created: Optional[pulumi.Input[str]] = None,
326
354
  volume_backup_id: Optional[pulumi.Input[str]] = None,
327
355
  volume_group_id: Optional[pulumi.Input[str]] = None,
328
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
356
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
357
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
329
358
  """
330
359
  Input properties used for looking up and filtering Volume resources.
331
360
  :param pulumi.Input[str] auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this volume is effectively tuned to.
@@ -342,7 +371,8 @@ class _VolumeState:
342
371
  :param pulumi.Input[bool] is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
343
372
  :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.
344
373
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
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.
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.
346
376
  :param pulumi.Input[str] state: The current state of a volume.
347
377
  :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"}`
348
378
  :param pulumi.Input[str] time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -351,6 +381,11 @@ class _VolumeState:
351
381
  :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.
352
382
 
353
383
  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
354
389
  """
355
390
  if auto_tuned_vpus_per_gb is not None:
356
391
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -404,6 +439,8 @@ class _VolumeState:
404
439
  pulumi.set(__self__, "volume_group_id", volume_group_id)
405
440
  if vpus_per_gb is not None:
406
441
  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)
407
444
 
408
445
  @property
409
446
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -588,7 +625,7 @@ class _VolumeState:
588
625
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
589
626
  def size_in_mbs(self) -> Optional[pulumi.Input[str]]:
590
627
  """
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.
628
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
592
629
  """
593
630
  return pulumi.get(self, "size_in_mbs")
594
631
 
@@ -599,6 +636,9 @@ class _VolumeState:
599
636
  @property
600
637
  @pulumi.getter(name="sourceDetails")
601
638
  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
+ """
602
642
  return pulumi.get(self, "source_details")
603
643
 
604
644
  @source_details.setter
@@ -679,6 +719,22 @@ class _VolumeState:
679
719
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
680
720
  pulumi.set(self, "vpus_per_gb", value)
681
721
 
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
+
682
738
 
683
739
  class Volume(pulumi.CustomResource):
684
740
  @overload
@@ -702,6 +758,7 @@ class Volume(pulumi.CustomResource):
702
758
  source_details: Optional[pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']]] = None,
703
759
  volume_backup_id: Optional[pulumi.Input[str]] = None,
704
760
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
761
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
705
762
  __props__=None):
706
763
  """
707
764
  This resource provides the Volume resource in Oracle Cloud Infrastructure Core service.
@@ -738,6 +795,7 @@ class Volume(pulumi.CustomResource):
738
795
  block_volume_replicas=[{
739
796
  "availability_domain": volume_block_volume_replicas_availability_domain,
740
797
  "display_name": volume_block_volume_replicas_display_name,
798
+ "xrr_kms_key_id": test_key["id"],
741
799
  }],
742
800
  cluster_placement_group_id=test_group["id"],
743
801
  defined_tags={
@@ -752,10 +810,14 @@ class Volume(pulumi.CustomResource):
752
810
  size_in_gbs=volume_size_in_gbs,
753
811
  size_in_mbs=volume_size_in_mbs,
754
812
  source_details={
755
- "id": volume_source_details_id,
756
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
+ "id": volume_source_details_id,
817
+ "second_backup_id": test_backup["id"],
757
818
  },
758
819
  vpus_per_gb=volume_vpus_per_gb,
820
+ xrc_kms_key_id=test_key["id"],
759
821
  block_volume_replicas_deletion=True)
760
822
  ```
761
823
 
@@ -781,11 +843,17 @@ class Volume(pulumi.CustomResource):
781
843
  :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.
782
844
  :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.
783
845
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
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.
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.
785
848
  :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.
786
849
  :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.
787
850
 
788
851
  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
789
857
  """
790
858
  ...
791
859
  @overload
@@ -828,6 +896,7 @@ class Volume(pulumi.CustomResource):
828
896
  block_volume_replicas=[{
829
897
  "availability_domain": volume_block_volume_replicas_availability_domain,
830
898
  "display_name": volume_block_volume_replicas_display_name,
899
+ "xrr_kms_key_id": test_key["id"],
831
900
  }],
832
901
  cluster_placement_group_id=test_group["id"],
833
902
  defined_tags={
@@ -842,10 +911,14 @@ class Volume(pulumi.CustomResource):
842
911
  size_in_gbs=volume_size_in_gbs,
843
912
  size_in_mbs=volume_size_in_mbs,
844
913
  source_details={
845
- "id": volume_source_details_id,
846
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
+ "id": volume_source_details_id,
918
+ "second_backup_id": test_backup["id"],
847
919
  },
848
920
  vpus_per_gb=volume_vpus_per_gb,
921
+ xrc_kms_key_id=test_key["id"],
849
922
  block_volume_replicas_deletion=True)
850
923
  ```
851
924
 
@@ -889,6 +962,7 @@ class Volume(pulumi.CustomResource):
889
962
  source_details: Optional[pulumi.Input[Union['VolumeSourceDetailsArgs', 'VolumeSourceDetailsArgsDict']]] = None,
890
963
  volume_backup_id: Optional[pulumi.Input[str]] = None,
891
964
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
965
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
892
966
  __props__=None):
893
967
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
894
968
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -919,6 +993,7 @@ class Volume(pulumi.CustomResource):
919
993
  __props__.__dict__["source_details"] = source_details
920
994
  __props__.__dict__["volume_backup_id"] = volume_backup_id
921
995
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
996
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
922
997
  __props__.__dict__["auto_tuned_vpus_per_gb"] = None
923
998
  __props__.__dict__["is_hydrated"] = None
924
999
  __props__.__dict__["state"] = None
@@ -957,7 +1032,8 @@ class Volume(pulumi.CustomResource):
957
1032
  time_created: Optional[pulumi.Input[str]] = None,
958
1033
  volume_backup_id: Optional[pulumi.Input[str]] = None,
959
1034
  volume_group_id: Optional[pulumi.Input[str]] = None,
960
- vpus_per_gb: Optional[pulumi.Input[str]] = None) -> 'Volume':
1035
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
1036
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'Volume':
961
1037
  """
962
1038
  Get an existing Volume resource's state with the given name, id, and optional extra
963
1039
  properties used to qualify the lookup.
@@ -979,7 +1055,8 @@ class Volume(pulumi.CustomResource):
979
1055
  :param pulumi.Input[bool] is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
980
1056
  :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.
981
1057
  :param pulumi.Input[str] size_in_gbs: (Updatable) The size of the volume in GBs.
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.
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.
983
1060
  :param pulumi.Input[str] state: The current state of a volume.
984
1061
  :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"}`
985
1062
  :param pulumi.Input[str] time_created: The date and time the volume was created. Format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
@@ -988,6 +1065,11 @@ class Volume(pulumi.CustomResource):
988
1065
  :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
1066
 
990
1067
  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
991
1073
  """
992
1074
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
993
1075
 
@@ -1016,6 +1098,7 @@ class Volume(pulumi.CustomResource):
1016
1098
  __props__.__dict__["volume_backup_id"] = volume_backup_id
1017
1099
  __props__.__dict__["volume_group_id"] = volume_group_id
1018
1100
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
1101
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
1019
1102
  return Volume(resource_name, opts=opts, __props__=__props__)
1020
1103
 
1021
1104
  @property
@@ -1141,13 +1224,16 @@ class Volume(pulumi.CustomResource):
1141
1224
  @_utilities.deprecated("""The 'size_in_mbs' field has been deprecated. Please use 'size_in_gbs' instead.""")
1142
1225
  def size_in_mbs(self) -> pulumi.Output[str]:
1143
1226
  """
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.
1227
+ The size of the volume in MBs. The value must be a multiple of 1024. This field is deprecated. Use sizeInGBs instead.
1145
1228
  """
1146
1229
  return pulumi.get(self, "size_in_mbs")
1147
1230
 
1148
1231
  @property
1149
1232
  @pulumi.getter(name="sourceDetails")
1150
1233
  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
+ """
1151
1237
  return pulumi.get(self, "source_details")
1152
1238
 
1153
1239
  @property
@@ -1200,3 +1286,15 @@ class Volume(pulumi.CustomResource):
1200
1286
  """
1201
1287
  return pulumi.get(self, "vpus_per_gb")
1202
1288
 
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,11 +20,13 @@ __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]):
23
+ policy_id: pulumi.Input[str],
24
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
24
25
  """
25
26
  The set of arguments for constructing a VolumeBackupPolicyAssignment resource.
26
27
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
27
28
  :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).
28
30
 
29
31
 
30
32
  ** IMPORTANT **
@@ -32,6 +34,8 @@ class VolumeBackupPolicyAssignmentArgs:
32
34
  """
33
35
  pulumi.set(__self__, "asset_id", asset_id)
34
36
  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)
35
39
 
36
40
  @property
37
41
  @pulumi.getter(name="assetId")
@@ -50,10 +54,6 @@ class VolumeBackupPolicyAssignmentArgs:
50
54
  def policy_id(self) -> pulumi.Input[str]:
51
55
  """
52
56
  The OCID of the volume backup policy to assign to the volume.
53
-
54
-
55
- ** IMPORTANT **
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
57
57
  """
58
58
  return pulumi.get(self, "policy_id")
59
59
 
@@ -61,22 +61,40 @@ class VolumeBackupPolicyAssignmentArgs:
61
61
  def policy_id(self, value: pulumi.Input[str]):
62
62
  pulumi.set(self, "policy_id", value)
63
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
+
70
+
71
+ ** IMPORTANT **
72
+ 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
+ """
74
+ return pulumi.get(self, "xrc_kms_key_id")
75
+
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)
79
+
64
80
 
65
81
  @pulumi.input_type
66
82
  class _VolumeBackupPolicyAssignmentState:
67
83
  def __init__(__self__, *,
68
84
  asset_id: Optional[pulumi.Input[str]] = None,
69
85
  policy_id: Optional[pulumi.Input[str]] = None,
70
- time_created: Optional[pulumi.Input[str]] = None):
86
+ time_created: Optional[pulumi.Input[str]] = None,
87
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
71
88
  """
72
89
  Input properties used for looking up and filtering VolumeBackupPolicyAssignment resources.
73
90
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
74
91
  :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).
75
94
 
76
95
 
77
96
  ** IMPORTANT **
78
97
  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).
80
98
  """
81
99
  if asset_id is not None:
82
100
  pulumi.set(__self__, "asset_id", asset_id)
@@ -84,6 +102,8 @@ class _VolumeBackupPolicyAssignmentState:
84
102
  pulumi.set(__self__, "policy_id", policy_id)
85
103
  if time_created is not None:
86
104
  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)
87
107
 
88
108
  @property
89
109
  @pulumi.getter(name="assetId")
@@ -102,10 +122,6 @@ class _VolumeBackupPolicyAssignmentState:
102
122
  def policy_id(self) -> Optional[pulumi.Input[str]]:
103
123
  """
104
124
  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
109
125
  """
110
126
  return pulumi.get(self, "policy_id")
111
127
 
@@ -125,6 +141,22 @@ class _VolumeBackupPolicyAssignmentState:
125
141
  def time_created(self, value: Optional[pulumi.Input[str]]):
126
142
  pulumi.set(self, "time_created", value)
127
143
 
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
+
128
160
 
129
161
  class VolumeBackupPolicyAssignment(pulumi.CustomResource):
130
162
  @overload
@@ -133,6 +165,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
133
165
  opts: Optional[pulumi.ResourceOptions] = None,
134
166
  asset_id: Optional[pulumi.Input[str]] = None,
135
167
  policy_id: Optional[pulumi.Input[str]] = None,
168
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
136
169
  __props__=None):
137
170
  """
138
171
  This resource provides the Volume Backup Policy Assignment resource in Oracle Cloud Infrastructure Core service.
@@ -149,7 +182,8 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
149
182
 
150
183
  test_volume_backup_policy_assignment = oci.core.VolumeBackupPolicyAssignment("test_volume_backup_policy_assignment",
151
184
  asset_id=test_volume["id"],
152
- policy_id=test_volume_backup_policy["id"])
185
+ policy_id=test_volume_backup_policy["id"],
186
+ xrc_kms_key_id=test_key["id"])
153
187
  ```
154
188
 
155
189
  ## Import
@@ -164,6 +198,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
164
198
  :param pulumi.ResourceOptions opts: Options for the resource.
165
199
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
166
200
  :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).
167
202
 
168
203
 
169
204
  ** IMPORTANT **
@@ -190,7 +225,8 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
190
225
 
191
226
  test_volume_backup_policy_assignment = oci.core.VolumeBackupPolicyAssignment("test_volume_backup_policy_assignment",
192
227
  asset_id=test_volume["id"],
193
- policy_id=test_volume_backup_policy["id"])
228
+ policy_id=test_volume_backup_policy["id"],
229
+ xrc_kms_key_id=test_key["id"])
194
230
  ```
195
231
 
196
232
  ## Import
@@ -218,6 +254,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
218
254
  opts: Optional[pulumi.ResourceOptions] = None,
219
255
  asset_id: Optional[pulumi.Input[str]] = None,
220
256
  policy_id: Optional[pulumi.Input[str]] = None,
257
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
221
258
  __props__=None):
222
259
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
223
260
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -233,6 +270,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
233
270
  if policy_id is None and not opts.urn:
234
271
  raise TypeError("Missing required property 'policy_id'")
235
272
  __props__.__dict__["policy_id"] = policy_id
273
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
236
274
  __props__.__dict__["time_created"] = None
237
275
  super(VolumeBackupPolicyAssignment, __self__).__init__(
238
276
  'oci:Core/volumeBackupPolicyAssignment:VolumeBackupPolicyAssignment',
@@ -246,7 +284,8 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
246
284
  opts: Optional[pulumi.ResourceOptions] = None,
247
285
  asset_id: Optional[pulumi.Input[str]] = None,
248
286
  policy_id: Optional[pulumi.Input[str]] = None,
249
- time_created: Optional[pulumi.Input[str]] = None) -> 'VolumeBackupPolicyAssignment':
287
+ time_created: Optional[pulumi.Input[str]] = None,
288
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'VolumeBackupPolicyAssignment':
250
289
  """
251
290
  Get an existing VolumeBackupPolicyAssignment resource's state with the given name, id, and optional extra
252
291
  properties used to qualify the lookup.
@@ -256,11 +295,12 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
256
295
  :param pulumi.ResourceOptions opts: Options for the resource.
257
296
  :param pulumi.Input[str] asset_id: The OCID of the volume or volume group to assign the policy to.
258
297
  :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).
259
300
 
260
301
 
261
302
  ** IMPORTANT **
262
303
  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).
264
304
  """
265
305
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
266
306
 
@@ -269,6 +309,7 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
269
309
  __props__.__dict__["asset_id"] = asset_id
270
310
  __props__.__dict__["policy_id"] = policy_id
271
311
  __props__.__dict__["time_created"] = time_created
312
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
272
313
  return VolumeBackupPolicyAssignment(resource_name, opts=opts, __props__=__props__)
273
314
 
274
315
  @property
@@ -284,10 +325,6 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
284
325
  def policy_id(self) -> pulumi.Output[str]:
285
326
  """
286
327
  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
291
328
  """
292
329
  return pulumi.get(self, "policy_id")
293
330
 
@@ -299,3 +336,15 @@ class VolumeBackupPolicyAssignment(pulumi.CustomResource):
299
336
  """
300
337
  return pulumi.get(self, "time_created")
301
338
 
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
+