pulumi-oci 2.8.0a1724220787__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/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- 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/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -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/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- 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/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- 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 +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- 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/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.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.0a1724220787.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'),
|
@@ -22,7 +22,7 @@ class GetMaintenanceRunResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getMaintenanceRun.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None):
|
25
|
+
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -35,6 +35,9 @@ class GetMaintenanceRunResult:
|
|
35
35
|
if custom_action_timeout_in_mins and not isinstance(custom_action_timeout_in_mins, int):
|
36
36
|
raise TypeError("Expected argument 'custom_action_timeout_in_mins' to be a int")
|
37
37
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
38
|
+
if database_software_image_id and not isinstance(database_software_image_id, str):
|
39
|
+
raise TypeError("Expected argument 'database_software_image_id' to be a str")
|
40
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
38
41
|
if description and not isinstance(description, str):
|
39
42
|
raise TypeError("Expected argument 'description' to be a str")
|
40
43
|
pulumi.set(__self__, "description", description)
|
@@ -149,6 +152,14 @@ class GetMaintenanceRunResult:
|
|
149
152
|
"""
|
150
153
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
151
154
|
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
157
|
+
def database_software_image_id(self) -> str:
|
158
|
+
"""
|
159
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "database_software_image_id")
|
162
|
+
|
152
163
|
@property
|
153
164
|
@pulumi.getter
|
154
165
|
def description(self) -> str:
|
@@ -370,6 +381,7 @@ class AwaitableGetMaintenanceRunResult(GetMaintenanceRunResult):
|
|
370
381
|
current_custom_action_timeout_in_mins=self.current_custom_action_timeout_in_mins,
|
371
382
|
current_patching_component=self.current_patching_component,
|
372
383
|
custom_action_timeout_in_mins=self.custom_action_timeout_in_mins,
|
384
|
+
database_software_image_id=self.database_software_image_id,
|
373
385
|
description=self.description,
|
374
386
|
display_name=self.display_name,
|
375
387
|
estimated_component_patching_start_time=self.estimated_component_patching_start_time,
|
@@ -428,6 +440,7 @@ def get_maintenance_run(maintenance_run_id: Optional[str] = None,
|
|
428
440
|
current_custom_action_timeout_in_mins=pulumi.get(__ret__, 'current_custom_action_timeout_in_mins'),
|
429
441
|
current_patching_component=pulumi.get(__ret__, 'current_patching_component'),
|
430
442
|
custom_action_timeout_in_mins=pulumi.get(__ret__, 'custom_action_timeout_in_mins'),
|
443
|
+
database_software_image_id=pulumi.get(__ret__, 'database_software_image_id'),
|
431
444
|
description=pulumi.get(__ret__, 'description'),
|
432
445
|
display_name=pulumi.get(__ret__, 'display_name'),
|
433
446
|
estimated_component_patching_start_time=pulumi.get(__ret__, 'estimated_component_patching_start_time'),
|
@@ -20,11 +20,12 @@ class MaintenanceRunArgs:
|
|
20
20
|
target_resource_id: pulumi.Input[str],
|
21
21
|
time_scheduled: pulumi.Input[str],
|
22
22
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
23
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
23
24
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
24
25
|
patching_mode: Optional[pulumi.Input[str]] = None):
|
25
26
|
"""
|
26
27
|
The set of arguments for constructing a MaintenanceRun resource.
|
27
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
28
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
28
29
|
:param pulumi.Input[str] target_resource_id: The ID of the target resource for which the maintenance run should be created.
|
29
30
|
:param pulumi.Input[str] time_scheduled: (Updatable) The date and time that update should be scheduled.
|
30
31
|
|
@@ -32,6 +33,7 @@ class MaintenanceRunArgs:
|
|
32
33
|
** IMPORTANT **
|
33
34
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
34
35
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Maintenance Run.
|
36
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
35
37
|
:param pulumi.Input[bool] is_dst_file_update_enabled: Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
|
36
38
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
37
39
|
|
@@ -42,6 +44,8 @@ class MaintenanceRunArgs:
|
|
42
44
|
pulumi.set(__self__, "time_scheduled", time_scheduled)
|
43
45
|
if compartment_id is not None:
|
44
46
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
47
|
+
if database_software_image_id is not None:
|
48
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
45
49
|
if is_dst_file_update_enabled is not None:
|
46
50
|
pulumi.set(__self__, "is_dst_file_update_enabled", is_dst_file_update_enabled)
|
47
51
|
if patching_mode is not None:
|
@@ -51,7 +55,7 @@ class MaintenanceRunArgs:
|
|
51
55
|
@pulumi.getter(name="patchType")
|
52
56
|
def patch_type(self) -> pulumi.Input[str]:
|
53
57
|
"""
|
54
|
-
Patch type, either "QUARTERLY" or "
|
58
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
55
59
|
"""
|
56
60
|
return pulumi.get(self, "patch_type")
|
57
61
|
|
@@ -99,6 +103,18 @@ class MaintenanceRunArgs:
|
|
99
103
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
100
104
|
pulumi.set(self, "compartment_id", value)
|
101
105
|
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
108
|
+
def database_software_image_id(self) -> Optional[pulumi.Input[str]]:
|
109
|
+
"""
|
110
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "database_software_image_id")
|
113
|
+
|
114
|
+
@database_software_image_id.setter
|
115
|
+
def database_software_image_id(self, value: Optional[pulumi.Input[str]]):
|
116
|
+
pulumi.set(self, "database_software_image_id", value)
|
117
|
+
|
102
118
|
@property
|
103
119
|
@pulumi.getter(name="isDstFileUpdateEnabled")
|
104
120
|
def is_dst_file_update_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -133,6 +149,7 @@ class _MaintenanceRunState:
|
|
133
149
|
current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
134
150
|
current_patching_component: Optional[pulumi.Input[str]] = None,
|
135
151
|
custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
152
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
136
153
|
description: Optional[pulumi.Input[str]] = None,
|
137
154
|
display_name: Optional[pulumi.Input[str]] = None,
|
138
155
|
estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
|
@@ -164,6 +181,7 @@ class _MaintenanceRunState:
|
|
164
181
|
:param pulumi.Input[int] current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
165
182
|
:param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
|
166
183
|
:param pulumi.Input[int] custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
184
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
167
185
|
:param pulumi.Input[str] description: Description of the maintenance run.
|
168
186
|
:param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
|
169
187
|
:param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -175,7 +193,7 @@ class _MaintenanceRunState:
|
|
175
193
|
:param pulumi.Input[str] maintenance_type: Maintenance type.
|
176
194
|
:param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
|
177
195
|
:param pulumi.Input[str] patch_id: The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier `ru_patch_19.9.0.0_201030` is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
|
178
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
196
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
179
197
|
:param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
|
180
198
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
181
199
|
|
@@ -204,6 +222,8 @@ class _MaintenanceRunState:
|
|
204
222
|
pulumi.set(__self__, "current_patching_component", current_patching_component)
|
205
223
|
if custom_action_timeout_in_mins is not None:
|
206
224
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
225
|
+
if database_software_image_id is not None:
|
226
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
207
227
|
if description is not None:
|
208
228
|
pulumi.set(__self__, "description", description)
|
209
229
|
if display_name is not None:
|
@@ -303,6 +323,18 @@ class _MaintenanceRunState:
|
|
303
323
|
def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[int]]):
|
304
324
|
pulumi.set(self, "custom_action_timeout_in_mins", value)
|
305
325
|
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
328
|
+
def database_software_image_id(self) -> Optional[pulumi.Input[str]]:
|
329
|
+
"""
|
330
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "database_software_image_id")
|
333
|
+
|
334
|
+
@database_software_image_id.setter
|
335
|
+
def database_software_image_id(self, value: Optional[pulumi.Input[str]]):
|
336
|
+
pulumi.set(self, "database_software_image_id", value)
|
337
|
+
|
306
338
|
@property
|
307
339
|
@pulumi.getter
|
308
340
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -439,7 +471,7 @@ class _MaintenanceRunState:
|
|
439
471
|
@pulumi.getter(name="patchType")
|
440
472
|
def patch_type(self) -> Optional[pulumi.Input[str]]:
|
441
473
|
"""
|
442
|
-
Patch type, either "QUARTERLY" or "
|
474
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
443
475
|
"""
|
444
476
|
return pulumi.get(self, "patch_type")
|
445
477
|
|
@@ -616,6 +648,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
616
648
|
resource_name: str,
|
617
649
|
opts: Optional[pulumi.ResourceOptions] = None,
|
618
650
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
651
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
619
652
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
620
653
|
patch_type: Optional[pulumi.Input[str]] = None,
|
621
654
|
patching_mode: Optional[pulumi.Input[str]] = None,
|
@@ -641,6 +674,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
641
674
|
target_resource_id=test_resource["id"],
|
642
675
|
time_scheduled=maintenance_run_time_scheduled,
|
643
676
|
compartment_id=compartment_id,
|
677
|
+
database_software_image_id=test_database_software_image["id"],
|
644
678
|
is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
|
645
679
|
patching_mode=maintenance_run_patching_mode)
|
646
680
|
```
|
@@ -656,8 +690,9 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
656
690
|
:param str resource_name: The name of the resource.
|
657
691
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
658
692
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Maintenance Run.
|
693
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
659
694
|
:param pulumi.Input[bool] is_dst_file_update_enabled: Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
|
660
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
695
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
661
696
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
662
697
|
|
663
698
|
*IMPORTANT*: Non-rolling infrastructure patching involves system down time. See [Oracle-Managed Infrastructure Maintenance Updates](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle) for more information.
|
@@ -693,6 +728,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
693
728
|
target_resource_id=test_resource["id"],
|
694
729
|
time_scheduled=maintenance_run_time_scheduled,
|
695
730
|
compartment_id=compartment_id,
|
731
|
+
database_software_image_id=test_database_software_image["id"],
|
696
732
|
is_dst_file_update_enabled=maintenance_run_is_dst_file_update_enabled,
|
697
733
|
patching_mode=maintenance_run_patching_mode)
|
698
734
|
```
|
@@ -721,6 +757,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
721
757
|
resource_name: str,
|
722
758
|
opts: Optional[pulumi.ResourceOptions] = None,
|
723
759
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
760
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
724
761
|
is_dst_file_update_enabled: Optional[pulumi.Input[bool]] = None,
|
725
762
|
patch_type: Optional[pulumi.Input[str]] = None,
|
726
763
|
patching_mode: Optional[pulumi.Input[str]] = None,
|
@@ -736,6 +773,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
736
773
|
__props__ = MaintenanceRunArgs.__new__(MaintenanceRunArgs)
|
737
774
|
|
738
775
|
__props__.__dict__["compartment_id"] = compartment_id
|
776
|
+
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
739
777
|
__props__.__dict__["is_dst_file_update_enabled"] = is_dst_file_update_enabled
|
740
778
|
if patch_type is None and not opts.urn:
|
741
779
|
raise TypeError("Missing required property 'patch_type'")
|
@@ -784,6 +822,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
784
822
|
current_custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
785
823
|
current_patching_component: Optional[pulumi.Input[str]] = None,
|
786
824
|
custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
825
|
+
database_software_image_id: Optional[pulumi.Input[str]] = None,
|
787
826
|
description: Optional[pulumi.Input[str]] = None,
|
788
827
|
display_name: Optional[pulumi.Input[str]] = None,
|
789
828
|
estimated_component_patching_start_time: Optional[pulumi.Input[str]] = None,
|
@@ -820,6 +859,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
820
859
|
:param pulumi.Input[int] current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
821
860
|
:param pulumi.Input[str] current_patching_component: The name of the current infrastruture component that is getting patched.
|
822
861
|
:param pulumi.Input[int] custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
862
|
+
:param pulumi.Input[str] database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
823
863
|
:param pulumi.Input[str] description: Description of the maintenance run.
|
824
864
|
:param pulumi.Input[str] display_name: The user-friendly name for the maintenance run.
|
825
865
|
:param pulumi.Input[str] estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -831,7 +871,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
831
871
|
:param pulumi.Input[str] maintenance_type: Maintenance type.
|
832
872
|
:param pulumi.Input[int] patch_failure_count: Contain the patch failure count.
|
833
873
|
:param pulumi.Input[str] patch_id: The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier `ru_patch_19.9.0.0_201030` is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
|
834
|
-
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY" or "
|
874
|
+
:param pulumi.Input[str] patch_type: Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
835
875
|
:param pulumi.Input[str] patching_end_time: The time when the patching operation ended.
|
836
876
|
:param pulumi.Input[str] patching_mode: (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
837
877
|
|
@@ -860,6 +900,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
860
900
|
__props__.__dict__["current_custom_action_timeout_in_mins"] = current_custom_action_timeout_in_mins
|
861
901
|
__props__.__dict__["current_patching_component"] = current_patching_component
|
862
902
|
__props__.__dict__["custom_action_timeout_in_mins"] = custom_action_timeout_in_mins
|
903
|
+
__props__.__dict__["database_software_image_id"] = database_software_image_id
|
863
904
|
__props__.__dict__["description"] = description
|
864
905
|
__props__.__dict__["display_name"] = display_name
|
865
906
|
__props__.__dict__["estimated_component_patching_start_time"] = estimated_component_patching_start_time
|
@@ -919,6 +960,14 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
919
960
|
"""
|
920
961
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
921
962
|
|
963
|
+
@property
|
964
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
965
|
+
def database_software_image_id(self) -> pulumi.Output[str]:
|
966
|
+
"""
|
967
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
968
|
+
"""
|
969
|
+
return pulumi.get(self, "database_software_image_id")
|
970
|
+
|
922
971
|
@property
|
923
972
|
@pulumi.getter
|
924
973
|
def description(self) -> pulumi.Output[str]:
|
@@ -1011,7 +1060,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
1011
1060
|
@pulumi.getter(name="patchType")
|
1012
1061
|
def patch_type(self) -> pulumi.Output[str]:
|
1013
1062
|
"""
|
1014
|
-
Patch type, either "QUARTERLY" or "
|
1063
|
+
Patch type, either "QUARTERLY", "TIMEZONE" or "CUSTOM_DATABASE_SOFTWARE_IMAGE".
|
1015
1064
|
"""
|
1016
1065
|
return pulumi.get(self, "patch_type")
|
1017
1066
|
|