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/database/outputs.py
CHANGED
@@ -35,7 +35,6 @@ __all__ = [
|
|
35
35
|
'AutonomousDatabaseKeyHistoryEntry',
|
36
36
|
'AutonomousDatabaseLocalStandbyDb',
|
37
37
|
'AutonomousDatabaseLongTermBackupSchedule',
|
38
|
-
'AutonomousDatabasePublicConnectionUrl',
|
39
38
|
'AutonomousDatabaseRemoteDisasterRecoveryConfiguration',
|
40
39
|
'AutonomousDatabaseResourcePoolSummary',
|
41
40
|
'AutonomousDatabaseScheduledOperation',
|
@@ -225,7 +224,6 @@ __all__ = [
|
|
225
224
|
'GetAutonomousDatabasePeersAutonomousDatabasePeerCollectionResult',
|
226
225
|
'GetAutonomousDatabasePeersAutonomousDatabasePeerCollectionItemResult',
|
227
226
|
'GetAutonomousDatabasePeersFilterResult',
|
228
|
-
'GetAutonomousDatabasePublicConnectionUrlResult',
|
229
227
|
'GetAutonomousDatabaseRefreshableClonesFilterResult',
|
230
228
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionResult',
|
231
229
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionItemResult',
|
@@ -248,7 +246,6 @@ __all__ = [
|
|
248
246
|
'GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult',
|
249
247
|
'GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult',
|
250
248
|
'GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult',
|
251
|
-
'GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult',
|
252
249
|
'GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult',
|
253
250
|
'GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult',
|
254
251
|
'GetAutonomousDatabasesAutonomousDatabaseScheduledOperationResult',
|
@@ -265,7 +262,6 @@ __all__ = [
|
|
265
262
|
'GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult',
|
266
263
|
'GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult',
|
267
264
|
'GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult',
|
268
|
-
'GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult',
|
269
265
|
'GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult',
|
270
266
|
'GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult',
|
271
267
|
'GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationResult',
|
@@ -2399,140 +2395,6 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
|
|
2399
2395
|
return pulumi.get(self, "time_of_backup")
|
2400
2396
|
|
2401
2397
|
|
2402
|
-
@pulumi.output_type
|
2403
|
-
class AutonomousDatabasePublicConnectionUrl(dict):
|
2404
|
-
@staticmethod
|
2405
|
-
def __key_warning(key: str):
|
2406
|
-
suggest = None
|
2407
|
-
if key == "apexUrl":
|
2408
|
-
suggest = "apex_url"
|
2409
|
-
elif key == "databaseTransformsUrl":
|
2410
|
-
suggest = "database_transforms_url"
|
2411
|
-
elif key == "graphStudioUrl":
|
2412
|
-
suggest = "graph_studio_url"
|
2413
|
-
elif key == "machineLearningNotebookUrl":
|
2414
|
-
suggest = "machine_learning_notebook_url"
|
2415
|
-
elif key == "machineLearningUserManagementUrl":
|
2416
|
-
suggest = "machine_learning_user_management_url"
|
2417
|
-
elif key == "mongoDbUrl":
|
2418
|
-
suggest = "mongo_db_url"
|
2419
|
-
elif key == "ordsUrl":
|
2420
|
-
suggest = "ords_url"
|
2421
|
-
elif key == "sqlDevWebUrl":
|
2422
|
-
suggest = "sql_dev_web_url"
|
2423
|
-
|
2424
|
-
if suggest:
|
2425
|
-
pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabasePublicConnectionUrl. Access the value via the '{suggest}' property getter instead.")
|
2426
|
-
|
2427
|
-
def __getitem__(self, key: str) -> Any:
|
2428
|
-
AutonomousDatabasePublicConnectionUrl.__key_warning(key)
|
2429
|
-
return super().__getitem__(key)
|
2430
|
-
|
2431
|
-
def get(self, key: str, default = None) -> Any:
|
2432
|
-
AutonomousDatabasePublicConnectionUrl.__key_warning(key)
|
2433
|
-
return super().get(key, default)
|
2434
|
-
|
2435
|
-
def __init__(__self__, *,
|
2436
|
-
apex_url: Optional[str] = None,
|
2437
|
-
database_transforms_url: Optional[str] = None,
|
2438
|
-
graph_studio_url: Optional[str] = None,
|
2439
|
-
machine_learning_notebook_url: Optional[str] = None,
|
2440
|
-
machine_learning_user_management_url: Optional[str] = None,
|
2441
|
-
mongo_db_url: Optional[str] = None,
|
2442
|
-
ords_url: Optional[str] = None,
|
2443
|
-
sql_dev_web_url: Optional[str] = None):
|
2444
|
-
"""
|
2445
|
-
:param str apex_url: Oracle Application Express (APEX) URL.
|
2446
|
-
:param str database_transforms_url: The URL of the Database Transforms for the Autonomous Database.
|
2447
|
-
:param str graph_studio_url: The URL of the Graph Studio for the Autonomous Database.
|
2448
|
-
:param str machine_learning_notebook_url: The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
2449
|
-
:param str machine_learning_user_management_url: Oracle Machine Learning user management URL.
|
2450
|
-
:param str mongo_db_url: The URL of the MongoDB API for the Autonomous Database.
|
2451
|
-
:param str ords_url: The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
2452
|
-
:param str sql_dev_web_url: Oracle SQL Developer Web URL.
|
2453
|
-
"""
|
2454
|
-
if apex_url is not None:
|
2455
|
-
pulumi.set(__self__, "apex_url", apex_url)
|
2456
|
-
if database_transforms_url is not None:
|
2457
|
-
pulumi.set(__self__, "database_transforms_url", database_transforms_url)
|
2458
|
-
if graph_studio_url is not None:
|
2459
|
-
pulumi.set(__self__, "graph_studio_url", graph_studio_url)
|
2460
|
-
if machine_learning_notebook_url is not None:
|
2461
|
-
pulumi.set(__self__, "machine_learning_notebook_url", machine_learning_notebook_url)
|
2462
|
-
if machine_learning_user_management_url is not None:
|
2463
|
-
pulumi.set(__self__, "machine_learning_user_management_url", machine_learning_user_management_url)
|
2464
|
-
if mongo_db_url is not None:
|
2465
|
-
pulumi.set(__self__, "mongo_db_url", mongo_db_url)
|
2466
|
-
if ords_url is not None:
|
2467
|
-
pulumi.set(__self__, "ords_url", ords_url)
|
2468
|
-
if sql_dev_web_url is not None:
|
2469
|
-
pulumi.set(__self__, "sql_dev_web_url", sql_dev_web_url)
|
2470
|
-
|
2471
|
-
@property
|
2472
|
-
@pulumi.getter(name="apexUrl")
|
2473
|
-
def apex_url(self) -> Optional[str]:
|
2474
|
-
"""
|
2475
|
-
Oracle Application Express (APEX) URL.
|
2476
|
-
"""
|
2477
|
-
return pulumi.get(self, "apex_url")
|
2478
|
-
|
2479
|
-
@property
|
2480
|
-
@pulumi.getter(name="databaseTransformsUrl")
|
2481
|
-
def database_transforms_url(self) -> Optional[str]:
|
2482
|
-
"""
|
2483
|
-
The URL of the Database Transforms for the Autonomous Database.
|
2484
|
-
"""
|
2485
|
-
return pulumi.get(self, "database_transforms_url")
|
2486
|
-
|
2487
|
-
@property
|
2488
|
-
@pulumi.getter(name="graphStudioUrl")
|
2489
|
-
def graph_studio_url(self) -> Optional[str]:
|
2490
|
-
"""
|
2491
|
-
The URL of the Graph Studio for the Autonomous Database.
|
2492
|
-
"""
|
2493
|
-
return pulumi.get(self, "graph_studio_url")
|
2494
|
-
|
2495
|
-
@property
|
2496
|
-
@pulumi.getter(name="machineLearningNotebookUrl")
|
2497
|
-
def machine_learning_notebook_url(self) -> Optional[str]:
|
2498
|
-
"""
|
2499
|
-
The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
2500
|
-
"""
|
2501
|
-
return pulumi.get(self, "machine_learning_notebook_url")
|
2502
|
-
|
2503
|
-
@property
|
2504
|
-
@pulumi.getter(name="machineLearningUserManagementUrl")
|
2505
|
-
def machine_learning_user_management_url(self) -> Optional[str]:
|
2506
|
-
"""
|
2507
|
-
Oracle Machine Learning user management URL.
|
2508
|
-
"""
|
2509
|
-
return pulumi.get(self, "machine_learning_user_management_url")
|
2510
|
-
|
2511
|
-
@property
|
2512
|
-
@pulumi.getter(name="mongoDbUrl")
|
2513
|
-
def mongo_db_url(self) -> Optional[str]:
|
2514
|
-
"""
|
2515
|
-
The URL of the MongoDB API for the Autonomous Database.
|
2516
|
-
"""
|
2517
|
-
return pulumi.get(self, "mongo_db_url")
|
2518
|
-
|
2519
|
-
@property
|
2520
|
-
@pulumi.getter(name="ordsUrl")
|
2521
|
-
def ords_url(self) -> Optional[str]:
|
2522
|
-
"""
|
2523
|
-
The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
2524
|
-
"""
|
2525
|
-
return pulumi.get(self, "ords_url")
|
2526
|
-
|
2527
|
-
@property
|
2528
|
-
@pulumi.getter(name="sqlDevWebUrl")
|
2529
|
-
def sql_dev_web_url(self) -> Optional[str]:
|
2530
|
-
"""
|
2531
|
-
Oracle SQL Developer Web URL.
|
2532
|
-
"""
|
2533
|
-
return pulumi.get(self, "sql_dev_web_url")
|
2534
|
-
|
2535
|
-
|
2536
2398
|
@pulumi.output_type
|
2537
2399
|
class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
2538
2400
|
@staticmethod
|
@@ -15984,101 +15846,6 @@ class GetAutonomousDatabasePeersFilterResult(dict):
|
|
15984
15846
|
return pulumi.get(self, "regex")
|
15985
15847
|
|
15986
15848
|
|
15987
|
-
@pulumi.output_type
|
15988
|
-
class GetAutonomousDatabasePublicConnectionUrlResult(dict):
|
15989
|
-
def __init__(__self__, *,
|
15990
|
-
apex_url: str,
|
15991
|
-
database_transforms_url: str,
|
15992
|
-
graph_studio_url: str,
|
15993
|
-
machine_learning_notebook_url: str,
|
15994
|
-
machine_learning_user_management_url: str,
|
15995
|
-
mongo_db_url: str,
|
15996
|
-
ords_url: str,
|
15997
|
-
sql_dev_web_url: str):
|
15998
|
-
"""
|
15999
|
-
:param str apex_url: Oracle Application Express (APEX) URL.
|
16000
|
-
:param str database_transforms_url: The URL of the Database Transforms for the Autonomous Database.
|
16001
|
-
:param str graph_studio_url: The URL of the Graph Studio for the Autonomous Database.
|
16002
|
-
:param str machine_learning_notebook_url: The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
16003
|
-
:param str machine_learning_user_management_url: Oracle Machine Learning user management URL.
|
16004
|
-
:param str mongo_db_url: The URL of the MongoDB API for the Autonomous Database.
|
16005
|
-
:param str ords_url: The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
16006
|
-
:param str sql_dev_web_url: Oracle SQL Developer Web URL.
|
16007
|
-
"""
|
16008
|
-
pulumi.set(__self__, "apex_url", apex_url)
|
16009
|
-
pulumi.set(__self__, "database_transforms_url", database_transforms_url)
|
16010
|
-
pulumi.set(__self__, "graph_studio_url", graph_studio_url)
|
16011
|
-
pulumi.set(__self__, "machine_learning_notebook_url", machine_learning_notebook_url)
|
16012
|
-
pulumi.set(__self__, "machine_learning_user_management_url", machine_learning_user_management_url)
|
16013
|
-
pulumi.set(__self__, "mongo_db_url", mongo_db_url)
|
16014
|
-
pulumi.set(__self__, "ords_url", ords_url)
|
16015
|
-
pulumi.set(__self__, "sql_dev_web_url", sql_dev_web_url)
|
16016
|
-
|
16017
|
-
@property
|
16018
|
-
@pulumi.getter(name="apexUrl")
|
16019
|
-
def apex_url(self) -> str:
|
16020
|
-
"""
|
16021
|
-
Oracle Application Express (APEX) URL.
|
16022
|
-
"""
|
16023
|
-
return pulumi.get(self, "apex_url")
|
16024
|
-
|
16025
|
-
@property
|
16026
|
-
@pulumi.getter(name="databaseTransformsUrl")
|
16027
|
-
def database_transforms_url(self) -> str:
|
16028
|
-
"""
|
16029
|
-
The URL of the Database Transforms for the Autonomous Database.
|
16030
|
-
"""
|
16031
|
-
return pulumi.get(self, "database_transforms_url")
|
16032
|
-
|
16033
|
-
@property
|
16034
|
-
@pulumi.getter(name="graphStudioUrl")
|
16035
|
-
def graph_studio_url(self) -> str:
|
16036
|
-
"""
|
16037
|
-
The URL of the Graph Studio for the Autonomous Database.
|
16038
|
-
"""
|
16039
|
-
return pulumi.get(self, "graph_studio_url")
|
16040
|
-
|
16041
|
-
@property
|
16042
|
-
@pulumi.getter(name="machineLearningNotebookUrl")
|
16043
|
-
def machine_learning_notebook_url(self) -> str:
|
16044
|
-
"""
|
16045
|
-
The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
16046
|
-
"""
|
16047
|
-
return pulumi.get(self, "machine_learning_notebook_url")
|
16048
|
-
|
16049
|
-
@property
|
16050
|
-
@pulumi.getter(name="machineLearningUserManagementUrl")
|
16051
|
-
def machine_learning_user_management_url(self) -> str:
|
16052
|
-
"""
|
16053
|
-
Oracle Machine Learning user management URL.
|
16054
|
-
"""
|
16055
|
-
return pulumi.get(self, "machine_learning_user_management_url")
|
16056
|
-
|
16057
|
-
@property
|
16058
|
-
@pulumi.getter(name="mongoDbUrl")
|
16059
|
-
def mongo_db_url(self) -> str:
|
16060
|
-
"""
|
16061
|
-
The URL of the MongoDB API for the Autonomous Database.
|
16062
|
-
"""
|
16063
|
-
return pulumi.get(self, "mongo_db_url")
|
16064
|
-
|
16065
|
-
@property
|
16066
|
-
@pulumi.getter(name="ordsUrl")
|
16067
|
-
def ords_url(self) -> str:
|
16068
|
-
"""
|
16069
|
-
The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
16070
|
-
"""
|
16071
|
-
return pulumi.get(self, "ords_url")
|
16072
|
-
|
16073
|
-
@property
|
16074
|
-
@pulumi.getter(name="sqlDevWebUrl")
|
16075
|
-
def sql_dev_web_url(self) -> str:
|
16076
|
-
"""
|
16077
|
-
Oracle SQL Developer Web URL.
|
16078
|
-
"""
|
16079
|
-
return pulumi.get(self, "sql_dev_web_url")
|
16080
|
-
|
16081
|
-
|
16082
15849
|
@pulumi.output_type
|
16083
15850
|
class GetAutonomousDatabaseRefreshableClonesFilterResult(dict):
|
16084
15851
|
def __init__(__self__, *,
|
@@ -16613,8 +16380,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16613
16380
|
private_endpoint_ip: str,
|
16614
16381
|
private_endpoint_label: str,
|
16615
16382
|
provisionable_cpuses: Sequence[float],
|
16616
|
-
public_connection_urls: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult'],
|
16617
|
-
public_endpoint: str,
|
16618
16383
|
refreshable_mode: str,
|
16619
16384
|
refreshable_status: str,
|
16620
16385
|
remote_disaster_recovery_configurations: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult'],
|
@@ -16743,8 +16508,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16743
16508
|
:param str private_endpoint_ip: The private endpoint Ip address for the resource.
|
16744
16509
|
:param str private_endpoint_label: The private endpoint label for the resource.
|
16745
16510
|
:param Sequence[float] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
|
16746
|
-
:param Sequence['GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlArgs'] 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.
|
16747
|
-
:param str public_endpoint: The public endpoint for the private endpoint enabled resource.
|
16748
16511
|
:param str refreshable_mode: The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
|
16749
16512
|
:param 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.
|
16750
16513
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs'] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -16868,8 +16631,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16868
16631
|
pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
|
16869
16632
|
pulumi.set(__self__, "private_endpoint_label", private_endpoint_label)
|
16870
16633
|
pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
|
16871
|
-
pulumi.set(__self__, "public_connection_urls", public_connection_urls)
|
16872
|
-
pulumi.set(__self__, "public_endpoint", public_endpoint)
|
16873
16634
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
16874
16635
|
pulumi.set(__self__, "refreshable_status", refreshable_status)
|
16875
16636
|
pulumi.set(__self__, "remote_disaster_recovery_configurations", remote_disaster_recovery_configurations)
|
@@ -17591,22 +17352,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17591
17352
|
"""
|
17592
17353
|
return pulumi.get(self, "provisionable_cpuses")
|
17593
17354
|
|
17594
|
-
@property
|
17595
|
-
@pulumi.getter(name="publicConnectionUrls")
|
17596
|
-
def public_connection_urls(self) -> Sequence['outputs.GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult']:
|
17597
|
-
"""
|
17598
|
-
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.
|
17599
|
-
"""
|
17600
|
-
return pulumi.get(self, "public_connection_urls")
|
17601
|
-
|
17602
|
-
@property
|
17603
|
-
@pulumi.getter(name="publicEndpoint")
|
17604
|
-
def public_endpoint(self) -> str:
|
17605
|
-
"""
|
17606
|
-
The public endpoint for the private endpoint enabled resource.
|
17607
|
-
"""
|
17608
|
-
return pulumi.get(self, "public_endpoint")
|
17609
|
-
|
17610
17355
|
@property
|
17611
17356
|
@pulumi.getter(name="refreshableMode")
|
17612
17357
|
def refreshable_mode(self) -> str:
|
@@ -18511,101 +18256,6 @@ class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict)
|
|
18511
18256
|
return pulumi.get(self, "time_of_backup")
|
18512
18257
|
|
18513
18258
|
|
18514
|
-
@pulumi.output_type
|
18515
|
-
class GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult(dict):
|
18516
|
-
def __init__(__self__, *,
|
18517
|
-
apex_url: str,
|
18518
|
-
database_transforms_url: str,
|
18519
|
-
graph_studio_url: str,
|
18520
|
-
machine_learning_notebook_url: str,
|
18521
|
-
machine_learning_user_management_url: str,
|
18522
|
-
mongo_db_url: str,
|
18523
|
-
ords_url: str,
|
18524
|
-
sql_dev_web_url: str):
|
18525
|
-
"""
|
18526
|
-
:param str apex_url: Oracle Application Express (APEX) URL.
|
18527
|
-
:param str database_transforms_url: The URL of the Database Transforms for the Autonomous Database.
|
18528
|
-
:param str graph_studio_url: The URL of the Graph Studio for the Autonomous Database.
|
18529
|
-
:param str machine_learning_notebook_url: The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
18530
|
-
:param str machine_learning_user_management_url: Oracle Machine Learning user management URL.
|
18531
|
-
:param str mongo_db_url: The URL of the MongoDB API for the Autonomous Database.
|
18532
|
-
:param str ords_url: The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
18533
|
-
:param str sql_dev_web_url: Oracle SQL Developer Web URL.
|
18534
|
-
"""
|
18535
|
-
pulumi.set(__self__, "apex_url", apex_url)
|
18536
|
-
pulumi.set(__self__, "database_transforms_url", database_transforms_url)
|
18537
|
-
pulumi.set(__self__, "graph_studio_url", graph_studio_url)
|
18538
|
-
pulumi.set(__self__, "machine_learning_notebook_url", machine_learning_notebook_url)
|
18539
|
-
pulumi.set(__self__, "machine_learning_user_management_url", machine_learning_user_management_url)
|
18540
|
-
pulumi.set(__self__, "mongo_db_url", mongo_db_url)
|
18541
|
-
pulumi.set(__self__, "ords_url", ords_url)
|
18542
|
-
pulumi.set(__self__, "sql_dev_web_url", sql_dev_web_url)
|
18543
|
-
|
18544
|
-
@property
|
18545
|
-
@pulumi.getter(name="apexUrl")
|
18546
|
-
def apex_url(self) -> str:
|
18547
|
-
"""
|
18548
|
-
Oracle Application Express (APEX) URL.
|
18549
|
-
"""
|
18550
|
-
return pulumi.get(self, "apex_url")
|
18551
|
-
|
18552
|
-
@property
|
18553
|
-
@pulumi.getter(name="databaseTransformsUrl")
|
18554
|
-
def database_transforms_url(self) -> str:
|
18555
|
-
"""
|
18556
|
-
The URL of the Database Transforms for the Autonomous Database.
|
18557
|
-
"""
|
18558
|
-
return pulumi.get(self, "database_transforms_url")
|
18559
|
-
|
18560
|
-
@property
|
18561
|
-
@pulumi.getter(name="graphStudioUrl")
|
18562
|
-
def graph_studio_url(self) -> str:
|
18563
|
-
"""
|
18564
|
-
The URL of the Graph Studio for the Autonomous Database.
|
18565
|
-
"""
|
18566
|
-
return pulumi.get(self, "graph_studio_url")
|
18567
|
-
|
18568
|
-
@property
|
18569
|
-
@pulumi.getter(name="machineLearningNotebookUrl")
|
18570
|
-
def machine_learning_notebook_url(self) -> str:
|
18571
|
-
"""
|
18572
|
-
The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
18573
|
-
"""
|
18574
|
-
return pulumi.get(self, "machine_learning_notebook_url")
|
18575
|
-
|
18576
|
-
@property
|
18577
|
-
@pulumi.getter(name="machineLearningUserManagementUrl")
|
18578
|
-
def machine_learning_user_management_url(self) -> str:
|
18579
|
-
"""
|
18580
|
-
Oracle Machine Learning user management URL.
|
18581
|
-
"""
|
18582
|
-
return pulumi.get(self, "machine_learning_user_management_url")
|
18583
|
-
|
18584
|
-
@property
|
18585
|
-
@pulumi.getter(name="mongoDbUrl")
|
18586
|
-
def mongo_db_url(self) -> str:
|
18587
|
-
"""
|
18588
|
-
The URL of the MongoDB API for the Autonomous Database.
|
18589
|
-
"""
|
18590
|
-
return pulumi.get(self, "mongo_db_url")
|
18591
|
-
|
18592
|
-
@property
|
18593
|
-
@pulumi.getter(name="ordsUrl")
|
18594
|
-
def ords_url(self) -> str:
|
18595
|
-
"""
|
18596
|
-
The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
18597
|
-
"""
|
18598
|
-
return pulumi.get(self, "ords_url")
|
18599
|
-
|
18600
|
-
@property
|
18601
|
-
@pulumi.getter(name="sqlDevWebUrl")
|
18602
|
-
def sql_dev_web_url(self) -> str:
|
18603
|
-
"""
|
18604
|
-
Oracle SQL Developer Web URL.
|
18605
|
-
"""
|
18606
|
-
return pulumi.get(self, "sql_dev_web_url")
|
18607
|
-
|
18608
|
-
|
18609
18259
|
@pulumi.output_type
|
18610
18260
|
class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
18611
18261
|
def __init__(__self__, *,
|
@@ -18877,8 +18527,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18877
18527
|
private_endpoint_ip: str,
|
18878
18528
|
private_endpoint_label: str,
|
18879
18529
|
provisionable_cpuses: Sequence[float],
|
18880
|
-
public_connection_urls: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult'],
|
18881
|
-
public_endpoint: str,
|
18882
18530
|
refreshable_mode: str,
|
18883
18531
|
refreshable_status: str,
|
18884
18532
|
remote_disaster_recovery_configurations: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult'],
|
@@ -18997,8 +18645,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18997
18645
|
:param str private_endpoint_ip: The private endpoint Ip address for the resource.
|
18998
18646
|
:param str private_endpoint_label: The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
|
18999
18647
|
:param Sequence[float] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
|
19000
|
-
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlArgs'] 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.
|
19001
|
-
:param str public_endpoint: The public endpoint for the private endpoint enabled resource.
|
19002
18648
|
:param str refreshable_mode: The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
|
19003
18649
|
:param 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.
|
19004
18650
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs'] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -19111,8 +18757,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19111
18757
|
pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
|
19112
18758
|
pulumi.set(__self__, "private_endpoint_label", private_endpoint_label)
|
19113
18759
|
pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
|
19114
|
-
pulumi.set(__self__, "public_connection_urls", public_connection_urls)
|
19115
|
-
pulumi.set(__self__, "public_endpoint", public_endpoint)
|
19116
18760
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
19117
18761
|
pulumi.set(__self__, "refreshable_status", refreshable_status)
|
19118
18762
|
pulumi.set(__self__, "remote_disaster_recovery_configurations", remote_disaster_recovery_configurations)
|
@@ -19763,22 +19407,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19763
19407
|
"""
|
19764
19408
|
return pulumi.get(self, "provisionable_cpuses")
|
19765
19409
|
|
19766
|
-
@property
|
19767
|
-
@pulumi.getter(name="publicConnectionUrls")
|
19768
|
-
def public_connection_urls(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult']:
|
19769
|
-
"""
|
19770
|
-
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.
|
19771
|
-
"""
|
19772
|
-
return pulumi.get(self, "public_connection_urls")
|
19773
|
-
|
19774
|
-
@property
|
19775
|
-
@pulumi.getter(name="publicEndpoint")
|
19776
|
-
def public_endpoint(self) -> str:
|
19777
|
-
"""
|
19778
|
-
The public endpoint for the private endpoint enabled resource.
|
19779
|
-
"""
|
19780
|
-
return pulumi.get(self, "public_endpoint")
|
19781
|
-
|
19782
19410
|
@property
|
19783
19411
|
@pulumi.getter(name="refreshableMode")
|
19784
19412
|
def refreshable_mode(self) -> str:
|
@@ -20630,101 +20258,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult
|
|
20630
20258
|
return pulumi.get(self, "time_of_backup")
|
20631
20259
|
|
20632
20260
|
|
20633
|
-
@pulumi.output_type
|
20634
|
-
class GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult(dict):
|
20635
|
-
def __init__(__self__, *,
|
20636
|
-
apex_url: str,
|
20637
|
-
database_transforms_url: str,
|
20638
|
-
graph_studio_url: str,
|
20639
|
-
machine_learning_notebook_url: str,
|
20640
|
-
machine_learning_user_management_url: str,
|
20641
|
-
mongo_db_url: str,
|
20642
|
-
ords_url: str,
|
20643
|
-
sql_dev_web_url: str):
|
20644
|
-
"""
|
20645
|
-
:param str apex_url: Oracle Application Express (APEX) URL.
|
20646
|
-
:param str database_transforms_url: The URL of the Database Transforms for the Autonomous Database.
|
20647
|
-
:param str graph_studio_url: The URL of the Graph Studio for the Autonomous Database.
|
20648
|
-
:param str machine_learning_notebook_url: The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
20649
|
-
:param str machine_learning_user_management_url: Oracle Machine Learning user management URL.
|
20650
|
-
:param str mongo_db_url: The URL of the MongoDB API for the Autonomous Database.
|
20651
|
-
:param str ords_url: The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
20652
|
-
:param str sql_dev_web_url: Oracle SQL Developer Web URL.
|
20653
|
-
"""
|
20654
|
-
pulumi.set(__self__, "apex_url", apex_url)
|
20655
|
-
pulumi.set(__self__, "database_transforms_url", database_transforms_url)
|
20656
|
-
pulumi.set(__self__, "graph_studio_url", graph_studio_url)
|
20657
|
-
pulumi.set(__self__, "machine_learning_notebook_url", machine_learning_notebook_url)
|
20658
|
-
pulumi.set(__self__, "machine_learning_user_management_url", machine_learning_user_management_url)
|
20659
|
-
pulumi.set(__self__, "mongo_db_url", mongo_db_url)
|
20660
|
-
pulumi.set(__self__, "ords_url", ords_url)
|
20661
|
-
pulumi.set(__self__, "sql_dev_web_url", sql_dev_web_url)
|
20662
|
-
|
20663
|
-
@property
|
20664
|
-
@pulumi.getter(name="apexUrl")
|
20665
|
-
def apex_url(self) -> str:
|
20666
|
-
"""
|
20667
|
-
Oracle Application Express (APEX) URL.
|
20668
|
-
"""
|
20669
|
-
return pulumi.get(self, "apex_url")
|
20670
|
-
|
20671
|
-
@property
|
20672
|
-
@pulumi.getter(name="databaseTransformsUrl")
|
20673
|
-
def database_transforms_url(self) -> str:
|
20674
|
-
"""
|
20675
|
-
The URL of the Database Transforms for the Autonomous Database.
|
20676
|
-
"""
|
20677
|
-
return pulumi.get(self, "database_transforms_url")
|
20678
|
-
|
20679
|
-
@property
|
20680
|
-
@pulumi.getter(name="graphStudioUrl")
|
20681
|
-
def graph_studio_url(self) -> str:
|
20682
|
-
"""
|
20683
|
-
The URL of the Graph Studio for the Autonomous Database.
|
20684
|
-
"""
|
20685
|
-
return pulumi.get(self, "graph_studio_url")
|
20686
|
-
|
20687
|
-
@property
|
20688
|
-
@pulumi.getter(name="machineLearningNotebookUrl")
|
20689
|
-
def machine_learning_notebook_url(self) -> str:
|
20690
|
-
"""
|
20691
|
-
The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database.
|
20692
|
-
"""
|
20693
|
-
return pulumi.get(self, "machine_learning_notebook_url")
|
20694
|
-
|
20695
|
-
@property
|
20696
|
-
@pulumi.getter(name="machineLearningUserManagementUrl")
|
20697
|
-
def machine_learning_user_management_url(self) -> str:
|
20698
|
-
"""
|
20699
|
-
Oracle Machine Learning user management URL.
|
20700
|
-
"""
|
20701
|
-
return pulumi.get(self, "machine_learning_user_management_url")
|
20702
|
-
|
20703
|
-
@property
|
20704
|
-
@pulumi.getter(name="mongoDbUrl")
|
20705
|
-
def mongo_db_url(self) -> str:
|
20706
|
-
"""
|
20707
|
-
The URL of the MongoDB API for the Autonomous Database.
|
20708
|
-
"""
|
20709
|
-
return pulumi.get(self, "mongo_db_url")
|
20710
|
-
|
20711
|
-
@property
|
20712
|
-
@pulumi.getter(name="ordsUrl")
|
20713
|
-
def ords_url(self) -> str:
|
20714
|
-
"""
|
20715
|
-
The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database.
|
20716
|
-
"""
|
20717
|
-
return pulumi.get(self, "ords_url")
|
20718
|
-
|
20719
|
-
@property
|
20720
|
-
@pulumi.getter(name="sqlDevWebUrl")
|
20721
|
-
def sql_dev_web_url(self) -> str:
|
20722
|
-
"""
|
20723
|
-
Oracle SQL Developer Web URL.
|
20724
|
-
"""
|
20725
|
-
return pulumi.get(self, "sql_dev_web_url")
|
20726
|
-
|
20727
|
-
|
20728
20261
|
@pulumi.output_type
|
20729
20262
|
class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
20730
20263
|
def __init__(__self__, *,
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -139,7 +139,6 @@ from .mask_data import *
|
|
139
139
|
from .masking_policies_apply_difference_to_masking_columns import *
|
140
140
|
from .masking_policies_masking_column import *
|
141
141
|
from .masking_policy import *
|
142
|
-
from .masking_policy_health_report_management import *
|
143
142
|
from .masking_report_management import *
|
144
143
|
from .on_prem_connector import *
|
145
144
|
from .report import *
|
pulumi_oci/pulumi-plugin.json
CHANGED