pulumi-oci 2.3.0a1720853064__py3-none-any.whl → 2.3.0a1721242122__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/_utilities.py +3 -4
- pulumi_oci/cloudmigrations/_inputs.py +8 -0
- pulumi_oci/cloudmigrations/outputs.py +8 -0
- pulumi_oci/core/_inputs.py +4 -0
- pulumi_oci/core/outputs.py +4 -0
- pulumi_oci/database/_inputs.py +26 -0
- pulumi_oci/database/outputs.py +26 -0
- pulumi_oci/dataintegration/_inputs.py +4 -0
- pulumi_oci/dataintegration/outputs.py +4 -0
- pulumi_oci/managementagent/_inputs.py +44 -0
- pulumi_oci/managementagent/outputs.py +44 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.3.0a1720853064.dist-info → pulumi_oci-2.3.0a1721242122.dist-info}/METADATA +1 -1
- {pulumi_oci-2.3.0a1720853064.dist-info → pulumi_oci-2.3.0a1721242122.dist-info}/RECORD +16 -16
- {pulumi_oci-2.3.0a1720853064.dist-info → pulumi_oci-2.3.0a1721242122.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.3.0a1720853064.dist-info → pulumi_oci-2.3.0a1721242122.dist-info}/top_level.txt +0 -0
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
|
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -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
|
pulumi_oci/core/outputs.py
CHANGED
@@ -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
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -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
|
pulumi_oci/database/outputs.py
CHANGED
@@ -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
|
@@ -5894,6 +5894,7 @@ 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.
|
5897
5898
|
"""
|
5898
5899
|
if root_object_value is not None:
|
5899
5900
|
pulumi.set(__self__, "root_object_value", root_object_value)
|
@@ -5915,6 +5916,9 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValuesArgs:
|
|
5915
5916
|
@property
|
5916
5917
|
@pulumi.getter(name="simpleValue")
|
5917
5918
|
def simple_value(self) -> Optional[pulumi.Input[str]]:
|
5919
|
+
"""
|
5920
|
+
A simple value for the parameter.
|
5921
|
+
"""
|
5918
5922
|
return pulumi.get(self, "simple_value")
|
5919
5923
|
|
5920
5924
|
@simple_value.setter
|
@@ -6195,6 +6195,7 @@ 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.
|
6198
6199
|
"""
|
6199
6200
|
if root_object_value is not None:
|
6200
6201
|
pulumi.set(__self__, "root_object_value", root_object_value)
|
@@ -6212,6 +6213,9 @@ class WorkspaceTaskConfigProviderDelegateBindingParameterValues(dict):
|
|
6212
6213
|
@property
|
6213
6214
|
@pulumi.getter(name="simpleValue")
|
6214
6215
|
def simple_value(self) -> Optional[str]:
|
6216
|
+
"""
|
6217
|
+
A simple value for the parameter.
|
6218
|
+
"""
|
6215
6219
|
return pulumi.get(self, "simple_value")
|
6216
6220
|
|
6217
6221
|
|
@@ -46,9 +46,16 @@ class ManagementAgentDataSourceListArgs:
|
|
46
46
|
type: Optional[pulumi.Input[str]] = None,
|
47
47
|
url: Optional[pulumi.Input[str]] = None):
|
48
48
|
"""
|
49
|
+
:param pulumi.Input[str] name: Name of the property
|
50
|
+
:param pulumi.Input[int] read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
51
|
+
:param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
52
|
+
:param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
53
|
+
:param pulumi.Input[int] schedule_mins: Number in minutes. The scraping occurs at the specified interval.
|
49
54
|
:param pulumi.Input[str] state: The current state of managementAgent
|
50
55
|
:param pulumi.Input[str] time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
|
51
56
|
:param pulumi.Input[str] time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
|
57
|
+
:param pulumi.Input[str] type: The type of the DataSource.
|
58
|
+
:param pulumi.Input[str] url: The url through which the Prometheus Exporter publishes its metrics. (http only)
|
52
59
|
"""
|
53
60
|
if allow_metrics is not None:
|
54
61
|
pulumi.set(__self__, "allow_metrics", allow_metrics)
|
@@ -144,6 +151,9 @@ class ManagementAgentDataSourceListArgs:
|
|
144
151
|
@property
|
145
152
|
@pulumi.getter
|
146
153
|
def name(self) -> Optional[pulumi.Input[str]]:
|
154
|
+
"""
|
155
|
+
Name of the property
|
156
|
+
"""
|
147
157
|
return pulumi.get(self, "name")
|
148
158
|
|
149
159
|
@name.setter
|
@@ -171,6 +181,9 @@ class ManagementAgentDataSourceListArgs:
|
|
171
181
|
@property
|
172
182
|
@pulumi.getter(name="readDataLimit")
|
173
183
|
def read_data_limit(self) -> Optional[pulumi.Input[int]]:
|
184
|
+
"""
|
185
|
+
Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
186
|
+
"""
|
174
187
|
return pulumi.get(self, "read_data_limit")
|
175
188
|
|
176
189
|
@read_data_limit.setter
|
@@ -180,6 +193,9 @@ class ManagementAgentDataSourceListArgs:
|
|
180
193
|
@property
|
181
194
|
@pulumi.getter(name="readTimeout")
|
182
195
|
def read_timeout(self) -> Optional[pulumi.Input[int]]:
|
196
|
+
"""
|
197
|
+
Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
198
|
+
"""
|
183
199
|
return pulumi.get(self, "read_timeout")
|
184
200
|
|
185
201
|
@read_timeout.setter
|
@@ -189,6 +205,9 @@ class ManagementAgentDataSourceListArgs:
|
|
189
205
|
@property
|
190
206
|
@pulumi.getter(name="resourceGroup")
|
191
207
|
def resource_group(self) -> Optional[pulumi.Input[str]]:
|
208
|
+
"""
|
209
|
+
Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
210
|
+
"""
|
192
211
|
return pulumi.get(self, "resource_group")
|
193
212
|
|
194
213
|
@resource_group.setter
|
@@ -198,6 +217,9 @@ class ManagementAgentDataSourceListArgs:
|
|
198
217
|
@property
|
199
218
|
@pulumi.getter(name="scheduleMins")
|
200
219
|
def schedule_mins(self) -> Optional[pulumi.Input[int]]:
|
220
|
+
"""
|
221
|
+
Number in minutes. The scraping occurs at the specified interval.
|
222
|
+
"""
|
201
223
|
return pulumi.get(self, "schedule_mins")
|
202
224
|
|
203
225
|
@schedule_mins.setter
|
@@ -243,6 +265,9 @@ class ManagementAgentDataSourceListArgs:
|
|
243
265
|
@property
|
244
266
|
@pulumi.getter
|
245
267
|
def type(self) -> Optional[pulumi.Input[str]]:
|
268
|
+
"""
|
269
|
+
The type of the DataSource.
|
270
|
+
"""
|
246
271
|
return pulumi.get(self, "type")
|
247
272
|
|
248
273
|
@type.setter
|
@@ -252,6 +277,9 @@ class ManagementAgentDataSourceListArgs:
|
|
252
277
|
@property
|
253
278
|
@pulumi.getter
|
254
279
|
def url(self) -> Optional[pulumi.Input[str]]:
|
280
|
+
"""
|
281
|
+
The url through which the Prometheus Exporter publishes its metrics. (http only)
|
282
|
+
"""
|
255
283
|
return pulumi.get(self, "url")
|
256
284
|
|
257
285
|
@url.setter
|
@@ -264,6 +292,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
264
292
|
def __init__(__self__, *,
|
265
293
|
name: Optional[pulumi.Input[str]] = None,
|
266
294
|
value: Optional[pulumi.Input[str]] = None):
|
295
|
+
"""
|
296
|
+
:param pulumi.Input[str] name: Name of the property
|
297
|
+
"""
|
267
298
|
if name is not None:
|
268
299
|
pulumi.set(__self__, "name", name)
|
269
300
|
if value is not None:
|
@@ -272,6 +303,9 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
272
303
|
@property
|
273
304
|
@pulumi.getter
|
274
305
|
def name(self) -> Optional[pulumi.Input[str]]:
|
306
|
+
"""
|
307
|
+
Name of the property
|
308
|
+
"""
|
275
309
|
return pulumi.get(self, "name")
|
276
310
|
|
277
311
|
@name.setter
|
@@ -332,6 +366,10 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
332
366
|
key: Optional[pulumi.Input[str]] = None,
|
333
367
|
name: Optional[pulumi.Input[str]] = None,
|
334
368
|
type: Optional[pulumi.Input[str]] = None):
|
369
|
+
"""
|
370
|
+
:param pulumi.Input[str] name: Name of the property
|
371
|
+
:param pulumi.Input[str] type: The type of the DataSource.
|
372
|
+
"""
|
335
373
|
if is_daemon_set is not None:
|
336
374
|
pulumi.set(__self__, "is_daemon_set", is_daemon_set)
|
337
375
|
if key is not None:
|
@@ -362,6 +400,9 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
362
400
|
@property
|
363
401
|
@pulumi.getter
|
364
402
|
def name(self) -> Optional[pulumi.Input[str]]:
|
403
|
+
"""
|
404
|
+
Name of the property
|
405
|
+
"""
|
365
406
|
return pulumi.get(self, "name")
|
366
407
|
|
367
408
|
@name.setter
|
@@ -371,6 +412,9 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
371
412
|
@property
|
372
413
|
@pulumi.getter
|
373
414
|
def type(self) -> Optional[pulumi.Input[str]]:
|
415
|
+
"""
|
416
|
+
The type of the DataSource.
|
417
|
+
"""
|
374
418
|
return pulumi.get(self, "type")
|
375
419
|
|
376
420
|
@type.setter
|
@@ -108,9 +108,16 @@ class ManagementAgentDataSourceList(dict):
|
|
108
108
|
type: Optional[str] = None,
|
109
109
|
url: Optional[str] = None):
|
110
110
|
"""
|
111
|
+
:param str name: Name of the property
|
112
|
+
:param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
113
|
+
:param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
114
|
+
:param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
115
|
+
:param int schedule_mins: Number in minutes. The scraping occurs at the specified interval.
|
111
116
|
:param str state: The current state of managementAgent
|
112
117
|
:param str time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
|
113
118
|
:param str time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
|
119
|
+
:param str type: The type of the DataSource.
|
120
|
+
:param str url: The url through which the Prometheus Exporter publishes its metrics. (http only)
|
114
121
|
"""
|
115
122
|
if allow_metrics is not None:
|
116
123
|
pulumi.set(__self__, "allow_metrics", allow_metrics)
|
@@ -182,6 +189,9 @@ class ManagementAgentDataSourceList(dict):
|
|
182
189
|
@property
|
183
190
|
@pulumi.getter
|
184
191
|
def name(self) -> Optional[str]:
|
192
|
+
"""
|
193
|
+
Name of the property
|
194
|
+
"""
|
185
195
|
return pulumi.get(self, "name")
|
186
196
|
|
187
197
|
@property
|
@@ -197,21 +207,33 @@ class ManagementAgentDataSourceList(dict):
|
|
197
207
|
@property
|
198
208
|
@pulumi.getter(name="readDataLimit")
|
199
209
|
def read_data_limit(self) -> Optional[int]:
|
210
|
+
"""
|
211
|
+
Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
212
|
+
"""
|
200
213
|
return pulumi.get(self, "read_data_limit")
|
201
214
|
|
202
215
|
@property
|
203
216
|
@pulumi.getter(name="readTimeout")
|
204
217
|
def read_timeout(self) -> Optional[int]:
|
218
|
+
"""
|
219
|
+
Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
220
|
+
"""
|
205
221
|
return pulumi.get(self, "read_timeout")
|
206
222
|
|
207
223
|
@property
|
208
224
|
@pulumi.getter(name="resourceGroup")
|
209
225
|
def resource_group(self) -> Optional[str]:
|
226
|
+
"""
|
227
|
+
Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
228
|
+
"""
|
210
229
|
return pulumi.get(self, "resource_group")
|
211
230
|
|
212
231
|
@property
|
213
232
|
@pulumi.getter(name="scheduleMins")
|
214
233
|
def schedule_mins(self) -> Optional[int]:
|
234
|
+
"""
|
235
|
+
Number in minutes. The scraping occurs at the specified interval.
|
236
|
+
"""
|
215
237
|
return pulumi.get(self, "schedule_mins")
|
216
238
|
|
217
239
|
@property
|
@@ -241,11 +263,17 @@ class ManagementAgentDataSourceList(dict):
|
|
241
263
|
@property
|
242
264
|
@pulumi.getter
|
243
265
|
def type(self) -> Optional[str]:
|
266
|
+
"""
|
267
|
+
The type of the DataSource.
|
268
|
+
"""
|
244
269
|
return pulumi.get(self, "type")
|
245
270
|
|
246
271
|
@property
|
247
272
|
@pulumi.getter
|
248
273
|
def url(self) -> Optional[str]:
|
274
|
+
"""
|
275
|
+
The url through which the Prometheus Exporter publishes its metrics. (http only)
|
276
|
+
"""
|
249
277
|
return pulumi.get(self, "url")
|
250
278
|
|
251
279
|
|
@@ -254,6 +282,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
254
282
|
def __init__(__self__, *,
|
255
283
|
name: Optional[str] = None,
|
256
284
|
value: Optional[str] = None):
|
285
|
+
"""
|
286
|
+
:param str name: Name of the property
|
287
|
+
"""
|
257
288
|
if name is not None:
|
258
289
|
pulumi.set(__self__, "name", name)
|
259
290
|
if value is not None:
|
@@ -262,6 +293,9 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
262
293
|
@property
|
263
294
|
@pulumi.getter
|
264
295
|
def name(self) -> Optional[str]:
|
296
|
+
"""
|
297
|
+
Name of the property
|
298
|
+
"""
|
265
299
|
return pulumi.get(self, "name")
|
266
300
|
|
267
301
|
@property
|
@@ -323,6 +357,10 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
323
357
|
key: Optional[str] = None,
|
324
358
|
name: Optional[str] = None,
|
325
359
|
type: Optional[str] = None):
|
360
|
+
"""
|
361
|
+
:param str name: Name of the property
|
362
|
+
:param str type: The type of the DataSource.
|
363
|
+
"""
|
326
364
|
if is_daemon_set is not None:
|
327
365
|
pulumi.set(__self__, "is_daemon_set", is_daemon_set)
|
328
366
|
if key is not None:
|
@@ -345,11 +383,17 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
345
383
|
@property
|
346
384
|
@pulumi.getter
|
347
385
|
def name(self) -> Optional[str]:
|
386
|
+
"""
|
387
|
+
Name of the property
|
388
|
+
"""
|
348
389
|
return pulumi.get(self, "name")
|
349
390
|
|
350
391
|
@property
|
351
392
|
@pulumi.getter
|
352
393
|
def type(self) -> Optional[str]:
|
394
|
+
"""
|
395
|
+
The type of the DataSource.
|
396
|
+
"""
|
353
397
|
return pulumi.get(self, "type")
|
354
398
|
|
355
399
|
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=oAqbCE91YRvgOikY3JwWxLsfZUf2CToyI6p0x0H8j2s,160193
|
2
|
-
pulumi_oci/_utilities.py,sha256=
|
2
|
+
pulumi_oci/_utilities.py,sha256=ebJyWyMCMYLpnVkJVRkMiyEceWyxZ09ZYhxd1W7MWxs,10446
|
3
3
|
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=vuI7bN8mhmf9VKlXq9UiwSxz9BWgyxscvdsovQ1nj9Y,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=nMRnDJd64H5GAJ9ybIPjR9fsDdJFyCdHYBir_ADSrT4,53283
|
@@ -352,7 +352,7 @@ pulumi_oci/cloudguard/security_zone.py,sha256=2zsTsrhPlaNXDNUHnXYg4tALTGsqNkATho
|
|
352
352
|
pulumi_oci/cloudguard/target.py,sha256=8EXZFmyiiYiMGPiDgKlP5sdY1pll3PM02epdaGC_JF8,46206
|
353
353
|
pulumi_oci/cloudguard/wlp_agent.py,sha256=w6iD6q5aMxBhQRz48X7E4hkQnaoZh3fNRbxjMWFHN_k,31203
|
354
354
|
pulumi_oci/cloudmigrations/__init__.py,sha256=VtJaXOMY-724krUfRmk89RwqOH0Gra5Roukj0tD0R2U,910
|
355
|
-
pulumi_oci/cloudmigrations/_inputs.py,sha256=
|
355
|
+
pulumi_oci/cloudmigrations/_inputs.py,sha256=IBroraDp9q4kHIvi4_3BRD9BkSzGJgsEKSISAPDhKPE,239921
|
356
356
|
pulumi_oci/cloudmigrations/get_migration.py,sha256=TLnaqEerG1v5Ad1MldLijNAirypYyaoado6gfuXxlK0,9750
|
357
357
|
pulumi_oci/cloudmigrations/get_migration_asset.py,sha256=8L2LbCcOoeg6hAomTxkl37npO00ku2x-ShIcN35An_Q,15155
|
358
358
|
pulumi_oci/cloudmigrations/get_migration_assets.py,sha256=RAueKu9_kKqLwAZ7Zte50BZJJwxlnLDfsYfhRRYKi7w,7951
|
@@ -368,7 +368,7 @@ pulumi_oci/cloudmigrations/get_target_assets.py,sha256=akFS6kK-KFXHQDA7acCLTLUia
|
|
368
368
|
pulumi_oci/cloudmigrations/migration.py,sha256=GMdV9bFkSJSmfYtzSvHHOlECYJWCLuSlCsApmAL5bDg,27897
|
369
369
|
pulumi_oci/cloudmigrations/migration_asset.py,sha256=aOu--wZx7xAJThGtxC_8TpDl9TWfGPCJldYVV7beEsA,38878
|
370
370
|
pulumi_oci/cloudmigrations/migration_plan.py,sha256=Ar2cIZVdJ5aX9hjf5PlJQvmgHX30hPpaYkeCdJayvCM,35733
|
371
|
-
pulumi_oci/cloudmigrations/outputs.py,sha256=
|
371
|
+
pulumi_oci/cloudmigrations/outputs.py,sha256=lxE-fJGrx4f1YP5tlMnS1CZiDCoVfZzsJwIXVZBQRAU,590070
|
372
372
|
pulumi_oci/cloudmigrations/replication_schedule.py,sha256=yu5o0xSvu3u58Fy3Rfs_DPguBQtPMIFSAw70dcT7St8,27578
|
373
373
|
pulumi_oci/cloudmigrations/target_asset.py,sha256=C5thrxVCht1swtldA5AlyHxqdst4HbpCoxIQG18YUh8,49832
|
374
374
|
pulumi_oci/clusterplacementgroups/__init__.py,sha256=b_2kfthDePE5hJoeZ8QIfutFKk9ClL5W4RFf3kOztFs,440
|
@@ -433,7 +433,7 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=RWotHRCbVW
|
|
433
433
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=2pS0FViyGoOrqVg-foeYDm4C7lX7WhqlMaUeeGtRlL4,8619
|
434
434
|
pulumi_oci/containerinstances/outputs.py,sha256=K1Kf3-8xpQM9OcZOnQQG972UwHvbtboWNqYnib8J0hw,99442
|
435
435
|
pulumi_oci/core/__init__.py,sha256=TH2tLXoqxil4LmAM1OAg7Z4M4Tvrv9GsG-UG3h3UTbw,8591
|
436
|
-
pulumi_oci/core/_inputs.py,sha256=
|
436
|
+
pulumi_oci/core/_inputs.py,sha256=vk6L9HBVssgRTmK4exBPVWGoaezMp8-S3D1KbR_Z39U,865054
|
437
437
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=kd8-X0DLdG80KR4Re1Bzs3YzRfhRCraKfwNBJy6KJss,14448
|
438
438
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0p4-GPnr_1F2G_si0_4tQMpEpmWadv-zhAoUKEVPdPw,29086
|
439
439
|
pulumi_oci/core/boot_volume.py,sha256=EFyQnerU3N19HSvC6uqFBjpRPWFQw7H4VIpdxhBnV28,64633
|
@@ -628,7 +628,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=kSPyvBRh4rgkugRBDTSuv5jTCmdgG7dF
|
|
628
628
|
pulumi_oci/core/nat_gateway.py,sha256=7FIymW5Rq6w7C0T74OLWb9D4KqP_vzwXnEIbNWGdsGI,35795
|
629
629
|
pulumi_oci/core/network_security_group.py,sha256=a21EveqIOiR-5WtrggBFPmYa8eBTqRGnvJs3IWm4q3g,25204
|
630
630
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=f9Y8fQDwI7BBMu9oOzm2uQyPWb0jI2u_dqZJZwcLy8Y,54224
|
631
|
-
pulumi_oci/core/outputs.py,sha256=
|
631
|
+
pulumi_oci/core/outputs.py,sha256=LPMb6-JFcihLBYoIJc3vOoe3BhcI71t2Y1ZcAHCDleg,2382963
|
632
632
|
pulumi_oci/core/private_ip.py,sha256=jZNtIz8hDmlMu93cmBLs8Qu4HzbzDAoPKvlT3Z0TKI0,42259
|
633
633
|
pulumi_oci/core/public_ip.py,sha256=0zoJbHGH5idavrf1l47kpdE9GM45asIVRo1e60HC1BI,48657
|
634
634
|
pulumi_oci/core/public_ip_pool.py,sha256=LIVV7ooE-khuPJOWOCL6v1_o7zj94Evgze3tt2Qs8ao,23581
|
@@ -654,7 +654,7 @@ pulumi_oci/core/volume_group.py,sha256=RCXp6lwfCcQMZTAnXA5UM1km9IAaO7xms0GjBaaWQ
|
|
654
654
|
pulumi_oci/core/volume_group_backup.py,sha256=TaESViXt6JzduODOxkqrAV7h1lFo9udAkM26QIECb6c,44014
|
655
655
|
pulumi_oci/core/vtap.py,sha256=NmBB3HrIWcnFfGOf9FeWtIU1fEWpgM5I4S4pTOxVz54,62263
|
656
656
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
657
|
-
pulumi_oci/database/_inputs.py,sha256=
|
657
|
+
pulumi_oci/database/_inputs.py,sha256=na8pX_ekw2QKKSQGGmvbxbnWrzpuPVOy9pGtYXz6h8Q,698331
|
658
658
|
pulumi_oci/database/application_vip.py,sha256=wFPa33DBZ-_ZzawwFeIyt4o47oh67WRJEYBbvRF0CCg,28983
|
659
659
|
pulumi_oci/database/autonomous_container_database.py,sha256=8KBRkXFQ3H2jSqiNl8bFB4SKp4qakiaiU5hXtylcGq8,161652
|
660
660
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=HHFxeeHKgSEMhCYdk_Pj7f1yf-o2QUTp4lmjFHCTGpY,75309
|
@@ -844,7 +844,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=aRT1n3DsQbZP6zUflQUu_U0ozwdVN5o6Mj
|
|
844
844
|
pulumi_oci/database/key_store.py,sha256=oN3pJ2ttFWOBm3nOciCLPV6PsyhMVcdY4DbvDvwV8iE,25402
|
845
845
|
pulumi_oci/database/maintenance_run.py,sha256=cyDRkOk_5KcUT3DoGuNxz1Ca0cJbdzrFNNhxfRatP_8,58494
|
846
846
|
pulumi_oci/database/oneoff_patch.py,sha256=vI2EkITWfZEhCTvYQSUJgswX6f9ZdA3sgC59ZGYwRhc,38416
|
847
|
-
pulumi_oci/database/outputs.py,sha256=
|
847
|
+
pulumi_oci/database/outputs.py,sha256=RyC1nwUPDIkzYOVGdkE7mCL6koUWzP6_68xkGad6l0Y,2232731
|
848
848
|
pulumi_oci/database/pluggable_database.py,sha256=9i6bFxXmdrlho26xBkBhznyyefvO9xwMhq_naWDd1_Q,72949
|
849
849
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cYRG-2zkTBknBJjEjC97B8_XhM2C63jZL92QUS9U6m8,52153
|
850
850
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=0NGYmSvbHSKW9TwDrNeOCOGH91SU7Ji5PDf-c70IBsQ,50354
|
@@ -1052,7 +1052,7 @@ pulumi_oci/dataflow/private_endpoint.py,sha256=9vkBMocvIS8HBvsQlVoYVcBhOK7c_qZUL
|
|
1052
1052
|
pulumi_oci/dataflow/run_statement.py,sha256=2V-3LYZ42IYBVPsjxNgISjyM9rv_rXXOVmGTDD0IKzA,16386
|
1053
1053
|
pulumi_oci/dataflow/sql_endpoint.py,sha256=Zp8UIlX2E6GVQp8wRCnwGH4bFhxD00v3w4ekebWe4ho,59793
|
1054
1054
|
pulumi_oci/dataintegration/__init__.py,sha256=2H-D_UY8QH4dHOjznmx3CPkiTg4aqtJKeuaKcN7Ypu8,1536
|
1055
|
-
pulumi_oci/dataintegration/_inputs.py,sha256=
|
1055
|
+
pulumi_oci/dataintegration/_inputs.py,sha256=Dpe5IUXeSKBzhAikF0VxBdY-UpR_LsmEx5ejhdt569U,419358
|
1056
1056
|
pulumi_oci/dataintegration/get_workspace.py,sha256=uYr4xlwUqJnc2AyJDzmpDWA73cNORu4-pYYAaqIrTM0,16949
|
1057
1057
|
pulumi_oci/dataintegration/get_workspace_application.py,sha256=RS6UF7uec1y7nZhnUK_INTyT4cZ9mPXgu43BUtoUFvg,19135
|
1058
1058
|
pulumi_oci/dataintegration/get_workspace_application_patch.py,sha256=khRpP3eyL2sEAmySwZP0bvDumm2-_DkcyPIezQCM86Y,16870
|
@@ -1073,7 +1073,7 @@ pulumi_oci/dataintegration/get_workspace_projects.py,sha256=qOMBnYNiR8RiKj621ziP
|
|
1073
1073
|
pulumi_oci/dataintegration/get_workspace_task.py,sha256=8ExB_MqcqYvLvrAAa-5LtDQ3OazOE1guGqn1rLNU6kY,20265
|
1074
1074
|
pulumi_oci/dataintegration/get_workspace_tasks.py,sha256=HbrGDQYnQRuzQqzUiaHIwjLBEh-aU_mYFUfwXQ5VpJw,11130
|
1075
1075
|
pulumi_oci/dataintegration/get_workspaces.py,sha256=pKPVrjpDIaEvdC2EFEuvEOycxu5RVe3XMKKAdfiq9Wc,7366
|
1076
|
-
pulumi_oci/dataintegration/outputs.py,sha256=
|
1076
|
+
pulumi_oci/dataintegration/outputs.py,sha256=z2TG26R8uvoPudVOFh0WKPrwZ6FqgYbFDLLckaPZqXQ,1047021
|
1077
1077
|
pulumi_oci/dataintegration/workspace.py,sha256=T7HtXfqFj8OmAUpyX80JiifXvJuNCftJhG6w15XV4DM,58022
|
1078
1078
|
pulumi_oci/dataintegration/workspace_application.py,sha256=yGzubNHR4iK1XqwIF8fMTjw4pURTFpx7edd_8xQctT8,61707
|
1079
1079
|
pulumi_oci/dataintegration/workspace_application_patch.py,sha256=ErH6171o1AmHsgh2sjHPWNRnxGtVtJS3b4qj073BwYA,49201
|
@@ -1977,7 +1977,7 @@ pulumi_oci/logging/log_saved_search.py,sha256=hEIxiSTAwU1Qvd_-Ax0fLsd_zrUx9dWWIN
|
|
1977
1977
|
pulumi_oci/logging/outputs.py,sha256=z5Ui3s7yFCqqoOSfRR5twMbrxrlCLwvjmjRj9QN8Hb4,282600
|
1978
1978
|
pulumi_oci/logging/unified_agent_configuration.py,sha256=clUdesJWYIDzKuaj4qkS11HzoJ9fZVRvgQJVv0aKA6E,32138
|
1979
1979
|
pulumi_oci/managementagent/__init__.py,sha256=bpFmeztqSBwuPQZDXXW0deLSXXdocRC6M6YH1JRvpc4,998
|
1980
|
-
pulumi_oci/managementagent/_inputs.py,sha256=
|
1980
|
+
pulumi_oci/managementagent/_inputs.py,sha256=R_Cn-8iZEiOLgWsRsbvVruixtD7yMRMGX9EWrKpeghk,28494
|
1981
1981
|
pulumi_oci/managementagent/get_management_agent.py,sha256=BaYqb1C9hhXH8PnAlWNRO-88lq614zrBrullMcnSitc,20507
|
1982
1982
|
pulumi_oci/managementagent/get_management_agent_available_histories.py,sha256=1mBfTXC1ssZdGlnkvNCg75q7MSUK-kU5IOQHA28v1iI,9952
|
1983
1983
|
pulumi_oci/managementagent/get_management_agent_count.py,sha256=bJSN983dE6VIYAr8frD7YLudHHa-U9GHCsYyzoXaQy0,7991
|
@@ -1993,7 +1993,7 @@ pulumi_oci/managementagent/get_management_agents.py,sha256=AyzuJUXjh0kDUZdJbqD9H
|
|
1993
1993
|
pulumi_oci/managementagent/management_agent.py,sha256=VHj1lqvHnIIgn0DS2qGe_2dcBdvnfybro_JBDM0TVKQ,46694
|
1994
1994
|
pulumi_oci/managementagent/management_agent_data_source.py,sha256=aLa2rDA0MGYQAzrtaUs5GCKkFwGldw8-MO5uHI9ZqLE,49967
|
1995
1995
|
pulumi_oci/managementagent/management_agent_install_key.py,sha256=UHjbja03w0OXt-NTM1MWzFEW5y_Cf2Q9Zm222xz6R38,26818
|
1996
|
-
pulumi_oci/managementagent/outputs.py,sha256=
|
1996
|
+
pulumi_oci/managementagent/outputs.py,sha256=LrTCE0wYFcraGh4Qd9ed7iDDtYHIvlm2bdysVfNBf8E,91851
|
1997
1997
|
pulumi_oci/managementdashboard/__init__.py,sha256=Ohu8GPc8iwS8GcB2YP3XDMI1V5g1yxIDlCOFPh7rZqg,361
|
1998
1998
|
pulumi_oci/managementdashboard/get_management_dashboards_export.py,sha256=fYnQDHOoPr13DkwvqgMuAuOOUnv0eATQ1S5Kt_5XZI4,5938
|
1999
1999
|
pulumi_oci/managementdashboard/management_dashboards_import.py,sha256=-3XTlN_3E6OME2Fr4ocuB9R9P9HukMD_N2XLY6aGLM0,12455
|
@@ -2761,7 +2761,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=2EXX-nZiSRnou_ywPuVnvH9CT
|
|
2761
2761
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=iXFu2wfolxLPGoRpC9PvrbsMvIURoaPHkg6WVLdoEd8,14234
|
2762
2762
|
pulumi_oci/waf/network_address_list.py,sha256=Burm-luOi53fUUOZVqwfKueKEDWQw8789Ir0mUblOiE,33054
|
2763
2763
|
pulumi_oci/waf/outputs.py,sha256=IibDb-778q6fJDgC9y7kgFTv6CEz8lMNaSd1c3Su9uc,227138
|
2764
|
-
pulumi_oci-2.3.
|
2765
|
-
pulumi_oci-2.3.
|
2766
|
-
pulumi_oci-2.3.
|
2767
|
-
pulumi_oci-2.3.
|
2764
|
+
pulumi_oci-2.3.0a1721242122.dist-info/METADATA,sha256=DowiNKZUFBAqfwiToA6xA1WA59sZVW82nhVQzXhTJ9I,3901
|
2765
|
+
pulumi_oci-2.3.0a1721242122.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
2766
|
+
pulumi_oci-2.3.0a1721242122.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2767
|
+
pulumi_oci-2.3.0a1721242122.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-2.3.0a1720853064.dist-info → pulumi_oci-2.3.0a1721242122.dist-info}/top_level.txt
RENAMED
File without changes
|