pulumi-oci 1.29.0__py3-none-any.whl → 1.29.0a1711606977__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 +0 -8
- pulumi_oci/database/autonomous_database.py +14 -155
- pulumi_oci/database/get_autonomous_database.py +2 -41
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +2 -68
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -111
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +4 -32
- pulumi_oci/databasemanagement/outputs.py +75 -267
- pulumi_oci/dataintegration/__init__.py +0 -3
- pulumi_oci/dataintegration/_inputs.py +0 -4504
- pulumi_oci/dataintegration/outputs.py +4724 -16512
- pulumi_oci/devops/_inputs.py +2 -18
- pulumi_oci/devops/deploy_artifact.py +0 -2
- pulumi_oci/devops/deploy_stage.py +0 -141
- pulumi_oci/devops/get_deploy_stage.py +1 -40
- pulumi_oci/devops/outputs.py +6 -75
- pulumi_oci/logging/_inputs.py +187 -2751
- pulumi_oci/logging/outputs.py +772 -4985
- pulumi_oci/logging/unified_agent_configuration.py +208 -34
- pulumi_oci/monitoring/_inputs.py +0 -136
- pulumi_oci/monitoring/alarm.py +0 -173
- pulumi_oci/monitoring/get_alarm.py +1 -40
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +0 -305
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -14
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -56
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +34 -41
- {pulumi_oci-1.29.0.dist-info → pulumi_oci-1.29.0a1711606977.dist-info}/METADATA +1 -1
- {pulumi_oci-1.29.0.dist-info → pulumi_oci-1.29.0a1711606977.dist-info}/RECORD +38 -41
- pulumi_oci/dataintegration/get_workspace_task.py +0 -443
- pulumi_oci/dataintegration/get_workspace_tasks.py +0 -254
- pulumi_oci/dataintegration/workspace_task.py +0 -1364
- {pulumi_oci-1.29.0.dist-info → pulumi_oci-1.29.0a1711606977.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.29.0.dist-info → pulumi_oci-1.29.0a1711606977.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -15524,8 +15524,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15524
15524
|
allocated_storage_size_in_tbs: float,
|
15525
15525
|
apex_details: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseApexDetailResult'],
|
15526
15526
|
are_primary_whitelisted_ips_used: bool,
|
15527
|
-
auto_refresh_frequency_in_seconds: int,
|
15528
|
-
auto_refresh_point_lag_in_seconds: int,
|
15529
15527
|
autonomous_container_database_id: str,
|
15530
15528
|
autonomous_database_backup_id: str,
|
15531
15529
|
autonomous_database_id: str,
|
@@ -15634,7 +15632,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15634
15632
|
time_local_data_guard_enabled: str,
|
15635
15633
|
time_maintenance_begin: str,
|
15636
15634
|
time_maintenance_end: str,
|
15637
|
-
time_of_auto_refresh_start: str,
|
15638
15635
|
time_of_joining_resource_pool: str,
|
15639
15636
|
time_of_last_failover: str,
|
15640
15637
|
time_of_last_refresh: str,
|
@@ -15655,8 +15652,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15655
15652
|
:param float allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
|
15656
15653
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseApexDetailArgs'] apex_details: Information about Oracle APEX Application Development.
|
15657
15654
|
:param bool are_primary_whitelisted_ips_used: This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
15658
|
-
:param int auto_refresh_frequency_in_seconds: The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
15659
|
-
:param int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
15660
15655
|
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
15661
15656
|
:param str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
15662
15657
|
:param Sequence[str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
@@ -15753,7 +15748,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15753
15748
|
:param str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
15754
15749
|
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
15755
15750
|
:param str time_maintenance_end: The date and time when maintenance will end.
|
15756
|
-
:param str time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
15757
15751
|
:param str time_of_joining_resource_pool: The time the member joined the resource pool.
|
15758
15752
|
:param str time_of_last_failover: The timestamp of the last failover operation.
|
15759
15753
|
:param str time_of_last_refresh: The date and time when last refresh happened.
|
@@ -15773,8 +15767,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15773
15767
|
pulumi.set(__self__, "allocated_storage_size_in_tbs", allocated_storage_size_in_tbs)
|
15774
15768
|
pulumi.set(__self__, "apex_details", apex_details)
|
15775
15769
|
pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
|
15776
|
-
pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
|
15777
|
-
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
15778
15770
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
15779
15771
|
pulumi.set(__self__, "autonomous_database_backup_id", autonomous_database_backup_id)
|
15780
15772
|
pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
|
@@ -15883,7 +15875,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15883
15875
|
pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
|
15884
15876
|
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
15885
15877
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
15886
|
-
pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
|
15887
15878
|
pulumi.set(__self__, "time_of_joining_resource_pool", time_of_joining_resource_pool)
|
15888
15879
|
pulumi.set(__self__, "time_of_last_failover", time_of_last_failover)
|
15889
15880
|
pulumi.set(__self__, "time_of_last_refresh", time_of_last_refresh)
|
@@ -15937,22 +15928,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
15937
15928
|
"""
|
15938
15929
|
return pulumi.get(self, "are_primary_whitelisted_ips_used")
|
15939
15930
|
|
15940
|
-
@property
|
15941
|
-
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
15942
|
-
def auto_refresh_frequency_in_seconds(self) -> int:
|
15943
|
-
"""
|
15944
|
-
The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
15945
|
-
"""
|
15946
|
-
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
15947
|
-
|
15948
|
-
@property
|
15949
|
-
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
15950
|
-
def auto_refresh_point_lag_in_seconds(self) -> int:
|
15951
|
-
"""
|
15952
|
-
The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
15953
|
-
"""
|
15954
|
-
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
15955
|
-
|
15956
15931
|
@property
|
15957
15932
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
15958
15933
|
def autonomous_container_database_id(self) -> str:
|
@@ -16782,14 +16757,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16782
16757
|
"""
|
16783
16758
|
return pulumi.get(self, "time_maintenance_end")
|
16784
16759
|
|
16785
|
-
@property
|
16786
|
-
@pulumi.getter(name="timeOfAutoRefreshStart")
|
16787
|
-
def time_of_auto_refresh_start(self) -> str:
|
16788
|
-
"""
|
16789
|
-
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
16790
|
-
"""
|
16791
|
-
return pulumi.get(self, "time_of_auto_refresh_start")
|
16792
|
-
|
16793
16760
|
@property
|
16794
16761
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
16795
16762
|
def time_of_joining_resource_pool(self) -> str:
|
@@ -17669,8 +17636,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17669
17636
|
allocated_storage_size_in_tbs: float,
|
17670
17637
|
apex_details: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseApexDetailResult'],
|
17671
17638
|
are_primary_whitelisted_ips_used: bool,
|
17672
|
-
auto_refresh_frequency_in_seconds: int,
|
17673
|
-
auto_refresh_point_lag_in_seconds: int,
|
17674
17639
|
autonomous_container_database_id: str,
|
17675
17640
|
autonomous_maintenance_schedule_type: str,
|
17676
17641
|
available_upgrade_versions: Sequence[str],
|
@@ -17763,7 +17728,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17763
17728
|
time_local_data_guard_enabled: str,
|
17764
17729
|
time_maintenance_begin: str,
|
17765
17730
|
time_maintenance_end: str,
|
17766
|
-
time_of_auto_refresh_start: str,
|
17767
17731
|
time_of_joining_resource_pool: str,
|
17768
17732
|
time_of_last_failover: str,
|
17769
17733
|
time_of_last_refresh: str,
|
@@ -17782,9 +17746,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17782
17746
|
:param float allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
|
17783
17747
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseApexDetailArgs'] apex_details: Information about Oracle APEX Application Development.
|
17784
17748
|
:param bool are_primary_whitelisted_ips_used: This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
17785
|
-
:param
|
17786
|
-
:param int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
17787
|
-
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
17749
|
+
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
17788
17750
|
:param str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
17789
17751
|
:param Sequence[str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
17790
17752
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
@@ -17881,7 +17843,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17881
17843
|
:param str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
17882
17844
|
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
17883
17845
|
:param str time_maintenance_end: The date and time when maintenance will end.
|
17884
|
-
:param str time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
17885
17846
|
:param str time_of_last_failover: The timestamp of the last failover operation.
|
17886
17847
|
:param str time_of_last_refresh: The date and time when last refresh happened.
|
17887
17848
|
:param str time_of_last_refresh_point: The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.
|
@@ -17899,8 +17860,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17899
17860
|
pulumi.set(__self__, "allocated_storage_size_in_tbs", allocated_storage_size_in_tbs)
|
17900
17861
|
pulumi.set(__self__, "apex_details", apex_details)
|
17901
17862
|
pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
|
17902
|
-
pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
|
17903
|
-
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
17904
17863
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
17905
17864
|
pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
|
17906
17865
|
pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
|
@@ -17993,7 +17952,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
17993
17952
|
pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
|
17994
17953
|
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
17995
17954
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
17996
|
-
pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
|
17997
17955
|
pulumi.set(__self__, "time_of_joining_resource_pool", time_of_joining_resource_pool)
|
17998
17956
|
pulumi.set(__self__, "time_of_last_failover", time_of_last_failover)
|
17999
17957
|
pulumi.set(__self__, "time_of_last_refresh", time_of_last_refresh)
|
@@ -18040,27 +17998,11 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18040
17998
|
"""
|
18041
17999
|
return pulumi.get(self, "are_primary_whitelisted_ips_used")
|
18042
18000
|
|
18043
|
-
@property
|
18044
|
-
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
18045
|
-
def auto_refresh_frequency_in_seconds(self) -> int:
|
18046
|
-
"""
|
18047
|
-
The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
18048
|
-
"""
|
18049
|
-
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
18050
|
-
|
18051
|
-
@property
|
18052
|
-
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
18053
|
-
def auto_refresh_point_lag_in_seconds(self) -> int:
|
18054
|
-
"""
|
18055
|
-
The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
18056
|
-
"""
|
18057
|
-
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
18058
|
-
|
18059
18001
|
@property
|
18060
18002
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
18061
18003
|
def autonomous_container_database_id(self) -> str:
|
18062
18004
|
"""
|
18063
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18005
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
18064
18006
|
"""
|
18065
18007
|
return pulumi.get(self, "autonomous_container_database_id")
|
18066
18008
|
|
@@ -18797,14 +18739,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18797
18739
|
"""
|
18798
18740
|
return pulumi.get(self, "time_maintenance_end")
|
18799
18741
|
|
18800
|
-
@property
|
18801
|
-
@pulumi.getter(name="timeOfAutoRefreshStart")
|
18802
|
-
def time_of_auto_refresh_start(self) -> str:
|
18803
|
-
"""
|
18804
|
-
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
18805
|
-
"""
|
18806
|
-
return pulumi.get(self, "time_of_auto_refresh_start")
|
18807
|
-
|
18808
18742
|
@property
|
18809
18743
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
18810
18744
|
def time_of_joining_resource_pool(self) -> str:
|
@@ -8,7 +8,6 @@ import pulumi
|
|
8
8
|
import pulumi.runtime
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
|
-
from . import outputs
|
12
11
|
|
13
12
|
__all__ = [
|
14
13
|
'GetManagedMySqlDatabaseResult',
|
@@ -22,7 +21,7 @@ class GetManagedMySqlDatabaseResult:
|
|
22
21
|
"""
|
23
22
|
A collection of values returned by getManagedMySqlDatabase.
|
24
23
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, db_name=None, db_version=None,
|
24
|
+
def __init__(__self__, compartment_id=None, db_name=None, db_version=None, id=None, managed_my_sql_database_id=None, name=None, time_created=None):
|
26
25
|
if compartment_id and not isinstance(compartment_id, str):
|
27
26
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
27
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -32,30 +31,9 @@ class GetManagedMySqlDatabaseResult:
|
|
32
31
|
if db_version and not isinstance(db_version, str):
|
33
32
|
raise TypeError("Expected argument 'db_version' to be a str")
|
34
33
|
pulumi.set(__self__, "db_version", db_version)
|
35
|
-
if heat_wave_cluster_display_name and not isinstance(heat_wave_cluster_display_name, str):
|
36
|
-
raise TypeError("Expected argument 'heat_wave_cluster_display_name' to be a str")
|
37
|
-
pulumi.set(__self__, "heat_wave_cluster_display_name", heat_wave_cluster_display_name)
|
38
|
-
if heat_wave_memory_size and not isinstance(heat_wave_memory_size, int):
|
39
|
-
raise TypeError("Expected argument 'heat_wave_memory_size' to be a int")
|
40
|
-
pulumi.set(__self__, "heat_wave_memory_size", heat_wave_memory_size)
|
41
|
-
if heat_wave_node_shape and not isinstance(heat_wave_node_shape, str):
|
42
|
-
raise TypeError("Expected argument 'heat_wave_node_shape' to be a str")
|
43
|
-
pulumi.set(__self__, "heat_wave_node_shape", heat_wave_node_shape)
|
44
|
-
if heat_wave_nodes and not isinstance(heat_wave_nodes, list):
|
45
|
-
raise TypeError("Expected argument 'heat_wave_nodes' to be a list")
|
46
|
-
pulumi.set(__self__, "heat_wave_nodes", heat_wave_nodes)
|
47
34
|
if id and not isinstance(id, str):
|
48
35
|
raise TypeError("Expected argument 'id' to be a str")
|
49
36
|
pulumi.set(__self__, "id", id)
|
50
|
-
if is_heat_wave_active and not isinstance(is_heat_wave_active, bool):
|
51
|
-
raise TypeError("Expected argument 'is_heat_wave_active' to be a bool")
|
52
|
-
pulumi.set(__self__, "is_heat_wave_active", is_heat_wave_active)
|
53
|
-
if is_heat_wave_enabled and not isinstance(is_heat_wave_enabled, bool):
|
54
|
-
raise TypeError("Expected argument 'is_heat_wave_enabled' to be a bool")
|
55
|
-
pulumi.set(__self__, "is_heat_wave_enabled", is_heat_wave_enabled)
|
56
|
-
if is_lakehouse_enabled and not isinstance(is_lakehouse_enabled, bool):
|
57
|
-
raise TypeError("Expected argument 'is_lakehouse_enabled' to be a bool")
|
58
|
-
pulumi.set(__self__, "is_lakehouse_enabled", is_lakehouse_enabled)
|
59
37
|
if managed_my_sql_database_id and not isinstance(managed_my_sql_database_id, str):
|
60
38
|
raise TypeError("Expected argument 'managed_my_sql_database_id' to be a str")
|
61
39
|
pulumi.set(__self__, "managed_my_sql_database_id", managed_my_sql_database_id)
|
@@ -65,9 +43,6 @@ class GetManagedMySqlDatabaseResult:
|
|
65
43
|
if time_created and not isinstance(time_created, str):
|
66
44
|
raise TypeError("Expected argument 'time_created' to be a str")
|
67
45
|
pulumi.set(__self__, "time_created", time_created)
|
68
|
-
if time_created_heat_wave and not isinstance(time_created_heat_wave, str):
|
69
|
-
raise TypeError("Expected argument 'time_created_heat_wave' to be a str")
|
70
|
-
pulumi.set(__self__, "time_created_heat_wave", time_created_heat_wave)
|
71
46
|
|
72
47
|
@property
|
73
48
|
@pulumi.getter(name="compartmentId")
|
@@ -81,7 +56,7 @@ class GetManagedMySqlDatabaseResult:
|
|
81
56
|
@pulumi.getter(name="dbName")
|
82
57
|
def db_name(self) -> str:
|
83
58
|
"""
|
84
|
-
|
59
|
+
MySQL Database Name
|
85
60
|
"""
|
86
61
|
return pulumi.get(self, "db_name")
|
87
62
|
|
@@ -89,42 +64,10 @@ class GetManagedMySqlDatabaseResult:
|
|
89
64
|
@pulumi.getter(name="dbVersion")
|
90
65
|
def db_version(self) -> str:
|
91
66
|
"""
|
92
|
-
|
67
|
+
MySQL Database Version
|
93
68
|
"""
|
94
69
|
return pulumi.get(self, "db_version")
|
95
70
|
|
96
|
-
@property
|
97
|
-
@pulumi.getter(name="heatWaveClusterDisplayName")
|
98
|
-
def heat_wave_cluster_display_name(self) -> str:
|
99
|
-
"""
|
100
|
-
The name of the HeatWave cluster.
|
101
|
-
"""
|
102
|
-
return pulumi.get(self, "heat_wave_cluster_display_name")
|
103
|
-
|
104
|
-
@property
|
105
|
-
@pulumi.getter(name="heatWaveMemorySize")
|
106
|
-
def heat_wave_memory_size(self) -> int:
|
107
|
-
"""
|
108
|
-
The total memory belonging to the HeatWave cluster in GBs.
|
109
|
-
"""
|
110
|
-
return pulumi.get(self, "heat_wave_memory_size")
|
111
|
-
|
112
|
-
@property
|
113
|
-
@pulumi.getter(name="heatWaveNodeShape")
|
114
|
-
def heat_wave_node_shape(self) -> str:
|
115
|
-
"""
|
116
|
-
Shape of the nodes in the HeatWave cluster.
|
117
|
-
"""
|
118
|
-
return pulumi.get(self, "heat_wave_node_shape")
|
119
|
-
|
120
|
-
@property
|
121
|
-
@pulumi.getter(name="heatWaveNodes")
|
122
|
-
def heat_wave_nodes(self) -> Sequence['outputs.GetManagedMySqlDatabaseHeatWaveNodeResult']:
|
123
|
-
"""
|
124
|
-
The information about an individual HeatWave nodes in the cluster.
|
125
|
-
"""
|
126
|
-
return pulumi.get(self, "heat_wave_nodes")
|
127
|
-
|
128
71
|
@property
|
129
72
|
@pulumi.getter
|
130
73
|
def id(self) -> str:
|
@@ -133,30 +76,6 @@ class GetManagedMySqlDatabaseResult:
|
|
133
76
|
"""
|
134
77
|
return pulumi.get(self, "id")
|
135
78
|
|
136
|
-
@property
|
137
|
-
@pulumi.getter(name="isHeatWaveActive")
|
138
|
-
def is_heat_wave_active(self) -> bool:
|
139
|
-
"""
|
140
|
-
If the HeatWave cluster is active or not.
|
141
|
-
"""
|
142
|
-
return pulumi.get(self, "is_heat_wave_active")
|
143
|
-
|
144
|
-
@property
|
145
|
-
@pulumi.getter(name="isHeatWaveEnabled")
|
146
|
-
def is_heat_wave_enabled(self) -> bool:
|
147
|
-
"""
|
148
|
-
If HeatWave is enabled for this db system or not.
|
149
|
-
"""
|
150
|
-
return pulumi.get(self, "is_heat_wave_enabled")
|
151
|
-
|
152
|
-
@property
|
153
|
-
@pulumi.getter(name="isLakehouseEnabled")
|
154
|
-
def is_lakehouse_enabled(self) -> bool:
|
155
|
-
"""
|
156
|
-
If HeatWave Lakehouse is enabled for the db system or not.
|
157
|
-
"""
|
158
|
-
return pulumi.get(self, "is_lakehouse_enabled")
|
159
|
-
|
160
79
|
@property
|
161
80
|
@pulumi.getter(name="managedMySqlDatabaseId")
|
162
81
|
def managed_my_sql_database_id(self) -> str:
|
@@ -174,18 +93,10 @@ class GetManagedMySqlDatabaseResult:
|
|
174
93
|
@pulumi.getter(name="timeCreated")
|
175
94
|
def time_created(self) -> str:
|
176
95
|
"""
|
177
|
-
The date and time the
|
96
|
+
The date and time the Managed Database was created.
|
178
97
|
"""
|
179
98
|
return pulumi.get(self, "time_created")
|
180
99
|
|
181
|
-
@property
|
182
|
-
@pulumi.getter(name="timeCreatedHeatWave")
|
183
|
-
def time_created_heat_wave(self) -> str:
|
184
|
-
"""
|
185
|
-
The date and time the Managed MySQL Database was created.
|
186
|
-
"""
|
187
|
-
return pulumi.get(self, "time_created_heat_wave")
|
188
|
-
|
189
100
|
|
190
101
|
class AwaitableGetManagedMySqlDatabaseResult(GetManagedMySqlDatabaseResult):
|
191
102
|
# pylint: disable=using-constant-test
|
@@ -196,18 +107,10 @@ class AwaitableGetManagedMySqlDatabaseResult(GetManagedMySqlDatabaseResult):
|
|
196
107
|
compartment_id=self.compartment_id,
|
197
108
|
db_name=self.db_name,
|
198
109
|
db_version=self.db_version,
|
199
|
-
heat_wave_cluster_display_name=self.heat_wave_cluster_display_name,
|
200
|
-
heat_wave_memory_size=self.heat_wave_memory_size,
|
201
|
-
heat_wave_node_shape=self.heat_wave_node_shape,
|
202
|
-
heat_wave_nodes=self.heat_wave_nodes,
|
203
110
|
id=self.id,
|
204
|
-
is_heat_wave_active=self.is_heat_wave_active,
|
205
|
-
is_heat_wave_enabled=self.is_heat_wave_enabled,
|
206
|
-
is_lakehouse_enabled=self.is_lakehouse_enabled,
|
207
111
|
managed_my_sql_database_id=self.managed_my_sql_database_id,
|
208
112
|
name=self.name,
|
209
|
-
time_created=self.time_created
|
210
|
-
time_created_heat_wave=self.time_created_heat_wave)
|
113
|
+
time_created=self.time_created)
|
211
114
|
|
212
115
|
|
213
116
|
def get_managed_my_sql_database(managed_my_sql_database_id: Optional[str] = None,
|
@@ -240,18 +143,10 @@ def get_managed_my_sql_database(managed_my_sql_database_id: Optional[str] = None
|
|
240
143
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
241
144
|
db_name=pulumi.get(__ret__, 'db_name'),
|
242
145
|
db_version=pulumi.get(__ret__, 'db_version'),
|
243
|
-
heat_wave_cluster_display_name=pulumi.get(__ret__, 'heat_wave_cluster_display_name'),
|
244
|
-
heat_wave_memory_size=pulumi.get(__ret__, 'heat_wave_memory_size'),
|
245
|
-
heat_wave_node_shape=pulumi.get(__ret__, 'heat_wave_node_shape'),
|
246
|
-
heat_wave_nodes=pulumi.get(__ret__, 'heat_wave_nodes'),
|
247
146
|
id=pulumi.get(__ret__, 'id'),
|
248
|
-
is_heat_wave_active=pulumi.get(__ret__, 'is_heat_wave_active'),
|
249
|
-
is_heat_wave_enabled=pulumi.get(__ret__, 'is_heat_wave_enabled'),
|
250
|
-
is_lakehouse_enabled=pulumi.get(__ret__, 'is_lakehouse_enabled'),
|
251
147
|
managed_my_sql_database_id=pulumi.get(__ret__, 'managed_my_sql_database_id'),
|
252
148
|
name=pulumi.get(__ret__, 'name'),
|
253
|
-
time_created=pulumi.get(__ret__, 'time_created')
|
254
|
-
time_created_heat_wave=pulumi.get(__ret__, 'time_created_heat_wave'))
|
149
|
+
time_created=pulumi.get(__ret__, 'time_created'))
|
255
150
|
|
256
151
|
|
257
152
|
@_utilities.lift_output_func(get_managed_my_sql_database)
|
@@ -130,22 +130,8 @@ def get_managed_my_sql_database_sql_data(end_time: Optional[str] = None,
|
|
130
130
|
|
131
131
|
|
132
132
|
:param str end_time: The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
|
133
|
-
:param str filter_column: The parameter to filter results by key criteria
|
134
|
-
|
135
|
-
* SUM_TIMER_WAIT
|
136
|
-
* COUNT_STAR
|
137
|
-
* SUM_ERRORS
|
138
|
-
* SUM_ROWS_AFFECTED
|
139
|
-
* SUM_ROWS_SENT
|
140
|
-
* SUM_ROWS_EXAMINED
|
141
|
-
* SUM_CREATED_TMP_TABLES
|
142
|
-
* SUM_NO_INDEX_USED
|
143
|
-
* SUM_NO_GOOD_INDEX_USED
|
144
|
-
* FIRST_SEEN
|
145
|
-
* LAST_SEEN
|
146
|
-
* HEATWAVE_OFFLOADED
|
147
|
-
* HEATWAVE_OUT_OF_MEMORY
|
148
|
-
:param str managed_my_sql_database_id: The OCID of the Managed MySQL Database.
|
133
|
+
:param str filter_column: The parameter to filter results by key criteria.
|
134
|
+
:param str managed_my_sql_database_id: The OCID of ManagedMySqlDatabase.
|
149
135
|
:param str start_time: The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
|
150
136
|
"""
|
151
137
|
__args__ = dict()
|
@@ -195,22 +181,8 @@ def get_managed_my_sql_database_sql_data_output(end_time: Optional[pulumi.Input[
|
|
195
181
|
|
196
182
|
|
197
183
|
:param str end_time: The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
|
198
|
-
:param str filter_column: The parameter to filter results by key criteria
|
199
|
-
|
200
|
-
* SUM_TIMER_WAIT
|
201
|
-
* COUNT_STAR
|
202
|
-
* SUM_ERRORS
|
203
|
-
* SUM_ROWS_AFFECTED
|
204
|
-
* SUM_ROWS_SENT
|
205
|
-
* SUM_ROWS_EXAMINED
|
206
|
-
* SUM_CREATED_TMP_TABLES
|
207
|
-
* SUM_NO_INDEX_USED
|
208
|
-
* SUM_NO_GOOD_INDEX_USED
|
209
|
-
* FIRST_SEEN
|
210
|
-
* LAST_SEEN
|
211
|
-
* HEATWAVE_OFFLOADED
|
212
|
-
* HEATWAVE_OUT_OF_MEMORY
|
213
|
-
:param str managed_my_sql_database_id: The OCID of the Managed MySQL Database.
|
184
|
+
:param str filter_column: The parameter to filter results by key criteria.
|
185
|
+
:param str managed_my_sql_database_id: The OCID of ManagedMySqlDatabase.
|
214
186
|
:param str start_time: The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
|
215
187
|
"""
|
216
188
|
...
|