pulumi-oci 1.41.0__py3-none-any.whl → 1.41.0a1718345665__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/_inputs.py +0 -136
- pulumi_oci/database/autonomous_database.py +0 -56
- pulumi_oci/database/get_autonomous_database.py +1 -27
- pulumi_oci/database/outputs.py +0 -467
- pulumi_oci/datasafe/__init__.py +0 -1
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.41.0.dist-info → pulumi_oci-1.41.0a1718345665.dist-info}/METADATA +1 -1
- {pulumi_oci-1.41.0.dist-info → pulumi_oci-1.41.0a1718345665.dist-info}/RECORD +11 -12
- pulumi_oci/datasafe/masking_policy_health_report_management.py +0 -453
- {pulumi_oci-1.41.0.dist-info → pulumi_oci-1.41.0a1718345665.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.41.0.dist-info → pulumi_oci-1.41.0a1718345665.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -2039,14 +2039,6 @@ _utilities.register(
|
|
2039
2039
|
"oci:DataSafe/maskingPolicy:MaskingPolicy": "MaskingPolicy"
|
2040
2040
|
}
|
2041
2041
|
},
|
2042
|
-
{
|
2043
|
-
"pkg": "oci",
|
2044
|
-
"mod": "DataSafe/maskingPolicyHealthReportManagement",
|
2045
|
-
"fqn": "pulumi_oci.datasafe",
|
2046
|
-
"classes": {
|
2047
|
-
"oci:DataSafe/maskingPolicyHealthReportManagement:MaskingPolicyHealthReportManagement": "MaskingPolicyHealthReportManagement"
|
2048
|
-
}
|
2049
|
-
},
|
2050
2042
|
{
|
2051
2043
|
"pkg": "oci",
|
2052
2044
|
"mod": "DataSafe/maskingReportManagement",
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -34,7 +34,6 @@ __all__ = [
|
|
34
34
|
'AutonomousDatabaseKeyHistoryEntryArgs',
|
35
35
|
'AutonomousDatabaseLocalStandbyDbArgs',
|
36
36
|
'AutonomousDatabaseLongTermBackupScheduleArgs',
|
37
|
-
'AutonomousDatabasePublicConnectionUrlArgs',
|
38
37
|
'AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs',
|
39
38
|
'AutonomousDatabaseResourcePoolSummaryArgs',
|
40
39
|
'AutonomousDatabaseScheduledOperationArgs',
|
@@ -2031,141 +2030,6 @@ class AutonomousDatabaseLongTermBackupScheduleArgs:
|
|
2031
2030
|
pulumi.set(self, "time_of_backup", value)
|
2032
2031
|
|
2033
2032
|
|
2034
|
-
@pulumi.input_type
|
2035
|
-
class AutonomousDatabasePublicConnectionUrlArgs:
|
2036
|
-
def __init__(__self__, *,
|
2037
|
-
apex_url: Optional[pulumi.Input[str]] = None,
|
2038
|
-
database_transforms_url: Optional[pulumi.Input[str]] = None,
|
2039
|
-
graph_studio_url: Optional[pulumi.Input[str]] = None,
|
2040
|
-
machine_learning_notebook_url: Optional[pulumi.Input[str]] = None,
|
2041
|
-
machine_learning_user_management_url: Optional[pulumi.Input[str]] = None,
|
2042
|
-
mongo_db_url: Optional[pulumi.Input[str]] = None,
|
2043
|
-
ords_url: Optional[pulumi.Input[str]] = None,
|
2044
|
-
sql_dev_web_url: Optional[pulumi.Input[str]] = None):
|
2045
|
-
"""
|
2046
|
-
:param pulumi.Input[str] apex_url: Oracle Application Express (APEX) URL.
|
2047
|
-
:param pulumi.Input[str] database_transforms_url: The URL of the Database Transforms for the Autonomous Database.
|
2048
|
-
:param pulumi.Input[str] graph_studio_url: The URL of the Graph Studio for the Autonomous Database.
|
2049
|
-
:param pulumi.Input[str] machine_learning_notebook_url: The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
2050
|
-
:param pulumi.Input[str] machine_learning_user_management_url: Oracle Machine Learning user management URL.
|
2051
|
-
:param pulumi.Input[str] mongo_db_url: The URL of the MongoDB API for the Autonomous Database.
|
2052
|
-
:param pulumi.Input[str] ords_url: The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
2053
|
-
:param pulumi.Input[str] sql_dev_web_url: Oracle SQL Developer Web URL.
|
2054
|
-
"""
|
2055
|
-
if apex_url is not None:
|
2056
|
-
pulumi.set(__self__, "apex_url", apex_url)
|
2057
|
-
if database_transforms_url is not None:
|
2058
|
-
pulumi.set(__self__, "database_transforms_url", database_transforms_url)
|
2059
|
-
if graph_studio_url is not None:
|
2060
|
-
pulumi.set(__self__, "graph_studio_url", graph_studio_url)
|
2061
|
-
if machine_learning_notebook_url is not None:
|
2062
|
-
pulumi.set(__self__, "machine_learning_notebook_url", machine_learning_notebook_url)
|
2063
|
-
if machine_learning_user_management_url is not None:
|
2064
|
-
pulumi.set(__self__, "machine_learning_user_management_url", machine_learning_user_management_url)
|
2065
|
-
if mongo_db_url is not None:
|
2066
|
-
pulumi.set(__self__, "mongo_db_url", mongo_db_url)
|
2067
|
-
if ords_url is not None:
|
2068
|
-
pulumi.set(__self__, "ords_url", ords_url)
|
2069
|
-
if sql_dev_web_url is not None:
|
2070
|
-
pulumi.set(__self__, "sql_dev_web_url", sql_dev_web_url)
|
2071
|
-
|
2072
|
-
@property
|
2073
|
-
@pulumi.getter(name="apexUrl")
|
2074
|
-
def apex_url(self) -> Optional[pulumi.Input[str]]:
|
2075
|
-
"""
|
2076
|
-
Oracle Application Express (APEX) URL.
|
2077
|
-
"""
|
2078
|
-
return pulumi.get(self, "apex_url")
|
2079
|
-
|
2080
|
-
@apex_url.setter
|
2081
|
-
def apex_url(self, value: Optional[pulumi.Input[str]]):
|
2082
|
-
pulumi.set(self, "apex_url", value)
|
2083
|
-
|
2084
|
-
@property
|
2085
|
-
@pulumi.getter(name="databaseTransformsUrl")
|
2086
|
-
def database_transforms_url(self) -> Optional[pulumi.Input[str]]:
|
2087
|
-
"""
|
2088
|
-
The URL of the Database Transforms for the Autonomous Database.
|
2089
|
-
"""
|
2090
|
-
return pulumi.get(self, "database_transforms_url")
|
2091
|
-
|
2092
|
-
@database_transforms_url.setter
|
2093
|
-
def database_transforms_url(self, value: Optional[pulumi.Input[str]]):
|
2094
|
-
pulumi.set(self, "database_transforms_url", value)
|
2095
|
-
|
2096
|
-
@property
|
2097
|
-
@pulumi.getter(name="graphStudioUrl")
|
2098
|
-
def graph_studio_url(self) -> Optional[pulumi.Input[str]]:
|
2099
|
-
"""
|
2100
|
-
The URL of the Graph Studio for the Autonomous Database.
|
2101
|
-
"""
|
2102
|
-
return pulumi.get(self, "graph_studio_url")
|
2103
|
-
|
2104
|
-
@graph_studio_url.setter
|
2105
|
-
def graph_studio_url(self, value: Optional[pulumi.Input[str]]):
|
2106
|
-
pulumi.set(self, "graph_studio_url", value)
|
2107
|
-
|
2108
|
-
@property
|
2109
|
-
@pulumi.getter(name="machineLearningNotebookUrl")
|
2110
|
-
def machine_learning_notebook_url(self) -> Optional[pulumi.Input[str]]:
|
2111
|
-
"""
|
2112
|
-
The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
2113
|
-
"""
|
2114
|
-
return pulumi.get(self, "machine_learning_notebook_url")
|
2115
|
-
|
2116
|
-
@machine_learning_notebook_url.setter
|
2117
|
-
def machine_learning_notebook_url(self, value: Optional[pulumi.Input[str]]):
|
2118
|
-
pulumi.set(self, "machine_learning_notebook_url", value)
|
2119
|
-
|
2120
|
-
@property
|
2121
|
-
@pulumi.getter(name="machineLearningUserManagementUrl")
|
2122
|
-
def machine_learning_user_management_url(self) -> Optional[pulumi.Input[str]]:
|
2123
|
-
"""
|
2124
|
-
Oracle Machine Learning user management URL.
|
2125
|
-
"""
|
2126
|
-
return pulumi.get(self, "machine_learning_user_management_url")
|
2127
|
-
|
2128
|
-
@machine_learning_user_management_url.setter
|
2129
|
-
def machine_learning_user_management_url(self, value: Optional[pulumi.Input[str]]):
|
2130
|
-
pulumi.set(self, "machine_learning_user_management_url", value)
|
2131
|
-
|
2132
|
-
@property
|
2133
|
-
@pulumi.getter(name="mongoDbUrl")
|
2134
|
-
def mongo_db_url(self) -> Optional[pulumi.Input[str]]:
|
2135
|
-
"""
|
2136
|
-
The URL of the MongoDB API for the Autonomous Database.
|
2137
|
-
"""
|
2138
|
-
return pulumi.get(self, "mongo_db_url")
|
2139
|
-
|
2140
|
-
@mongo_db_url.setter
|
2141
|
-
def mongo_db_url(self, value: Optional[pulumi.Input[str]]):
|
2142
|
-
pulumi.set(self, "mongo_db_url", value)
|
2143
|
-
|
2144
|
-
@property
|
2145
|
-
@pulumi.getter(name="ordsUrl")
|
2146
|
-
def ords_url(self) -> Optional[pulumi.Input[str]]:
|
2147
|
-
"""
|
2148
|
-
The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
2149
|
-
"""
|
2150
|
-
return pulumi.get(self, "ords_url")
|
2151
|
-
|
2152
|
-
@ords_url.setter
|
2153
|
-
def ords_url(self, value: Optional[pulumi.Input[str]]):
|
2154
|
-
pulumi.set(self, "ords_url", value)
|
2155
|
-
|
2156
|
-
@property
|
2157
|
-
@pulumi.getter(name="sqlDevWebUrl")
|
2158
|
-
def sql_dev_web_url(self) -> Optional[pulumi.Input[str]]:
|
2159
|
-
"""
|
2160
|
-
Oracle SQL Developer Web URL.
|
2161
|
-
"""
|
2162
|
-
return pulumi.get(self, "sql_dev_web_url")
|
2163
|
-
|
2164
|
-
@sql_dev_web_url.setter
|
2165
|
-
def sql_dev_web_url(self, value: Optional[pulumi.Input[str]]):
|
2166
|
-
pulumi.set(self, "sql_dev_web_url", value)
|
2167
|
-
|
2168
|
-
|
2169
2033
|
@pulumi.input_type
|
2170
2034
|
class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
|
2171
2035
|
def __init__(__self__, *,
|
@@ -1499,8 +1499,6 @@ class _AutonomousDatabaseState:
|
|
1499
1499
|
private_endpoint_ip: Optional[pulumi.Input[str]] = None,
|
1500
1500
|
private_endpoint_label: Optional[pulumi.Input[str]] = None,
|
1501
1501
|
provisionable_cpuses: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
|
1502
|
-
public_connection_urls: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabasePublicConnectionUrlArgs']]]] = None,
|
1503
|
-
public_endpoint: Optional[pulumi.Input[str]] = None,
|
1504
1502
|
refreshable_mode: Optional[pulumi.Input[str]] = None,
|
1505
1503
|
refreshable_status: Optional[pulumi.Input[str]] = None,
|
1506
1504
|
remote_disaster_recovery_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs']]]] = None,
|
@@ -1680,8 +1678,6 @@ class _AutonomousDatabaseState:
|
|
1680
1678
|
* Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
|
1681
1679
|
* Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
|
1682
1680
|
:param pulumi.Input[Sequence[pulumi.Input[float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
|
1683
|
-
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabasePublicConnectionUrlArgs']]] public_connection_urls: The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
|
1684
|
-
:param pulumi.Input[str] public_endpoint: The public endpoint for the private endpoint enabled resource.
|
1685
1681
|
:param pulumi.Input[str] refreshable_mode: (Updatable) The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
|
1686
1682
|
:param pulumi.Input[str] refreshable_status: The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
|
1687
1683
|
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs']]] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -1933,10 +1929,6 @@ class _AutonomousDatabaseState:
|
|
1933
1929
|
pulumi.set(__self__, "private_endpoint_label", private_endpoint_label)
|
1934
1930
|
if provisionable_cpuses is not None:
|
1935
1931
|
pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
|
1936
|
-
if public_connection_urls is not None:
|
1937
|
-
pulumi.set(__self__, "public_connection_urls", public_connection_urls)
|
1938
|
-
if public_endpoint is not None:
|
1939
|
-
pulumi.set(__self__, "public_endpoint", public_endpoint)
|
1940
1932
|
if refreshable_mode is not None:
|
1941
1933
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
1942
1934
|
if refreshable_status is not None:
|
@@ -3099,30 +3091,6 @@ class _AutonomousDatabaseState:
|
|
3099
3091
|
def provisionable_cpuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]]):
|
3100
3092
|
pulumi.set(self, "provisionable_cpuses", value)
|
3101
3093
|
|
3102
|
-
@property
|
3103
|
-
@pulumi.getter(name="publicConnectionUrls")
|
3104
|
-
def public_connection_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabasePublicConnectionUrlArgs']]]]:
|
3105
|
-
"""
|
3106
|
-
The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
|
3107
|
-
"""
|
3108
|
-
return pulumi.get(self, "public_connection_urls")
|
3109
|
-
|
3110
|
-
@public_connection_urls.setter
|
3111
|
-
def public_connection_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabasePublicConnectionUrlArgs']]]]):
|
3112
|
-
pulumi.set(self, "public_connection_urls", value)
|
3113
|
-
|
3114
|
-
@property
|
3115
|
-
@pulumi.getter(name="publicEndpoint")
|
3116
|
-
def public_endpoint(self) -> Optional[pulumi.Input[str]]:
|
3117
|
-
"""
|
3118
|
-
The public endpoint for the private endpoint enabled resource.
|
3119
|
-
"""
|
3120
|
-
return pulumi.get(self, "public_endpoint")
|
3121
|
-
|
3122
|
-
@public_endpoint.setter
|
3123
|
-
def public_endpoint(self, value: Optional[pulumi.Input[str]]):
|
3124
|
-
pulumi.set(self, "public_endpoint", value)
|
3125
|
-
|
3126
3094
|
@property
|
3127
3095
|
@pulumi.getter(name="refreshableMode")
|
3128
3096
|
def refreshable_mode(self) -> Optional[pulumi.Input[str]]:
|
@@ -4191,8 +4159,6 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4191
4159
|
__props__.__dict__["peer_db_ids"] = None
|
4192
4160
|
__props__.__dict__["private_endpoint"] = None
|
4193
4161
|
__props__.__dict__["provisionable_cpuses"] = None
|
4194
|
-
__props__.__dict__["public_connection_urls"] = None
|
4195
|
-
__props__.__dict__["public_endpoint"] = None
|
4196
4162
|
__props__.__dict__["refreshable_status"] = None
|
4197
4163
|
__props__.__dict__["remote_disaster_recovery_configurations"] = None
|
4198
4164
|
__props__.__dict__["role"] = None
|
@@ -4315,8 +4281,6 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4315
4281
|
private_endpoint_ip: Optional[pulumi.Input[str]] = None,
|
4316
4282
|
private_endpoint_label: Optional[pulumi.Input[str]] = None,
|
4317
4283
|
provisionable_cpuses: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
|
4318
|
-
public_connection_urls: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabasePublicConnectionUrlArgs']]]]] = None,
|
4319
|
-
public_endpoint: Optional[pulumi.Input[str]] = None,
|
4320
4284
|
refreshable_mode: Optional[pulumi.Input[str]] = None,
|
4321
4285
|
refreshable_status: Optional[pulumi.Input[str]] = None,
|
4322
4286
|
remote_disaster_recovery_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs']]]]] = None,
|
@@ -4501,8 +4465,6 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4501
4465
|
* Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
|
4502
4466
|
* Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
|
4503
4467
|
:param pulumi.Input[Sequence[pulumi.Input[float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
|
4504
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabasePublicConnectionUrlArgs']]]] public_connection_urls: The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
|
4505
|
-
:param pulumi.Input[str] public_endpoint: The public endpoint for the private endpoint enabled resource.
|
4506
4468
|
:param pulumi.Input[str] refreshable_mode: (Updatable) The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
|
4507
4469
|
:param pulumi.Input[str] refreshable_status: The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
|
4508
4470
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs']]]] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -4670,8 +4632,6 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4670
4632
|
__props__.__dict__["private_endpoint_ip"] = private_endpoint_ip
|
4671
4633
|
__props__.__dict__["private_endpoint_label"] = private_endpoint_label
|
4672
4634
|
__props__.__dict__["provisionable_cpuses"] = provisionable_cpuses
|
4673
|
-
__props__.__dict__["public_connection_urls"] = public_connection_urls
|
4674
|
-
__props__.__dict__["public_endpoint"] = public_endpoint
|
4675
4635
|
__props__.__dict__["refreshable_mode"] = refreshable_mode
|
4676
4636
|
__props__.__dict__["refreshable_status"] = refreshable_status
|
4677
4637
|
__props__.__dict__["remote_disaster_recovery_configurations"] = remote_disaster_recovery_configurations
|
@@ -5449,22 +5409,6 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5449
5409
|
"""
|
5450
5410
|
return pulumi.get(self, "provisionable_cpuses")
|
5451
5411
|
|
5452
|
-
@property
|
5453
|
-
@pulumi.getter(name="publicConnectionUrls")
|
5454
|
-
def public_connection_urls(self) -> pulumi.Output[Sequence['outputs.AutonomousDatabasePublicConnectionUrl']]:
|
5455
|
-
"""
|
5456
|
-
The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
|
5457
|
-
"""
|
5458
|
-
return pulumi.get(self, "public_connection_urls")
|
5459
|
-
|
5460
|
-
@property
|
5461
|
-
@pulumi.getter(name="publicEndpoint")
|
5462
|
-
def public_endpoint(self) -> pulumi.Output[str]:
|
5463
|
-
"""
|
5464
|
-
The public endpoint for the private endpoint enabled resource.
|
5465
|
-
"""
|
5466
|
-
return pulumi.get(self, "public_endpoint")
|
5467
|
-
|
5468
5412
|
@property
|
5469
5413
|
@pulumi.getter(name="refreshableMode")
|
5470
5414
|
def refreshable_mode(self) -> pulumi.Output[str]:
|
@@ -22,7 +22,7 @@ class GetAutonomousDatabaseResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getAutonomousDatabase.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None,
|
25
|
+
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
26
26
|
if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
|
27
27
|
raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
|
28
28
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -281,12 +281,6 @@ class GetAutonomousDatabaseResult:
|
|
281
281
|
if provisionable_cpuses and not isinstance(provisionable_cpuses, list):
|
282
282
|
raise TypeError("Expected argument 'provisionable_cpuses' to be a list")
|
283
283
|
pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
|
284
|
-
if public_connection_urls and not isinstance(public_connection_urls, list):
|
285
|
-
raise TypeError("Expected argument 'public_connection_urls' to be a list")
|
286
|
-
pulumi.set(__self__, "public_connection_urls", public_connection_urls)
|
287
|
-
if public_endpoint and not isinstance(public_endpoint, str):
|
288
|
-
raise TypeError("Expected argument 'public_endpoint' to be a str")
|
289
|
-
pulumi.set(__self__, "public_endpoint", public_endpoint)
|
290
284
|
if refreshable_mode and not isinstance(refreshable_mode, str):
|
291
285
|
raise TypeError("Expected argument 'refreshable_mode' to be a str")
|
292
286
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
@@ -1104,22 +1098,6 @@ class GetAutonomousDatabaseResult:
|
|
1104
1098
|
"""
|
1105
1099
|
return pulumi.get(self, "provisionable_cpuses")
|
1106
1100
|
|
1107
|
-
@property
|
1108
|
-
@pulumi.getter(name="publicConnectionUrls")
|
1109
|
-
def public_connection_urls(self) -> Sequence['outputs.GetAutonomousDatabasePublicConnectionUrlResult']:
|
1110
|
-
"""
|
1111
|
-
The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
|
1112
|
-
"""
|
1113
|
-
return pulumi.get(self, "public_connection_urls")
|
1114
|
-
|
1115
|
-
@property
|
1116
|
-
@pulumi.getter(name="publicEndpoint")
|
1117
|
-
def public_endpoint(self) -> str:
|
1118
|
-
"""
|
1119
|
-
The public endpoint for the private endpoint enabled resource.
|
1120
|
-
"""
|
1121
|
-
return pulumi.get(self, "public_endpoint")
|
1122
|
-
|
1123
1101
|
@property
|
1124
1102
|
@pulumi.getter(name="refreshableMode")
|
1125
1103
|
def refreshable_mode(self) -> str:
|
@@ -1551,8 +1529,6 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1551
1529
|
private_endpoint_ip=self.private_endpoint_ip,
|
1552
1530
|
private_endpoint_label=self.private_endpoint_label,
|
1553
1531
|
provisionable_cpuses=self.provisionable_cpuses,
|
1554
|
-
public_connection_urls=self.public_connection_urls,
|
1555
|
-
public_endpoint=self.public_endpoint,
|
1556
1532
|
refreshable_mode=self.refreshable_mode,
|
1557
1533
|
refreshable_status=self.refreshable_status,
|
1558
1534
|
remote_disaster_recovery_configurations=self.remote_disaster_recovery_configurations,
|
@@ -1712,8 +1688,6 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1712
1688
|
private_endpoint_ip=pulumi.get(__ret__, 'private_endpoint_ip'),
|
1713
1689
|
private_endpoint_label=pulumi.get(__ret__, 'private_endpoint_label'),
|
1714
1690
|
provisionable_cpuses=pulumi.get(__ret__, 'provisionable_cpuses'),
|
1715
|
-
public_connection_urls=pulumi.get(__ret__, 'public_connection_urls'),
|
1716
|
-
public_endpoint=pulumi.get(__ret__, 'public_endpoint'),
|
1717
1691
|
refreshable_mode=pulumi.get(__ret__, 'refreshable_mode'),
|
1718
1692
|
refreshable_status=pulumi.get(__ret__, 'refreshable_status'),
|
1719
1693
|
remote_disaster_recovery_configurations=pulumi.get(__ret__, 'remote_disaster_recovery_configurations'),
|