pulumi-oci 2.2.0a1720767463__py3-none-any.whl → 2.3.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 (33) hide show
  1. pulumi_oci/__init__.py +0 -11
  2. pulumi_oci/_utilities.py +3 -4
  3. pulumi_oci/cloudmigrations/_inputs.py +8 -0
  4. pulumi_oci/cloudmigrations/outputs.py +8 -0
  5. pulumi_oci/core/_inputs.py +4 -0
  6. pulumi_oci/core/outputs.py +4 -0
  7. pulumi_oci/database/_inputs.py +26 -0
  8. pulumi_oci/database/outputs.py +26 -0
  9. pulumi_oci/databasemigration/_inputs.py +56 -0
  10. pulumi_oci/databasemigration/get_migration.py +14 -1
  11. pulumi_oci/databasemigration/get_migrations.py +14 -1
  12. pulumi_oci/databasemigration/migration.py +57 -0
  13. pulumi_oci/databasemigration/outputs.py +143 -0
  14. pulumi_oci/dataintegration/_inputs.py +4 -0
  15. pulumi_oci/dataintegration/outputs.py +4 -0
  16. pulumi_oci/managementagent/_inputs.py +44 -0
  17. pulumi_oci/managementagent/outputs.py +44 -0
  18. pulumi_oci/meteringcomputation/_inputs.py +32 -0
  19. pulumi_oci/meteringcomputation/outputs.py +29 -1
  20. pulumi_oci/pulumi-plugin.json +1 -1
  21. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/METADATA +1 -1
  22. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/RECORD +24 -33
  23. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/WHEEL +1 -1
  24. pulumi_oci/emwarehouse/__init__.py +0 -15
  25. pulumi_oci/emwarehouse/_inputs.py +0 -94
  26. pulumi_oci/emwarehouse/em_warehouse.py +0 -721
  27. pulumi_oci/emwarehouse/get_em_warehouse.py +0 -300
  28. pulumi_oci/emwarehouse/get_em_warehouses.py +0 -203
  29. pulumi_oci/emwarehouse/get_etl_run.py +0 -159
  30. pulumi_oci/emwarehouse/get_etl_runs.py +0 -173
  31. pulumi_oci/emwarehouse/get_resource_usage.py +0 -171
  32. pulumi_oci/emwarehouse/outputs.py +0 -616
  33. {pulumi_oci-2.2.0a1720767463.dist-info → pulumi_oci-2.3.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py CHANGED
@@ -103,8 +103,6 @@ if typing.TYPE_CHECKING:
103
103
  dns = __dns
104
104
  import pulumi_oci.email as __email
105
105
  email = __email
106
- import pulumi_oci.emwarehouse as __emwarehouse
107
- emwarehouse = __emwarehouse
108
106
  import pulumi_oci.events as __events
109
107
  events = __events
110
108
  import pulumi_oci.filestorage as __filestorage
@@ -289,7 +287,6 @@ else:
289
287
  disasterrecovery = _utilities.lazy_import('pulumi_oci.disasterrecovery')
290
288
  dns = _utilities.lazy_import('pulumi_oci.dns')
291
289
  email = _utilities.lazy_import('pulumi_oci.email')
292
- emwarehouse = _utilities.lazy_import('pulumi_oci.emwarehouse')
293
290
  events = _utilities.lazy_import('pulumi_oci.events')
294
291
  filestorage = _utilities.lazy_import('pulumi_oci.filestorage')
295
292
  functions = _utilities.lazy_import('pulumi_oci.functions')
@@ -3362,14 +3359,6 @@ _utilities.register(
3362
3359
  "oci:Dns/zone:Zone": "Zone"
3363
3360
  }
3364
3361
  },
3365
- {
3366
- "pkg": "oci",
3367
- "mod": "EmWarehouse/emWarehouse",
3368
- "fqn": "pulumi_oci.emwarehouse",
3369
- "classes": {
3370
- "oci:EmWarehouse/emWarehouse:EmWarehouse": "EmWarehouse"
3371
- }
3372
- },
3373
3362
  {
3374
3363
  "pkg": "oci",
3375
3364
  "mod": "Email/dkim",
pulumi_oci/_utilities.py CHANGED
@@ -100,10 +100,6 @@ def _get_semver_version():
100
100
  _version = _get_semver_version()
101
101
  _version_str = str(_version)
102
102
 
103
-
104
- def get_version():
105
- return _version_str
106
-
107
103
  def get_resource_opts_defaults() -> pulumi.ResourceOptions:
108
104
  return pulumi.ResourceOptions(
109
105
  version=get_version(),
@@ -324,3 +320,6 @@ def deprecated(message: str) -> typing.Callable[[C], C]:
324
320
 
325
321
  def get_plugin_download_url():
326
322
  return None
323
+
324
+ def get_version():
325
+ return _version_str
@@ -1743,6 +1743,7 @@ class TargetAssetRecommendedSpecArgs:
1743
1743
  :param pulumi.Input[Sequence[pulumi.Input['TargetAssetRecommendedSpecPreemptibleInstanceConfigArgs']]] preemptible_instance_configs: Configuration options for preemptible instances.
1744
1744
  :param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
1745
1745
  :param pulumi.Input[Sequence[pulumi.Input['TargetAssetRecommendedSpecShapeConfigArgs']]] shape_configs: The shape configuration requested for the instance.
1746
+ :param pulumi.Input[Sequence[pulumi.Input['TargetAssetRecommendedSpecSourceDetailArgs']]] source_details: (Updatable)
1746
1747
  """
1747
1748
  if agent_configs is not None:
1748
1749
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -1988,6 +1989,9 @@ class TargetAssetRecommendedSpecArgs:
1988
1989
  @property
1989
1990
  @pulumi.getter(name="sourceDetails")
1990
1991
  def source_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssetRecommendedSpecSourceDetailArgs']]]]:
1992
+ """
1993
+ (Updatable)
1994
+ """
1991
1995
  return pulumi.get(self, "source_details")
1992
1996
 
1993
1997
  @source_details.setter
@@ -2570,6 +2574,7 @@ class TargetAssetTestSpecArgs:
2570
2574
  :param pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecPreemptibleInstanceConfigArgs']]] preemptible_instance_configs: Configuration options for preemptible instances.
2571
2575
  :param pulumi.Input[str] shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
2572
2576
  :param pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecShapeConfigArgs']]] shape_configs: The shape configuration requested for the instance.
2577
+ :param pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecSourceDetailArgs']]] source_details: (Updatable)
2573
2578
  """
2574
2579
  if agent_configs is not None:
2575
2580
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2815,6 +2820,9 @@ class TargetAssetTestSpecArgs:
2815
2820
  @property
2816
2821
  @pulumi.getter(name="sourceDetails")
2817
2822
  def source_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecSourceDetailArgs']]]]:
2823
+ """
2824
+ (Updatable)
2825
+ """
2818
2826
  return pulumi.get(self, "source_details")
2819
2827
 
2820
2828
  @source_details.setter
@@ -1870,6 +1870,7 @@ class TargetAssetRecommendedSpec(dict):
1870
1870
  :param Sequence['TargetAssetRecommendedSpecPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
1871
1871
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
1872
1872
  :param Sequence['TargetAssetRecommendedSpecShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
1873
+ :param Sequence['TargetAssetRecommendedSpecSourceDetailArgs'] source_details: (Updatable)
1873
1874
  """
1874
1875
  if agent_configs is not None:
1875
1876
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2047,6 +2048,9 @@ class TargetAssetRecommendedSpec(dict):
2047
2048
  @property
2048
2049
  @pulumi.getter(name="sourceDetails")
2049
2050
  def source_details(self) -> Optional[Sequence['outputs.TargetAssetRecommendedSpecSourceDetail']]:
2051
+ """
2052
+ (Updatable)
2053
+ """
2050
2054
  return pulumi.get(self, "source_details")
2051
2055
 
2052
2056
 
@@ -2728,6 +2732,7 @@ class TargetAssetTestSpec(dict):
2728
2732
  :param Sequence['TargetAssetTestSpecPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
2729
2733
  :param str shape: The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
2730
2734
  :param Sequence['TargetAssetTestSpecShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
2735
+ :param Sequence['TargetAssetTestSpecSourceDetailArgs'] source_details: (Updatable)
2731
2736
  """
2732
2737
  if agent_configs is not None:
2733
2738
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2905,6 +2910,9 @@ class TargetAssetTestSpec(dict):
2905
2910
  @property
2906
2911
  @pulumi.getter(name="sourceDetails")
2907
2912
  def source_details(self) -> Optional[Sequence['outputs.TargetAssetTestSpecSourceDetail']]:
2913
+ """
2914
+ (Updatable)
2915
+ """
2908
2916
  return pulumi.get(self, "source_details")
2909
2917
 
2910
2918
 
@@ -10962,6 +10962,7 @@ class InstanceSourceDetailsArgs:
10962
10962
 
10963
10963
  Allowed values:
10964
10964
  :param pulumi.Input['InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs'] instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
10965
+ :param pulumi.Input[bool] is_preserve_boot_volume_enabled: (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
10965
10966
  :param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10966
10967
  :param pulumi.Input[str] source_id: (Updatable) The OCID of the boot volume used to boot the instance.
10967
10968
  """
@@ -11032,6 +11033,9 @@ class InstanceSourceDetailsArgs:
11032
11033
  @property
11033
11034
  @pulumi.getter(name="isPreserveBootVolumeEnabled")
11034
11035
  def is_preserve_boot_volume_enabled(self) -> Optional[pulumi.Input[bool]]:
11036
+ """
11037
+ (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
11038
+ """
11035
11039
  return pulumi.get(self, "is_preserve_boot_volume_enabled")
11036
11040
 
11037
11041
  @is_preserve_boot_volume_enabled.setter
@@ -11683,6 +11683,7 @@ class InstanceSourceDetails(dict):
11683
11683
 
11684
11684
  Allowed values:
11685
11685
  :param 'InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
11686
+ :param bool is_preserve_boot_volume_enabled: (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
11686
11687
  :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11687
11688
  :param str source_id: (Updatable) The OCID of the boot volume used to boot the instance.
11688
11689
  """
@@ -11737,6 +11738,9 @@ class InstanceSourceDetails(dict):
11737
11738
  @property
11738
11739
  @pulumi.getter(name="isPreserveBootVolumeEnabled")
11739
11740
  def is_preserve_boot_volume_enabled(self) -> Optional[bool]:
11741
+ """
11742
+ (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
11743
+ """
11740
11744
  return pulumi.get(self, "is_preserve_boot_volume_enabled")
11741
11745
 
11742
11746
  @property
@@ -607,6 +607,7 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
607
607
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousContainerDatabaseMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
608
608
  :param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
609
609
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
610
+ :param pulumi.Input[Sequence[pulumi.Input[bool]]] skip_rus: (Updatable) If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
610
611
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
611
612
  """
612
613
  if custom_action_timeout_in_mins is not None:
@@ -744,6 +745,9 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
744
745
  @property
745
746
  @pulumi.getter(name="skipRus")
746
747
  def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
748
+ """
749
+ (Updatable) If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
750
+ """
747
751
  return pulumi.get(self, "skip_rus")
748
752
 
749
753
  @skip_rus.setter
@@ -2926,6 +2930,9 @@ class AutonomousVmClusterMaintenanceWindowArgs:
2926
2930
  * 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
2927
2931
  :param pulumi.Input[int] lead_time_in_weeks: Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
2928
2932
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousVmClusterMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
2933
+ :param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
2934
+
2935
+ *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
2929
2936
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
2930
2937
  :param pulumi.Input[Sequence[pulumi.Input[int]]] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
2931
2938
  """
@@ -3031,6 +3038,11 @@ class AutonomousVmClusterMaintenanceWindowArgs:
3031
3038
  @property
3032
3039
  @pulumi.getter(name="patchingMode")
3033
3040
  def patching_mode(self) -> Optional[pulumi.Input[str]]:
3041
+ """
3042
+ (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
3043
+
3044
+ *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
3045
+ """
3034
3046
  return pulumi.get(self, "patching_mode")
3035
3047
 
3036
3048
  @patching_mode.setter
@@ -3904,12 +3916,19 @@ class CloudDatabaseManagementCredentialdetailsArgs:
3904
3916
  def __init__(__self__, *,
3905
3917
  password_secret_id: pulumi.Input[str],
3906
3918
  user_name: pulumi.Input[str]):
3919
+ """
3920
+ :param pulumi.Input[str] password_secret_id: Specific database username's password [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
3921
+ :param pulumi.Input[str] user_name: Database username
3922
+ """
3907
3923
  pulumi.set(__self__, "password_secret_id", password_secret_id)
3908
3924
  pulumi.set(__self__, "user_name", user_name)
3909
3925
 
3910
3926
  @property
3911
3927
  @pulumi.getter(name="passwordSecretId")
3912
3928
  def password_secret_id(self) -> pulumi.Input[str]:
3929
+ """
3930
+ Specific database username's password [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
3931
+ """
3913
3932
  return pulumi.get(self, "password_secret_id")
3914
3933
 
3915
3934
  @password_secret_id.setter
@@ -3919,6 +3938,9 @@ class CloudDatabaseManagementCredentialdetailsArgs:
3919
3938
  @property
3920
3939
  @pulumi.getter(name="userName")
3921
3940
  def user_name(self) -> pulumi.Input[str]:
3941
+ """
3942
+ Database username
3943
+ """
3922
3944
  return pulumi.get(self, "user_name")
3923
3945
 
3924
3946
  @user_name.setter
@@ -6751,6 +6773,7 @@ class DbSystemDbHomeDatabaseArgs:
6751
6773
  :param pulumi.Input['DbSystemDbHomeDatabaseDbBackupConfigArgs'] db_backup_config: (Updatable) Backup Options To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm).
6752
6774
  :param pulumi.Input[str] db_domain: The database domain. In a distributed database system, DB_DOMAIN specifies the logical location of the database within the network structure.
6753
6775
  :param pulumi.Input[str] db_name: The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
6776
+ :param pulumi.Input[str] db_unique_name: The `DB_UNIQUE_NAME` of the Oracle Database.
6754
6777
  :param pulumi.Input[str] db_workload: **Deprecated.** The dbWorkload field has been deprecated for Exadata Database Service on Dedicated Infrastructure, Exadata Database Service on Cloud@Customer, and Base Database Service. Support for this attribute will end in November 2023. You may choose to update your custom scripts to exclude the dbWorkload attribute. After November 2023 if you pass a value to the dbWorkload attribute, it will be ignored.
6755
6778
 
6756
6779
  The database workload type.
@@ -6943,6 +6966,9 @@ class DbSystemDbHomeDatabaseArgs:
6943
6966
  @property
6944
6967
  @pulumi.getter(name="dbUniqueName")
6945
6968
  def db_unique_name(self) -> Optional[pulumi.Input[str]]:
6969
+ """
6970
+ The `DB_UNIQUE_NAME` of the Oracle Database.
6971
+ """
6946
6972
  return pulumi.get(self, "db_unique_name")
6947
6973
 
6948
6974
  @db_unique_name.setter
@@ -1027,6 +1027,7 @@ class AutonomousContainerDatabaseMaintenanceWindow(dict):
1027
1027
  :param Sequence['AutonomousContainerDatabaseMaintenanceWindowMonthArgs'] months: Months during the year when maintenance should be performed.
1028
1028
  :param str patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
1029
1029
  :param str preference: The maintenance window scheduling preference.
1030
+ :param Sequence[bool] skip_rus: (Updatable) If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
1030
1031
  :param Sequence[int] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
1031
1032
  """
1032
1033
  if custom_action_timeout_in_mins is not None:
@@ -1128,6 +1129,9 @@ class AutonomousContainerDatabaseMaintenanceWindow(dict):
1128
1129
  @property
1129
1130
  @pulumi.getter(name="skipRus")
1130
1131
  def skip_rus(self) -> Optional[Sequence[bool]]:
1132
+ """
1133
+ (Updatable) If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
1134
+ """
1131
1135
  return pulumi.get(self, "skip_rus")
1132
1136
 
1133
1137
  @property
@@ -3331,6 +3335,9 @@ class AutonomousVmClusterMaintenanceWindow(dict):
3331
3335
  * 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
3332
3336
  :param int lead_time_in_weeks: Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
3333
3337
  :param Sequence['AutonomousVmClusterMaintenanceWindowMonthArgs'] months: Months during the year when maintenance should be performed.
3338
+ :param str patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
3339
+
3340
+ *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
3334
3341
  :param str preference: The maintenance window scheduling preference.
3335
3342
  :param Sequence[int] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
3336
3343
  """
@@ -3408,6 +3415,11 @@ class AutonomousVmClusterMaintenanceWindow(dict):
3408
3415
  @property
3409
3416
  @pulumi.getter(name="patchingMode")
3410
3417
  def patching_mode(self) -> Optional[str]:
3418
+ """
3419
+ (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
3420
+
3421
+ *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
3422
+ """
3411
3423
  return pulumi.get(self, "patching_mode")
3412
3424
 
3413
3425
  @property
@@ -4235,17 +4247,27 @@ class CloudDatabaseManagementCredentialdetails(dict):
4235
4247
  def __init__(__self__, *,
4236
4248
  password_secret_id: str,
4237
4249
  user_name: str):
4250
+ """
4251
+ :param str password_secret_id: Specific database username's password [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4252
+ :param str user_name: Database username
4253
+ """
4238
4254
  pulumi.set(__self__, "password_secret_id", password_secret_id)
4239
4255
  pulumi.set(__self__, "user_name", user_name)
4240
4256
 
4241
4257
  @property
4242
4258
  @pulumi.getter(name="passwordSecretId")
4243
4259
  def password_secret_id(self) -> str:
4260
+ """
4261
+ Specific database username's password [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4262
+ """
4244
4263
  return pulumi.get(self, "password_secret_id")
4245
4264
 
4246
4265
  @property
4247
4266
  @pulumi.getter(name="userName")
4248
4267
  def user_name(self) -> str:
4268
+ """
4269
+ Database username
4270
+ """
4249
4271
  return pulumi.get(self, "user_name")
4250
4272
 
4251
4273
 
@@ -7140,6 +7162,7 @@ class DbSystemDbHomeDatabase(dict):
7140
7162
  :param 'DbSystemDbHomeDatabaseDbBackupConfigArgs' db_backup_config: (Updatable) Backup Options To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see [Getting Started with Policies](https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm).
7141
7163
  :param str db_domain: The database domain. In a distributed database system, DB_DOMAIN specifies the logical location of the database within the network structure.
7142
7164
  :param str db_name: The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.
7165
+ :param str db_unique_name: The `DB_UNIQUE_NAME` of the Oracle Database.
7143
7166
  :param str db_workload: **Deprecated.** The dbWorkload field has been deprecated for Exadata Database Service on Dedicated Infrastructure, Exadata Database Service on Cloud@Customer, and Base Database Service. Support for this attribute will end in November 2023. You may choose to update your custom scripts to exclude the dbWorkload attribute. After November 2023 if you pass a value to the dbWorkload attribute, it will be ignored.
7144
7167
 
7145
7168
  The database workload type.
@@ -7292,6 +7315,9 @@ class DbSystemDbHomeDatabase(dict):
7292
7315
  @property
7293
7316
  @pulumi.getter(name="dbUniqueName")
7294
7317
  def db_unique_name(self) -> Optional[str]:
7318
+ """
7319
+ The `DB_UNIQUE_NAME` of the Oracle Database.
7320
+ """
7295
7321
  return pulumi.get(self, "db_unique_name")
7296
7322
 
7297
7323
  @property
@@ -17,6 +17,7 @@ __all__ = [
17
17
  'JobProgressPhaseExtractArgs',
18
18
  'JobProgressPhaseLogLocationArgs',
19
19
  'JobUnsupportedObjectArgs',
20
+ 'MigrationAdvancedParameterArgs',
20
21
  'MigrationAdvisorSettingsArgs',
21
22
  'MigrationDataTransferMediumDetailsArgs',
22
23
  'MigrationDataTransferMediumDetailsObjectStorageBucketArgs',
@@ -459,6 +460,61 @@ class JobUnsupportedObjectArgs:
459
460
  pulumi.set(self, "type", value)
460
461
 
461
462
 
463
+ @pulumi.input_type
464
+ class MigrationAdvancedParameterArgs:
465
+ def __init__(__self__, *,
466
+ data_type: Optional[pulumi.Input[str]] = None,
467
+ name: Optional[pulumi.Input[str]] = None,
468
+ value: Optional[pulumi.Input[str]] = None):
469
+ """
470
+ :param pulumi.Input[str] data_type: (Updatable) Parameter data type.
471
+ :param pulumi.Input[str] name: (Updatable) Parameter name.
472
+ :param pulumi.Input[str] value: (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
473
+ """
474
+ if data_type is not None:
475
+ pulumi.set(__self__, "data_type", data_type)
476
+ if name is not None:
477
+ pulumi.set(__self__, "name", name)
478
+ if value is not None:
479
+ pulumi.set(__self__, "value", value)
480
+
481
+ @property
482
+ @pulumi.getter(name="dataType")
483
+ def data_type(self) -> Optional[pulumi.Input[str]]:
484
+ """
485
+ (Updatable) Parameter data type.
486
+ """
487
+ return pulumi.get(self, "data_type")
488
+
489
+ @data_type.setter
490
+ def data_type(self, value: Optional[pulumi.Input[str]]):
491
+ pulumi.set(self, "data_type", value)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def name(self) -> Optional[pulumi.Input[str]]:
496
+ """
497
+ (Updatable) Parameter name.
498
+ """
499
+ return pulumi.get(self, "name")
500
+
501
+ @name.setter
502
+ def name(self, value: Optional[pulumi.Input[str]]):
503
+ pulumi.set(self, "name", value)
504
+
505
+ @property
506
+ @pulumi.getter
507
+ def value(self) -> Optional[pulumi.Input[str]]:
508
+ """
509
+ (Updatable) If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.
510
+ """
511
+ return pulumi.get(self, "value")
512
+
513
+ @value.setter
514
+ def value(self, value: Optional[pulumi.Input[str]]):
515
+ pulumi.set(self, "value", value)
516
+
517
+
462
518
  @pulumi.input_type
463
519
  class MigrationAdvisorSettingsArgs:
464
520
  def __init__(__self__, *,
@@ -22,7 +22,10 @@ class GetMigrationResult:
22
22
  """
23
23
  A collection of values returned by getMigration.
24
24
  """
25
- def __init__(__self__, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
25
+ def __init__(__self__, advanced_parameters=None, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
26
+ if advanced_parameters and not isinstance(advanced_parameters, list):
27
+ raise TypeError("Expected argument 'advanced_parameters' to be a list")
28
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
26
29
  if advisor_settings and not isinstance(advisor_settings, list):
27
30
  raise TypeError("Expected argument 'advisor_settings' to be a list")
28
31
  pulumi.set(__self__, "advisor_settings", advisor_settings)
@@ -108,6 +111,14 @@ class GetMigrationResult:
108
111
  raise TypeError("Expected argument 'wait_after' to be a str")
109
112
  pulumi.set(__self__, "wait_after", wait_after)
110
113
 
114
+ @property
115
+ @pulumi.getter(name="advancedParameters")
116
+ def advanced_parameters(self) -> Sequence['outputs.GetMigrationAdvancedParameterResult']:
117
+ """
118
+ List of Migration Parameter objects.
119
+ """
120
+ return pulumi.get(self, "advanced_parameters")
121
+
111
122
  @property
112
123
  @pulumi.getter(name="advisorSettings")
113
124
  def advisor_settings(self) -> Sequence['outputs.GetMigrationAdvisorSettingResult']:
@@ -327,6 +338,7 @@ class AwaitableGetMigrationResult(GetMigrationResult):
327
338
  if False:
328
339
  yield self
329
340
  return GetMigrationResult(
341
+ advanced_parameters=self.advanced_parameters,
330
342
  advisor_settings=self.advisor_settings,
331
343
  bulk_include_exclude_data=self.bulk_include_exclude_data,
332
344
  compartment_id=self.compartment_id,
@@ -378,6 +390,7 @@ def get_migration(migration_id: Optional[str] = None,
378
390
  __ret__ = pulumi.runtime.invoke('oci:DatabaseMigration/getMigration:getMigration', __args__, opts=opts, typ=GetMigrationResult).value
379
391
 
380
392
  return AwaitableGetMigrationResult(
393
+ advanced_parameters=pulumi.get(__ret__, 'advanced_parameters'),
381
394
  advisor_settings=pulumi.get(__ret__, 'advisor_settings'),
382
395
  bulk_include_exclude_data=pulumi.get(__ret__, 'bulk_include_exclude_data'),
383
396
  compartment_id=pulumi.get(__ret__, 'compartment_id'),
@@ -22,7 +22,10 @@ class GetMigrationsResult:
22
22
  """
23
23
  A collection of values returned by getMigrations.
24
24
  """
25
- def __init__(__self__, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
25
+ def __init__(__self__, advanced_parameters=None, advisor_settings=None, bulk_include_exclude_data=None, compartment_id=None, data_transfer_medium_details=None, database_combination=None, defined_tags=None, description=None, display_name=None, exclude_objects=None, executing_job_id=None, freeform_tags=None, ggs_details=None, hub_details=None, id=None, include_objects=None, initial_load_settings=None, lifecycle_details=None, migration_id=None, source_container_database_connection_id=None, source_database_connection_id=None, state=None, system_tags=None, target_database_connection_id=None, time_created=None, time_last_migration=None, time_updated=None, type=None, wait_after=None):
26
+ if advanced_parameters and not isinstance(advanced_parameters, list):
27
+ raise TypeError("Expected argument 'advanced_parameters' to be a list")
28
+ pulumi.set(__self__, "advanced_parameters", advanced_parameters)
26
29
  if advisor_settings and not isinstance(advisor_settings, list):
27
30
  raise TypeError("Expected argument 'advisor_settings' to be a list")
28
31
  pulumi.set(__self__, "advisor_settings", advisor_settings)
@@ -108,6 +111,14 @@ class GetMigrationsResult:
108
111
  raise TypeError("Expected argument 'wait_after' to be a str")
109
112
  pulumi.set(__self__, "wait_after", wait_after)
110
113
 
114
+ @property
115
+ @pulumi.getter(name="advancedParameters")
116
+ def advanced_parameters(self) -> Sequence['outputs.GetMigrationsAdvancedParameterResult']:
117
+ """
118
+ List of Migration Parameter objects.
119
+ """
120
+ return pulumi.get(self, "advanced_parameters")
121
+
111
122
  @property
112
123
  @pulumi.getter(name="advisorSettings")
113
124
  def advisor_settings(self) -> Sequence['outputs.GetMigrationsAdvisorSettingResult']:
@@ -327,6 +338,7 @@ class AwaitableGetMigrationsResult(GetMigrationsResult):
327
338
  if False:
328
339
  yield self
329
340
  return GetMigrationsResult(
341
+ advanced_parameters=self.advanced_parameters,
330
342
  advisor_settings=self.advisor_settings,
331
343
  bulk_include_exclude_data=self.bulk_include_exclude_data,
332
344
  compartment_id=self.compartment_id,
@@ -368,6 +380,7 @@ def get_migrations(migration_id: Optional[str] = None,
368
380
  __ret__ = pulumi.runtime.invoke('oci:DatabaseMigration/getMigrations:getMigrations', __args__, opts=opts, typ=GetMigrationsResult).value
369
381
 
370
382
  return AwaitableGetMigrationsResult(
383
+ advanced_parameters=pulumi.get(__ret__, 'advanced_parameters'),
371
384
  advisor_settings=pulumi.get(__ret__, 'advisor_settings'),
372
385
  bulk_include_exclude_data=pulumi.get(__ret__, 'bulk_include_exclude_data'),
373
386
  compartment_id=pulumi.get(__ret__, 'compartment_id'),