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
@@ -35,7 +35,8 @@ class BootVolumeArgs:
35
35
  is_auto_tune_enabled: Optional[pulumi.Input[bool]] = None,
36
36
  kms_key_id: Optional[pulumi.Input[str]] = None,
37
37
  size_in_gbs: Optional[pulumi.Input[str]] = None,
38
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
38
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
39
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
39
40
  """
40
41
  The set of arguments for constructing a BootVolume resource.
41
42
  :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,6 +54,11 @@ class BootVolumeArgs:
53
54
  :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.
54
55
 
55
56
  Allowed values:
57
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
58
+
59
+
60
+ ** IMPORTANT **
61
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
56
62
  """
57
63
  pulumi.set(__self__, "availability_domain", availability_domain)
58
64
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -84,6 +90,8 @@ class BootVolumeArgs:
84
90
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
85
91
  if vpus_per_gb is not None:
86
92
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
93
+ if xrc_kms_key_id is not None:
94
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
87
95
 
88
96
  @property
89
97
  @pulumi.getter(name="availabilityDomain")
@@ -262,6 +270,22 @@ class BootVolumeArgs:
262
270
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
263
271
  pulumi.set(self, "vpus_per_gb", value)
264
272
 
273
+ @property
274
+ @pulumi.getter(name="xrcKmsKeyId")
275
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
276
+ """
277
+ The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
278
+
279
+
280
+ ** IMPORTANT **
281
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
282
+ """
283
+ return pulumi.get(self, "xrc_kms_key_id")
284
+
285
+ @xrc_kms_key_id.setter
286
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
287
+ pulumi.set(self, "xrc_kms_key_id", value)
288
+
265
289
 
266
290
  @pulumi.input_type
267
291
  class _BootVolumeState:
@@ -288,7 +312,8 @@ class _BootVolumeState:
288
312
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
289
313
  time_created: Optional[pulumi.Input[str]] = None,
290
314
  volume_group_id: Optional[pulumi.Input[str]] = None,
291
- vpus_per_gb: Optional[pulumi.Input[str]] = None):
315
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
316
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None):
292
317
  """
293
318
  Input properties used for looking up and filtering BootVolume resources.
294
319
  :param pulumi.Input[str] auto_tuned_vpus_per_gb: The number of Volume Performance Units per GB that this boot volume is effectively tuned to.
@@ -314,6 +339,11 @@ class _BootVolumeState:
314
339
  :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.
315
340
 
316
341
  Allowed values:
342
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
343
+
344
+
345
+ ** IMPORTANT **
346
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
317
347
  """
318
348
  if auto_tuned_vpus_per_gb is not None:
319
349
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -364,6 +394,8 @@ class _BootVolumeState:
364
394
  pulumi.set(__self__, "volume_group_id", volume_group_id)
365
395
  if vpus_per_gb is not None:
366
396
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
397
+ if xrc_kms_key_id is not None:
398
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
367
399
 
368
400
  @property
369
401
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -638,6 +670,22 @@ class _BootVolumeState:
638
670
  def vpus_per_gb(self, value: Optional[pulumi.Input[str]]):
639
671
  pulumi.set(self, "vpus_per_gb", value)
640
672
 
673
+ @property
674
+ @pulumi.getter(name="xrcKmsKeyId")
675
+ def xrc_kms_key_id(self) -> Optional[pulumi.Input[str]]:
676
+ """
677
+ The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
678
+
679
+
680
+ ** IMPORTANT **
681
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
682
+ """
683
+ return pulumi.get(self, "xrc_kms_key_id")
684
+
685
+ @xrc_kms_key_id.setter
686
+ def xrc_kms_key_id(self, value: Optional[pulumi.Input[str]]):
687
+ pulumi.set(self, "xrc_kms_key_id", value)
688
+
641
689
 
642
690
  class BootVolume(pulumi.CustomResource):
643
691
  @overload
@@ -659,6 +707,7 @@ class BootVolume(pulumi.CustomResource):
659
707
  size_in_gbs: Optional[pulumi.Input[str]] = None,
660
708
  source_details: Optional[pulumi.Input[Union['BootVolumeSourceDetailsArgs', 'BootVolumeSourceDetailsArgsDict']]] = None,
661
709
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
710
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
662
711
  __props__=None):
663
712
  """
664
713
  This resource provides the Boot Volume resource in Oracle Cloud Infrastructure Core service.
@@ -677,8 +726,11 @@ class BootVolume(pulumi.CustomResource):
677
726
  test_boot_volume = oci.core.BootVolume("test_boot_volume",
678
727
  compartment_id=compartment_id,
679
728
  source_details={
680
- "id": boot_volume_source_details_id,
681
729
  "type": boot_volume_source_details_type,
730
+ "change_block_size_in_bytes": boot_volume_source_details_change_block_size_in_bytes,
731
+ "first_backup_id": test_backup["id"],
732
+ "id": boot_volume_source_details_id,
733
+ "second_backup_id": test_backup["id"],
682
734
  },
683
735
  autotune_policies=[{
684
736
  "autotune_type": boot_volume_autotune_policies_autotune_type,
@@ -689,6 +741,7 @@ class BootVolume(pulumi.CustomResource):
689
741
  boot_volume_replicas=[{
690
742
  "availability_domain": boot_volume_boot_volume_replicas_availability_domain,
691
743
  "display_name": boot_volume_boot_volume_replicas_display_name,
744
+ "xrr_kms_key_id": test_key["id"],
692
745
  }],
693
746
  cluster_placement_group_id=test_group["id"],
694
747
  defined_tags={
@@ -702,6 +755,7 @@ class BootVolume(pulumi.CustomResource):
702
755
  kms_key_id=test_key["id"],
703
756
  size_in_gbs=boot_volume_size_in_gbs,
704
757
  vpus_per_gb=boot_volume_vpus_per_gb,
758
+ xrc_kms_key_id=test_key["id"],
705
759
  boot_volume_replicas_deletion=True)
706
760
  ```
707
761
 
@@ -730,6 +784,11 @@ class BootVolume(pulumi.CustomResource):
730
784
  :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.
731
785
 
732
786
  Allowed values:
787
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
788
+
789
+
790
+ ** IMPORTANT **
791
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
733
792
  """
734
793
  ...
735
794
  @overload
@@ -754,8 +813,11 @@ class BootVolume(pulumi.CustomResource):
754
813
  test_boot_volume = oci.core.BootVolume("test_boot_volume",
755
814
  compartment_id=compartment_id,
756
815
  source_details={
757
- "id": boot_volume_source_details_id,
758
816
  "type": boot_volume_source_details_type,
817
+ "change_block_size_in_bytes": boot_volume_source_details_change_block_size_in_bytes,
818
+ "first_backup_id": test_backup["id"],
819
+ "id": boot_volume_source_details_id,
820
+ "second_backup_id": test_backup["id"],
759
821
  },
760
822
  autotune_policies=[{
761
823
  "autotune_type": boot_volume_autotune_policies_autotune_type,
@@ -766,6 +828,7 @@ class BootVolume(pulumi.CustomResource):
766
828
  boot_volume_replicas=[{
767
829
  "availability_domain": boot_volume_boot_volume_replicas_availability_domain,
768
830
  "display_name": boot_volume_boot_volume_replicas_display_name,
831
+ "xrr_kms_key_id": test_key["id"],
769
832
  }],
770
833
  cluster_placement_group_id=test_group["id"],
771
834
  defined_tags={
@@ -779,6 +842,7 @@ class BootVolume(pulumi.CustomResource):
779
842
  kms_key_id=test_key["id"],
780
843
  size_in_gbs=boot_volume_size_in_gbs,
781
844
  vpus_per_gb=boot_volume_vpus_per_gb,
845
+ xrc_kms_key_id=test_key["id"],
782
846
  boot_volume_replicas_deletion=True)
783
847
  ```
784
848
 
@@ -820,6 +884,7 @@ class BootVolume(pulumi.CustomResource):
820
884
  size_in_gbs: Optional[pulumi.Input[str]] = None,
821
885
  source_details: Optional[pulumi.Input[Union['BootVolumeSourceDetailsArgs', 'BootVolumeSourceDetailsArgsDict']]] = None,
822
886
  vpus_per_gb: Optional[pulumi.Input[str]] = None,
887
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None,
823
888
  __props__=None):
824
889
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
825
890
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -850,6 +915,7 @@ class BootVolume(pulumi.CustomResource):
850
915
  raise TypeError("Missing required property 'source_details'")
851
916
  __props__.__dict__["source_details"] = source_details
852
917
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
918
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
853
919
  __props__.__dict__["auto_tuned_vpus_per_gb"] = None
854
920
  __props__.__dict__["image_id"] = None
855
921
  __props__.__dict__["is_hydrated"] = None
@@ -890,7 +956,8 @@ class BootVolume(pulumi.CustomResource):
890
956
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
891
957
  time_created: Optional[pulumi.Input[str]] = None,
892
958
  volume_group_id: Optional[pulumi.Input[str]] = None,
893
- vpus_per_gb: Optional[pulumi.Input[str]] = None) -> 'BootVolume':
959
+ vpus_per_gb: Optional[pulumi.Input[str]] = None,
960
+ xrc_kms_key_id: Optional[pulumi.Input[str]] = None) -> 'BootVolume':
894
961
  """
895
962
  Get an existing BootVolume resource's state with the given name, id, and optional extra
896
963
  properties used to qualify the lookup.
@@ -921,6 +988,11 @@ class BootVolume(pulumi.CustomResource):
921
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.
922
989
 
923
990
  Allowed values:
991
+ :param pulumi.Input[str] xrc_kms_key_id: The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
992
+
993
+
994
+ ** IMPORTANT **
995
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
924
996
  """
925
997
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
926
998
 
@@ -949,6 +1021,7 @@ class BootVolume(pulumi.CustomResource):
949
1021
  __props__.__dict__["time_created"] = time_created
950
1022
  __props__.__dict__["volume_group_id"] = volume_group_id
951
1023
  __props__.__dict__["vpus_per_gb"] = vpus_per_gb
1024
+ __props__.__dict__["xrc_kms_key_id"] = xrc_kms_key_id
952
1025
  return BootVolume(resource_name, opts=opts, __props__=__props__)
953
1026
 
954
1027
  @property
@@ -1132,3 +1205,15 @@ class BootVolume(pulumi.CustomResource):
1132
1205
  """
1133
1206
  return pulumi.get(self, "vpus_per_gb")
1134
1207
 
1208
+ @property
1209
+ @pulumi.getter(name="xrcKmsKeyId")
1210
+ def xrc_kms_key_id(self) -> pulumi.Output[str]:
1211
+ """
1212
+ The OCID of the Vault service key which is the master encryption key for the boot volume cross region backups, which will be used in the destination region to encrypt the backup's encryption keys. For more information about the Vault service and encryption keys, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
1213
+
1214
+
1215
+ ** IMPORTANT **
1216
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1217
+ """
1218
+ return pulumi.get(self, "xrc_kms_key_id")
1219
+
@@ -26,7 +26,7 @@ class GetBlockVolumeReplicaResult:
26
26
  """
27
27
  A collection of values returned by getBlockVolumeReplica.
28
28
  """
29
- def __init__(__self__, availability_domain=None, block_volume_id=None, block_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
29
+ def __init__(__self__, availability_domain=None, block_volume_id=None, block_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, kms_key_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
30
30
  if availability_domain and not isinstance(availability_domain, str):
31
31
  raise TypeError("Expected argument 'availability_domain' to be a str")
32
32
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -51,6 +51,9 @@ class GetBlockVolumeReplicaResult:
51
51
  if id and not isinstance(id, str):
52
52
  raise TypeError("Expected argument 'id' to be a str")
53
53
  pulumi.set(__self__, "id", id)
54
+ if kms_key_id and not isinstance(kms_key_id, str):
55
+ raise TypeError("Expected argument 'kms_key_id' to be a str")
56
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
54
57
  if size_in_gbs and not isinstance(size_in_gbs, str):
55
58
  raise TypeError("Expected argument 'size_in_gbs' to be a str")
56
59
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
@@ -128,6 +131,14 @@ class GetBlockVolumeReplicaResult:
128
131
  """
129
132
  return pulumi.get(self, "id")
130
133
 
134
+ @property
135
+ @pulumi.getter(name="kmsKeyId")
136
+ def kms_key_id(self) -> str:
137
+ """
138
+ The OCID of the Vault service key to assign as the master encryption key for the block volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
139
+ """
140
+ return pulumi.get(self, "kms_key_id")
141
+
131
142
  @property
132
143
  @pulumi.getter(name="sizeInGbs")
133
144
  def size_in_gbs(self) -> str:
@@ -180,6 +191,7 @@ class AwaitableGetBlockVolumeReplicaResult(GetBlockVolumeReplicaResult):
180
191
  display_name=self.display_name,
181
192
  freeform_tags=self.freeform_tags,
182
193
  id=self.id,
194
+ kms_key_id=self.kms_key_id,
183
195
  size_in_gbs=self.size_in_gbs,
184
196
  state=self.state,
185
197
  time_created=self.time_created,
@@ -220,6 +232,7 @@ def get_block_volume_replica(block_volume_replica_id: Optional[str] = None,
220
232
  display_name=pulumi.get(__ret__, 'display_name'),
221
233
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
222
234
  id=pulumi.get(__ret__, 'id'),
235
+ kms_key_id=pulumi.get(__ret__, 'kms_key_id'),
223
236
  size_in_gbs=pulumi.get(__ret__, 'size_in_gbs'),
224
237
  state=pulumi.get(__ret__, 'state'),
225
238
  time_created=pulumi.get(__ret__, 'time_created'),
@@ -257,6 +270,7 @@ def get_block_volume_replica_output(block_volume_replica_id: Optional[pulumi.Inp
257
270
  display_name=pulumi.get(__response__, 'display_name'),
258
271
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
259
272
  id=pulumi.get(__response__, 'id'),
273
+ kms_key_id=pulumi.get(__response__, 'kms_key_id'),
260
274
  size_in_gbs=pulumi.get(__response__, 'size_in_gbs'),
261
275
  state=pulumi.get(__response__, 'state'),
262
276
  time_created=pulumi.get(__response__, 'time_created'),
@@ -27,7 +27,7 @@ class GetBootVolumeResult:
27
27
  """
28
28
  A collection of values returned by getBootVolume.
29
29
  """
30
- def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, boot_volume_id=None, boot_volume_replicas=None, boot_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_group_id=None, vpus_per_gb=None):
30
+ def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, boot_volume_id=None, boot_volume_replicas=None, boot_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_group_id=None, vpus_per_gb=None, xrc_kms_key_id=None):
31
31
  if auto_tuned_vpus_per_gb and not isinstance(auto_tuned_vpus_per_gb, str):
32
32
  raise TypeError("Expected argument 'auto_tuned_vpus_per_gb' to be a str")
33
33
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -103,6 +103,9 @@ class GetBootVolumeResult:
103
103
  if vpus_per_gb and not isinstance(vpus_per_gb, str):
104
104
  raise TypeError("Expected argument 'vpus_per_gb' to be a str")
105
105
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
106
+ if xrc_kms_key_id and not isinstance(xrc_kms_key_id, str):
107
+ raise TypeError("Expected argument 'xrc_kms_key_id' to be a str")
108
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
106
109
 
107
110
  @property
108
111
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -293,6 +296,11 @@ class GetBootVolumeResult:
293
296
  """
294
297
  return pulumi.get(self, "vpus_per_gb")
295
298
 
299
+ @property
300
+ @pulumi.getter(name="xrcKmsKeyId")
301
+ def xrc_kms_key_id(self) -> str:
302
+ return pulumi.get(self, "xrc_kms_key_id")
303
+
296
304
 
297
305
  class AwaitableGetBootVolumeResult(GetBootVolumeResult):
298
306
  # pylint: disable=using-constant-test
@@ -324,7 +332,8 @@ class AwaitableGetBootVolumeResult(GetBootVolumeResult):
324
332
  system_tags=self.system_tags,
325
333
  time_created=self.time_created,
326
334
  volume_group_id=self.volume_group_id,
327
- vpus_per_gb=self.vpus_per_gb)
335
+ vpus_per_gb=self.vpus_per_gb,
336
+ xrc_kms_key_id=self.xrc_kms_key_id)
328
337
 
329
338
 
330
339
  def get_boot_volume(boot_volume_id: Optional[str] = None,
@@ -376,7 +385,8 @@ def get_boot_volume(boot_volume_id: Optional[str] = None,
376
385
  system_tags=pulumi.get(__ret__, 'system_tags'),
377
386
  time_created=pulumi.get(__ret__, 'time_created'),
378
387
  volume_group_id=pulumi.get(__ret__, 'volume_group_id'),
379
- vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'))
388
+ vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'),
389
+ xrc_kms_key_id=pulumi.get(__ret__, 'xrc_kms_key_id'))
380
390
  def get_boot_volume_output(boot_volume_id: Optional[pulumi.Input[str]] = None,
381
391
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBootVolumeResult]:
382
392
  """
@@ -425,4 +435,5 @@ def get_boot_volume_output(boot_volume_id: Optional[pulumi.Input[str]] = None,
425
435
  system_tags=pulumi.get(__response__, 'system_tags'),
426
436
  time_created=pulumi.get(__response__, 'time_created'),
427
437
  volume_group_id=pulumi.get(__response__, 'volume_group_id'),
428
- vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb')))
438
+ vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb'),
439
+ xrc_kms_key_id=pulumi.get(__response__, 'xrc_kms_key_id')))
@@ -26,7 +26,7 @@ class GetBootVolumeReplicaResult:
26
26
  """
27
27
  A collection of values returned by getBootVolumeReplica.
28
28
  """
29
- def __init__(__self__, availability_domain=None, boot_volume_id=None, boot_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
29
+ def __init__(__self__, availability_domain=None, boot_volume_id=None, boot_volume_replica_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, image_id=None, kms_key_id=None, size_in_gbs=None, state=None, time_created=None, time_last_synced=None, volume_group_replica_id=None):
30
30
  if availability_domain and not isinstance(availability_domain, str):
31
31
  raise TypeError("Expected argument 'availability_domain' to be a str")
32
32
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -54,6 +54,9 @@ class GetBootVolumeReplicaResult:
54
54
  if image_id and not isinstance(image_id, str):
55
55
  raise TypeError("Expected argument 'image_id' to be a str")
56
56
  pulumi.set(__self__, "image_id", image_id)
57
+ if kms_key_id and not isinstance(kms_key_id, str):
58
+ raise TypeError("Expected argument 'kms_key_id' to be a str")
59
+ pulumi.set(__self__, "kms_key_id", kms_key_id)
57
60
  if size_in_gbs and not isinstance(size_in_gbs, str):
58
61
  raise TypeError("Expected argument 'size_in_gbs' to be a str")
59
62
  pulumi.set(__self__, "size_in_gbs", size_in_gbs)
@@ -139,6 +142,14 @@ class GetBootVolumeReplicaResult:
139
142
  """
140
143
  return pulumi.get(self, "image_id")
141
144
 
145
+ @property
146
+ @pulumi.getter(name="kmsKeyId")
147
+ def kms_key_id(self) -> str:
148
+ """
149
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume replica, see [Overview of Vault service](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) and [Using Keys](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm).
150
+ """
151
+ return pulumi.get(self, "kms_key_id")
152
+
142
153
  @property
143
154
  @pulumi.getter(name="sizeInGbs")
144
155
  def size_in_gbs(self) -> str:
@@ -192,6 +203,7 @@ class AwaitableGetBootVolumeReplicaResult(GetBootVolumeReplicaResult):
192
203
  freeform_tags=self.freeform_tags,
193
204
  id=self.id,
194
205
  image_id=self.image_id,
206
+ kms_key_id=self.kms_key_id,
195
207
  size_in_gbs=self.size_in_gbs,
196
208
  state=self.state,
197
209
  time_created=self.time_created,
@@ -233,6 +245,7 @@ def get_boot_volume_replica(boot_volume_replica_id: Optional[str] = None,
233
245
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
234
246
  id=pulumi.get(__ret__, 'id'),
235
247
  image_id=pulumi.get(__ret__, 'image_id'),
248
+ kms_key_id=pulumi.get(__ret__, 'kms_key_id'),
236
249
  size_in_gbs=pulumi.get(__ret__, 'size_in_gbs'),
237
250
  state=pulumi.get(__ret__, 'state'),
238
251
  time_created=pulumi.get(__ret__, 'time_created'),
@@ -271,6 +284,7 @@ def get_boot_volume_replica_output(boot_volume_replica_id: Optional[pulumi.Input
271
284
  freeform_tags=pulumi.get(__response__, 'freeform_tags'),
272
285
  id=pulumi.get(__response__, 'id'),
273
286
  image_id=pulumi.get(__response__, 'image_id'),
287
+ kms_key_id=pulumi.get(__response__, 'kms_key_id'),
274
288
  size_in_gbs=pulumi.get(__response__, 'size_in_gbs'),
275
289
  state=pulumi.get(__response__, 'state'),
276
290
  time_created=pulumi.get(__response__, 'time_created'),
@@ -450,7 +450,7 @@ class GetInstanceResult:
450
450
  @pulumi.getter(name="securityAttributes")
451
451
  def security_attributes(self) -> Mapping[str, str]:
452
452
  """
453
- Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
453
+ Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
454
454
  """
455
455
  return pulumi.get(self, "security_attributes")
456
456
 
@@ -27,7 +27,7 @@ class GetVirtualCircuitResult:
27
27
  """
28
28
  A collection of values returned by getVirtualCircuit.
29
29
  """
30
- def __init__(__self__, bandwidth_shape_name=None, bgp_admin_state=None, bgp_ipv6session_state=None, bgp_management=None, bgp_session_state=None, compartment_id=None, cross_connect_mappings=None, customer_asn=None, customer_bgp_asn=None, defined_tags=None, display_name=None, freeform_tags=None, gateway_id=None, id=None, ip_mtu=None, is_bfd_enabled=None, is_transport_mode=None, oracle_bgp_asn=None, provider_service_id=None, provider_service_key_name=None, provider_state=None, public_prefixes=None, reference_comment=None, region=None, routing_policies=None, service_type=None, state=None, time_created=None, type=None, virtual_circuit_id=None):
30
+ def __init__(__self__, bandwidth_shape_name=None, bgp_admin_state=None, bgp_ipv6session_state=None, bgp_management=None, bgp_session_state=None, compartment_id=None, cross_connect_mappings=None, customer_asn=None, customer_bgp_asn=None, defined_tags=None, display_name=None, freeform_tags=None, gateway_id=None, id=None, ip_mtu=None, is_bfd_enabled=None, is_transport_mode=None, oracle_bgp_asn=None, provider_service_id=None, provider_service_key_name=None, provider_state=None, public_prefixes=None, reference_comment=None, region=None, routing_policies=None, service_type=None, state=None, time_created=None, type=None, virtual_circuit_id=None, virtual_circuit_redundancy_metadatas=None):
31
31
  if bandwidth_shape_name and not isinstance(bandwidth_shape_name, str):
32
32
  raise TypeError("Expected argument 'bandwidth_shape_name' to be a str")
33
33
  pulumi.set(__self__, "bandwidth_shape_name", bandwidth_shape_name)
@@ -118,6 +118,9 @@ class GetVirtualCircuitResult:
118
118
  if virtual_circuit_id and not isinstance(virtual_circuit_id, str):
119
119
  raise TypeError("Expected argument 'virtual_circuit_id' to be a str")
120
120
  pulumi.set(__self__, "virtual_circuit_id", virtual_circuit_id)
121
+ if virtual_circuit_redundancy_metadatas and not isinstance(virtual_circuit_redundancy_metadatas, list):
122
+ raise TypeError("Expected argument 'virtual_circuit_redundancy_metadatas' to be a list")
123
+ pulumi.set(__self__, "virtual_circuit_redundancy_metadatas", virtual_circuit_redundancy_metadatas)
121
124
 
122
125
  @property
123
126
  @pulumi.getter(name="bandwidthShapeName")
@@ -358,6 +361,14 @@ class GetVirtualCircuitResult:
358
361
  def virtual_circuit_id(self) -> str:
359
362
  return pulumi.get(self, "virtual_circuit_id")
360
363
 
364
+ @property
365
+ @pulumi.getter(name="virtualCircuitRedundancyMetadatas")
366
+ def virtual_circuit_redundancy_metadatas(self) -> Sequence['outputs.GetVirtualCircuitVirtualCircuitRedundancyMetadataResult']:
367
+ """
368
+ Redundancy level details of the virtual circuit
369
+ """
370
+ return pulumi.get(self, "virtual_circuit_redundancy_metadatas")
371
+
361
372
 
362
373
  class AwaitableGetVirtualCircuitResult(GetVirtualCircuitResult):
363
374
  # pylint: disable=using-constant-test
@@ -394,7 +405,8 @@ class AwaitableGetVirtualCircuitResult(GetVirtualCircuitResult):
394
405
  state=self.state,
395
406
  time_created=self.time_created,
396
407
  type=self.type,
397
- virtual_circuit_id=self.virtual_circuit_id)
408
+ virtual_circuit_id=self.virtual_circuit_id,
409
+ virtual_circuit_redundancy_metadatas=self.virtual_circuit_redundancy_metadatas)
398
410
 
399
411
 
400
412
  def get_virtual_circuit(virtual_circuit_id: Optional[str] = None,
@@ -451,7 +463,8 @@ def get_virtual_circuit(virtual_circuit_id: Optional[str] = None,
451
463
  state=pulumi.get(__ret__, 'state'),
452
464
  time_created=pulumi.get(__ret__, 'time_created'),
453
465
  type=pulumi.get(__ret__, 'type'),
454
- virtual_circuit_id=pulumi.get(__ret__, 'virtual_circuit_id'))
466
+ virtual_circuit_id=pulumi.get(__ret__, 'virtual_circuit_id'),
467
+ virtual_circuit_redundancy_metadatas=pulumi.get(__ret__, 'virtual_circuit_redundancy_metadatas'))
455
468
  def get_virtual_circuit_output(virtual_circuit_id: Optional[pulumi.Input[str]] = None,
456
469
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualCircuitResult]:
457
470
  """
@@ -505,4 +518,5 @@ def get_virtual_circuit_output(virtual_circuit_id: Optional[pulumi.Input[str]] =
505
518
  state=pulumi.get(__response__, 'state'),
506
519
  time_created=pulumi.get(__response__, 'time_created'),
507
520
  type=pulumi.get(__response__, 'type'),
508
- virtual_circuit_id=pulumi.get(__response__, 'virtual_circuit_id')))
521
+ virtual_circuit_id=pulumi.get(__response__, 'virtual_circuit_id'),
522
+ virtual_circuit_redundancy_metadatas=pulumi.get(__response__, 'virtual_circuit_redundancy_metadatas')))
@@ -27,7 +27,7 @@ class GetVolumeResult:
27
27
  """
28
28
  A collection of values returned by getVolume.
29
29
  """
30
- def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, block_volume_replicas=None, block_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_backup_id=None, volume_group_id=None, volume_id=None, vpus_per_gb=None):
30
+ def __init__(__self__, auto_tuned_vpus_per_gb=None, autotune_policies=None, availability_domain=None, backup_policy_id=None, block_volume_replicas=None, block_volume_replicas_deletion=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_auto_tune_enabled=None, is_hydrated=None, kms_key_id=None, size_in_gbs=None, size_in_mbs=None, source_details=None, state=None, system_tags=None, time_created=None, volume_backup_id=None, volume_group_id=None, volume_id=None, vpus_per_gb=None, xrc_kms_key_id=None):
31
31
  if auto_tuned_vpus_per_gb and not isinstance(auto_tuned_vpus_per_gb, str):
32
32
  raise TypeError("Expected argument 'auto_tuned_vpus_per_gb' to be a str")
33
33
  pulumi.set(__self__, "auto_tuned_vpus_per_gb", auto_tuned_vpus_per_gb)
@@ -103,6 +103,9 @@ class GetVolumeResult:
103
103
  if vpus_per_gb and not isinstance(vpus_per_gb, str):
104
104
  raise TypeError("Expected argument 'vpus_per_gb' to be a str")
105
105
  pulumi.set(__self__, "vpus_per_gb", vpus_per_gb)
106
+ if xrc_kms_key_id and not isinstance(xrc_kms_key_id, str):
107
+ raise TypeError("Expected argument 'xrc_kms_key_id' to be a str")
108
+ pulumi.set(__self__, "xrc_kms_key_id", xrc_kms_key_id)
106
109
 
107
110
  @property
108
111
  @pulumi.getter(name="autoTunedVpusPerGb")
@@ -239,6 +242,9 @@ class GetVolumeResult:
239
242
  @property
240
243
  @pulumi.getter(name="sourceDetails")
241
244
  def source_details(self) -> Sequence['outputs.GetVolumeSourceDetailResult']:
245
+ """
246
+ Specifies the volume source details for a new Block volume. The volume source is either another Block volume in the same Availability Domain or a Block volume backup. This is an optional field. If not specified or set to null, the new Block volume will be empty. When specified, the new Block volume will contain data from the source volume or backup.
247
+ """
242
248
  return pulumi.get(self, "source_details")
243
249
 
244
250
  @property
@@ -291,6 +297,11 @@ class GetVolumeResult:
291
297
  """
292
298
  return pulumi.get(self, "vpus_per_gb")
293
299
 
300
+ @property
301
+ @pulumi.getter(name="xrcKmsKeyId")
302
+ def xrc_kms_key_id(self) -> str:
303
+ return pulumi.get(self, "xrc_kms_key_id")
304
+
294
305
 
295
306
  class AwaitableGetVolumeResult(GetVolumeResult):
296
307
  # pylint: disable=using-constant-test
@@ -322,7 +333,8 @@ class AwaitableGetVolumeResult(GetVolumeResult):
322
333
  volume_backup_id=self.volume_backup_id,
323
334
  volume_group_id=self.volume_group_id,
324
335
  volume_id=self.volume_id,
325
- vpus_per_gb=self.vpus_per_gb)
336
+ vpus_per_gb=self.vpus_per_gb,
337
+ xrc_kms_key_id=self.xrc_kms_key_id)
326
338
 
327
339
 
328
340
  def get_volume(volume_id: Optional[str] = None,
@@ -374,7 +386,8 @@ def get_volume(volume_id: Optional[str] = None,
374
386
  volume_backup_id=pulumi.get(__ret__, 'volume_backup_id'),
375
387
  volume_group_id=pulumi.get(__ret__, 'volume_group_id'),
376
388
  volume_id=pulumi.get(__ret__, 'volume_id'),
377
- vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'))
389
+ vpus_per_gb=pulumi.get(__ret__, 'vpus_per_gb'),
390
+ xrc_kms_key_id=pulumi.get(__ret__, 'xrc_kms_key_id'))
378
391
  def get_volume_output(volume_id: Optional[pulumi.Input[str]] = None,
379
392
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVolumeResult]:
380
393
  """
@@ -423,4 +436,5 @@ def get_volume_output(volume_id: Optional[pulumi.Input[str]] = None,
423
436
  volume_backup_id=pulumi.get(__response__, 'volume_backup_id'),
424
437
  volume_group_id=pulumi.get(__response__, 'volume_group_id'),
425
438
  volume_id=pulumi.get(__response__, 'volume_id'),
426
- vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb')))
439
+ vpus_per_gb=pulumi.get(__response__, 'vpus_per_gb'),
440
+ xrc_kms_key_id=pulumi.get(__response__, 'xrc_kms_key_id')))
@@ -145,7 +145,7 @@ class InstanceArgs:
145
145
  For more information about BIOS settings for bare metal instances, see [BIOS Settings for Bare Metal Instances](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bios-settings.htm).
146
146
  :param pulumi.Input['InstancePreemptibleInstanceConfigArgs'] preemptible_instance_config: Configuration options for preemptible instances.
147
147
  :param pulumi.Input[bool] preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
148
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
148
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
149
149
  :param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
150
150
 
151
151
  You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
@@ -634,7 +634,7 @@ class InstanceArgs:
634
634
  @pulumi.getter(name="securityAttributes")
635
635
  def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
636
636
  """
637
- (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
637
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
638
638
  """
639
639
  return pulumi.get(self, "security_attributes")
640
640
 
@@ -869,7 +869,7 @@ class _InstanceState:
869
869
  :param pulumi.Input[str] private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
870
870
  :param pulumi.Input[str] public_ip: The public IP address of instance VNIC (if enabled).
871
871
  :param pulumi.Input[str] region: The region that contains the availability domain the instance is running in.
872
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
872
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
873
873
  :param pulumi.Input[str] security_attributes_state: The lifecycle state of the `securityAttributes`
874
874
  :param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
875
875
 
@@ -1460,7 +1460,7 @@ class _InstanceState:
1460
1460
  @pulumi.getter(name="securityAttributes")
1461
1461
  def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
1462
1462
  """
1463
- (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
1463
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
1464
1464
  """
1465
1465
  return pulumi.get(self, "security_attributes")
1466
1466
 
@@ -1787,7 +1787,7 @@ class Instance(pulumi.CustomResource):
1787
1787
  For more information about BIOS settings for bare metal instances, see [BIOS Settings for Bare Metal Instances](https://docs.cloud.oracle.com/iaas/Content/Compute/References/bios-settings.htm).
1788
1788
  :param pulumi.Input[Union['InstancePreemptibleInstanceConfigArgs', 'InstancePreemptibleInstanceConfigArgsDict']] preemptible_instance_config: Configuration options for preemptible instances.
1789
1789
  :param pulumi.Input[bool] preserve_boot_volume: (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
1790
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
1790
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
1791
1791
  :param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
1792
1792
 
1793
1793
  You can enumerate all available shapes by calling [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Shape/ListShapes).
@@ -2137,7 +2137,7 @@ class Instance(pulumi.CustomResource):
2137
2137
  :param pulumi.Input[str] private_ip: The private IP address of instance VNIC. To set the private IP address, use the `private_ip` argument in create_vnic_details.
2138
2138
  :param pulumi.Input[str] public_ip: The public IP address of instance VNIC (if enabled).
2139
2139
  :param pulumi.Input[str] region: The region that contains the availability domain the instance is running in.
2140
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
2140
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
2141
2141
  :param pulumi.Input[str] security_attributes_state: The lifecycle state of the `securityAttributes`
2142
2142
  :param pulumi.Input[str] shape: (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
2143
2143
 
@@ -2543,7 +2543,7 @@ class Instance(pulumi.CustomResource):
2543
2543
  @pulumi.getter(name="securityAttributes")
2544
2544
  def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
2545
2545
  """
2546
- (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}`
2546
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
2547
2547
  """
2548
2548
  return pulumi.get(self, "security_attributes")
2549
2549