pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.0__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 +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -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, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=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, public_connection_urls=None, public_endpoint=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, subscription_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):
|
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, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=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, public_connection_urls=None, public_endpoint=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, subscription_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)
|
@@ -56,6 +56,9 @@ class GetAutonomousDatabaseResult:
|
|
56
56
|
if autonomous_maintenance_schedule_type and not isinstance(autonomous_maintenance_schedule_type, str):
|
57
57
|
raise TypeError("Expected argument 'autonomous_maintenance_schedule_type' to be a str")
|
58
58
|
pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
|
59
|
+
if availability_domain and not isinstance(availability_domain, str):
|
60
|
+
raise TypeError("Expected argument 'availability_domain' to be a str")
|
61
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
59
62
|
if available_upgrade_versions and not isinstance(available_upgrade_versions, list):
|
60
63
|
raise TypeError("Expected argument 'available_upgrade_versions' to be a list")
|
61
64
|
pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
|
@@ -514,6 +517,14 @@ class GetAutonomousDatabaseResult:
|
|
514
517
|
"""
|
515
518
|
return pulumi.get(self, "autonomous_maintenance_schedule_type")
|
516
519
|
|
520
|
+
@property
|
521
|
+
@pulumi.getter(name="availabilityDomain")
|
522
|
+
def availability_domain(self) -> str:
|
523
|
+
"""
|
524
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
525
|
+
"""
|
526
|
+
return pulumi.get(self, "availability_domain")
|
527
|
+
|
517
528
|
@property
|
518
529
|
@pulumi.getter(name="availableUpgradeVersions")
|
519
530
|
def available_upgrade_versions(self) -> Sequence[str]:
|
@@ -1505,6 +1516,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1505
1516
|
autonomous_database_backup_id=self.autonomous_database_backup_id,
|
1506
1517
|
autonomous_database_id=self.autonomous_database_id,
|
1507
1518
|
autonomous_maintenance_schedule_type=self.autonomous_maintenance_schedule_type,
|
1519
|
+
availability_domain=self.availability_domain,
|
1508
1520
|
available_upgrade_versions=self.available_upgrade_versions,
|
1509
1521
|
backup_configs=self.backup_configs,
|
1510
1522
|
backup_retention_period_in_days=self.backup_retention_period_in_days,
|
@@ -1669,6 +1681,7 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1669
1681
|
autonomous_database_backup_id=pulumi.get(__ret__, 'autonomous_database_backup_id'),
|
1670
1682
|
autonomous_database_id=pulumi.get(__ret__, 'autonomous_database_id'),
|
1671
1683
|
autonomous_maintenance_schedule_type=pulumi.get(__ret__, 'autonomous_maintenance_schedule_type'),
|
1684
|
+
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
1672
1685
|
available_upgrade_versions=pulumi.get(__ret__, 'available_upgrade_versions'),
|
1673
1686
|
backup_configs=pulumi.get(__ret__, 'backup_configs'),
|
1674
1687
|
backup_retention_period_in_days=pulumi.get(__ret__, 'backup_retention_period_in_days'),
|
@@ -81,9 +81,6 @@ class GetAutonomousDatabasesResult:
|
|
81
81
|
@property
|
82
82
|
@pulumi.getter(name="autonomousDatabases")
|
83
83
|
def autonomous_databases(self) -> Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseResult']:
|
84
|
-
"""
|
85
|
-
The list of autonomous_databases.
|
86
|
-
"""
|
87
84
|
return pulumi.get(self, "autonomous_databases")
|
88
85
|
|
89
86
|
@property
|
@@ -227,56 +224,26 @@ def get_autonomous_databases(autonomous_container_database_id: Optional[str] = N
|
|
227
224
|
state: Optional[str] = None,
|
228
225
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAutonomousDatabasesResult:
|
229
226
|
"""
|
230
|
-
|
231
|
-
|
232
|
-
***
|
233
|
-
## subcategory: "Database"
|
234
|
-
|
235
|
-
layout: "oci"
|
236
|
-
page_title: "Oracle Cloud Infrastructure: database_get_autonomous_databases"
|
237
|
-
sidebar_current: "docs-oci-datasource-database-autonomous_databases"
|
238
|
-
description: |-
|
239
|
-
Provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service
|
240
|
-
---
|
241
|
-
|
242
|
-
# Data Source: database_get_autonomous_databases
|
243
|
-
This data source provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service.
|
244
|
-
|
245
|
-
Gets a list of Autonomous Databases based on the query parameters specified.
|
246
|
-
|
247
|
-
## Example Usage
|
227
|
+
This data source provides details about a specific Autonomous Database resource in Oracle Cloud Infrastructure Database service.
|
248
228
|
|
249
|
-
|
250
|
-
import pulumi
|
251
|
-
import pulumi_oci as oci
|
252
|
-
|
253
|
-
test_autonomous_databases = oci.Database.get_autonomous_databases(compartment_id=compartment_id,
|
254
|
-
autonomous_container_database_id=test_autonomous_container_database["id"],
|
255
|
-
db_version=autonomous_database_db_version,
|
256
|
-
db_workload=autonomous_database_db_workload,
|
257
|
-
display_name=autonomous_database_display_name,
|
258
|
-
infrastructure_type=autonomous_database_infrastructure_type,
|
259
|
-
is_data_guard_enabled=autonomous_database_is_data_guard_enabled,
|
260
|
-
is_free_tier=autonomous_database_is_free_tier,
|
261
|
-
is_refreshable_clone=autonomous_database_is_refreshable_clone,
|
262
|
-
is_resource_pool_leader=autonomous_database_is_resource_pool_leader,
|
263
|
-
resource_pool_leader_id=test_resource_pool_leader["id"],
|
264
|
-
state=autonomous_database_state)
|
265
|
-
```
|
229
|
+
Gets the details of the specified Autonomous Database.
|
266
230
|
|
267
231
|
|
268
232
|
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
269
|
-
:param str compartment_id: The
|
270
|
-
:param str db_version: A
|
271
|
-
:param str db_workload:
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
:param
|
277
|
-
:param
|
278
|
-
:param
|
279
|
-
:param
|
233
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
234
|
+
:param str db_version: A valid Oracle Database version for Autonomous Database.
|
235
|
+
:param str db_workload: The Autonomous Database workload type. The following values are valid:
|
236
|
+
* OLTP - indicates an Autonomous Transaction Processing database
|
237
|
+
* DW - indicates an Autonomous Data Warehouse database
|
238
|
+
* AJD - indicates an Autonomous JSON Database
|
239
|
+
* APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
|
240
|
+
:param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
241
|
+
:param str infrastructure_type: The infrastructure type this resource belongs to.
|
242
|
+
:param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
243
|
+
:param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
244
|
+
:param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
|
245
|
+
:param str resource_pool_leader_id: The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
246
|
+
:param str state: The current state of the Autonomous Database.
|
280
247
|
"""
|
281
248
|
__args__ = dict()
|
282
249
|
__args__['autonomousContainerDatabaseId'] = autonomous_container_database_id
|
@@ -329,55 +296,25 @@ def get_autonomous_databases_output(autonomous_container_database_id: Optional[p
|
|
329
296
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
330
297
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAutonomousDatabasesResult]:
|
331
298
|
"""
|
332
|
-
|
333
|
-
|
334
|
-
***
|
335
|
-
## subcategory: "Database"
|
336
|
-
|
337
|
-
layout: "oci"
|
338
|
-
page_title: "Oracle Cloud Infrastructure: database_get_autonomous_databases"
|
339
|
-
sidebar_current: "docs-oci-datasource-database-autonomous_databases"
|
340
|
-
description: |-
|
341
|
-
Provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service
|
342
|
-
---
|
343
|
-
|
344
|
-
# Data Source: database_get_autonomous_databases
|
345
|
-
This data source provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service.
|
346
|
-
|
347
|
-
Gets a list of Autonomous Databases based on the query parameters specified.
|
348
|
-
|
349
|
-
## Example Usage
|
350
|
-
|
351
|
-
```python
|
352
|
-
import pulumi
|
353
|
-
import pulumi_oci as oci
|
299
|
+
This data source provides details about a specific Autonomous Database resource in Oracle Cloud Infrastructure Database service.
|
354
300
|
|
355
|
-
|
356
|
-
autonomous_container_database_id=test_autonomous_container_database["id"],
|
357
|
-
db_version=autonomous_database_db_version,
|
358
|
-
db_workload=autonomous_database_db_workload,
|
359
|
-
display_name=autonomous_database_display_name,
|
360
|
-
infrastructure_type=autonomous_database_infrastructure_type,
|
361
|
-
is_data_guard_enabled=autonomous_database_is_data_guard_enabled,
|
362
|
-
is_free_tier=autonomous_database_is_free_tier,
|
363
|
-
is_refreshable_clone=autonomous_database_is_refreshable_clone,
|
364
|
-
is_resource_pool_leader=autonomous_database_is_resource_pool_leader,
|
365
|
-
resource_pool_leader_id=test_resource_pool_leader["id"],
|
366
|
-
state=autonomous_database_state)
|
367
|
-
```
|
301
|
+
Gets the details of the specified Autonomous Database.
|
368
302
|
|
369
303
|
|
370
304
|
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
371
|
-
:param str compartment_id: The
|
372
|
-
:param str db_version: A
|
373
|
-
:param str db_workload:
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
:param
|
379
|
-
:param
|
380
|
-
:param
|
381
|
-
:param
|
305
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
306
|
+
:param str db_version: A valid Oracle Database version for Autonomous Database.
|
307
|
+
:param str db_workload: The Autonomous Database workload type. The following values are valid:
|
308
|
+
* OLTP - indicates an Autonomous Transaction Processing database
|
309
|
+
* DW - indicates an Autonomous Data Warehouse database
|
310
|
+
* AJD - indicates an Autonomous JSON Database
|
311
|
+
* APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
|
312
|
+
:param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
313
|
+
:param str infrastructure_type: The infrastructure type this resource belongs to.
|
314
|
+
:param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
315
|
+
:param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
316
|
+
:param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
|
317
|
+
:param str resource_pool_leader_id: The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
318
|
+
:param str state: The current state of the Autonomous Database.
|
382
319
|
"""
|
383
320
|
...
|
@@ -22,7 +22,7 @@ class GetDataGuardAssociationResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getDataGuardAssociation.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, delete_standby_db_home_on_delete=None, display_name=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
|
25
|
+
def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, delete_standby_db_home_on_delete=None, display_name=None, domain=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
|
26
26
|
if apply_lag and not isinstance(apply_lag, str):
|
27
27
|
raise TypeError("Expected argument 'apply_lag' to be a str")
|
28
28
|
pulumi.set(__self__, "apply_lag", apply_lag)
|
@@ -77,6 +77,9 @@ class GetDataGuardAssociationResult:
|
|
77
77
|
if display_name and not isinstance(display_name, str):
|
78
78
|
raise TypeError("Expected argument 'display_name' to be a str")
|
79
79
|
pulumi.set(__self__, "display_name", display_name)
|
80
|
+
if domain and not isinstance(domain, str):
|
81
|
+
raise TypeError("Expected argument 'domain' to be a str")
|
82
|
+
pulumi.set(__self__, "domain", domain)
|
80
83
|
if fault_domains and not isinstance(fault_domains, list):
|
81
84
|
raise TypeError("Expected argument 'fault_domains' to be a list")
|
82
85
|
pulumi.set(__self__, "fault_domains", fault_domains)
|
@@ -255,6 +258,11 @@ class GetDataGuardAssociationResult:
|
|
255
258
|
def display_name(self) -> str:
|
256
259
|
return pulumi.get(self, "display_name")
|
257
260
|
|
261
|
+
@property
|
262
|
+
@pulumi.getter
|
263
|
+
def domain(self) -> str:
|
264
|
+
return pulumi.get(self, "domain")
|
265
|
+
|
258
266
|
@property
|
259
267
|
@pulumi.getter(name="faultDomains")
|
260
268
|
def fault_domains(self) -> Sequence[str]:
|
@@ -449,6 +457,7 @@ class AwaitableGetDataGuardAssociationResult(GetDataGuardAssociationResult):
|
|
449
457
|
db_system_freeform_tags=self.db_system_freeform_tags,
|
450
458
|
delete_standby_db_home_on_delete=self.delete_standby_db_home_on_delete,
|
451
459
|
display_name=self.display_name,
|
460
|
+
domain=self.domain,
|
452
461
|
fault_domains=self.fault_domains,
|
453
462
|
hostname=self.hostname,
|
454
463
|
id=self.id,
|
@@ -524,6 +533,7 @@ def get_data_guard_association(data_guard_association_id: Optional[str] = None,
|
|
524
533
|
db_system_freeform_tags=pulumi.get(__ret__, 'db_system_freeform_tags'),
|
525
534
|
delete_standby_db_home_on_delete=pulumi.get(__ret__, 'delete_standby_db_home_on_delete'),
|
526
535
|
display_name=pulumi.get(__ret__, 'display_name'),
|
536
|
+
domain=pulumi.get(__ret__, 'domain'),
|
527
537
|
fault_domains=pulumi.get(__ret__, 'fault_domains'),
|
528
538
|
hostname=pulumi.get(__ret__, 'hostname'),
|
529
539
|
id=pulumi.get(__ret__, 'id'),
|