pulumi-oci 2.3.0__py3-none-any.whl → 2.3.0a1720853064__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.
pulumi_oci/__init__.py CHANGED
@@ -103,6 +103,8 @@ 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
106
108
  import pulumi_oci.events as __events
107
109
  events = __events
108
110
  import pulumi_oci.filestorage as __filestorage
@@ -287,6 +289,7 @@ else:
287
289
  disasterrecovery = _utilities.lazy_import('pulumi_oci.disasterrecovery')
288
290
  dns = _utilities.lazy_import('pulumi_oci.dns')
289
291
  email = _utilities.lazy_import('pulumi_oci.email')
292
+ emwarehouse = _utilities.lazy_import('pulumi_oci.emwarehouse')
290
293
  events = _utilities.lazy_import('pulumi_oci.events')
291
294
  filestorage = _utilities.lazy_import('pulumi_oci.filestorage')
292
295
  functions = _utilities.lazy_import('pulumi_oci.functions')
@@ -3359,6 +3362,14 @@ _utilities.register(
3359
3362
  "oci:Dns/zone:Zone": "Zone"
3360
3363
  }
3361
3364
  },
3365
+ {
3366
+ "pkg": "oci",
3367
+ "mod": "EmWarehouse/emWarehouse",
3368
+ "fqn": "pulumi_oci.emwarehouse",
3369
+ "classes": {
3370
+ "oci:EmWarehouse/emWarehouse:EmWarehouse": "EmWarehouse"
3371
+ }
3372
+ },
3362
3373
  {
3363
3374
  "pkg": "oci",
3364
3375
  "mod": "Email/dkim",
pulumi_oci/_utilities.py CHANGED
@@ -100,6 +100,10 @@ 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
+
103
107
  def get_resource_opts_defaults() -> pulumi.ResourceOptions:
104
108
  return pulumi.ResourceOptions(
105
109
  version=get_version(),
@@ -320,6 +324,3 @@ def deprecated(message: str) -> typing.Callable[[C], C]:
320
324
 
321
325
  def get_plugin_download_url():
322
326
  return None
323
-
324
- def get_version():
325
- return _version_str
@@ -1743,7 +1743,6 @@ 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)
1747
1746
  """
1748
1747
  if agent_configs is not None:
1749
1748
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -1989,9 +1988,6 @@ class TargetAssetRecommendedSpecArgs:
1989
1988
  @property
1990
1989
  @pulumi.getter(name="sourceDetails")
1991
1990
  def source_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssetRecommendedSpecSourceDetailArgs']]]]:
1992
- """
1993
- (Updatable)
1994
- """
1995
1991
  return pulumi.get(self, "source_details")
1996
1992
 
1997
1993
  @source_details.setter
@@ -2574,7 +2570,6 @@ class TargetAssetTestSpecArgs:
2574
2570
  :param pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecPreemptibleInstanceConfigArgs']]] preemptible_instance_configs: Configuration options for preemptible instances.
2575
2571
  :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.
2576
2572
  :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)
2578
2573
  """
2579
2574
  if agent_configs is not None:
2580
2575
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2820,9 +2815,6 @@ class TargetAssetTestSpecArgs:
2820
2815
  @property
2821
2816
  @pulumi.getter(name="sourceDetails")
2822
2817
  def source_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TargetAssetTestSpecSourceDetailArgs']]]]:
2823
- """
2824
- (Updatable)
2825
- """
2826
2818
  return pulumi.get(self, "source_details")
2827
2819
 
2828
2820
  @source_details.setter
@@ -1870,7 +1870,6 @@ 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)
1874
1873
  """
1875
1874
  if agent_configs is not None:
1876
1875
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2048,9 +2047,6 @@ class TargetAssetRecommendedSpec(dict):
2048
2047
  @property
2049
2048
  @pulumi.getter(name="sourceDetails")
2050
2049
  def source_details(self) -> Optional[Sequence['outputs.TargetAssetRecommendedSpecSourceDetail']]:
2051
- """
2052
- (Updatable)
2053
- """
2054
2050
  return pulumi.get(self, "source_details")
2055
2051
 
2056
2052
 
@@ -2732,7 +2728,6 @@ class TargetAssetTestSpec(dict):
2732
2728
  :param Sequence['TargetAssetTestSpecPreemptibleInstanceConfigArgs'] preemptible_instance_configs: Configuration options for preemptible instances.
2733
2729
  :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.
2734
2730
  :param Sequence['TargetAssetTestSpecShapeConfigArgs'] shape_configs: The shape configuration requested for the instance.
2735
- :param Sequence['TargetAssetTestSpecSourceDetailArgs'] source_details: (Updatable)
2736
2731
  """
2737
2732
  if agent_configs is not None:
2738
2733
  pulumi.set(__self__, "agent_configs", agent_configs)
@@ -2910,9 +2905,6 @@ class TargetAssetTestSpec(dict):
2910
2905
  @property
2911
2906
  @pulumi.getter(name="sourceDetails")
2912
2907
  def source_details(self) -> Optional[Sequence['outputs.TargetAssetTestSpecSourceDetail']]:
2913
- """
2914
- (Updatable)
2915
- """
2916
2908
  return pulumi.get(self, "source_details")
2917
2909
 
2918
2910
 
@@ -10962,7 +10962,6 @@ 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.
10966
10965
  :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.
10967
10966
  :param pulumi.Input[str] source_id: (Updatable) The OCID of the boot volume used to boot the instance.
10968
10967
  """
@@ -11033,9 +11032,6 @@ class InstanceSourceDetailsArgs:
11033
11032
  @property
11034
11033
  @pulumi.getter(name="isPreserveBootVolumeEnabled")
11035
11034
  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
- """
11039
11035
  return pulumi.get(self, "is_preserve_boot_volume_enabled")
11040
11036
 
11041
11037
  @is_preserve_boot_volume_enabled.setter
@@ -11683,7 +11683,6 @@ 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.
11687
11686
  :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11688
11687
  :param str source_id: (Updatable) The OCID of the boot volume used to boot the instance.
11689
11688
  """
@@ -11738,9 +11737,6 @@ class InstanceSourceDetails(dict):
11738
11737
  @property
11739
11738
  @pulumi.getter(name="isPreserveBootVolumeEnabled")
11740
11739
  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
- """
11744
11740
  return pulumi.get(self, "is_preserve_boot_volume_enabled")
11745
11741
 
11746
11742
  @property
@@ -607,7 +607,6 @@ 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.
611
610
  :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.
612
611
  """
613
612
  if custom_action_timeout_in_mins is not None:
@@ -745,9 +744,6 @@ class AutonomousContainerDatabaseMaintenanceWindowArgs:
745
744
  @property
746
745
  @pulumi.getter(name="skipRus")
747
746
  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
- """
751
747
  return pulumi.get(self, "skip_rus")
752
748
 
753
749
  @skip_rus.setter
@@ -2930,9 +2926,6 @@ class AutonomousVmClusterMaintenanceWindowArgs:
2930
2926
  * 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
2931
2927
  :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.
2932
2928
  :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.
2936
2929
  :param pulumi.Input[str] preference: The maintenance window scheduling preference.
2937
2930
  :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.
2938
2931
  """
@@ -3038,11 +3031,6 @@ class AutonomousVmClusterMaintenanceWindowArgs:
3038
3031
  @property
3039
3032
  @pulumi.getter(name="patchingMode")
3040
3033
  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
- """
3046
3034
  return pulumi.get(self, "patching_mode")
3047
3035
 
3048
3036
  @patching_mode.setter
@@ -3916,19 +3904,12 @@ class CloudDatabaseManagementCredentialdetailsArgs:
3916
3904
  def __init__(__self__, *,
3917
3905
  password_secret_id: pulumi.Input[str],
3918
3906
  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
- """
3923
3907
  pulumi.set(__self__, "password_secret_id", password_secret_id)
3924
3908
  pulumi.set(__self__, "user_name", user_name)
3925
3909
 
3926
3910
  @property
3927
3911
  @pulumi.getter(name="passwordSecretId")
3928
3912
  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
- """
3932
3913
  return pulumi.get(self, "password_secret_id")
3933
3914
 
3934
3915
  @password_secret_id.setter
@@ -3938,9 +3919,6 @@ class CloudDatabaseManagementCredentialdetailsArgs:
3938
3919
  @property
3939
3920
  @pulumi.getter(name="userName")
3940
3921
  def user_name(self) -> pulumi.Input[str]:
3941
- """
3942
- Database username
3943
- """
3944
3922
  return pulumi.get(self, "user_name")
3945
3923
 
3946
3924
  @user_name.setter
@@ -6773,7 +6751,6 @@ class DbSystemDbHomeDatabaseArgs:
6773
6751
  :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).
6774
6752
  :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.
6775
6753
  :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.
6777
6754
  :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.
6778
6755
 
6779
6756
  The database workload type.
@@ -6966,9 +6943,6 @@ class DbSystemDbHomeDatabaseArgs:
6966
6943
  @property
6967
6944
  @pulumi.getter(name="dbUniqueName")
6968
6945
  def db_unique_name(self) -> Optional[pulumi.Input[str]]:
6969
- """
6970
- The `DB_UNIQUE_NAME` of the Oracle Database.
6971
- """
6972
6946
  return pulumi.get(self, "db_unique_name")
6973
6947
 
6974
6948
  @db_unique_name.setter
@@ -1027,7 +1027,6 @@ 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.
1031
1030
  :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.
1032
1031
  """
1033
1032
  if custom_action_timeout_in_mins is not None:
@@ -1129,9 +1128,6 @@ class AutonomousContainerDatabaseMaintenanceWindow(dict):
1129
1128
  @property
1130
1129
  @pulumi.getter(name="skipRus")
1131
1130
  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
- """
1135
1131
  return pulumi.get(self, "skip_rus")
1136
1132
 
1137
1133
  @property
@@ -3335,9 +3331,6 @@ class AutonomousVmClusterMaintenanceWindow(dict):
3335
3331
  * 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
3336
3332
  :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.
3337
3333
  :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.
3341
3334
  :param str preference: The maintenance window scheduling preference.
3342
3335
  :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.
3343
3336
  """
@@ -3415,11 +3408,6 @@ class AutonomousVmClusterMaintenanceWindow(dict):
3415
3408
  @property
3416
3409
  @pulumi.getter(name="patchingMode")
3417
3410
  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
- """
3423
3411
  return pulumi.get(self, "patching_mode")
3424
3412
 
3425
3413
  @property
@@ -4247,27 +4235,17 @@ class CloudDatabaseManagementCredentialdetails(dict):
4247
4235
  def __init__(__self__, *,
4248
4236
  password_secret_id: str,
4249
4237
  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
- """
4254
4238
  pulumi.set(__self__, "password_secret_id", password_secret_id)
4255
4239
  pulumi.set(__self__, "user_name", user_name)
4256
4240
 
4257
4241
  @property
4258
4242
  @pulumi.getter(name="passwordSecretId")
4259
4243
  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
- """
4263
4244
  return pulumi.get(self, "password_secret_id")
4264
4245
 
4265
4246
  @property
4266
4247
  @pulumi.getter(name="userName")
4267
4248
  def user_name(self) -> str:
4268
- """
4269
- Database username
4270
- """
4271
4249
  return pulumi.get(self, "user_name")
4272
4250
 
4273
4251
 
@@ -7162,7 +7140,6 @@ class DbSystemDbHomeDatabase(dict):
7162
7140
  :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).
7163
7141
  :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.
7164
7142
  :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.
7166
7143
  :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.
7167
7144
 
7168
7145
  The database workload type.
@@ -7315,9 +7292,6 @@ class DbSystemDbHomeDatabase(dict):
7315
7292
  @property
7316
7293
  @pulumi.getter(name="dbUniqueName")
7317
7294
  def db_unique_name(self) -> Optional[str]:
7318
- """
7319
- The `DB_UNIQUE_NAME` of the Oracle Database.
7320
- """
7321
7295
  return pulumi.get(self, "db_unique_name")
7322
7296
 
7323
7297
  @property
@@ -5894,7 +5894,6 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValuesArgs:
5894
5894
  simple_value: Optional[pulumi.Input[str]] = None):
5895
5895
  """
5896
5896
  :param pulumi.Input['WorkspaceTaskConfigProviderDelegateBindingParameterValuesRootObjectValueArgs'] root_object_value: The root object value, used in custom parameters.
5897
- :param pulumi.Input[str] simple_value: A simple value for the parameter.
5898
5897
  """
5899
5898
  if root_object_value is not None:
5900
5899
  pulumi.set(__self__, "root_object_value", root_object_value)
@@ -5916,9 +5915,6 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValuesArgs:
5916
5915
  @property
5917
5916
  @pulumi.getter(name="simpleValue")
5918
5917
  def simple_value(self) -> Optional[pulumi.Input[str]]:
5919
- """
5920
- A simple value for the parameter.
5921
- """
5922
5918
  return pulumi.get(self, "simple_value")
5923
5919
 
5924
5920
  @simple_value.setter
@@ -6195,7 +6195,6 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValues(dict):
6195
6195
  simple_value: Optional[str] = None):
6196
6196
  """
6197
6197
  :param 'WorkspaceTaskConfigProviderDelegateBindingParameterValuesRootObjectValueArgs' root_object_value: The root object value, used in custom parameters.
6198
- :param str simple_value: A simple value for the parameter.
6199
6198
  """
6200
6199
  if root_object_value is not None:
6201
6200
  pulumi.set(__self__, "root_object_value", root_object_value)
@@ -6213,9 +6212,6 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValues(dict):
6213
6212
  @property
6214
6213
  @pulumi.getter(name="simpleValue")
6215
6214
  def simple_value(self) -> Optional[str]:
6216
- """
6217
- A simple value for the parameter.
6218
- """
6219
6215
  return pulumi.get(self, "simple_value")
6220
6216
 
6221
6217
 
@@ -0,0 +1,15 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .em_warehouse import *
9
+ from .get_em_warehouse import *
10
+ from .get_em_warehouses import *
11
+ from .get_etl_run import *
12
+ from .get_etl_runs import *
13
+ from .get_resource_usage import *
14
+ from ._inputs import *
15
+ from . import outputs
@@ -0,0 +1,94 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = [
13
+ 'GetEmWarehousesFilterArgs',
14
+ 'GetEtlRunsFilterArgs',
15
+ ]
16
+
17
+ @pulumi.input_type
18
+ class GetEmWarehousesFilterArgs:
19
+ def __init__(__self__, *,
20
+ name: str,
21
+ values: Sequence[str],
22
+ regex: Optional[bool] = None):
23
+ pulumi.set(__self__, "name", name)
24
+ pulumi.set(__self__, "values", values)
25
+ if regex is not None:
26
+ pulumi.set(__self__, "regex", regex)
27
+
28
+ @property
29
+ @pulumi.getter
30
+ def name(self) -> str:
31
+ return pulumi.get(self, "name")
32
+
33
+ @name.setter
34
+ def name(self, value: str):
35
+ pulumi.set(self, "name", value)
36
+
37
+ @property
38
+ @pulumi.getter
39
+ def values(self) -> Sequence[str]:
40
+ return pulumi.get(self, "values")
41
+
42
+ @values.setter
43
+ def values(self, value: Sequence[str]):
44
+ pulumi.set(self, "values", value)
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def regex(self) -> Optional[bool]:
49
+ return pulumi.get(self, "regex")
50
+
51
+ @regex.setter
52
+ def regex(self, value: Optional[bool]):
53
+ pulumi.set(self, "regex", value)
54
+
55
+
56
+ @pulumi.input_type
57
+ class GetEtlRunsFilterArgs:
58
+ def __init__(__self__, *,
59
+ name: str,
60
+ values: Sequence[str],
61
+ regex: Optional[bool] = None):
62
+ pulumi.set(__self__, "name", name)
63
+ pulumi.set(__self__, "values", values)
64
+ if regex is not None:
65
+ pulumi.set(__self__, "regex", regex)
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def name(self) -> str:
70
+ return pulumi.get(self, "name")
71
+
72
+ @name.setter
73
+ def name(self, value: str):
74
+ pulumi.set(self, "name", value)
75
+
76
+ @property
77
+ @pulumi.getter
78
+ def values(self) -> Sequence[str]:
79
+ return pulumi.get(self, "values")
80
+
81
+ @values.setter
82
+ def values(self, value: Sequence[str]):
83
+ pulumi.set(self, "values", value)
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def regex(self) -> Optional[bool]:
88
+ return pulumi.get(self, "regex")
89
+
90
+ @regex.setter
91
+ def regex(self, value: Optional[bool]):
92
+ pulumi.set(self, "regex", value)
93
+
94
+