pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.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
+
@@ -37,7 +37,7 @@ class ClusterNetworkArgs:
37
37
  :param pulumi.Input['ClusterNetworkPlacementConfigurationArgs'] placement_configuration: The location for where the instance pools in a cluster network will place instances.
38
38
  :param pulumi.Input['ClusterNetworkClusterConfigurationArgs'] cluster_configuration: The HPC cluster configuration requested when launching instances of a cluster network.
39
39
 
40
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
40
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
41
41
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
42
42
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
43
43
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
@@ -98,7 +98,7 @@ class ClusterNetworkArgs:
98
98
  """
99
99
  The HPC cluster configuration requested when launching instances of a cluster network.
100
100
 
101
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
101
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
102
102
  """
103
103
  return pulumi.get(self, "cluster_configuration")
104
104
 
@@ -162,7 +162,7 @@ class _ClusterNetworkState:
162
162
  Input properties used for looking up and filtering ClusterNetwork resources.
163
163
  :param pulumi.Input['ClusterNetworkClusterConfigurationArgs'] cluster_configuration: The HPC cluster configuration requested when launching instances of a cluster network.
164
164
 
165
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
165
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
166
166
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the cluster network.
167
167
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
168
168
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -208,7 +208,7 @@ class _ClusterNetworkState:
208
208
  """
209
209
  The HPC cluster configuration requested when launching instances of a cluster network.
210
210
 
211
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
211
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
212
212
  """
213
213
  return pulumi.get(self, "cluster_configuration")
214
214
 
@@ -445,7 +445,7 @@ class ClusterNetwork(pulumi.CustomResource):
445
445
  :param pulumi.ResourceOptions opts: Options for the resource.
446
446
  :param pulumi.Input[Union['ClusterNetworkClusterConfigurationArgs', 'ClusterNetworkClusterConfigurationArgsDict']] cluster_configuration: The HPC cluster configuration requested when launching instances of a cluster network.
447
447
 
448
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
448
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
449
449
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the cluster network.
450
450
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
451
451
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -618,7 +618,7 @@ class ClusterNetwork(pulumi.CustomResource):
618
618
  :param pulumi.ResourceOptions opts: Options for the resource.
619
619
  :param pulumi.Input[Union['ClusterNetworkClusterConfigurationArgs', 'ClusterNetworkClusterConfigurationArgsDict']] cluster_configuration: The HPC cluster configuration requested when launching instances of a cluster network.
620
620
 
621
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
621
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
622
622
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the cluster network.
623
623
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
624
624
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -657,7 +657,7 @@ class ClusterNetwork(pulumi.CustomResource):
657
657
  """
658
658
  The HPC cluster configuration requested when launching instances of a cluster network.
659
659
 
660
- If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
660
+ If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
661
661
  """
662
662
  return pulumi.get(self, "cluster_configuration")
663
663
 
@@ -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'),
@@ -27,7 +27,7 @@ class GetInstanceResult:
27
27
  """
28
28
  A collection of values returned by getInstance.
29
29
  """
30
- def __init__(__self__, agent_configs=None, async_=None, availability_configs=None, availability_domain=None, boot_volume_id=None, capacity_reservation_id=None, cluster_placement_group_id=None, compartment_id=None, compute_cluster_id=None, create_vnic_details=None, dedicated_vm_host_id=None, defined_tags=None, display_name=None, extended_metadata=None, fault_domain=None, freeform_tags=None, hostname_label=None, id=None, image=None, instance_configuration_id=None, instance_id=None, instance_options=None, ipxe_script=None, is_cross_numa_node=None, is_pv_encryption_in_transit_enabled=None, launch_mode=None, launch_options=None, launch_volume_attachments=None, metadata=None, platform_configs=None, preemptible_instance_configs=None, preserve_boot_volume=None, preserve_data_volumes_created_at_launch=None, private_ip=None, public_ip=None, region=None, shape=None, shape_configs=None, source_details=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_maintenance_reboot_due=None, update_operation_constraint=None):
30
+ def __init__(__self__, agent_configs=None, async_=None, availability_configs=None, availability_domain=None, boot_volume_id=None, capacity_reservation_id=None, cluster_placement_group_id=None, compartment_id=None, compute_cluster_id=None, create_vnic_details=None, dedicated_vm_host_id=None, defined_tags=None, display_name=None, extended_metadata=None, fault_domain=None, freeform_tags=None, hostname_label=None, id=None, image=None, instance_configuration_id=None, instance_id=None, instance_options=None, ipxe_script=None, is_cross_numa_node=None, is_pv_encryption_in_transit_enabled=None, launch_mode=None, launch_options=None, launch_volume_attachments=None, metadata=None, platform_configs=None, preemptible_instance_configs=None, preserve_boot_volume=None, preserve_data_volumes_created_at_launch=None, private_ip=None, public_ip=None, region=None, security_attributes=None, security_attributes_state=None, shape=None, shape_configs=None, source_details=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_maintenance_reboot_due=None, update_operation_constraint=None):
31
31
  if agent_configs and not isinstance(agent_configs, list):
32
32
  raise TypeError("Expected argument 'agent_configs' to be a list")
33
33
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -136,6 +136,12 @@ class GetInstanceResult:
136
136
  if region and not isinstance(region, str):
137
137
  raise TypeError("Expected argument 'region' to be a str")
138
138
  pulumi.set(__self__, "region", region)
139
+ if security_attributes and not isinstance(security_attributes, dict):
140
+ raise TypeError("Expected argument 'security_attributes' to be a dict")
141
+ pulumi.set(__self__, "security_attributes", security_attributes)
142
+ if security_attributes_state and not isinstance(security_attributes_state, str):
143
+ raise TypeError("Expected argument 'security_attributes_state' to be a str")
144
+ pulumi.set(__self__, "security_attributes_state", security_attributes_state)
139
145
  if shape and not isinstance(shape, str):
140
146
  raise TypeError("Expected argument 'shape' to be a str")
141
147
  pulumi.set(__self__, "shape", shape)
@@ -440,6 +446,22 @@ class GetInstanceResult:
440
446
  """
441
447
  return pulumi.get(self, "region")
442
448
 
449
+ @property
450
+ @pulumi.getter(name="securityAttributes")
451
+ def security_attributes(self) -> Mapping[str, str]:
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"}}}`
454
+ """
455
+ return pulumi.get(self, "security_attributes")
456
+
457
+ @property
458
+ @pulumi.getter(name="securityAttributesState")
459
+ def security_attributes_state(self) -> str:
460
+ """
461
+ The lifecycle state of the `securityAttributes`
462
+ """
463
+ return pulumi.get(self, "security_attributes_state")
464
+
443
465
  @property
444
466
  @pulumi.getter
445
467
  def shape(self) -> str:
@@ -547,6 +569,8 @@ class AwaitableGetInstanceResult(GetInstanceResult):
547
569
  private_ip=self.private_ip,
548
570
  public_ip=self.public_ip,
549
571
  region=self.region,
572
+ security_attributes=self.security_attributes,
573
+ security_attributes_state=self.security_attributes_state,
550
574
  shape=self.shape,
551
575
  shape_configs=self.shape_configs,
552
576
  source_details=self.source_details,
@@ -622,6 +646,8 @@ def get_instance(instance_id: Optional[str] = None,
622
646
  private_ip=pulumi.get(__ret__, 'private_ip'),
623
647
  public_ip=pulumi.get(__ret__, 'public_ip'),
624
648
  region=pulumi.get(__ret__, 'region'),
649
+ security_attributes=pulumi.get(__ret__, 'security_attributes'),
650
+ security_attributes_state=pulumi.get(__ret__, 'security_attributes_state'),
625
651
  shape=pulumi.get(__ret__, 'shape'),
626
652
  shape_configs=pulumi.get(__ret__, 'shape_configs'),
627
653
  source_details=pulumi.get(__ret__, 'source_details'),
@@ -694,6 +720,8 @@ def get_instance_output(instance_id: Optional[pulumi.Input[str]] = None,
694
720
  private_ip=pulumi.get(__response__, 'private_ip'),
695
721
  public_ip=pulumi.get(__response__, 'public_ip'),
696
722
  region=pulumi.get(__response__, 'region'),
723
+ security_attributes=pulumi.get(__response__, 'security_attributes'),
724
+ security_attributes_state=pulumi.get(__response__, 'security_attributes_state'),
697
725
  shape=pulumi.get(__response__, 'shape'),
698
726
  shape_configs=pulumi.get(__response__, 'shape_configs'),
699
727
  source_details=pulumi.get(__response__, 'source_details'),
@@ -27,7 +27,7 @@ class GetVcnResult:
27
27
  """
28
28
  A collection of values returned by getVcn.
29
29
  """
30
- def __init__(__self__, byoipv6cidr_blocks=None, byoipv6cidr_details=None, cidr_block=None, cidr_blocks=None, compartment_id=None, default_dhcp_options_id=None, default_route_table_id=None, default_security_list_id=None, defined_tags=None, display_name=None, dns_label=None, freeform_tags=None, id=None, ipv6cidr_blocks=None, ipv6private_cidr_blocks=None, is_ipv6enabled=None, is_oracle_gua_allocation_enabled=None, state=None, time_created=None, vcn_domain_name=None, vcn_id=None):
30
+ def __init__(__self__, byoipv6cidr_blocks=None, byoipv6cidr_details=None, cidr_block=None, cidr_blocks=None, compartment_id=None, default_dhcp_options_id=None, default_route_table_id=None, default_security_list_id=None, defined_tags=None, display_name=None, dns_label=None, freeform_tags=None, id=None, ipv6cidr_blocks=None, ipv6private_cidr_blocks=None, is_ipv6enabled=None, is_oracle_gua_allocation_enabled=None, security_attributes=None, state=None, time_created=None, vcn_domain_name=None, vcn_id=None):
31
31
  if byoipv6cidr_blocks and not isinstance(byoipv6cidr_blocks, list):
32
32
  raise TypeError("Expected argument 'byoipv6cidr_blocks' to be a list")
33
33
  pulumi.set(__self__, "byoipv6cidr_blocks", byoipv6cidr_blocks)
@@ -79,6 +79,9 @@ class GetVcnResult:
79
79
  if is_oracle_gua_allocation_enabled and not isinstance(is_oracle_gua_allocation_enabled, bool):
80
80
  raise TypeError("Expected argument 'is_oracle_gua_allocation_enabled' to be a bool")
81
81
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
82
+ if security_attributes and not isinstance(security_attributes, dict):
83
+ raise TypeError("Expected argument 'security_attributes' to be a dict")
84
+ pulumi.set(__self__, "security_attributes", security_attributes)
82
85
  if state and not isinstance(state, str):
83
86
  raise TypeError("Expected argument 'state' to be a str")
84
87
  pulumi.set(__self__, "state", state)
@@ -219,6 +222,14 @@ class GetVcnResult:
219
222
  def is_oracle_gua_allocation_enabled(self) -> bool:
220
223
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
221
224
 
225
+ @property
226
+ @pulumi.getter(name="securityAttributes")
227
+ def security_attributes(self) -> Mapping[str, str]:
228
+ """
229
+ 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"}`
230
+ """
231
+ return pulumi.get(self, "security_attributes")
232
+
222
233
  @property
223
234
  @pulumi.getter
224
235
  def state(self) -> str:
@@ -272,6 +283,7 @@ class AwaitableGetVcnResult(GetVcnResult):
272
283
  ipv6private_cidr_blocks=self.ipv6private_cidr_blocks,
273
284
  is_ipv6enabled=self.is_ipv6enabled,
274
285
  is_oracle_gua_allocation_enabled=self.is_oracle_gua_allocation_enabled,
286
+ security_attributes=self.security_attributes,
275
287
  state=self.state,
276
288
  time_created=self.time_created,
277
289
  vcn_domain_name=self.vcn_domain_name,
@@ -320,6 +332,7 @@ def get_vcn(vcn_id: Optional[str] = None,
320
332
  ipv6private_cidr_blocks=pulumi.get(__ret__, 'ipv6private_cidr_blocks'),
321
333
  is_ipv6enabled=pulumi.get(__ret__, 'is_ipv6enabled'),
322
334
  is_oracle_gua_allocation_enabled=pulumi.get(__ret__, 'is_oracle_gua_allocation_enabled'),
335
+ security_attributes=pulumi.get(__ret__, 'security_attributes'),
323
336
  state=pulumi.get(__ret__, 'state'),
324
337
  time_created=pulumi.get(__ret__, 'time_created'),
325
338
  vcn_domain_name=pulumi.get(__ret__, 'vcn_domain_name'),
@@ -365,6 +378,7 @@ def get_vcn_output(vcn_id: Optional[pulumi.Input[str]] = None,
365
378
  ipv6private_cidr_blocks=pulumi.get(__response__, 'ipv6private_cidr_blocks'),
366
379
  is_ipv6enabled=pulumi.get(__response__, 'is_ipv6enabled'),
367
380
  is_oracle_gua_allocation_enabled=pulumi.get(__response__, 'is_oracle_gua_allocation_enabled'),
381
+ security_attributes=pulumi.get(__response__, 'security_attributes'),
368
382
  state=pulumi.get(__response__, 'state'),
369
383
  time_created=pulumi.get(__response__, 'time_created'),
370
384
  vcn_domain_name=pulumi.get(__response__, 'vcn_domain_name'),