pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.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 (119) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +32 -0
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +163 -42
  19. pulumi_oci/databasemanagement/__init__.py +1 -0
  20. pulumi_oci/databasemanagement/_inputs.py +873 -10
  21. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  22. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  23. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  24. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  26. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  27. pulumi_oci/databasemanagement/managed_database.py +56 -0
  28. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  29. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  30. pulumi_oci/datasafe/__init__.py +6 -0
  31. pulumi_oci/datasafe/_inputs.py +18 -0
  32. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  33. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  34. pulumi_oci/datasafe/masking_report_management.py +693 -0
  35. pulumi_oci/datasafe/outputs.py +18 -0
  36. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  37. pulumi_oci/datasafe/security_policy_management.py +172 -2
  38. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  39. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  41. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  42. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  43. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  44. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  45. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  46. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  47. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  54. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  55. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  56. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  60. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  61. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  62. pulumi_oci/desktops/_inputs.py +483 -0
  63. pulumi_oci/desktops/desktop_pool.py +1348 -0
  64. pulumi_oci/desktops/get_desktop.py +223 -0
  65. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  66. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  67. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  68. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  69. pulumi_oci/desktops/get_desktops.py +214 -0
  70. pulumi_oci/desktops/outputs.py +1738 -0
  71. pulumi_oci/filestorage/mount_target.py +143 -38
  72. pulumi_oci/filestorage/outputs.py +44 -0
  73. pulumi_oci/identity/domains_group.py +34 -0
  74. pulumi_oci/identity/domains_user.py +34 -0
  75. pulumi_oci/identity/get_domains_group.py +11 -1
  76. pulumi_oci/identity/get_domains_user.py +11 -1
  77. pulumi_oci/identity/outputs.py +14 -0
  78. pulumi_oci/kms/_inputs.py +10 -10
  79. pulumi_oci/kms/get_vault.py +14 -1
  80. pulumi_oci/kms/outputs.py +41 -30
  81. pulumi_oci/kms/vault.py +28 -0
  82. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  83. pulumi_oci/loadbalancer/outputs.py +22 -0
  84. pulumi_oci/mysql/_inputs.py +23 -0
  85. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  86. pulumi_oci/mysql/mysql_db_system.py +53 -0
  87. pulumi_oci/mysql/outputs.py +74 -6
  88. pulumi_oci/ocvp/get_cluster.py +2 -2
  89. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  90. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  91. pulumi_oci/ocvp/outputs.py +2 -2
  92. pulumi_oci/pulumi-plugin.json +1 -1
  93. pulumi_oci/recoverymod/_inputs.py +0 -8
  94. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  95. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  96. pulumi_oci/recoverymod/outputs.py +22 -8
  97. pulumi_oci/recoverymod/protected_database.py +80 -3
  98. pulumi_oci/recoverymod/protection_policy.py +49 -0
  99. pulumi_oci/waf/_inputs.py +29 -16
  100. pulumi_oci/waf/outputs.py +33 -10
  101. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
  102. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
  103. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
  104. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  105. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  106. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  107. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  108. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  109. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  110. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  111. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  112. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  113. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  114. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  115. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  116. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  117. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  118. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  119. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetMysqlDbSystemResult:
22
22
  """
23
23
  A collection of values returned by getMysqlDbSystem.
24
24
  """
25
- def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
25
+ def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, customer_contacts=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
26
26
  if admin_password and not isinstance(admin_password, str):
27
27
  raise TypeError("Expected argument 'admin_password' to be a str")
28
28
  pulumi.set(__self__, "admin_password", admin_password)
@@ -50,6 +50,9 @@ class GetMysqlDbSystemResult:
50
50
  if current_placements and not isinstance(current_placements, list):
51
51
  raise TypeError("Expected argument 'current_placements' to be a list")
52
52
  pulumi.set(__self__, "current_placements", current_placements)
53
+ if customer_contacts and not isinstance(customer_contacts, list):
54
+ raise TypeError("Expected argument 'customer_contacts' to be a list")
55
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
53
56
  if data_storage_size_in_gb and not isinstance(data_storage_size_in_gb, int):
54
57
  raise TypeError("Expected argument 'data_storage_size_in_gb' to be a int")
55
58
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
@@ -210,11 +213,19 @@ class GetMysqlDbSystemResult:
210
213
  """
211
214
  return pulumi.get(self, "current_placements")
212
215
 
216
+ @property
217
+ @pulumi.getter(name="customerContacts")
218
+ def customer_contacts(self) -> Sequence['outputs.GetMysqlDbSystemCustomerContactResult']:
219
+ """
220
+ The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
221
+ """
222
+ return pulumi.get(self, "customer_contacts")
223
+
213
224
  @property
214
225
  @pulumi.getter(name="dataStorageSizeInGb")
215
226
  def data_storage_size_in_gb(self) -> int:
216
227
  """
217
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
228
+ Initial size of the data volume in GiBs that will be created and attached.
218
229
  """
219
230
  return pulumi.get(self, "data_storage_size_in_gb")
220
231
 
@@ -471,6 +482,7 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
471
482
  configuration_id=self.configuration_id,
472
483
  crash_recovery=self.crash_recovery,
473
484
  current_placements=self.current_placements,
485
+ customer_contacts=self.customer_contacts,
474
486
  data_storage_size_in_gb=self.data_storage_size_in_gb,
475
487
  data_storages=self.data_storages,
476
488
  database_management=self.database_management,
@@ -538,6 +550,7 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
538
550
  configuration_id=pulumi.get(__ret__, 'configuration_id'),
539
551
  crash_recovery=pulumi.get(__ret__, 'crash_recovery'),
540
552
  current_placements=pulumi.get(__ret__, 'current_placements'),
553
+ customer_contacts=pulumi.get(__ret__, 'customer_contacts'),
541
554
  data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
542
555
  data_storages=pulumi.get(__ret__, 'data_storages'),
543
556
  database_management=pulumi.get(__ret__, 'database_management'),
@@ -25,6 +25,7 @@ class MysqlDbSystemArgs:
25
25
  backup_policy: Optional[pulumi.Input['MysqlDbSystemBackupPolicyArgs']] = None,
26
26
  configuration_id: Optional[pulumi.Input[str]] = None,
27
27
  crash_recovery: Optional[pulumi.Input[str]] = None,
28
+ customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]] = None,
28
29
  data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
29
30
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
30
31
  database_management: Optional[pulumi.Input[str]] = None,
@@ -61,6 +62,7 @@ class MysqlDbSystemArgs:
61
62
  :param pulumi.Input['MysqlDbSystemBackupPolicyArgs'] backup_policy: (Updatable) Backup policy as optionally used for DB System Creation.
62
63
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
63
64
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
65
+ :param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
64
66
  :param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
65
67
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
66
68
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
@@ -109,6 +111,8 @@ class MysqlDbSystemArgs:
109
111
  pulumi.set(__self__, "configuration_id", configuration_id)
110
112
  if crash_recovery is not None:
111
113
  pulumi.set(__self__, "crash_recovery", crash_recovery)
114
+ if customer_contacts is not None:
115
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
112
116
  if data_storage is not None:
113
117
  pulumi.set(__self__, "data_storage", data_storage)
114
118
  if data_storage_size_in_gb is not None:
@@ -263,6 +267,18 @@ class MysqlDbSystemArgs:
263
267
  def crash_recovery(self, value: Optional[pulumi.Input[str]]):
264
268
  pulumi.set(self, "crash_recovery", value)
265
269
 
270
+ @property
271
+ @pulumi.getter(name="customerContacts")
272
+ def customer_contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]:
273
+ """
274
+ (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
275
+ """
276
+ return pulumi.get(self, "customer_contacts")
277
+
278
+ @customer_contacts.setter
279
+ def customer_contacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]):
280
+ pulumi.set(self, "customer_contacts", value)
281
+
266
282
  @property
267
283
  @pulumi.getter(name="dataStorage")
268
284
  def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
@@ -529,6 +545,7 @@ class _MysqlDbSystemState:
529
545
  configuration_id: Optional[pulumi.Input[str]] = None,
530
546
  crash_recovery: Optional[pulumi.Input[str]] = None,
531
547
  current_placements: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]] = None,
548
+ customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]] = None,
532
549
  data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
533
550
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
534
551
  database_management: Optional[pulumi.Input[str]] = None,
@@ -573,6 +590,7 @@ class _MysqlDbSystemState:
573
590
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
574
591
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
575
592
  :param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]] current_placements: The availability domain and fault domain a DB System is placed in.
593
+ :param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
576
594
  :param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
577
595
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
578
596
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
@@ -635,6 +653,8 @@ class _MysqlDbSystemState:
635
653
  pulumi.set(__self__, "crash_recovery", crash_recovery)
636
654
  if current_placements is not None:
637
655
  pulumi.set(__self__, "current_placements", current_placements)
656
+ if customer_contacts is not None:
657
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
638
658
  if data_storage is not None:
639
659
  pulumi.set(__self__, "data_storage", data_storage)
640
660
  if data_storage_size_in_gb is not None:
@@ -806,6 +826,18 @@ class _MysqlDbSystemState:
806
826
  def current_placements(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]]):
807
827
  pulumi.set(self, "current_placements", value)
808
828
 
829
+ @property
830
+ @pulumi.getter(name="customerContacts")
831
+ def customer_contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]:
832
+ """
833
+ (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
834
+ """
835
+ return pulumi.get(self, "customer_contacts")
836
+
837
+ @customer_contacts.setter
838
+ def customer_contacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]):
839
+ pulumi.set(self, "customer_contacts", value)
840
+
809
841
  @property
810
842
  @pulumi.getter(name="dataStorage")
811
843
  def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
@@ -1181,6 +1213,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1181
1213
  compartment_id: Optional[pulumi.Input[str]] = None,
1182
1214
  configuration_id: Optional[pulumi.Input[str]] = None,
1183
1215
  crash_recovery: Optional[pulumi.Input[str]] = None,
1216
+ customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
1184
1217
  data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1185
1218
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1186
1219
  database_management: Optional[pulumi.Input[str]] = None,
@@ -1238,6 +1271,9 @@ class MysqlDbSystem(pulumi.CustomResource):
1238
1271
  },
1239
1272
  configuration_id=test_configuration["id"],
1240
1273
  crash_recovery=mysql_db_system_crash_recovery,
1274
+ customer_contacts=[{
1275
+ "email": mysql_db_system_customer_contacts_email,
1276
+ }],
1241
1277
  data_storage={
1242
1278
  "is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
1243
1279
  "max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
@@ -1297,6 +1333,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1297
1333
  :param pulumi.Input[str] compartment_id: The OCID of the compartment.
1298
1334
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
1299
1335
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
1336
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
1300
1337
  :param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
1301
1338
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
1302
1339
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
@@ -1374,6 +1411,9 @@ class MysqlDbSystem(pulumi.CustomResource):
1374
1411
  },
1375
1412
  configuration_id=test_configuration["id"],
1376
1413
  crash_recovery=mysql_db_system_crash_recovery,
1414
+ customer_contacts=[{
1415
+ "email": mysql_db_system_customer_contacts_email,
1416
+ }],
1377
1417
  data_storage={
1378
1418
  "is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
1379
1419
  "max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
@@ -1442,6 +1482,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1442
1482
  compartment_id: Optional[pulumi.Input[str]] = None,
1443
1483
  configuration_id: Optional[pulumi.Input[str]] = None,
1444
1484
  crash_recovery: Optional[pulumi.Input[str]] = None,
1485
+ customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
1445
1486
  data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1446
1487
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1447
1488
  database_management: Optional[pulumi.Input[str]] = None,
@@ -1484,6 +1525,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1484
1525
  __props__.__dict__["compartment_id"] = compartment_id
1485
1526
  __props__.__dict__["configuration_id"] = configuration_id
1486
1527
  __props__.__dict__["crash_recovery"] = crash_recovery
1528
+ __props__.__dict__["customer_contacts"] = customer_contacts
1487
1529
  __props__.__dict__["data_storage"] = data_storage
1488
1530
  __props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
1489
1531
  __props__.__dict__["database_management"] = database_management
@@ -1540,6 +1582,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1540
1582
  configuration_id: Optional[pulumi.Input[str]] = None,
1541
1583
  crash_recovery: Optional[pulumi.Input[str]] = None,
1542
1584
  current_placements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]]] = None,
1585
+ customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
1543
1586
  data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
1544
1587
  data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
1545
1588
  database_management: Optional[pulumi.Input[str]] = None,
@@ -1589,6 +1632,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1589
1632
  :param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
1590
1633
  :param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
1591
1634
  :param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]] current_placements: The availability domain and fault domain a DB System is placed in.
1635
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
1592
1636
  :param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
1593
1637
  :param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
1594
1638
  :param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
@@ -1646,6 +1690,7 @@ class MysqlDbSystem(pulumi.CustomResource):
1646
1690
  __props__.__dict__["configuration_id"] = configuration_id
1647
1691
  __props__.__dict__["crash_recovery"] = crash_recovery
1648
1692
  __props__.__dict__["current_placements"] = current_placements
1693
+ __props__.__dict__["customer_contacts"] = customer_contacts
1649
1694
  __props__.__dict__["data_storage"] = data_storage
1650
1695
  __props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
1651
1696
  __props__.__dict__["database_management"] = database_management
@@ -1753,6 +1798,14 @@ class MysqlDbSystem(pulumi.CustomResource):
1753
1798
  """
1754
1799
  return pulumi.get(self, "current_placements")
1755
1800
 
1801
+ @property
1802
+ @pulumi.getter(name="customerContacts")
1803
+ def customer_contacts(self) -> pulumi.Output[Sequence['outputs.MysqlDbSystemCustomerContact']]:
1804
+ """
1805
+ (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
1806
+ """
1807
+ return pulumi.get(self, "customer_contacts")
1808
+
1756
1809
  @property
1757
1810
  @pulumi.getter(name="dataStorage")
1758
1811
  def data_storage(self) -> pulumi.Output['outputs.MysqlDbSystemDataStorage']:
@@ -38,6 +38,7 @@ __all__ = [
38
38
  'MysqlDbSystemChannelTarget',
39
39
  'MysqlDbSystemChannelTargetFilter',
40
40
  'MysqlDbSystemCurrentPlacement',
41
+ 'MysqlDbSystemCustomerContact',
41
42
  'MysqlDbSystemDataStorage',
42
43
  'MysqlDbSystemDeletionPolicy',
43
44
  'MysqlDbSystemEndpoint',
@@ -98,6 +99,7 @@ __all__ = [
98
99
  'GetMysqlDbSystemChannelTargetResult',
99
100
  'GetMysqlDbSystemChannelTargetFilterResult',
100
101
  'GetMysqlDbSystemCurrentPlacementResult',
102
+ 'GetMysqlDbSystemCustomerContactResult',
101
103
  'GetMysqlDbSystemDataStorageResult',
102
104
  'GetMysqlDbSystemDeletionPolicyResult',
103
105
  'GetMysqlDbSystemEndpointResult',
@@ -116,6 +118,7 @@ __all__ = [
116
118
  'GetMysqlDbSystemsDbSystemChannelTargetResult',
117
119
  'GetMysqlDbSystemsDbSystemChannelTargetFilterResult',
118
120
  'GetMysqlDbSystemsDbSystemCurrentPlacementResult',
121
+ 'GetMysqlDbSystemsDbSystemCustomerContactResult',
119
122
  'GetMysqlDbSystemsDbSystemDataStorageResult',
120
123
  'GetMysqlDbSystemsDbSystemDeletionPolicyResult',
121
124
  'GetMysqlDbSystemsDbSystemEndpointResult',
@@ -3826,6 +3829,24 @@ class MysqlDbSystemCurrentPlacement(dict):
3826
3829
  return pulumi.get(self, "fault_domain")
3827
3830
 
3828
3831
 
3832
+ @pulumi.output_type
3833
+ class MysqlDbSystemCustomerContact(dict):
3834
+ def __init__(__self__, *,
3835
+ email: str):
3836
+ """
3837
+ :param str email: (Updatable) The email address used by Oracle to send notifications regarding the DB System.
3838
+ """
3839
+ pulumi.set(__self__, "email", email)
3840
+
3841
+ @property
3842
+ @pulumi.getter
3843
+ def email(self) -> str:
3844
+ """
3845
+ (Updatable) The email address used by Oracle to send notifications regarding the DB System.
3846
+ """
3847
+ return pulumi.get(self, "email")
3848
+
3849
+
3829
3850
  @pulumi.output_type
3830
3851
  class MysqlDbSystemDataStorage(dict):
3831
3852
  @staticmethod
@@ -9709,6 +9730,24 @@ class GetMysqlDbSystemCurrentPlacementResult(dict):
9709
9730
  return pulumi.get(self, "fault_domain")
9710
9731
 
9711
9732
 
9733
+ @pulumi.output_type
9734
+ class GetMysqlDbSystemCustomerContactResult(dict):
9735
+ def __init__(__self__, *,
9736
+ email: str):
9737
+ """
9738
+ :param str email: The email address used by Oracle to send notifications regarding the DB System.
9739
+ """
9740
+ pulumi.set(__self__, "email", email)
9741
+
9742
+ @property
9743
+ @pulumi.getter
9744
+ def email(self) -> str:
9745
+ """
9746
+ The email address used by Oracle to send notifications regarding the DB System.
9747
+ """
9748
+ return pulumi.get(self, "email")
9749
+
9750
+
9712
9751
  @pulumi.output_type
9713
9752
  class GetMysqlDbSystemDataStorageResult(dict):
9714
9753
  def __init__(__self__, *,
@@ -9719,7 +9758,7 @@ class GetMysqlDbSystemDataStorageResult(dict):
9719
9758
  max_storage_size_in_gbs: int):
9720
9759
  """
9721
9760
  :param int allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
9722
- :param int data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
9761
+ :param int data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
9723
9762
  :param int data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
9724
9763
  :param bool is_auto_expand_storage_enabled: Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
9725
9764
  :param int max_storage_size_in_gbs: Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
@@ -9742,7 +9781,7 @@ class GetMysqlDbSystemDataStorageResult(dict):
9742
9781
  @pulumi.getter(name="dataStorageSizeInGb")
9743
9782
  def data_storage_size_in_gb(self) -> int:
9744
9783
  """
9745
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
9784
+ Initial size of the data volume in GiBs that will be created and attached.
9746
9785
  """
9747
9786
  return pulumi.get(self, "data_storage_size_in_gb")
9748
9787
 
@@ -10136,6 +10175,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
10136
10175
  configuration_id: str,
10137
10176
  crash_recovery: str,
10138
10177
  current_placements: Sequence['outputs.GetMysqlDbSystemsDbSystemCurrentPlacementResult'],
10178
+ customer_contacts: Sequence['outputs.GetMysqlDbSystemsDbSystemCustomerContactResult'],
10139
10179
  data_storage_size_in_gb: int,
10140
10180
  data_storages: Sequence['outputs.GetMysqlDbSystemsDbSystemDataStorageResult'],
10141
10181
  database_management: str,
@@ -10174,7 +10214,8 @@ class GetMysqlDbSystemsDbSystemResult(dict):
10174
10214
  :param str configuration_id: The requested Configuration instance.
10175
10215
  :param str crash_recovery: Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
10176
10216
  :param Sequence['GetMysqlDbSystemsDbSystemCurrentPlacementArgs'] current_placements: The availability domain and fault domain a DB System is placed in.
10177
- :param int data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
10217
+ :param Sequence['GetMysqlDbSystemsDbSystemCustomerContactArgs'] customer_contacts: The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
10218
+ :param int data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
10178
10219
  :param Sequence['GetMysqlDbSystemsDbSystemDataStorageArgs'] data_storages: Data Storage information.
10179
10220
  :param str database_management: Filter DB Systems by their Database Management configuration.
10180
10221
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
@@ -10213,6 +10254,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
10213
10254
  pulumi.set(__self__, "configuration_id", configuration_id)
10214
10255
  pulumi.set(__self__, "crash_recovery", crash_recovery)
10215
10256
  pulumi.set(__self__, "current_placements", current_placements)
10257
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
10216
10258
  pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
10217
10259
  pulumi.set(__self__, "data_storages", data_storages)
10218
10260
  pulumi.set(__self__, "database_management", database_management)
@@ -10310,11 +10352,19 @@ class GetMysqlDbSystemsDbSystemResult(dict):
10310
10352
  """
10311
10353
  return pulumi.get(self, "current_placements")
10312
10354
 
10355
+ @property
10356
+ @pulumi.getter(name="customerContacts")
10357
+ def customer_contacts(self) -> Sequence['outputs.GetMysqlDbSystemsDbSystemCustomerContactResult']:
10358
+ """
10359
+ The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
10360
+ """
10361
+ return pulumi.get(self, "customer_contacts")
10362
+
10313
10363
  @property
10314
10364
  @pulumi.getter(name="dataStorageSizeInGb")
10315
10365
  def data_storage_size_in_gb(self) -> int:
10316
10366
  """
10317
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
10367
+ Initial size of the data volume in GiBs that will be created and attached.
10318
10368
  """
10319
10369
  return pulumi.get(self, "data_storage_size_in_gb")
10320
10370
 
@@ -11084,6 +11134,24 @@ class GetMysqlDbSystemsDbSystemCurrentPlacementResult(dict):
11084
11134
  return pulumi.get(self, "fault_domain")
11085
11135
 
11086
11136
 
11137
+ @pulumi.output_type
11138
+ class GetMysqlDbSystemsDbSystemCustomerContactResult(dict):
11139
+ def __init__(__self__, *,
11140
+ email: str):
11141
+ """
11142
+ :param str email: The email address used by Oracle to send notifications regarding the DB System.
11143
+ """
11144
+ pulumi.set(__self__, "email", email)
11145
+
11146
+ @property
11147
+ @pulumi.getter
11148
+ def email(self) -> str:
11149
+ """
11150
+ The email address used by Oracle to send notifications regarding the DB System.
11151
+ """
11152
+ return pulumi.get(self, "email")
11153
+
11154
+
11087
11155
  @pulumi.output_type
11088
11156
  class GetMysqlDbSystemsDbSystemDataStorageResult(dict):
11089
11157
  def __init__(__self__, *,
@@ -11094,7 +11162,7 @@ class GetMysqlDbSystemsDbSystemDataStorageResult(dict):
11094
11162
  max_storage_size_in_gbs: int):
11095
11163
  """
11096
11164
  :param int allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
11097
- :param int data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
11165
+ :param int data_storage_size_in_gb: Initial size of the data volume in GiBs that will be created and attached.
11098
11166
  :param int data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
11099
11167
  :param bool is_auto_expand_storage_enabled: Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
11100
11168
  :param int max_storage_size_in_gbs: Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
@@ -11117,7 +11185,7 @@ class GetMysqlDbSystemsDbSystemDataStorageResult(dict):
11117
11185
  @pulumi.getter(name="dataStorageSizeInGb")
11118
11186
  def data_storage_size_in_gb(self) -> int:
11119
11187
  """
11120
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
11188
+ Initial size of the data volume in GiBs that will be created and attached.
11121
11189
  """
11122
11190
  return pulumi.get(self, "data_storage_size_in_gb")
11123
11191
 
@@ -368,7 +368,7 @@ def get_cluster(cluster_id: Optional[str] = None,
368
368
  ```
369
369
 
370
370
 
371
- :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
371
+ :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
372
372
  """
373
373
  __args__ = dict()
374
374
  __args__['clusterId'] = cluster_id
@@ -423,6 +423,6 @@ def get_cluster_output(cluster_id: Optional[pulumi.Input[str]] = None,
423
423
  ```
424
424
 
425
425
 
426
- :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
426
+ :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
427
427
  """
428
428
  ...
@@ -197,7 +197,7 @@ def get_exsi_hosts(cluster_id: Optional[str] = None,
197
197
  ```
198
198
 
199
199
 
200
- :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
200
+ :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
201
201
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment as optional parameter.
202
202
  :param str compute_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compute instance.
203
203
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -274,7 +274,7 @@ def get_exsi_hosts_output(cluster_id: Optional[pulumi.Input[Optional[str]]] = No
274
274
  ```
275
275
 
276
276
 
277
- :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
277
+ :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
278
278
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment as optional parameter.
279
279
  :param str compute_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compute instance.
280
280
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -23,7 +23,7 @@ class GetSupportedVmwareSoftwareVersionsResult:
23
23
  """
24
24
  A collection of values returned by getSupportedVmwareSoftwareVersions.
25
25
  """
26
- def __init__(__self__, compartment_id=None, filters=None, host_shape_name=None, id=None, items=None, version=None):
26
+ def __init__(__self__, compartment_id=None, filters=None, host_shape_name=None, id=None, items=None, version=None, version_to_upgrade=None):
27
27
  if compartment_id and not isinstance(compartment_id, str):
28
28
  raise TypeError("Expected argument 'compartment_id' to be a str")
29
29
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -42,6 +42,9 @@ class GetSupportedVmwareSoftwareVersionsResult:
42
42
  if version and not isinstance(version, str):
43
43
  raise TypeError("Expected argument 'version' to be a str")
44
44
  pulumi.set(__self__, "version", version)
45
+ if version_to_upgrade and not isinstance(version_to_upgrade, str):
46
+ raise TypeError("Expected argument 'version_to_upgrade' to be a str")
47
+ pulumi.set(__self__, "version_to_upgrade", version_to_upgrade)
45
48
 
46
49
  @property
47
50
  @pulumi.getter(name="compartmentId")
@@ -82,6 +85,11 @@ class GetSupportedVmwareSoftwareVersionsResult:
82
85
  """
83
86
  return pulumi.get(self, "version")
84
87
 
88
+ @property
89
+ @pulumi.getter(name="versionToUpgrade")
90
+ def version_to_upgrade(self) -> Optional[str]:
91
+ return pulumi.get(self, "version_to_upgrade")
92
+
85
93
 
86
94
  class AwaitableGetSupportedVmwareSoftwareVersionsResult(GetSupportedVmwareSoftwareVersionsResult):
87
95
  # pylint: disable=using-constant-test
@@ -94,13 +102,15 @@ class AwaitableGetSupportedVmwareSoftwareVersionsResult(GetSupportedVmwareSoftwa
94
102
  host_shape_name=self.host_shape_name,
95
103
  id=self.id,
96
104
  items=self.items,
97
- version=self.version)
105
+ version=self.version,
106
+ version_to_upgrade=self.version_to_upgrade)
98
107
 
99
108
 
100
109
  def get_supported_vmware_software_versions(compartment_id: Optional[str] = None,
101
110
  filters: Optional[Sequence[Union['GetSupportedVmwareSoftwareVersionsFilterArgs', 'GetSupportedVmwareSoftwareVersionsFilterArgsDict']]] = None,
102
111
  host_shape_name: Optional[str] = None,
103
112
  version: Optional[str] = None,
113
+ version_to_upgrade: Optional[str] = None,
104
114
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSupportedVmwareSoftwareVersionsResult:
105
115
  """
106
116
  This data source provides the list of Supported Vmware Software Versions in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.
@@ -116,19 +126,22 @@ def get_supported_vmware_software_versions(compartment_id: Optional[str] = None,
116
126
 
117
127
  test_supported_vmware_software_versions = oci.Ocvp.get_supported_vmware_software_versions(compartment_id=compartment_id,
118
128
  host_shape_name=test_shape["name"],
119
- version=supported_vmware_software_version_version)
129
+ version=supported_vmware_software_version_version,
130
+ version_to_upgrade=supported_vmware_software_version_version_to_upgrade)
120
131
  ```
121
132
 
122
133
 
123
134
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
124
135
  :param str host_shape_name: A filter to return only resources that match or support the given ESXi host shape.
125
136
  :param str version: A filter to return only resources that match the given VMware software version exactly.
137
+ :param str version_to_upgrade: A filter to return only VMware software versions that the given VMware software version can be upgraded to.
126
138
  """
127
139
  __args__ = dict()
128
140
  __args__['compartmentId'] = compartment_id
129
141
  __args__['filters'] = filters
130
142
  __args__['hostShapeName'] = host_shape_name
131
143
  __args__['version'] = version
144
+ __args__['versionToUpgrade'] = version_to_upgrade
132
145
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
133
146
  __ret__ = pulumi.runtime.invoke('oci:Ocvp/getSupportedVmwareSoftwareVersions:getSupportedVmwareSoftwareVersions', __args__, opts=opts, typ=GetSupportedVmwareSoftwareVersionsResult).value
134
147
 
@@ -138,7 +151,8 @@ def get_supported_vmware_software_versions(compartment_id: Optional[str] = None,
138
151
  host_shape_name=pulumi.get(__ret__, 'host_shape_name'),
139
152
  id=pulumi.get(__ret__, 'id'),
140
153
  items=pulumi.get(__ret__, 'items'),
141
- version=pulumi.get(__ret__, 'version'))
154
+ version=pulumi.get(__ret__, 'version'),
155
+ version_to_upgrade=pulumi.get(__ret__, 'version_to_upgrade'))
142
156
 
143
157
 
144
158
  @_utilities.lift_output_func(get_supported_vmware_software_versions)
@@ -146,6 +160,7 @@ def get_supported_vmware_software_versions_output(compartment_id: Optional[pulum
146
160
  filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSupportedVmwareSoftwareVersionsFilterArgs', 'GetSupportedVmwareSoftwareVersionsFilterArgsDict']]]]] = None,
147
161
  host_shape_name: Optional[pulumi.Input[Optional[str]]] = None,
148
162
  version: Optional[pulumi.Input[Optional[str]]] = None,
163
+ version_to_upgrade: Optional[pulumi.Input[Optional[str]]] = None,
149
164
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSupportedVmwareSoftwareVersionsResult]:
150
165
  """
151
166
  This data source provides the list of Supported Vmware Software Versions in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.
@@ -161,12 +176,14 @@ def get_supported_vmware_software_versions_output(compartment_id: Optional[pulum
161
176
 
162
177
  test_supported_vmware_software_versions = oci.Ocvp.get_supported_vmware_software_versions(compartment_id=compartment_id,
163
178
  host_shape_name=test_shape["name"],
164
- version=supported_vmware_software_version_version)
179
+ version=supported_vmware_software_version_version,
180
+ version_to_upgrade=supported_vmware_software_version_version_to_upgrade)
165
181
  ```
166
182
 
167
183
 
168
184
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
169
185
  :param str host_shape_name: A filter to return only resources that match or support the given ESXi host shape.
170
186
  :param str version: A filter to return only resources that match the given VMware software version exactly.
187
+ :param str version_to_upgrade: A filter to return only VMware software versions that the given VMware software version can be upgraded to.
171
188
  """
172
189
  ...
@@ -2039,7 +2039,7 @@ class GetExsiHostsEsxiHostCollectionResult(dict):
2039
2039
  :param str billing_contract_end_date: Current billing cycle end date. If the value in `currentCommitment` and `nextCommitment` are different, the value specified in `nextCommitment` becomes the new `currentCommitment` when the `contractEndDate` is reached. Example: `2016-08-25T21:10:29.600Z`
2040
2040
  :param str billing_donor_host_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deleted ESXi Host with LeftOver billing cycle.
2041
2041
  :param str capacity_reservation_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Capacity Reservation.
2042
- :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
2042
+ :param str cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
2043
2043
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment as optional parameter.
2044
2044
  :param str compute_availability_domain: The availability domain of the ESXi host.
2045
2045
  :param str compute_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compute instance.
@@ -2129,7 +2129,7 @@ class GetExsiHostsEsxiHostCollectionResult(dict):
2129
2129
  @pulumi.getter(name="clusterId")
2130
2130
  def cluster_id(self) -> str:
2131
2131
  """
2132
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Cluster.
2132
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster.
2133
2133
  """
2134
2134
  return pulumi.get(self, "cluster_id")
2135
2135
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.8.0-alpha.1724316519"
4
+ "version": "2.9.0"
5
5
  }
@@ -159,10 +159,6 @@ class ProtectedDatabaseRecoveryServiceSubnetArgs:
159
159
  state: Optional[pulumi.Input[str]] = None):
160
160
  """
161
161
  :param pulumi.Input[str] recovery_service_subnet_id: (Updatable) The recovery service subnet OCID.
162
-
163
-
164
- ** IMPORTANT **
165
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
166
162
  :param pulumi.Input[str] state: The current state of the Protected Database.
167
163
  """
168
164
  pulumi.set(__self__, "recovery_service_subnet_id", recovery_service_subnet_id)
@@ -174,10 +170,6 @@ class ProtectedDatabaseRecoveryServiceSubnetArgs:
174
170
  def recovery_service_subnet_id(self) -> pulumi.Input[str]:
175
171
  """
176
172
  (Updatable) The recovery service subnet OCID.
177
-
178
-
179
- ** IMPORTANT **
180
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
181
173
  """
182
174
  return pulumi.get(self, "recovery_service_subnet_id")
183
175