pulumi-oci 1.41.0a1718431958__py3-none-any.whl → 1.41.0a1718770557__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 +8 -0
- pulumi_oci/database/_inputs.py +136 -0
- pulumi_oci/database/autonomous_database.py +56 -0
- pulumi_oci/database/get_autonomous_database.py +27 -1
- pulumi_oci/database/outputs.py +467 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.41.0a1718431958.dist-info → pulumi_oci-1.41.0a1718770557.dist-info}/METADATA +1 -1
- {pulumi_oci-1.41.0a1718431958.dist-info → pulumi_oci-1.41.0a1718770557.dist-info}/RECORD +12 -11
- {pulumi_oci-1.41.0a1718431958.dist-info → pulumi_oci-1.41.0a1718770557.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.41.0a1718431958.dist-info → pulumi_oci-1.41.0a1718770557.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -35,6 +35,7 @@ __all__ = [
|
|
35
35
|
'AutonomousDatabaseKeyHistoryEntry',
|
36
36
|
'AutonomousDatabaseLocalStandbyDb',
|
37
37
|
'AutonomousDatabaseLongTermBackupSchedule',
|
38
|
+
'AutonomousDatabasePublicConnectionUrl',
|
38
39
|
'AutonomousDatabaseRemoteDisasterRecoveryConfiguration',
|
39
40
|
'AutonomousDatabaseResourcePoolSummary',
|
40
41
|
'AutonomousDatabaseScheduledOperation',
|
@@ -224,6 +225,7 @@ __all__ = [
|
|
224
225
|
'GetAutonomousDatabasePeersAutonomousDatabasePeerCollectionResult',
|
225
226
|
'GetAutonomousDatabasePeersAutonomousDatabasePeerCollectionItemResult',
|
226
227
|
'GetAutonomousDatabasePeersFilterResult',
|
228
|
+
'GetAutonomousDatabasePublicConnectionUrlResult',
|
227
229
|
'GetAutonomousDatabaseRefreshableClonesFilterResult',
|
228
230
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionResult',
|
229
231
|
'GetAutonomousDatabaseRefreshableClonesRefreshableCloneCollectionItemResult',
|
@@ -246,6 +248,7 @@ __all__ = [
|
|
246
248
|
'GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult',
|
247
249
|
'GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult',
|
248
250
|
'GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult',
|
251
|
+
'GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult',
|
249
252
|
'GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult',
|
250
253
|
'GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult',
|
251
254
|
'GetAutonomousDatabasesAutonomousDatabaseScheduledOperationResult',
|
@@ -262,6 +265,7 @@ __all__ = [
|
|
262
265
|
'GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult',
|
263
266
|
'GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult',
|
264
267
|
'GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult',
|
268
|
+
'GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult',
|
265
269
|
'GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult',
|
266
270
|
'GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult',
|
267
271
|
'GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationResult',
|
@@ -2395,6 +2399,140 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
|
|
2395
2399
|
return pulumi.get(self, "time_of_backup")
|
2396
2400
|
|
2397
2401
|
|
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
|
+
|
2398
2536
|
@pulumi.output_type
|
2399
2537
|
class AutonomousDatabaseRemoteDisasterRecoveryConfiguration(dict):
|
2400
2538
|
@staticmethod
|
@@ -15846,6 +15984,101 @@ class GetAutonomousDatabasePeersFilterResult(dict):
|
|
15846
15984
|
return pulumi.get(self, "regex")
|
15847
15985
|
|
15848
15986
|
|
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
|
+
|
15849
16082
|
@pulumi.output_type
|
15850
16083
|
class GetAutonomousDatabaseRefreshableClonesFilterResult(dict):
|
15851
16084
|
def __init__(__self__, *,
|
@@ -16380,6 +16613,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16380
16613
|
private_endpoint_ip: str,
|
16381
16614
|
private_endpoint_label: str,
|
16382
16615
|
provisionable_cpuses: Sequence[float],
|
16616
|
+
public_connection_urls: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabasePublicConnectionUrlResult'],
|
16617
|
+
public_endpoint: str,
|
16383
16618
|
refreshable_mode: str,
|
16384
16619
|
refreshable_status: str,
|
16385
16620
|
remote_disaster_recovery_configurations: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult'],
|
@@ -16508,6 +16743,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16508
16743
|
:param str private_endpoint_ip: The private endpoint Ip address for the resource.
|
16509
16744
|
:param str private_endpoint_label: The private endpoint label for the resource.
|
16510
16745
|
: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.
|
16511
16748
|
: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.
|
16512
16749
|
: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.
|
16513
16750
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs'] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -16631,6 +16868,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
16631
16868
|
pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
|
16632
16869
|
pulumi.set(__self__, "private_endpoint_label", private_endpoint_label)
|
16633
16870
|
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)
|
16634
16873
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
16635
16874
|
pulumi.set(__self__, "refreshable_status", refreshable_status)
|
16636
16875
|
pulumi.set(__self__, "remote_disaster_recovery_configurations", remote_disaster_recovery_configurations)
|
@@ -17352,6 +17591,22 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17352
17591
|
"""
|
17353
17592
|
return pulumi.get(self, "provisionable_cpuses")
|
17354
17593
|
|
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
|
+
|
17355
17610
|
@property
|
17356
17611
|
@pulumi.getter(name="refreshableMode")
|
17357
17612
|
def refreshable_mode(self) -> str:
|
@@ -18256,6 +18511,101 @@ class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict)
|
|
18256
18511
|
return pulumi.get(self, "time_of_backup")
|
18257
18512
|
|
18258
18513
|
|
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
|
+
|
18259
18609
|
@pulumi.output_type
|
18260
18610
|
class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
18261
18611
|
def __init__(__self__, *,
|
@@ -18527,6 +18877,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18527
18877
|
private_endpoint_ip: str,
|
18528
18878
|
private_endpoint_label: str,
|
18529
18879
|
provisionable_cpuses: Sequence[float],
|
18880
|
+
public_connection_urls: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabasePublicConnectionUrlResult'],
|
18881
|
+
public_endpoint: str,
|
18530
18882
|
refreshable_mode: str,
|
18531
18883
|
refreshable_status: str,
|
18532
18884
|
remote_disaster_recovery_configurations: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult'],
|
@@ -18645,6 +18997,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18645
18997
|
:param str private_endpoint_ip: The private endpoint Ip address for the resource.
|
18646
18998
|
: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.
|
18647
18999
|
: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.
|
18648
19002
|
: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.
|
18649
19003
|
: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.
|
18650
19004
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs'] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
@@ -18757,6 +19111,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
18757
19111
|
pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
|
18758
19112
|
pulumi.set(__self__, "private_endpoint_label", private_endpoint_label)
|
18759
19113
|
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)
|
18760
19116
|
pulumi.set(__self__, "refreshable_mode", refreshable_mode)
|
18761
19117
|
pulumi.set(__self__, "refreshable_status", refreshable_status)
|
18762
19118
|
pulumi.set(__self__, "remote_disaster_recovery_configurations", remote_disaster_recovery_configurations)
|
@@ -19407,6 +19763,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19407
19763
|
"""
|
19408
19764
|
return pulumi.get(self, "provisionable_cpuses")
|
19409
19765
|
|
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
|
+
|
19410
19782
|
@property
|
19411
19783
|
@pulumi.getter(name="refreshableMode")
|
19412
19784
|
def refreshable_mode(self) -> str:
|
@@ -20258,6 +20630,101 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult
|
|
20258
20630
|
return pulumi.get(self, "time_of_backup")
|
20259
20631
|
|
20260
20632
|
|
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
|
+
|
20261
20728
|
@pulumi.output_type
|
20262
20729
|
class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfigurationResult(dict):
|
20263
20730
|
def __init__(__self__, *,
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -139,6 +139,7 @@ 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 *
|
142
143
|
from .masking_report_management import *
|
143
144
|
from .on_prem_connector import *
|
144
145
|
from .report import *
|