oci-cli 3.71.4__py3-none-any.whl → 3.72.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.
- alloy/__init__.py +3 -0
- alloy/alloy_constants.py +1 -1
- alloy/alloy_util.py +1 -1
- alloy/error_messages.py +1 -1
- common_util/__init__.py +2 -1
- common_util/doc_generation_util.py +4 -0
- common_util/ignored_commands.py +3 -1
- interactive/__init__.py +3 -0
- interactive/bottom_toolbar.py +1 -1
- interactive/cli_interactive.py +1 -1
- interactive/commands_history.py +1 -1
- interactive/error_messages.py +1 -1
- interactive/key_bindings.py +4 -0
- interactive/oci_resources_completions.py +1 -1
- interactive/oci_shell_completer.py +1 -1
- interactive/prompt_session.py +1 -1
- interactive/supported_resource_types.py +4 -0
- interactive/utils.py +1 -1
- oci_cli/__init__.py +1 -1
- oci_cli/aliasing/__init__.py +1 -1
- oci_cli/aliasing/command_group_with_alias.py +1 -1
- oci_cli/aliasing/parameter_alias.py +1 -1
- oci_cli/bin/OciTabExpansion.ps1 +1 -1
- oci_cli/bin/devops.psm1 +8 -18
- oci_cli/bin/mysql.psm1 +4 -4
- oci_cli/bin/oci_autocomplete.sh +1 -1
- oci_cli/cli.py +1 -1
- oci_cli/cli_clients.py +1 -1
- oci_cli/cli_constants.py +1 -1
- oci_cli/cli_exceptions.py +1 -1
- oci_cli/cli_metrics.py +1 -1
- oci_cli/cli_root.py +1 -1
- oci_cli/cli_session.py +1 -1
- oci_cli/cli_setup.py +1 -1
- oci_cli/cli_setup_bootstrap.py +1 -1
- oci_cli/cli_util.py +1 -1
- oci_cli/custom_types/__init__.py +1 -1
- oci_cli/custom_types/cli_case_insensitive_choice.py +1 -1
- oci_cli/custom_types/cli_complex_type.py +1 -1
- oci_cli/custom_types/cli_datetime.py +1 -1
- oci_cli/custom_types/cli_from_json.py +1 -1
- oci_cli/custom_types/object_storage_bulk_operation_output.py +1 -1
- oci_cli/dynamic_loader.py +1 -1
- oci_cli/file_filters/__init__.py +1 -1
- oci_cli/file_filters/file_filter_collection.py +1 -1
- oci_cli/file_filters/file_path_filter.py +1 -1
- oci_cli/final_command_processor.py +1 -1
- oci_cli/formatting.py +1 -1
- oci_cli/help_text_producer/__init__.py +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-context/create-oci-logging-configuration.txt +26 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-context/list.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-context-shape-collection/list.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-job/list.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-job-pool/list.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-task/list-batch-tasks.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-task/list.txt +32 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-task-environment/list.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/batch/batch-task-profile/list.txt +16 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule → budget/alert-rule}/create.txt +9 -9
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule → budget/alert-rule}/delete.txt +10 -10
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule → budget/alert-rule}/get.txt +10 -10
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule → budget/alert-rule}/list.txt +6 -6
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule → budget/alert-rule}/update.txt +10 -10
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/{create.txt → budget/create.txt} +25 -12
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/{delete.txt → budget/delete.txt} +6 -6
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/{get.txt → budget/get.txt} +6 -6
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/{list.txt → budget/list.txt} +3 -3
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/{update.txt → budget/update.txt} +26 -13
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget/budget.txt +22 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/budget.txt +21 -6
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription/create.txt +170 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription/delete.txt +130 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription/get.txt +92 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription/update.txt +175 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription-collection/list-subs.txt +141 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription-collection.txt +15 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-alert-subscription.txt +20 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event/anomaly-events-stats.txt +317 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event/get.txt +92 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event/update.txt +171 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event-collection/list-events.txt +326 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event-collection.txt +15 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-event.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor/create.txt +192 -0
- oci_cli/help_text_producer/data_files/text/cmdref/{devops/pull-request/reopen-pull-request-comment.txt → budgets/cost-ad/cost-anomaly-monitor/delete.txt} +41 -23
- oci_cli/help_text_producer/data_files/text/cmdref/{devops/pull-request/resolve-pull-request-comment.txt → budgets/cost-ad/cost-anomaly-monitor/disable.txt} +38 -23
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor/enable.txt +135 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor/get.txt +100 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor/update.txt +190 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor-collection/list-monitors.txt +149 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor-collection.txt +15 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad/cost-anomaly-monitor.txt +24 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets/cost-ad.txt +57 -0
- oci_cli/help_text_producer/data_files/text/cmdref/budgets.txt +60 -12
- oci_cli/help_text_producer/data_files/text/cmdref/compute/dedicated-vm-host/create-dedicated-vm-host-compute-bare-metal-host-placement-constraint-details.txt +0 -12
- oci_cli/help_text_producer/data_files/text/cmdref/compute/dedicated-vm-host/create-dedicated-vm-host-host-group-placement-constraint-details.txt +0 -12
- oci_cli/help_text_producer/data_files/text/cmdref/compute/dedicated-vm-host/create.txt +0 -12
- oci_cli/help_text_producer/data_files/text/cmdref/compute/dedicated-vm-host/list.txt +0 -5
- oci_cli/help_text_producer/data_files/text/cmdref/compute/dedicated-vm-host-instance/list.txt +0 -5
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-adb-cross-region-data-guard-details.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-autonomous-database-create-cross-region-disaster-recovery-details.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-autonomous-database-gcp-key-details.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-autonomous-database-undelete-autonomous-database-details.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-cross-tenancy-disaster-recovery-details.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-from-backup-id.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-from-backup-timestamp.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-from-clone.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create-refreshable-clone.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/create.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/update-autonomous-database-gcp-key-details.txt +108 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/autonomous-database/update.txt +108 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/database/create-database-create-database-from-database.txt +174 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/database/create.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/db/database.txt +2 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/db-home/create-db-home-create-db-home-with-vm-cluster-id-from-database-details.txt +200 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db/db-home/create.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/db/db-home.txt +3 -0
- oci_cli/help_text_producer/data_files/text/cmdref/db.txt +5 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/create-compute-instance-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/create-function-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/create-oke-cluster-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/update-compute-instance-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/update-function-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/update-oke-cluster-environment.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-environment/update.txt +18 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/deploy-stage/create-oke-helm-chart-stage.txt +1 -0
- oci_cli/help_text_producer/data_files/text/cmdref/devops/pull-request.txt +0 -10
- oci_cli/help_text_producer/data_files/text/cmdref/devops/repository/list-refs.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/devops/repository-path-summary/list-paths.txt +2 -2
- oci_cli/help_text_producer/data_files/text/cmdref/devops.txt +0 -10
- oci_cli/help_text_producer/data_files/text/cmdref/fleet-apps-management/fleet-apps-management-admin/platform-configuration/create-platform-configuration-product-config-category-details.txt +38 -25
- oci_cli/help_text_producer/data_files/text/cmdref/fleet-apps-management/fleet-apps-management-admin/platform-configuration/update-platform-configuration-product-config-category-details.txt +38 -22
- oci_cli/help_text_producer/data_files/text/cmdref/governance-rules-control-plane/work-request/{work-request-log/list.txt → work-request-log-entry/list-work-request-logs.txt} +5 -5
- oci_cli/help_text_producer/data_files/text/cmdref/governance-rules-control-plane/work-request/{work-request-log.txt → work-request-log-entry.txt} +3 -3
- oci_cli/help_text_producer/data_files/text/cmdref/governance-rules-control-plane/work-request.txt +2 -2
- oci_cli/help_text_producer/data_files/text/cmdref/governance-rules-control-plane.txt +2 -2
- oci_cli/help_text_producer/data_files/text/cmdref/mysql/db-system/clone.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/mysql/db-system/create.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/mysql/db-system/import.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/mysql/db-system/update.txt +11 -0
- oci_cli/help_text_producer/data_files/text/cmdref/network/vcn/create.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/network/vcn/update.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/ocvs/work-request-error/{list-errors.txt → list.txt} +5 -5
- oci_cli/help_text_producer/data_files/text/cmdref/ocvs/work-request-error.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/ocvs.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/organizations/work-request-error/{list-errors.txt → list.txt} +5 -5
- oci_cli/help_text_producer/data_files/text/cmdref/organizations/work-request-error.txt +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/organizations/{work-request-log → work-request-log-entry}/list.txt +1 -19
- oci_cli/help_text_producer/data_files/text/cmdref/organizations/{work-request-log.txt → work-request-log-entry.txt} +2 -2
- oci_cli/help_text_producer/data_files/text/cmdref/organizations.txt +2 -2
- oci_cli/help_text_producer/help_text_producer.py +1 -1
- oci_cli/json_skeleton_utils.py +1 -1
- oci_cli/oci_template.py +1 -1
- oci_cli/raw_request_cli.py +1 -1
- oci_cli/scripts/__init__.py +1 -1
- oci_cli/scripts/database/__init__.py +1 -1
- oci_cli/scripts/database/dbaas.py +1 -1
- oci_cli/string_utils.py +1 -1
- oci_cli/util/__init__.py +1 -1
- oci_cli/util/pymd5.py +1 -1
- oci_cli/version.py +2 -2
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/LICENSE.txt +3 -3
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/METADATA +2 -2
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/RECORD +1942 -1916
- services/__init__.py +1 -1
- services/access_governance_cp/__init__.py +1 -1
- services/access_governance_cp/src/__init__.py +1 -1
- services/access_governance_cp/src/oci_cli_access_governance_cp/__init__.py +1 -1
- services/access_governance_cp/src/oci_cli_access_governance_cp/generated/__init__.py +1 -1
- services/access_governance_cp/src/oci_cli_access_governance_cp/generated/accessgovernancecp_cli.py +1 -1
- services/access_governance_cp/src/oci_cli_access_governance_cp/generated/client_mappings.py +1 -1
- services/access_governance_cp/tests/__init__.py +1 -1
- services/adm/__init__.py +1 -1
- services/adm/src/__init__.py +1 -1
- services/adm/src/oci_cli_application_dependency_management/__init__.py +1 -1
- services/adm/src/oci_cli_application_dependency_management/generated/__init__.py +1 -1
- services/adm/src/oci_cli_application_dependency_management/generated/applicationdependencymanagement_cli.py +1 -1
- services/adm/src/oci_cli_application_dependency_management/generated/client_mappings.py +1 -1
- services/adm/tests/__init__.py +1 -1
- services/ai_data_platform/__init__.py +1 -1
- services/ai_data_platform/src/__init__.py +1 -1
- services/ai_data_platform/src/oci_cli_ai_data_platform/__init__.py +1 -1
- services/ai_data_platform/src/oci_cli_ai_data_platform/generated/__init__.py +1 -1
- services/ai_data_platform/src/oci_cli_ai_data_platform/generated/ai_data_platform_service_cli.py +1 -1
- services/ai_data_platform/src/oci_cli_ai_data_platform/generated/aidataplatform_cli.py +1 -1
- services/ai_data_platform/src/oci_cli_ai_data_platform/generated/client_mappings.py +1 -1
- services/ai_data_platform/tests/__init__.py +1 -1
- services/ai_document/__init__.py +1 -1
- services/ai_document/src/__init__.py +1 -1
- services/ai_document/src/oci_cli_ai_service_document/__init__.py +1 -1
- services/ai_document/src/oci_cli_ai_service_document/generated/__init__.py +1 -1
- services/ai_document/src/oci_cli_ai_service_document/generated/aiservicedocument_cli.py +1 -1
- services/ai_document/src/oci_cli_ai_service_document/generated/client_mappings.py +1 -1
- services/ai_document/tests/__init__.py +1 -1
- services/ai_language/__init__.py +1 -1
- services/ai_language/src/__init__.py +1 -1
- services/ai_language/src/oci_cli_ai_service_language/__init__.py +1 -1
- services/ai_language/src/oci_cli_ai_service_language/generated/__init__.py +1 -1
- services/ai_language/src/oci_cli_ai_service_language/generated/aiservicelanguage_cli.py +1 -1
- services/ai_language/src/oci_cli_ai_service_language/generated/client_mappings.py +1 -1
- services/ai_language/tests/__init__.py +1 -1
- services/ai_speech/__init__.py +1 -1
- services/ai_speech/src/__init__.py +1 -1
- services/ai_speech/src/oci_cli_ai_service_speech/__init__.py +1 -1
- services/ai_speech/src/oci_cli_ai_service_speech/generated/__init__.py +1 -1
- services/ai_speech/src/oci_cli_ai_service_speech/generated/aiservicespeech_cli.py +1 -1
- services/ai_speech/src/oci_cli_ai_service_speech/generated/client_mappings.py +1 -1
- services/ai_speech/tests/__init__.py +1 -1
- services/ai_vision/__init__.py +1 -1
- services/ai_vision/src/__init__.py +1 -1
- services/ai_vision/src/oci_cli_ai_service_vision/__init__.py +1 -1
- services/ai_vision/src/oci_cli_ai_service_vision/generated/__init__.py +1 -1
- services/ai_vision/src/oci_cli_ai_service_vision/generated/aiservicevision_cli.py +1 -1
- services/ai_vision/src/oci_cli_ai_service_vision/generated/client_mappings.py +1 -1
- services/ai_vision/tests/__init__.py +1 -1
- services/analytics/__init__.py +1 -1
- services/analytics/src/__init__.py +1 -1
- services/analytics/src/oci_cli_analytics/__init__.py +1 -1
- services/analytics/src/oci_cli_analytics/generated/__init__.py +1 -1
- services/analytics/src/oci_cli_analytics/generated/analytics_cli.py +1 -1
- services/analytics/src/oci_cli_analytics/generated/client_mappings.py +1 -1
- services/analytics/tests/__init__.py +1 -1
- services/announcements_service/__init__.py +1 -1
- services/announcements_service/src/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcement/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcement/generated/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcement/generated/announcement_cli.py +1 -1
- services/announcements_service/src/oci_cli_announcement/generated/client_mappings.py +1 -1
- services/announcements_service/src/oci_cli_announcement_subscription/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcement_subscription/generated/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcement_subscription/generated/announcementsubscription_cli.py +1 -1
- services/announcements_service/src/oci_cli_announcement_subscription/generated/client_mappings.py +1 -1
- services/announcements_service/src/oci_cli_announcements_preferences/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcements_preferences/generated/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcements_preferences/generated/announcementspreferences_cli.py +1 -1
- services/announcements_service/src/oci_cli_announcements_preferences/generated/client_mappings.py +1 -1
- services/announcements_service/src/oci_cli_announcements_service/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcements_service/generated/__init__.py +1 -1
- services/announcements_service/src/oci_cli_announcements_service/generated/announce_service_cli.py +1 -1
- services/announcements_service/src/oci_cli_service/__init__.py +1 -1
- services/announcements_service/src/oci_cli_service/generated/__init__.py +1 -1
- services/announcements_service/src/oci_cli_service/generated/client_mappings.py +1 -1
- services/announcements_service/src/oci_cli_service/generated/service_cli.py +1 -1
- services/announcements_service/tests/__init__.py +1 -1
- services/api_platform/__init__.py +1 -1
- services/api_platform/src/__init__.py +1 -1
- services/api_platform/src/oci_cli_api_platform/__init__.py +1 -1
- services/api_platform/src/oci_cli_api_platform/generated/__init__.py +1 -1
- services/api_platform/src/oci_cli_api_platform/generated/apiplatform_cli.py +1 -1
- services/api_platform/src/oci_cli_api_platform/generated/client_mappings.py +1 -1
- services/api_platform/tests/__init__.py +1 -1
- services/apiaccesscontrol/__init__.py +1 -1
- services/apiaccesscontrol/src/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_api_metadata/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_api_metadata/generated/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_api_metadata/generated/apimetadata_cli.py +1 -1
- services/apiaccesscontrol/src/oci_cli_api_metadata/generated/client_mappings.py +1 -1
- services/apiaccesscontrol/src/oci_cli_apiaccesscontrol/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_apiaccesscontrol/generated/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_apiaccesscontrol/generated/apiaccesscontrol_service_cli.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_control/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_control/generated/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_control/generated/client_mappings.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_control/generated/privilegedapicontrol_cli.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_requests/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_requests/generated/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_requests/generated/client_mappings.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_requests/generated/privilegedapirequests_cli.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_work_request/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_work_request/generated/__init__.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_work_request/generated/client_mappings.py +1 -1
- services/apiaccesscontrol/src/oci_cli_privileged_api_work_request/generated/privilegedapiworkrequest_cli.py +1 -1
- services/apiaccesscontrol/tests/__init__.py +1 -1
- services/apigateway/__init__.py +1 -1
- services/apigateway/src/__init__.py +1 -1
- services/apigateway/src/oci_cli_api_gateway/__init__.py +1 -1
- services/apigateway/src/oci_cli_api_gateway/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_api_gateway/generated/apigateway_cli.py +1 -1
- services/apigateway/src/oci_cli_api_gateway/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_apigateway/__init__.py +1 -1
- services/apigateway/src/oci_cli_apigateway/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_apigateway/generated/api_gateway_service_cli.py +1 -1
- services/apigateway/src/oci_cli_deployment/__init__.py +1 -1
- services/apigateway/src/oci_cli_deployment/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_deployment/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_deployment/generated/deployment_cli.py +1 -1
- services/apigateway/src/oci_cli_gateway/__init__.py +1 -1
- services/apigateway/src/oci_cli_gateway/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_gateway/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_gateway/generated/gateway_cli.py +1 -1
- services/apigateway/src/oci_cli_subscribers/__init__.py +1 -1
- services/apigateway/src/oci_cli_subscribers/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_subscribers/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_subscribers/generated/subscribers_cli.py +1 -1
- services/apigateway/src/oci_cli_usage_plans/__init__.py +1 -1
- services/apigateway/src/oci_cli_usage_plans/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_usage_plans/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_usage_plans/generated/usageplans_cli.py +1 -1
- services/apigateway/src/oci_cli_work_requests/__init__.py +1 -1
- services/apigateway/src/oci_cli_work_requests/generated/__init__.py +1 -1
- services/apigateway/src/oci_cli_work_requests/generated/client_mappings.py +1 -1
- services/apigateway/src/oci_cli_work_requests/generated/workrequests_cli.py +1 -1
- services/apigateway/tests/__init__.py +1 -1
- services/apm_config/__init__.py +1 -1
- services/apm_config/src/__init__.py +1 -1
- services/apm_config/src/oci_cli_config/__init__.py +1 -1
- services/apm_config/src/oci_cli_config/generated/__init__.py +1 -1
- services/apm_config/src/oci_cli_config/generated/client_mappings.py +1 -1
- services/apm_config/src/oci_cli_config/generated/config_cli.py +1 -1
- services/apm_config/tests/__init__.py +1 -1
- services/apm_control_plane/__init__.py +1 -1
- services/apm_control_plane/src/__init__.py +1 -1
- services/apm_control_plane/src/oci_cli_apm_domain/__init__.py +1 -1
- services/apm_control_plane/src/oci_cli_apm_domain/generated/__init__.py +1 -1
- services/apm_control_plane/src/oci_cli_apm_domain/generated/apmdomain_cli.py +1 -1
- services/apm_control_plane/src/oci_cli_apm_domain/generated/client_mappings.py +1 -1
- services/apm_control_plane/tests/__init__.py +1 -1
- services/apm_synthetics/__init__.py +1 -1
- services/apm_synthetics/src/__init__.py +1 -1
- services/apm_synthetics/src/oci_cli_apm_synthetic/__init__.py +1 -1
- services/apm_synthetics/src/oci_cli_apm_synthetic/generated/__init__.py +1 -1
- services/apm_synthetics/src/oci_cli_apm_synthetic/generated/apmsynthetic_cli.py +1 -1
- services/apm_synthetics/src/oci_cli_apm_synthetic/generated/client_mappings.py +1 -1
- services/apm_synthetics/tests/__init__.py +1 -1
- services/apm_traces/__init__.py +1 -1
- services/apm_traces/src/__init__.py +1 -1
- services/apm_traces/src/oci_cli_apm_traces/__init__.py +1 -1
- services/apm_traces/src/oci_cli_apm_traces/generated/__init__.py +1 -1
- services/apm_traces/src/oci_cli_apm_traces/generated/apm_traces_service_cli.py +1 -1
- services/apm_traces/src/oci_cli_attributes/__init__.py +1 -1
- services/apm_traces/src/oci_cli_attributes/generated/__init__.py +1 -1
- services/apm_traces/src/oci_cli_attributes/generated/attributes_cli.py +1 -1
- services/apm_traces/src/oci_cli_attributes/generated/client_mappings.py +1 -1
- services/apm_traces/src/oci_cli_query/__init__.py +1 -1
- services/apm_traces/src/oci_cli_query/generated/__init__.py +1 -1
- services/apm_traces/src/oci_cli_query/generated/client_mappings.py +1 -1
- services/apm_traces/src/oci_cli_query/generated/query_cli.py +1 -1
- services/apm_traces/src/oci_cli_scheduled_query/__init__.py +1 -1
- services/apm_traces/src/oci_cli_scheduled_query/generated/__init__.py +1 -1
- services/apm_traces/src/oci_cli_scheduled_query/generated/client_mappings.py +1 -1
- services/apm_traces/src/oci_cli_scheduled_query/generated/scheduledquery_cli.py +1 -1
- services/apm_traces/src/oci_cli_trace/__init__.py +1 -1
- services/apm_traces/src/oci_cli_trace/generated/__init__.py +1 -1
- services/apm_traces/src/oci_cli_trace/generated/client_mappings.py +1 -1
- services/apm_traces/src/oci_cli_trace/generated/trace_cli.py +1 -1
- services/apm_traces/tests/__init__.py +1 -1
- services/appmgmt_control/__init__.py +1 -1
- services/appmgmt_control/src/__init__.py +1 -1
- services/appmgmt_control/src/oci_cli_appmgmt_control/__init__.py +1 -1
- services/appmgmt_control/src/oci_cli_appmgmt_control/generated/__init__.py +1 -1
- services/appmgmt_control/src/oci_cli_appmgmt_control/generated/appmgmtcontrol_cli.py +1 -1
- services/appmgmt_control/src/oci_cli_appmgmt_control/generated/client_mappings.py +1 -1
- services/appmgmt_control/tests/__init__.py +1 -1
- services/artifacts/__init__.py +1 -1
- services/artifacts/src/__init__.py +1 -1
- services/artifacts/src/oci_cli_artifacts/__init__.py +1 -1
- services/artifacts/src/oci_cli_artifacts/generated/__init__.py +1 -1
- services/artifacts/src/oci_cli_artifacts/generated/artifacts_cli.py +1 -1
- services/artifacts/src/oci_cli_artifacts/generated/client_mappings.py +1 -1
- services/artifacts/tests/__init__.py +1 -1
- services/audit/__init__.py +1 -1
- services/audit/src/__init__.py +1 -1
- services/audit/src/oci_cli_audit/__init__.py +1 -1
- services/audit/src/oci_cli_audit/generated/__init__.py +1 -1
- services/audit/src/oci_cli_audit/generated/audit_cli.py +1 -1
- services/audit/src/oci_cli_audit/generated/client_mappings.py +1 -1
- services/audit/tests/__init__.py +1 -1
- services/autoscaling/__init__.py +1 -1
- services/autoscaling/src/__init__.py +1 -1
- services/autoscaling/src/oci_cli_auto_scaling/__init__.py +1 -1
- services/autoscaling/src/oci_cli_auto_scaling/generated/__init__.py +1 -1
- services/autoscaling/src/oci_cli_auto_scaling/generated/autoscaling_cli.py +1 -1
- services/autoscaling/src/oci_cli_auto_scaling/generated/client_mappings.py +1 -1
- services/autoscaling/tests/__init__.py +1 -1
- services/bastion/__init__.py +1 -1
- services/bastion/src/__init__.py +1 -1
- services/bastion/src/oci_cli_bastion/__init__.py +1 -1
- services/bastion/src/oci_cli_bastion/generated/__init__.py +1 -1
- services/bastion/src/oci_cli_bastion/generated/bastion_cli.py +1 -1
- services/bastion/src/oci_cli_bastion/generated/client_mappings.py +1 -1
- services/bastion/tests/__init__.py +1 -1
- services/batch/__init__.py +1 -1
- services/batch/src/__init__.py +1 -1
- services/batch/src/oci_cli_batch_computing/__init__.py +1 -1
- services/batch/src/oci_cli_batch_computing/generated/__init__.py +1 -1
- services/batch/src/oci_cli_batch_computing/generated/batchcomputing_cli.py +1 -1
- services/batch/src/oci_cli_batch_computing/generated/client_mappings.py +1 -1
- services/batch/tests/__init__.py +1 -1
- services/bds/__init__.py +1 -1
- services/bds/src/__init__.py +1 -1
- services/bds/src/oci_cli_bds/__init__.py +1 -1
- services/bds/src/oci_cli_bds/generated/__init__.py +1 -1
- services/bds/src/oci_cli_bds/generated/bds_cli.py +1 -1
- services/bds/src/oci_cli_bds/generated/client_mappings.py +1 -1
- services/bds/tests/__init__.py +1 -1
- services/blockchain/__init__.py +1 -1
- services/blockchain/src/__init__.py +1 -1
- services/blockchain/src/oci_cli_blockchain_platform/__init__.py +1 -1
- services/blockchain/src/oci_cli_blockchain_platform/generated/__init__.py +1 -1
- services/blockchain/src/oci_cli_blockchain_platform/generated/blockchainplatform_cli.py +1 -1
- services/blockchain/src/oci_cli_blockchain_platform/generated/client_mappings.py +1 -1
- services/blockchain/tests/__init__.py +1 -1
- services/budget/__init__.py +1 -1
- services/budget/src/__init__.py +1 -1
- services/budget/src/oci_cli_budget/__init__.py +1 -1
- services/budget/src/oci_cli_budget/generated/__init__.py +1 -1
- services/budget/src/oci_cli_budget/generated/budget_cli.py +39 -30
- services/budget/src/oci_cli_budget/generated/budgets_service_cli.py +14 -0
- services/budget/src/oci_cli_budget/generated/client_mappings.py +1 -1
- services/budget/src/oci_cli_cost_ad/__init__.py +4 -0
- services/budget/src/oci_cli_cost_ad/generated/__init__.py +4 -0
- services/budget/src/oci_cli_cost_ad/generated/client_mappings.py +14 -0
- services/budget/src/oci_cli_cost_ad/generated/costad_cli.py +1000 -0
- services/budget/tests/__init__.py +1 -1
- services/capacity_management/__init__.py +1 -1
- services/capacity_management/src/__init__.py +1 -1
- services/capacity_management/src/oci_cli_capacity_management/__init__.py +1 -1
- services/capacity_management/src/oci_cli_capacity_management/generated/__init__.py +1 -1
- services/capacity_management/src/oci_cli_capacity_management/generated/capacity_management_service_cli.py +1 -1
- services/capacity_management/src/oci_cli_capacity_management/generated/capacitymanagement_cli.py +1 -1
- services/capacity_management/src/oci_cli_capacity_management/generated/client_mappings.py +1 -1
- services/capacity_management/src/oci_cli_demand_signal/__init__.py +1 -1
- services/capacity_management/src/oci_cli_demand_signal/generated/__init__.py +1 -1
- services/capacity_management/src/oci_cli_demand_signal/generated/client_mappings.py +1 -1
- services/capacity_management/src/oci_cli_demand_signal/generated/demandsignal_cli.py +1 -1
- services/capacity_management/src/oci_cli_internal_demand_signal/__init__.py +1 -1
- services/capacity_management/src/oci_cli_internal_demand_signal/generated/__init__.py +1 -1
- services/capacity_management/src/oci_cli_internal_demand_signal/generated/client_mappings.py +1 -1
- services/capacity_management/src/oci_cli_internal_demand_signal/generated/internaldemandsignal_cli.py +1 -1
- services/capacity_management/tests/__init__.py +1 -1
- services/certificates/__init__.py +1 -1
- services/certificates/src/__init__.py +1 -1
- services/certificates/src/oci_cli_certificates/__init__.py +1 -1
- services/certificates/src/oci_cli_certificates/generated/__init__.py +1 -1
- services/certificates/src/oci_cli_certificates/generated/certificates_cli.py +1 -1
- services/certificates/src/oci_cli_certificates/generated/client_mappings.py +1 -1
- services/certificates/tests/__init__.py +1 -1
- services/certificates_management/__init__.py +1 -1
- services/certificates_management/src/__init__.py +1 -1
- services/certificates_management/src/oci_cli_certificates_management/__init__.py +1 -1
- services/certificates_management/src/oci_cli_certificates_management/generated/__init__.py +1 -1
- services/certificates_management/src/oci_cli_certificates_management/generated/certificatesmanagement_cli.py +1 -1
- services/certificates_management/src/oci_cli_certificates_management/generated/client_mappings.py +1 -1
- services/certificates_management/tests/__init__.py +1 -1
- services/cims/__init__.py +1 -1
- services/cims/src/__init__.py +1 -1
- services/cims/src/oci_cli_incident/__init__.py +1 -1
- services/cims/src/oci_cli_incident/generated/__init__.py +1 -1
- services/cims/src/oci_cli_incident/generated/client_mappings.py +1 -1
- services/cims/src/oci_cli_incident/generated/incident_cli.py +1 -1
- services/cims/tests/__init__.py +1 -1
- services/cloud_bridge/__init__.py +1 -1
- services/cloud_bridge/src/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_cloud_bridge/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_cloud_bridge/generated/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_cloud_bridge/generated/cloud_bridge_service_cli.py +1 -1
- services/cloud_bridge/src/oci_cli_common/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_common/generated/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_common/generated/client_mappings.py +1 -1
- services/cloud_bridge/src/oci_cli_common/generated/common_cli.py +1 -1
- services/cloud_bridge/src/oci_cli_discovery/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_discovery/generated/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_discovery/generated/client_mappings.py +1 -1
- services/cloud_bridge/src/oci_cli_discovery/generated/discovery_cli.py +1 -1
- services/cloud_bridge/src/oci_cli_inventory/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_inventory/generated/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_inventory/generated/client_mappings.py +1 -1
- services/cloud_bridge/src/oci_cli_inventory/generated/inventory_cli.py +1 -1
- services/cloud_bridge/src/oci_cli_ocb_agent_svc/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_ocb_agent_svc/generated/__init__.py +1 -1
- services/cloud_bridge/src/oci_cli_ocb_agent_svc/generated/client_mappings.py +1 -1
- services/cloud_bridge/src/oci_cli_ocb_agent_svc/generated/ocbagentsvc_cli.py +1 -1
- services/cloud_bridge/tests/__init__.py +1 -1
- services/cloud_guard/__init__.py +1 -1
- services/cloud_guard/src/__init__.py +1 -1
- services/cloud_guard/src/oci_cli_cloud_guard/__init__.py +1 -1
- services/cloud_guard/src/oci_cli_cloud_guard/generated/__init__.py +1 -1
- services/cloud_guard/src/oci_cli_cloud_guard/generated/client_mappings.py +1 -1
- services/cloud_guard/src/oci_cli_cloud_guard/generated/cloudguard_cli.py +1 -1
- services/cloud_guard/tests/__init__.py +1 -1
- services/cloud_migrations/__init__.py +1 -1
- services/cloud_migrations/src/__init__.py +1 -1
- services/cloud_migrations/src/oci_cli_migration/__init__.py +1 -1
- services/cloud_migrations/src/oci_cli_migration/generated/__init__.py +1 -1
- services/cloud_migrations/src/oci_cli_migration/generated/client_mappings.py +1 -1
- services/cloud_migrations/src/oci_cli_migration/generated/migration_cli.py +1 -1
- services/cloud_migrations/tests/__init__.py +1 -1
- services/cluster_placement_groups/__init__.py +1 -1
- services/cluster_placement_groups/src/__init__.py +1 -1
- services/cluster_placement_groups/src/oci_cli_cluster_placement_groups_cp/__init__.py +1 -1
- services/cluster_placement_groups/src/oci_cli_cluster_placement_groups_cp/generated/__init__.py +1 -1
- services/cluster_placement_groups/src/oci_cli_cluster_placement_groups_cp/generated/client_mappings.py +1 -1
- services/cluster_placement_groups/src/oci_cli_cluster_placement_groups_cp/generated/clusterplacementgroupscp_cli.py +1 -1
- services/cluster_placement_groups/tests/__init__.py +1 -1
- services/compute_cloud_at_customer/__init__.py +1 -1
- services/compute_cloud_at_customer/src/__init__.py +1 -1
- services/compute_cloud_at_customer/src/oci_cli_compute_cloud_at_customer/__init__.py +1 -1
- services/compute_cloud_at_customer/src/oci_cli_compute_cloud_at_customer/generated/__init__.py +1 -1
- services/compute_cloud_at_customer/src/oci_cli_compute_cloud_at_customer/generated/client_mappings.py +1 -1
- services/compute_cloud_at_customer/src/oci_cli_compute_cloud_at_customer/generated/computecloudatcustomer_cli.py +1 -1
- services/compute_cloud_at_customer/tests/__init__.py +1 -1
- services/compute_instance_agent/__init__.py +1 -1
- services/compute_instance_agent/src/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_compute_instance_agent/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/client_mappings.py +1 -1
- services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/computeinstanceagent_cli.py +1 -1
- services/compute_instance_agent/src/oci_cli_compute_instance_agent/generated/instance_agent_service_cli.py +1 -1
- services/compute_instance_agent/src/oci_cli_plugin/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_plugin/generated/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_plugin/generated/client_mappings.py +1 -1
- services/compute_instance_agent/src/oci_cli_plugin/generated/plugin_cli.py +1 -1
- services/compute_instance_agent/src/oci_cli_pluginconfig/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_pluginconfig/generated/__init__.py +1 -1
- services/compute_instance_agent/src/oci_cli_pluginconfig/generated/client_mappings.py +1 -1
- services/compute_instance_agent/src/oci_cli_pluginconfig/generated/pluginconfig_cli.py +1 -1
- services/compute_instance_agent/tests/__init__.py +1 -1
- services/container_engine/__init__.py +1 -1
- services/container_engine/src/__init__.py +1 -1
- services/container_engine/src/oci_cli_container_engine/__init__.py +1 -1
- services/container_engine/src/oci_cli_container_engine/generated/__init__.py +1 -1
- services/container_engine/src/oci_cli_container_engine/generated/client_mappings.py +1 -1
- services/container_engine/src/oci_cli_container_engine/generated/containerengine_cli.py +1 -1
- services/container_engine/tests/__init__.py +1 -1
- services/container_instances/__init__.py +1 -1
- services/container_instances/src/__init__.py +1 -1
- services/container_instances/src/oci_cli_container_instance/__init__.py +1 -1
- services/container_instances/src/oci_cli_container_instance/generated/__init__.py +1 -1
- services/container_instances/src/oci_cli_container_instance/generated/client_mappings.py +1 -1
- services/container_instances/src/oci_cli_container_instance/generated/containerinstance_cli.py +1 -1
- services/container_instances/tests/__init__.py +1 -1
- services/core/__init__.py +1 -1
- services/core/src/__init__.py +1 -1
- services/core/src/oci_cli_blockstorage/__init__.py +1 -1
- services/core/src/oci_cli_blockstorage/generated/__init__.py +1 -1
- services/core/src/oci_cli_blockstorage/generated/blockstorage_cli.py +1 -1
- services/core/src/oci_cli_blockstorage/generated/client_mappings.py +1 -1
- services/core/src/oci_cli_compute/__init__.py +1 -1
- services/core/src/oci_cli_compute/generated/__init__.py +1 -1
- services/core/src/oci_cli_compute/generated/client_mappings.py +1 -1
- services/core/src/oci_cli_compute/generated/compute_cli.py +6 -36
- services/core/src/oci_cli_compute_management/__init__.py +1 -1
- services/core/src/oci_cli_compute_management/generated/__init__.py +1 -1
- services/core/src/oci_cli_compute_management/generated/client_mappings.py +1 -1
- services/core/src/oci_cli_compute_management/generated/computemanagement_cli.py +1 -1
- services/core/src/oci_cli_core/__init__.py +1 -1
- services/core/src/oci_cli_core/generated/__init__.py +1 -1
- services/core/src/oci_cli_core/generated/core_service_cli.py +1 -1
- services/core/src/oci_cli_virtual_network/__init__.py +1 -1
- services/core/src/oci_cli_virtual_network/generated/__init__.py +1 -1
- services/core/src/oci_cli_virtual_network/generated/client_mappings.py +1 -1
- services/core/src/oci_cli_virtual_network/generated/virtualnetwork_cli.py +3 -3
- services/core/tests/__init__.py +1 -1
- services/dashboard_service/__init__.py +1 -1
- services/dashboard_service/src/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard/generated/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard/generated/client_mappings.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard/generated/dashboard_cli.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_group/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_group/generated/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_group/generated/client_mappings.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_group/generated/dashboardgroup_cli.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_service/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_service/generated/__init__.py +1 -1
- services/dashboard_service/src/oci_cli_dashboard_service/generated/dashboard_service_service_cli.py +1 -1
- services/dashboard_service/tests/__init__.py +1 -1
- services/data_catalog/__init__.py +1 -1
- services/data_catalog/src/__init__.py +1 -1
- services/data_catalog/src/oci_cli_data_catalog/__init__.py +1 -1
- services/data_catalog/src/oci_cli_data_catalog/generated/__init__.py +1 -1
- services/data_catalog/src/oci_cli_data_catalog/generated/client_mappings.py +1 -1
- services/data_catalog/src/oci_cli_data_catalog/generated/datacatalog_cli.py +1 -1
- services/data_catalog/tests/__init__.py +1 -1
- services/data_flow/__init__.py +1 -1
- services/data_flow/src/__init__.py +1 -1
- services/data_flow/src/oci_cli_data_flow/__init__.py +1 -1
- services/data_flow/src/oci_cli_data_flow/generated/__init__.py +1 -1
- services/data_flow/src/oci_cli_data_flow/generated/client_mappings.py +1 -1
- services/data_flow/src/oci_cli_data_flow/generated/dataflow_cli.py +1 -1
- services/data_flow/tests/__init__.py +1 -1
- services/data_integration/__init__.py +1 -1
- services/data_integration/src/__init__.py +1 -1
- services/data_integration/src/oci_cli_data_integration/__init__.py +1 -1
- services/data_integration/src/oci_cli_data_integration/generated/__init__.py +1 -1
- services/data_integration/src/oci_cli_data_integration/generated/client_mappings.py +1 -1
- services/data_integration/src/oci_cli_data_integration/generated/dataintegration_cli.py +1 -1
- services/data_integration/tests/__init__.py +1 -1
- services/data_labeling_service/__init__.py +1 -1
- services/data_labeling_service/src/__init__.py +1 -1
- services/data_labeling_service/src/oci_cli_data_labeling_management/__init__.py +1 -1
- services/data_labeling_service/src/oci_cli_data_labeling_management/generated/__init__.py +1 -1
- services/data_labeling_service/src/oci_cli_data_labeling_management/generated/client_mappings.py +1 -1
- services/data_labeling_service/src/oci_cli_data_labeling_management/generated/datalabelingmanagement_cli.py +1 -1
- services/data_labeling_service/tests/__init__.py +1 -1
- services/data_labeling_service_dataplane/__init__.py +1 -1
- services/data_labeling_service_dataplane/src/__init__.py +1 -1
- services/data_labeling_service_dataplane/src/oci_cli_data_labeling/__init__.py +1 -1
- services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/__init__.py +1 -1
- services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/client_mappings.py +1 -1
- services/data_labeling_service_dataplane/src/oci_cli_data_labeling/generated/datalabeling_cli.py +1 -1
- services/data_labeling_service_dataplane/tests/__init__.py +1 -1
- services/data_safe/__init__.py +1 -1
- services/data_safe/src/__init__.py +1 -1
- services/data_safe/src/oci_cli_data_safe/__init__.py +1 -1
- services/data_safe/src/oci_cli_data_safe/generated/__init__.py +1 -1
- services/data_safe/src/oci_cli_data_safe/generated/client_mappings.py +1 -1
- services/data_safe/src/oci_cli_data_safe/generated/datasafe_cli.py +1 -1
- services/data_safe/tests/__init__.py +1 -1
- services/data_science/__init__.py +1 -1
- services/data_science/src/__init__.py +1 -1
- services/data_science/src/oci_cli_data_science/__init__.py +1 -1
- services/data_science/src/oci_cli_data_science/generated/__init__.py +1 -1
- services/data_science/src/oci_cli_data_science/generated/client_mappings.py +1 -1
- services/data_science/src/oci_cli_data_science/generated/datascience_cli.py +1 -1
- services/data_science/tests/__init__.py +1 -1
- services/database/__init__.py +1 -1
- services/database/src/__init__.py +1 -1
- services/database/src/oci_cli_database/__init__.py +1 -1
- services/database/src/oci_cli_database/generated/__init__.py +1 -1
- services/database/src/oci_cli_database/generated/client_mappings.py +1 -1
- services/database/src/oci_cli_database/generated/database_cli.py +390 -86
- services/database/tests/__init__.py +1 -1
- services/database_management/__init__.py +1 -1
- services/database_management/src/__init__.py +1 -1
- services/database_management/src/oci_cli_database_management/__init__.py +1 -1
- services/database_management/src/oci_cli_database_management/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_database_management/generated/database_management_service_cli.py +1 -1
- services/database_management/src/oci_cli_db_management/__init__.py +1 -1
- services/database_management/src/oci_cli_db_management/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_db_management/generated/client_mappings.py +1 -1
- services/database_management/src/oci_cli_db_management/generated/dbmanagement_cli.py +1 -1
- services/database_management/src/oci_cli_diagnosability/__init__.py +1 -1
- services/database_management/src/oci_cli_diagnosability/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_diagnosability/generated/client_mappings.py +1 -1
- services/database_management/src/oci_cli_diagnosability/generated/diagnosability_cli.py +1 -1
- services/database_management/src/oci_cli_managed_my_sql_databases/__init__.py +1 -1
- services/database_management/src/oci_cli_managed_my_sql_databases/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_managed_my_sql_databases/generated/client_mappings.py +1 -1
- services/database_management/src/oci_cli_managed_my_sql_databases/generated/managedmysqldatabases_cli.py +1 -1
- services/database_management/src/oci_cli_perfhub/__init__.py +1 -1
- services/database_management/src/oci_cli_perfhub/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_perfhub/generated/client_mappings.py +1 -1
- services/database_management/src/oci_cli_perfhub/generated/perfhub_cli.py +1 -1
- services/database_management/src/oci_cli_sql_tuning/__init__.py +1 -1
- services/database_management/src/oci_cli_sql_tuning/generated/__init__.py +1 -1
- services/database_management/src/oci_cli_sql_tuning/generated/client_mappings.py +1 -1
- services/database_management/src/oci_cli_sql_tuning/generated/sqltuning_cli.py +1 -1
- services/database_management/tests/__init__.py +1 -1
- services/database_migration/__init__.py +1 -1
- services/database_migration/src/__init__.py +1 -1
- services/database_migration/src/oci_cli_database_migration/__init__.py +1 -1
- services/database_migration/src/oci_cli_database_migration/generated/__init__.py +1 -1
- services/database_migration/src/oci_cli_database_migration/generated/client_mappings.py +1 -1
- services/database_migration/src/oci_cli_database_migration/generated/databasemigration_cli.py +1 -1
- services/database_migration/tests/__init__.py +1 -1
- services/database_tools/__init__.py +1 -1
- services/database_tools/src/__init__.py +1 -1
- services/database_tools/src/oci_cli_database_tools/__init__.py +1 -1
- services/database_tools/src/oci_cli_database_tools/generated/__init__.py +1 -1
- services/database_tools/src/oci_cli_database_tools/generated/client_mappings.py +1 -1
- services/database_tools/src/oci_cli_database_tools/generated/databasetools_cli.py +1 -1
- services/database_tools/tests/__init__.py +1 -1
- services/dblm/__init__.py +1 -1
- services/dblm/src/__init__.py +1 -1
- services/dblm/src/oci_cli_db_life_cycle_management/__init__.py +1 -1
- services/dblm/src/oci_cli_db_life_cycle_management/generated/__init__.py +1 -1
- services/dblm/src/oci_cli_db_life_cycle_management/generated/client_mappings.py +1 -1
- services/dblm/src/oci_cli_db_life_cycle_management/generated/dblifecyclemanagement_cli.py +1 -1
- services/dblm/tests/__init__.py +1 -1
- services/dbmulticloud/__init__.py +1 -1
- services/dbmulticloud/src/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_aws_provider/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_aws_provider/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_aws_provider/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_aws_provider/generated/dbmulticloudawsprovider_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_gcp_provider/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_gcp_provider/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_gcp_provider/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_db_multicloud_gcp_provider/generated/dbmulticloudgcpprovider_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_dbmulticloud/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_dbmulticloud/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_dbmulticloud/generated/dbmulticloud_service_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_multi_cloud_resource_discovery/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_multi_cloud_resource_discovery/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_multi_cloud_resource_discovery/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_multi_cloud_resource_discovery/generated/multicloudresourcediscovery_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_container/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_container/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_container/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_container/generated/oracledbazureblobcontainer_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_mount/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_mount/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_mount/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_blob_mount/generated/oracledbazureblobmount_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_connector/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_connector/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_connector/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_connector/generated/oracledbazureconnector_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_key/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_key/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_key/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_key/generated/oracledbazurekey_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault/generated/oracledbazurevault_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault_association/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault_association/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault_association/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_oracle_db_azure_vault_association/generated/oracledbazurevaultassociation_cli.py +1 -1
- services/dbmulticloud/src/oci_cli_work_request/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/dbmulticloud/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/dbmulticloud/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/dbmulticloud/tests/__init__.py +1 -1
- services/delegate_access_control/__init__.py +1 -1
- services/delegate_access_control/src/__init__.py +1 -1
- services/delegate_access_control/src/oci_cli_delegate_access_control/__init__.py +1 -1
- services/delegate_access_control/src/oci_cli_delegate_access_control/generated/__init__.py +1 -1
- services/delegate_access_control/src/oci_cli_delegate_access_control/generated/client_mappings.py +1 -1
- services/delegate_access_control/src/oci_cli_delegate_access_control/generated/delegate_access_control_service_cli.py +1 -1
- services/delegate_access_control/src/oci_cli_delegate_access_control/generated/delegateaccesscontrol_cli.py +1 -1
- services/delegate_access_control/src/oci_cli_work_request/__init__.py +1 -1
- services/delegate_access_control/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/delegate_access_control/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/delegate_access_control/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/delegate_access_control/tests/__init__.py +1 -1
- services/demand_signal/__init__.py +1 -1
- services/demand_signal/src/__init__.py +1 -1
- services/demand_signal/src/oci_cli_occ_demand_signal/__init__.py +1 -1
- services/demand_signal/src/oci_cli_occ_demand_signal/generated/__init__.py +1 -1
- services/demand_signal/src/oci_cli_occ_demand_signal/generated/client_mappings.py +1 -1
- services/demand_signal/src/oci_cli_occ_demand_signal/generated/occdemandsignal_cli.py +1 -1
- services/demand_signal/tests/__init__.py +1 -1
- services/desktops/__init__.py +1 -1
- services/desktops/src/__init__.py +1 -1
- services/desktops/src/oci_cli_desktop_service/__init__.py +1 -1
- services/desktops/src/oci_cli_desktop_service/generated/__init__.py +1 -1
- services/desktops/src/oci_cli_desktop_service/generated/client_mappings.py +1 -1
- services/desktops/src/oci_cli_desktop_service/generated/desktopservice_cli.py +1 -1
- services/desktops/tests/__init__.py +1 -1
- services/devops/__init__.py +1 -1
- services/devops/src/__init__.py +1 -1
- services/devops/src/oci_cli_devops/__init__.py +1 -1
- services/devops/src/oci_cli_devops/generated/__init__.py +1 -1
- services/devops/src/oci_cli_devops/generated/client_mappings.py +1 -1
- services/devops/src/oci_cli_devops/generated/devops_cli.py +88 -227
- services/devops/tests/__init__.py +1 -1
- services/dif/__init__.py +1 -1
- services/dif/src/__init__.py +1 -1
- services/dif/src/oci_cli_stack/__init__.py +1 -1
- services/dif/src/oci_cli_stack/generated/__init__.py +1 -1
- services/dif/src/oci_cli_stack/generated/client_mappings.py +1 -1
- services/dif/src/oci_cli_stack/generated/stack_cli.py +1 -1
- services/dif/tests/__init__.py +1 -1
- services/disaster_recovery/__init__.py +1 -1
- services/disaster_recovery/src/__init__.py +1 -1
- services/disaster_recovery/src/oci_cli_disaster_recovery/__init__.py +1 -1
- services/disaster_recovery/src/oci_cli_disaster_recovery/generated/__init__.py +1 -1
- services/disaster_recovery/src/oci_cli_disaster_recovery/generated/client_mappings.py +1 -1
- services/disaster_recovery/src/oci_cli_disaster_recovery/generated/disasterrecovery_cli.py +1 -1
- services/disaster_recovery/tests/__init__.py +1 -1
- services/distributed_database/__init__.py +1 -1
- services/distributed_database/src/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_autonomous_db_service/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_autonomous_db_service/generated/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_autonomous_db_service/generated/client_mappings.py +1 -1
- services/distributed_database/src/oci_cli_distributed_autonomous_db_service/generated/distributedautonomousdbservice_cli.py +1 -1
- services/distributed_database/src/oci_cli_distributed_database/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_database/generated/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_database/generated/distributed_database_service_cli.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_private_endpoint_service/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_private_endpoint_service/generated/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_private_endpoint_service/generated/client_mappings.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_private_endpoint_service/generated/distributeddbprivateendpointservice_cli.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_service/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_service/generated/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_service/generated/client_mappings.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_service/generated/distributeddbservice_cli.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_work_request_service/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_work_request_service/generated/__init__.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_work_request_service/generated/client_mappings.py +1 -1
- services/distributed_database/src/oci_cli_distributed_db_work_request_service/generated/distributeddbworkrequestservice_cli.py +1 -1
- services/distributed_database/tests/__init__.py +1 -1
- services/dns/__init__.py +1 -1
- services/dns/src/__init__.py +1 -1
- services/dns/src/oci_cli_dns/__init__.py +1 -1
- services/dns/src/oci_cli_dns/generated/__init__.py +1 -1
- services/dns/src/oci_cli_dns/generated/client_mappings.py +1 -1
- services/dns/src/oci_cli_dns/generated/dns_cli.py +1 -1
- services/dns/tests/__init__.py +1 -1
- services/em_warehouse/__init__.py +1 -1
- services/em_warehouse/src/__init__.py +1 -1
- services/em_warehouse/src/oci_cli_em_warehouse/__init__.py +1 -1
- services/em_warehouse/src/oci_cli_em_warehouse/generated/__init__.py +1 -1
- services/em_warehouse/src/oci_cli_em_warehouse/generated/client_mappings.py +1 -1
- services/em_warehouse/src/oci_cli_em_warehouse/generated/emwarehouse_cli.py +1 -1
- services/em_warehouse/tests/__init__.py +1 -1
- services/email/__init__.py +1 -1
- services/email/src/__init__.py +1 -1
- services/email/src/oci_cli_email/__init__.py +1 -1
- services/email/src/oci_cli_email/generated/__init__.py +1 -1
- services/email/src/oci_cli_email/generated/client_mappings.py +1 -1
- services/email/src/oci_cli_email/generated/email_cli.py +1 -1
- services/email/tests/__init__.py +1 -1
- services/email_data_plane/__init__.py +1 -1
- services/email_data_plane/src/__init__.py +1 -1
- services/email_data_plane/src/oci_cli_email_dp/__init__.py +1 -1
- services/email_data_plane/src/oci_cli_email_dp/generated/__init__.py +1 -1
- services/email_data_plane/src/oci_cli_email_dp/generated/client_mappings.py +1 -1
- services/email_data_plane/src/oci_cli_email_dp/generated/emaildp_cli.py +1 -1
- services/email_data_plane/tests/__init__.py +1 -1
- services/events/__init__.py +1 -1
- services/events/src/__init__.py +1 -1
- services/events/src/oci_cli_events/__init__.py +1 -1
- services/events/src/oci_cli_events/generated/__init__.py +1 -1
- services/events/src/oci_cli_events/generated/client_mappings.py +1 -1
- services/events/src/oci_cli_events/generated/events_cli.py +1 -1
- services/events/tests/__init__.py +1 -1
- services/file_storage/__init__.py +1 -1
- services/file_storage/src/__init__.py +1 -1
- services/file_storage/src/oci_cli_file_storage/__init__.py +1 -1
- services/file_storage/src/oci_cli_file_storage/generated/__init__.py +1 -1
- services/file_storage/src/oci_cli_file_storage/generated/client_mappings.py +1 -1
- services/file_storage/src/oci_cli_file_storage/generated/filestorage_cli.py +1 -1
- services/file_storage/tests/__init__.py +1 -1
- services/fleet_apps_management/__init__.py +1 -1
- services/fleet_apps_management/src/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management/generated/fleet_apps_management_service_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management/generated/fleetappsmanagement_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_admin/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_admin/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_admin/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_admin/generated/fleetappsmanagementadmin_cli.py +43 -15
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_catalog/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_catalog/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_catalog/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_catalog/generated/fleetappsmanagementcatalog_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_maintenance_window/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_maintenance_window/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_maintenance_window/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_maintenance_window/generated/fleetappsmanagementmaintenancewindow_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_operations/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_operations/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_operations/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_operations/generated/fleetappsmanagementoperations_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_provision/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_provision/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_provision/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_provision/generated/fleetappsmanagementprovision_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_runbooks/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_runbooks/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_runbooks/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_runbooks/generated/fleetappsmanagementrunbooks_cli.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_work_request/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_work_request/generated/__init__.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_work_request/generated/client_mappings.py +1 -1
- services/fleet_apps_management/src/oci_cli_fleet_apps_management_work_request/generated/fleetappsmanagementworkrequest_cli.py +1 -1
- services/fleet_apps_management/tests/__init__.py +1 -1
- services/fleet_software_update/__init__.py +1 -1
- services/fleet_software_update/src/__init__.py +1 -1
- services/fleet_software_update/src/oci_cli_fleet_software_update/__init__.py +1 -1
- services/fleet_software_update/src/oci_cli_fleet_software_update/generated/__init__.py +1 -1
- services/fleet_software_update/src/oci_cli_fleet_software_update/generated/client_mappings.py +1 -1
- services/fleet_software_update/src/oci_cli_fleet_software_update/generated/fleetsoftwareupdate_cli.py +1 -1
- services/fleet_software_update/tests/__init__.py +1 -1
- services/functions/__init__.py +1 -1
- services/functions/src/__init__.py +1 -1
- services/functions/src/oci_cli_functions/__init__.py +1 -1
- services/functions/src/oci_cli_functions/generated/__init__.py +1 -1
- services/functions/src/oci_cli_functions/generated/fn_service_cli.py +1 -1
- services/functions/src/oci_cli_functions_invoke/__init__.py +1 -1
- services/functions/src/oci_cli_functions_invoke/generated/__init__.py +1 -1
- services/functions/src/oci_cli_functions_invoke/generated/client_mappings.py +1 -1
- services/functions/src/oci_cli_functions_invoke/generated/functionsinvoke_cli.py +1 -1
- services/functions/src/oci_cli_functions_management/__init__.py +1 -1
- services/functions/src/oci_cli_functions_management/generated/__init__.py +1 -1
- services/functions/src/oci_cli_functions_management/generated/client_mappings.py +1 -1
- services/functions/src/oci_cli_functions_management/generated/functionsmanagement_cli.py +1 -1
- services/functions/tests/__init__.py +1 -1
- services/fusion_apps/__init__.py +1 -1
- services/fusion_apps/src/__init__.py +1 -1
- services/fusion_apps/src/oci_cli_fusion_applications/__init__.py +1 -1
- services/fusion_apps/src/oci_cli_fusion_applications/generated/__init__.py +1 -1
- services/fusion_apps/src/oci_cli_fusion_applications/generated/client_mappings.py +1 -1
- services/fusion_apps/src/oci_cli_fusion_applications/generated/fusionapplications_cli.py +1 -1
- services/fusion_apps/tests/__init__.py +1 -1
- services/generative_ai/__init__.py +1 -1
- services/generative_ai/src/__init__.py +1 -1
- services/generative_ai/src/oci_cli_generative_ai/__init__.py +1 -1
- services/generative_ai/src/oci_cli_generative_ai/generated/__init__.py +1 -1
- services/generative_ai/src/oci_cli_generative_ai/generated/client_mappings.py +1 -1
- services/generative_ai/src/oci_cli_generative_ai/generated/generativeai_cli.py +1 -1
- services/generative_ai/tests/__init__.py +1 -1
- services/generative_ai_agent/__init__.py +1 -1
- services/generative_ai_agent/src/__init__.py +1 -1
- services/generative_ai_agent/src/oci_cli_generative_ai_agent/__init__.py +1 -1
- services/generative_ai_agent/src/oci_cli_generative_ai_agent/generated/__init__.py +1 -1
- services/generative_ai_agent/src/oci_cli_generative_ai_agent/generated/client_mappings.py +1 -1
- services/generative_ai_agent/src/oci_cli_generative_ai_agent/generated/generativeaiagent_cli.py +1 -1
- services/generative_ai_agent/tests/__init__.py +1 -1
- services/generative_ai_agent_runtime/__init__.py +1 -1
- services/generative_ai_agent_runtime/src/__init__.py +1 -1
- services/generative_ai_agent_runtime/src/oci_cli_generative_ai_agent_runtime/__init__.py +1 -1
- services/generative_ai_agent_runtime/src/oci_cli_generative_ai_agent_runtime/generated/__init__.py +1 -1
- services/generative_ai_agent_runtime/src/oci_cli_generative_ai_agent_runtime/generated/client_mappings.py +1 -1
- services/generative_ai_agent_runtime/src/oci_cli_generative_ai_agent_runtime/generated/generativeaiagentruntime_cli.py +1 -1
- services/generative_ai_agent_runtime/tests/__init__.py +1 -1
- services/generative_ai_inference/__init__.py +1 -1
- services/generative_ai_inference/src/__init__.py +1 -1
- services/generative_ai_inference/src/oci_cli_generative_ai_inference/__init__.py +1 -1
- services/generative_ai_inference/src/oci_cli_generative_ai_inference/generated/__init__.py +1 -1
- services/generative_ai_inference/src/oci_cli_generative_ai_inference/generated/client_mappings.py +1 -1
- services/generative_ai_inference/src/oci_cli_generative_ai_inference/generated/generativeaiinference_cli.py +1 -1
- services/generative_ai_inference/tests/__init__.py +1 -1
- services/generic_artifacts_content/__init__.py +1 -1
- services/generic_artifacts_content/src/__init__.py +1 -1
- services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/__init__.py +1 -1
- services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/__init__.py +1 -1
- services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/client_mappings.py +1 -1
- services/generic_artifacts_content/src/oci_cli_generic_artifacts_content/generated/genericartifactscontent_cli.py +1 -1
- services/generic_artifacts_content/tests/__init__.py +1 -1
- services/globally_distributed_database/__init__.py +1 -1
- services/globally_distributed_database/src/__init__.py +1 -1
- services/globally_distributed_database/src/oci_cli_sharded_database_service/__init__.py +1 -1
- services/globally_distributed_database/src/oci_cli_sharded_database_service/generated/__init__.py +1 -1
- services/globally_distributed_database/src/oci_cli_sharded_database_service/generated/client_mappings.py +1 -1
- services/globally_distributed_database/src/oci_cli_sharded_database_service/generated/shardeddatabaseservice_cli.py +1 -1
- services/globally_distributed_database/tests/__init__.py +1 -1
- services/golden_gate/__init__.py +1 -1
- services/golden_gate/src/__init__.py +1 -1
- services/golden_gate/src/oci_cli_golden_gate/__init__.py +1 -1
- services/golden_gate/src/oci_cli_golden_gate/generated/__init__.py +1 -1
- services/golden_gate/src/oci_cli_golden_gate/generated/client_mappings.py +1 -1
- services/golden_gate/src/oci_cli_golden_gate/generated/goldengate_cli.py +1 -1
- services/golden_gate/tests/__init__.py +1 -1
- services/governance_rules_control_plane/__init__.py +1 -1
- services/governance_rules_control_plane/src/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rule/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rule/generated/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rule/generated/client_mappings.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rule/generated/governancerule_cli.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rules_control_plane/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rules_control_plane/generated/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_governance_rules_control_plane/generated/governance_rules_control_plane_service_cli.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_work_request/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/governance_rules_control_plane/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/governance_rules_control_plane/tests/__init__.py +1 -1
- services/healthchecks/__init__.py +1 -1
- services/healthchecks/src/__init__.py +1 -1
- services/healthchecks/src/oci_cli_health_checks/__init__.py +1 -1
- services/healthchecks/src/oci_cli_health_checks/generated/__init__.py +1 -1
- services/healthchecks/src/oci_cli_health_checks/generated/client_mappings.py +1 -1
- services/healthchecks/src/oci_cli_health_checks/generated/healthchecks_cli.py +1 -1
- services/healthchecks/tests/__init__.py +1 -1
- services/identity/__init__.py +1 -1
- services/identity/src/__init__.py +1 -1
- services/identity/src/oci_cli_identity/__init__.py +1 -1
- services/identity/src/oci_cli_identity/generated/__init__.py +1 -1
- services/identity/src/oci_cli_identity/generated/client_mappings.py +1 -1
- services/identity/src/oci_cli_identity/generated/identity_cli.py +1 -1
- services/identity/tests/__init__.py +1 -1
- services/identity_data_plane/__init__.py +1 -1
- services/identity_data_plane/src/__init__.py +1 -1
- services/identity_data_plane/src/oci_cli_dataplane/__init__.py +1 -1
- services/identity_data_plane/src/oci_cli_dataplane/generated/__init__.py +1 -1
- services/identity_data_plane/src/oci_cli_dataplane/generated/client_mappings.py +1 -1
- services/identity_data_plane/src/oci_cli_dataplane/generated/dataplane_cli.py +1 -1
- services/identity_data_plane/tests/__init__.py +1 -1
- services/identity_domains/__init__.py +1 -1
- services/identity_domains/src/__init__.py +1 -1
- services/identity_domains/src/oci_cli_identity_domains/__init__.py +1 -1
- services/identity_domains/src/oci_cli_identity_domains/generated/__init__.py +1 -1
- services/identity_domains/src/oci_cli_identity_domains/generated/client_mappings.py +1 -1
- services/identity_domains/src/oci_cli_identity_domains/generated/identitydomains_cli.py +1 -1
- services/identity_domains/tests/__init__.py +1 -1
- services/integration/__init__.py +1 -1
- services/integration/src/__init__.py +1 -1
- services/integration/src/oci_cli_integration_instance/__init__.py +1 -1
- services/integration/src/oci_cli_integration_instance/generated/__init__.py +1 -1
- services/integration/src/oci_cli_integration_instance/generated/client_mappings.py +1 -1
- services/integration/src/oci_cli_integration_instance/generated/integrationinstance_cli.py +1 -1
- services/integration/tests/__init__.py +1 -1
- services/iot/__init__.py +1 -1
- services/iot/src/__init__.py +1 -1
- services/iot/src/oci_cli_iot/__init__.py +1 -1
- services/iot/src/oci_cli_iot/generated/__init__.py +1 -1
- services/iot/src/oci_cli_iot/generated/client_mappings.py +1 -1
- services/iot/src/oci_cli_iot/generated/iot_cli.py +1 -1
- services/iot/tests/__init__.py +1 -1
- services/jms/__init__.py +1 -1
- services/jms/src/__init__.py +1 -1
- services/jms/src/oci_cli_java_management_service/__init__.py +1 -1
- services/jms/src/oci_cli_java_management_service/generated/__init__.py +1 -1
- services/jms/src/oci_cli_java_management_service/generated/client_mappings.py +1 -1
- services/jms/src/oci_cli_java_management_service/generated/javamanagementservice_cli.py +1 -1
- services/jms/tests/__init__.py +1 -1
- services/jms_java_downloads/__init__.py +1 -1
- services/jms_java_downloads/src/__init__.py +1 -1
- services/jms_java_downloads/src/oci_cli_java_download/__init__.py +1 -1
- services/jms_java_downloads/src/oci_cli_java_download/generated/__init__.py +1 -1
- services/jms_java_downloads/src/oci_cli_java_download/generated/client_mappings.py +1 -1
- services/jms_java_downloads/src/oci_cli_java_download/generated/javadownload_cli.py +1 -1
- services/jms_java_downloads/tests/__init__.py +1 -1
- services/jms_utils/__init__.py +1 -1
- services/jms_utils/src/__init__.py +1 -1
- services/jms_utils/src/oci_cli_jms_utils/__init__.py +1 -1
- services/jms_utils/src/oci_cli_jms_utils/generated/__init__.py +1 -1
- services/jms_utils/src/oci_cli_jms_utils/generated/client_mappings.py +1 -1
- services/jms_utils/src/oci_cli_jms_utils/generated/jmsutils_cli.py +1 -1
- services/jms_utils/tests/__init__.py +1 -1
- services/key_management/__init__.py +1 -1
- services/key_management/src/__init__.py +1 -1
- services/key_management/src/oci_cli_ekm/__init__.py +1 -1
- services/key_management/src/oci_cli_ekm/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_ekm/generated/client_mappings.py +1 -1
- services/key_management/src/oci_cli_ekm/generated/ekm_cli.py +1 -1
- services/key_management/src/oci_cli_key_management/__init__.py +1 -1
- services/key_management/src/oci_cli_key_management/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_key_management/generated/kms_service_cli.py +1 -1
- services/key_management/src/oci_cli_kms_crypto/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_crypto/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_crypto/generated/client_mappings.py +1 -1
- services/key_management/src/oci_cli_kms_crypto/generated/kmscrypto_cli.py +1 -1
- services/key_management/src/oci_cli_kms_hsm_cluster/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_hsm_cluster/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_hsm_cluster/generated/client_mappings.py +1 -1
- services/key_management/src/oci_cli_kms_hsm_cluster/generated/kmshsmcluster_cli.py +1 -1
- services/key_management/src/oci_cli_kms_management/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_management/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_management/generated/client_mappings.py +1 -1
- services/key_management/src/oci_cli_kms_management/generated/kmsmanagement_cli.py +1 -1
- services/key_management/src/oci_cli_kms_vault/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_vault/generated/__init__.py +1 -1
- services/key_management/src/oci_cli_kms_vault/generated/client_mappings.py +1 -1
- services/key_management/src/oci_cli_kms_vault/generated/kmsvault_cli.py +1 -1
- services/key_management/tests/__init__.py +1 -1
- services/license_manager/__init__.py +1 -1
- services/license_manager/src/__init__.py +1 -1
- services/license_manager/src/oci_cli_license_manager/__init__.py +1 -1
- services/license_manager/src/oci_cli_license_manager/generated/__init__.py +1 -1
- services/license_manager/src/oci_cli_license_manager/generated/client_mappings.py +1 -1
- services/license_manager/src/oci_cli_license_manager/generated/licensemanager_cli.py +1 -1
- services/license_manager/tests/__init__.py +1 -1
- services/limits/__init__.py +1 -1
- services/limits/src/__init__.py +1 -1
- services/limits/src/oci_cli_limits/__init__.py +1 -1
- services/limits/src/oci_cli_limits/generated/__init__.py +1 -1
- services/limits/src/oci_cli_limits/generated/client_mappings.py +1 -1
- services/limits/src/oci_cli_limits/generated/limits_cli.py +1 -1
- services/limits/src/oci_cli_limits/generated/limits_service_cli.py +1 -1
- services/limits/src/oci_cli_quotas/__init__.py +1 -1
- services/limits/src/oci_cli_quotas/generated/__init__.py +1 -1
- services/limits/src/oci_cli_quotas/generated/client_mappings.py +1 -1
- services/limits/src/oci_cli_quotas/generated/quotas_cli.py +1 -1
- services/limits/tests/__init__.py +1 -1
- services/load_balancer/__init__.py +1 -1
- services/load_balancer/src/__init__.py +1 -1
- services/load_balancer/src/oci_cli_load_balancer/__init__.py +1 -1
- services/load_balancer/src/oci_cli_load_balancer/generated/__init__.py +1 -1
- services/load_balancer/src/oci_cli_load_balancer/generated/client_mappings.py +1 -1
- services/load_balancer/src/oci_cli_load_balancer/generated/loadbalancer_cli.py +1 -1
- services/load_balancer/tests/__init__.py +1 -1
- services/lockbox/__init__.py +1 -1
- services/lockbox/src/__init__.py +1 -1
- services/lockbox/src/oci_cli_lockbox/__init__.py +1 -1
- services/lockbox/src/oci_cli_lockbox/generated/__init__.py +1 -1
- services/lockbox/src/oci_cli_lockbox/generated/client_mappings.py +1 -1
- services/lockbox/src/oci_cli_lockbox/generated/lockbox_cli.py +1 -1
- services/lockbox/tests/__init__.py +1 -1
- services/log_analytics/__init__.py +1 -1
- services/log_analytics/src/__init__.py +1 -1
- services/log_analytics/src/oci_cli_log_analytics/__init__.py +1 -1
- services/log_analytics/src/oci_cli_log_analytics/generated/__init__.py +1 -1
- services/log_analytics/src/oci_cli_log_analytics/generated/client_mappings.py +1 -1
- services/log_analytics/src/oci_cli_log_analytics/generated/loganalytics_cli.py +1 -1
- services/log_analytics/tests/__init__.py +1 -1
- services/logging/__init__.py +1 -1
- services/logging/src/__init__.py +1 -1
- services/logging/src/oci_cli_logging_management/__init__.py +1 -1
- services/logging/src/oci_cli_logging_management/generated/__init__.py +1 -1
- services/logging/src/oci_cli_logging_management/generated/client_mappings.py +1 -1
- services/logging/src/oci_cli_logging_management/generated/loggingmanagement_cli.py +1 -1
- services/logging/tests/__init__.py +1 -1
- services/loggingingestion/__init__.py +1 -1
- services/loggingingestion/src/__init__.py +1 -1
- services/loggingingestion/src/oci_cli_logging/__init__.py +1 -1
- services/loggingingestion/src/oci_cli_logging/generated/__init__.py +1 -1
- services/loggingingestion/src/oci_cli_logging/generated/client_mappings.py +1 -1
- services/loggingingestion/src/oci_cli_logging/generated/logging_cli.py +1 -1
- services/loggingingestion/tests/__init__.py +1 -1
- services/loggingsearch/__init__.py +1 -1
- services/loggingsearch/src/__init__.py +1 -1
- services/loggingsearch/src/oci_cli_log_search/__init__.py +1 -1
- services/loggingsearch/src/oci_cli_log_search/generated/__init__.py +1 -1
- services/loggingsearch/src/oci_cli_log_search/generated/client_mappings.py +1 -1
- services/loggingsearch/src/oci_cli_log_search/generated/logsearch_cli.py +1 -1
- services/loggingsearch/tests/__init__.py +1 -1
- services/lustre_file_storage/__init__.py +1 -1
- services/lustre_file_storage/src/__init__.py +1 -1
- services/lustre_file_storage/src/oci_cli_lustre_file_storage/__init__.py +1 -1
- services/lustre_file_storage/src/oci_cli_lustre_file_storage/generated/__init__.py +1 -1
- services/lustre_file_storage/src/oci_cli_lustre_file_storage/generated/client_mappings.py +1 -1
- services/lustre_file_storage/src/oci_cli_lustre_file_storage/generated/lustrefilestorage_cli.py +1 -1
- services/lustre_file_storage/tests/__init__.py +1 -1
- services/managed_kafka/__init__.py +1 -1
- services/managed_kafka/src/__init__.py +1 -1
- services/managed_kafka/src/oci_cli_kafka_cluster/__init__.py +1 -1
- services/managed_kafka/src/oci_cli_kafka_cluster/generated/__init__.py +1 -1
- services/managed_kafka/src/oci_cli_kafka_cluster/generated/client_mappings.py +1 -1
- services/managed_kafka/src/oci_cli_kafka_cluster/generated/kafkacluster_cli.py +1 -1
- services/managed_kafka/tests/__init__.py +1 -1
- services/management_agent/__init__.py +1 -1
- services/management_agent/src/__init__.py +1 -1
- services/management_agent/src/oci_cli_management_agent/__init__.py +1 -1
- services/management_agent/src/oci_cli_management_agent/generated/__init__.py +1 -1
- services/management_agent/src/oci_cli_management_agent/generated/client_mappings.py +1 -1
- services/management_agent/src/oci_cli_management_agent/generated/managementagent_cli.py +1 -1
- services/management_agent/tests/__init__.py +1 -1
- services/management_dashboard/__init__.py +1 -1
- services/management_dashboard/src/__init__.py +1 -1
- services/management_dashboard/src/oci_cli_dashx_apis/__init__.py +1 -1
- services/management_dashboard/src/oci_cli_dashx_apis/generated/__init__.py +1 -1
- services/management_dashboard/src/oci_cli_dashx_apis/generated/client_mappings.py +1 -1
- services/management_dashboard/src/oci_cli_dashx_apis/generated/dashxapis_cli.py +1 -1
- services/management_dashboard/tests/__init__.py +1 -1
- services/marketplace/__init__.py +1 -1
- services/marketplace/src/__init__.py +1 -1
- services/marketplace/src/oci_cli_account/__init__.py +1 -1
- services/marketplace/src/oci_cli_account/generated/__init__.py +1 -1
- services/marketplace/src/oci_cli_account/generated/account_cli.py +1 -1
- services/marketplace/src/oci_cli_account/generated/client_mappings.py +1 -1
- services/marketplace/src/oci_cli_marketplace/__init__.py +1 -1
- services/marketplace/src/oci_cli_marketplace/generated/__init__.py +1 -1
- services/marketplace/src/oci_cli_marketplace/generated/client_mappings.py +1 -1
- services/marketplace/src/oci_cli_marketplace/generated/marketplace_cli.py +1 -1
- services/marketplace/src/oci_cli_marketplace/generated/marketplace_service_cli.py +1 -1
- services/marketplace/tests/__init__.py +1 -1
- services/marketplace_private_offer/__init__.py +1 -1
- services/marketplace_private_offer/src/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_attachment/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_attachment/generated/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_attachment/generated/attachment_cli.py +1 -1
- services/marketplace_private_offer/src/oci_cli_attachment/generated/client_mappings.py +1 -1
- services/marketplace_private_offer/src/oci_cli_marketplace_private_offer/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_marketplace_private_offer/generated/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_marketplace_private_offer/generated/marketplace_private_offer_service_cli.py +1 -1
- services/marketplace_private_offer/src/oci_cli_offer/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_offer/generated/__init__.py +1 -1
- services/marketplace_private_offer/src/oci_cli_offer/generated/client_mappings.py +1 -1
- services/marketplace_private_offer/src/oci_cli_offer/generated/offer_cli.py +1 -1
- services/marketplace_private_offer/tests/__init__.py +1 -1
- services/marketplace_publisher/__init__.py +1 -1
- services/marketplace_publisher/src/__init__.py +1 -1
- services/marketplace_publisher/src/oci_cli_marketplace_publisher/__init__.py +1 -1
- services/marketplace_publisher/src/oci_cli_marketplace_publisher/generated/__init__.py +1 -1
- services/marketplace_publisher/src/oci_cli_marketplace_publisher/generated/client_mappings.py +1 -1
- services/marketplace_publisher/src/oci_cli_marketplace_publisher/generated/marketplacepublisher_cli.py +1 -1
- services/marketplace_publisher/tests/__init__.py +1 -1
- services/media_services/__init__.py +1 -1
- services/media_services/src/__init__.py +1 -1
- services/media_services/src/oci_cli_media_services/__init__.py +1 -1
- services/media_services/src/oci_cli_media_services/generated/__init__.py +1 -1
- services/media_services/src/oci_cli_media_services/generated/client_mappings.py +1 -1
- services/media_services/src/oci_cli_media_services/generated/media_services_service_cli.py +1 -1
- services/media_services/src/oci_cli_media_services/generated/mediaservices_cli.py +1 -1
- services/media_services/src/oci_cli_media_stream/__init__.py +1 -1
- services/media_services/src/oci_cli_media_stream/generated/__init__.py +1 -1
- services/media_services/src/oci_cli_media_stream/generated/client_mappings.py +1 -1
- services/media_services/src/oci_cli_media_stream/generated/mediastream_cli.py +1 -1
- services/media_services/tests/__init__.py +1 -1
- services/mngdmac/__init__.py +1 -1
- services/mngdmac/src/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mac_device/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mac_device/generated/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mac_device/generated/client_mappings.py +1 -1
- services/mngdmac/src/oci_cli_mac_device/generated/macdevice_cli.py +1 -1
- services/mngdmac/src/oci_cli_mac_order/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mac_order/generated/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mac_order/generated/client_mappings.py +1 -1
- services/mngdmac/src/oci_cli_mac_order/generated/macorder_cli.py +1 -1
- services/mngdmac/src/oci_cli_mngdmac/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mngdmac/generated/__init__.py +1 -1
- services/mngdmac/src/oci_cli_mngdmac/generated/mngdmac_service_cli.py +1 -1
- services/mngdmac/tests/__init__.py +1 -1
- services/model_deployment/__init__.py +1 -1
- services/model_deployment/src/__init__.py +1 -1
- services/model_deployment/src/oci_cli_model_deployment/__init__.py +1 -1
- services/model_deployment/src/oci_cli_model_deployment/generated/__init__.py +1 -1
- services/model_deployment/src/oci_cli_model_deployment/generated/client_mappings.py +1 -1
- services/model_deployment/src/oci_cli_model_deployment/generated/modeldeployment_cli.py +1 -1
- services/model_deployment/tests/__init__.py +1 -1
- services/monitoring/__init__.py +1 -1
- services/monitoring/src/__init__.py +1 -1
- services/monitoring/src/oci_cli_monitoring/__init__.py +1 -1
- services/monitoring/src/oci_cli_monitoring/generated/__init__.py +1 -1
- services/monitoring/src/oci_cli_monitoring/generated/client_mappings.py +1 -1
- services/monitoring/src/oci_cli_monitoring/generated/monitoring_cli.py +1 -1
- services/monitoring/tests/__init__.py +1 -1
- services/multicloud/__init__.py +1 -1
- services/multicloud/src/__init__.py +1 -1
- services/multicloud/src/oci_cli_metadata/__init__.py +1 -1
- services/multicloud/src/oci_cli_metadata/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_metadata/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_metadata/generated/metadata_cli.py +1 -1
- services/multicloud/src/oci_cli_multi_clouds_metadata/__init__.py +1 -1
- services/multicloud/src/oci_cli_multi_clouds_metadata/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_multi_clouds_metadata/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_multi_clouds_metadata/generated/multicloudsmetadata_cli.py +1 -1
- services/multicloud/src/oci_cli_multicloud/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloud/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloud/generated/multicloud_service_cli.py +1 -1
- services/multicloud/src/oci_cli_multicloud_resources/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloud_resources/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloud_resources/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_multicloud_resources/generated/multicloudresources_cli.py +1 -1
- services/multicloud/src/oci_cli_multicloudsubscriptions/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloudsubscriptions/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_multicloudsubscriptions/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_multicloudsubscriptions/generated/multicloudsubscriptions_cli.py +1 -1
- services/multicloud/src/oci_cli_omhub_network_anchor/__init__.py +1 -1
- services/multicloud/src/oci_cli_omhub_network_anchor/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_omhub_network_anchor/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_omhub_network_anchor/generated/omhubnetworkanchor_cli.py +1 -1
- services/multicloud/src/oci_cli_omhub_resource_anchor/__init__.py +1 -1
- services/multicloud/src/oci_cli_omhub_resource_anchor/generated/__init__.py +1 -1
- services/multicloud/src/oci_cli_omhub_resource_anchor/generated/client_mappings.py +1 -1
- services/multicloud/src/oci_cli_omhub_resource_anchor/generated/omhubresourceanchor_cli.py +1 -1
- services/multicloud/tests/__init__.py +1 -1
- services/mysql/__init__.py +1 -1
- services/mysql/src/__init__.py +1 -1
- services/mysql/src/oci_cli_channels/__init__.py +1 -1
- services/mysql/src/oci_cli_channels/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_channels/generated/channels_cli.py +1 -1
- services/mysql/src/oci_cli_channels/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_db_backups/__init__.py +1 -1
- services/mysql/src/oci_cli_db_backups/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_db_backups/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_db_backups/generated/dbbackups_cli.py +1 -1
- services/mysql/src/oci_cli_db_system/__init__.py +1 -1
- services/mysql/src/oci_cli_db_system/db_system_cli_extended.py +4 -4
- services/mysql/src/oci_cli_db_system/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_db_system/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_db_system/generated/dbsystem_cli.py +45 -21
- services/mysql/src/oci_cli_mysql/__init__.py +1 -1
- services/mysql/src/oci_cli_mysql/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_mysql/generated/mysql_service_cli.py +1 -1
- services/mysql/src/oci_cli_mysqlaas/__init__.py +1 -1
- services/mysql/src/oci_cli_mysqlaas/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_mysqlaas/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_mysqlaas/generated/mysqlaas_cli.py +1 -1
- services/mysql/src/oci_cli_replicas/__init__.py +1 -1
- services/mysql/src/oci_cli_replicas/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_replicas/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_replicas/generated/replicas_cli.py +1 -1
- services/mysql/src/oci_cli_work_requests/__init__.py +1 -1
- services/mysql/src/oci_cli_work_requests/generated/__init__.py +1 -1
- services/mysql/src/oci_cli_work_requests/generated/client_mappings.py +1 -1
- services/mysql/src/oci_cli_work_requests/generated/workrequests_cli.py +1 -1
- services/mysql/tests/__init__.py +1 -1
- services/network_firewall/__init__.py +1 -1
- services/network_firewall/src/__init__.py +1 -1
- services/network_firewall/src/oci_cli_network_firewall/__init__.py +1 -1
- services/network_firewall/src/oci_cli_network_firewall/generated/__init__.py +1 -1
- services/network_firewall/src/oci_cli_network_firewall/generated/client_mappings.py +1 -1
- services/network_firewall/src/oci_cli_network_firewall/generated/networkfirewall_cli.py +1 -1
- services/network_firewall/tests/__init__.py +1 -1
- services/network_load_balancer/__init__.py +1 -1
- services/network_load_balancer/src/__init__.py +1 -1
- services/network_load_balancer/src/oci_cli_network_load_balancer/__init__.py +1 -1
- services/network_load_balancer/src/oci_cli_network_load_balancer/generated/__init__.py +1 -1
- services/network_load_balancer/src/oci_cli_network_load_balancer/generated/client_mappings.py +1 -1
- services/network_load_balancer/src/oci_cli_network_load_balancer/generated/networkloadbalancer_cli.py +1 -1
- services/network_load_balancer/tests/__init__.py +1 -1
- services/nosql/__init__.py +1 -1
- services/nosql/src/__init__.py +1 -1
- services/nosql/src/oci_cli_nosql/__init__.py +1 -1
- services/nosql/src/oci_cli_nosql/generated/__init__.py +1 -1
- services/nosql/src/oci_cli_nosql/generated/client_mappings.py +1 -1
- services/nosql/src/oci_cli_nosql/generated/nosql_cli.py +1 -1
- services/nosql/tests/__init__.py +1 -1
- services/object_storage/__init__.py +1 -1
- services/object_storage/src/__init__.py +1 -1
- services/object_storage/src/oci_cli_object_storage/__init__.py +1 -1
- services/object_storage/src/oci_cli_object_storage/generated/__init__.py +1 -1
- services/object_storage/src/oci_cli_object_storage/generated/client_mappings.py +1 -1
- services/object_storage/src/oci_cli_object_storage/generated/objectstorage_cli.py +1 -1
- services/object_storage/tests/__init__.py +1 -1
- services/oce/__init__.py +1 -1
- services/oce/src/__init__.py +1 -1
- services/oce/src/oci_cli_oce_instance/__init__.py +1 -1
- services/oce/src/oci_cli_oce_instance/generated/__init__.py +1 -1
- services/oce/src/oci_cli_oce_instance/generated/client_mappings.py +1 -1
- services/oce/src/oci_cli_oce_instance/generated/oceinstance_cli.py +1 -1
- services/oce/tests/__init__.py +1 -1
- services/oci_control_center/__init__.py +1 -1
- services/oci_control_center/src/__init__.py +1 -1
- services/oci_control_center/src/oci_cli_occ_metrics/__init__.py +1 -1
- services/oci_control_center/src/oci_cli_occ_metrics/generated/__init__.py +1 -1
- services/oci_control_center/src/oci_cli_occ_metrics/generated/client_mappings.py +1 -1
- services/oci_control_center/src/oci_cli_occ_metrics/generated/occmetrics_cli.py +1 -1
- services/oci_control_center/tests/__init__.py +1 -1
- services/ocvp/__init__.py +1 -1
- services/ocvp/src/__init__.py +1 -1
- services/ocvp/src/oci_cli_cluster/__init__.py +1 -1
- services/ocvp/src/oci_cli_cluster/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_cluster/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_cluster/generated/cluster_cli.py +1 -1
- services/ocvp/src/oci_cli_datastore/__init__.py +1 -1
- services/ocvp/src/oci_cli_datastore/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_datastore/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_datastore/generated/datastore_cli.py +1 -1
- services/ocvp/src/oci_cli_datastore_cluster/__init__.py +1 -1
- services/ocvp/src/oci_cli_datastore_cluster/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_datastore_cluster/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_datastore_cluster/generated/datastorecluster_cli.py +1 -1
- services/ocvp/src/oci_cli_esxi_host/__init__.py +1 -1
- services/ocvp/src/oci_cli_esxi_host/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_esxi_host/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_esxi_host/generated/esxihost_cli.py +1 -1
- services/ocvp/src/oci_cli_ocvp/__init__.py +1 -1
- services/ocvp/src/oci_cli_ocvp/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_ocvp/generated/ocvs_service_cli.py +1 -1
- services/ocvp/src/oci_cli_sddc/__init__.py +1 -1
- services/ocvp/src/oci_cli_sddc/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_sddc/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_sddc/generated/sddc_cli.py +1 -1
- services/ocvp/src/oci_cli_work_request/__init__.py +1 -1
- services/ocvp/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/ocvp/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/ocvp/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/ocvp/tests/__init__.py +1 -1
- services/oda/__init__.py +1 -1
- services/oda/src/__init__.py +1 -1
- services/oda/src/oci_cli_management/__init__.py +1 -1
- services/oda/src/oci_cli_management/generated/__init__.py +1 -1
- services/oda/src/oci_cli_management/generated/client_mappings.py +1 -1
- services/oda/src/oci_cli_management/generated/management_cli.py +1 -1
- services/oda/src/oci_cli_oda/__init__.py +1 -1
- services/oda/src/oci_cli_oda/generated/__init__.py +1 -1
- services/oda/src/oci_cli_oda/generated/client_mappings.py +1 -1
- services/oda/src/oci_cli_oda/generated/oda_cli.py +1 -1
- services/oda/src/oci_cli_oda/generated/oda_service_cli.py +1 -1
- services/oda/src/oci_cli_odapackage/__init__.py +1 -1
- services/oda/src/oci_cli_odapackage/generated/__init__.py +1 -1
- services/oda/src/oci_cli_odapackage/generated/client_mappings.py +1 -1
- services/oda/src/oci_cli_odapackage/generated/odapackage_cli.py +1 -1
- services/oda/tests/__init__.py +1 -1
- services/onesubscription/__init__.py +1 -1
- services/onesubscription/src/__init__.py +1 -1
- services/onesubscription/src/oci_cli_billing_schedule/__init__.py +1 -1
- services/onesubscription/src/oci_cli_billing_schedule/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_billing_schedule/generated/billingschedule_cli.py +1 -1
- services/onesubscription/src/oci_cli_billing_schedule/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_commitment/__init__.py +1 -1
- services/onesubscription/src/oci_cli_commitment/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_commitment/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_commitment/generated/commitment_cli.py +1 -1
- services/onesubscription/src/oci_cli_computed_usage/__init__.py +1 -1
- services/onesubscription/src/oci_cli_computed_usage/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_computed_usage/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_computed_usage/generated/computedusage_cli.py +1 -1
- services/onesubscription/src/oci_cli_invoice_summary/__init__.py +1 -1
- services/onesubscription/src/oci_cli_invoice_summary/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_invoice_summary/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_invoice_summary/generated/invoicesummary_cli.py +1 -1
- services/onesubscription/src/oci_cli_onesubscription/__init__.py +1 -1
- services/onesubscription/src/oci_cli_onesubscription/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_onesubscription/generated/onesubscription_service_cli.py +1 -1
- services/onesubscription/src/oci_cli_organization_subscription/__init__.py +1 -1
- services/onesubscription/src/oci_cli_organization_subscription/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_organization_subscription/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_organization_subscription/generated/organizationsubscription_cli.py +1 -1
- services/onesubscription/src/oci_cli_ratecard/__init__.py +1 -1
- services/onesubscription/src/oci_cli_ratecard/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_ratecard/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_ratecard/generated/ratecard_cli.py +1 -1
- services/onesubscription/src/oci_cli_subscribed_service/__init__.py +1 -1
- services/onesubscription/src/oci_cli_subscribed_service/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_subscribed_service/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_subscribed_service/generated/subscribedservice_cli.py +1 -1
- services/onesubscription/src/oci_cli_subscription/__init__.py +1 -1
- services/onesubscription/src/oci_cli_subscription/generated/__init__.py +1 -1
- services/onesubscription/src/oci_cli_subscription/generated/client_mappings.py +1 -1
- services/onesubscription/src/oci_cli_subscription/generated/subscription_cli.py +1 -1
- services/onesubscription/tests/__init__.py +1 -1
- services/ons/__init__.py +1 -1
- services/ons/src/__init__.py +1 -1
- services/ons/src/oci_cli_notification_control_plane/__init__.py +1 -1
- services/ons/src/oci_cli_notification_control_plane/generated/__init__.py +1 -1
- services/ons/src/oci_cli_notification_control_plane/generated/client_mappings.py +1 -1
- services/ons/src/oci_cli_notification_control_plane/generated/notificationcontrolplane_cli.py +1 -1
- services/ons/src/oci_cli_notification_data_plane/__init__.py +1 -1
- services/ons/src/oci_cli_notification_data_plane/generated/__init__.py +1 -1
- services/ons/src/oci_cli_notification_data_plane/generated/client_mappings.py +1 -1
- services/ons/src/oci_cli_notification_data_plane/generated/notificationdataplane_cli.py +1 -1
- services/ons/src/oci_cli_ons/__init__.py +1 -1
- services/ons/src/oci_cli_ons/generated/__init__.py +1 -1
- services/ons/src/oci_cli_ons/generated/ons_service_cli.py +1 -1
- services/ons/tests/__init__.py +1 -1
- services/opa/__init__.py +1 -1
- services/opa/src/__init__.py +1 -1
- services/opa/src/oci_cli_opa_instance/__init__.py +1 -1
- services/opa/src/oci_cli_opa_instance/generated/__init__.py +1 -1
- services/opa/src/oci_cli_opa_instance/generated/client_mappings.py +1 -1
- services/opa/src/oci_cli_opa_instance/generated/opainstance_cli.py +1 -1
- services/opa/tests/__init__.py +1 -1
- services/opensearch/__init__.py +1 -1
- services/opensearch/src/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch/generated/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch/generated/opensearch_service_cli.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster/generated/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster/generated/client_mappings.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster/generated/opensearchcluster_cli.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_backup/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_backup/generated/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_backup/generated/client_mappings.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_backup/generated/opensearchclusterbackup_cli.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_pipeline/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_pipeline/generated/__init__.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_pipeline/generated/client_mappings.py +1 -1
- services/opensearch/src/oci_cli_opensearch_cluster_pipeline/generated/opensearchclusterpipeline_cli.py +1 -1
- services/opensearch/tests/__init__.py +1 -1
- services/operator_access_control/__init__.py +1 -1
- services/operator_access_control/src/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_access_requests/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_access_requests/generated/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_access_requests/generated/accessrequests_cli.py +1 -1
- services/operator_access_control/src/oci_cli_access_requests/generated/client_mappings.py +1 -1
- services/operator_access_control/src/oci_cli_operator_access_control/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_access_control/generated/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_access_control/generated/opctl_service_cli.py +1 -1
- services/operator_access_control/src/oci_cli_operator_actions/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_actions/generated/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_actions/generated/client_mappings.py +1 -1
- services/operator_access_control/src/oci_cli_operator_actions/generated/operatoractions_cli.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control/generated/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control/generated/client_mappings.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control/generated/operatorcontrol_cli.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control_assignment/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control_assignment/generated/__init__.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control_assignment/generated/client_mappings.py +1 -1
- services/operator_access_control/src/oci_cli_operator_control_assignment/generated/operatorcontrolassignment_cli.py +1 -1
- services/operator_access_control/tests/__init__.py +1 -1
- services/opsi/__init__.py +1 -1
- services/opsi/src/__init__.py +1 -1
- services/opsi/src/oci_cli_operations_insights/__init__.py +1 -1
- services/opsi/src/oci_cli_operations_insights/generated/__init__.py +1 -1
- services/opsi/src/oci_cli_operations_insights/generated/client_mappings.py +1 -1
- services/opsi/src/oci_cli_operations_insights/generated/operationsinsights_cli.py +1 -1
- services/opsi/tests/__init__.py +1 -1
- services/optimizer/__init__.py +1 -1
- services/optimizer/src/__init__.py +1 -1
- services/optimizer/src/oci_cli_optimizer/__init__.py +1 -1
- services/optimizer/src/oci_cli_optimizer/generated/__init__.py +1 -1
- services/optimizer/src/oci_cli_optimizer/generated/client_mappings.py +1 -1
- services/optimizer/src/oci_cli_optimizer/generated/optimizer_cli.py +1 -1
- services/optimizer/tests/__init__.py +1 -1
- services/os_management_hub/__init__.py +1 -1
- services/os_management_hub/src/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_event/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_event/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_event/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_event/generated/event_cli.py +1 -1
- services/os_management_hub/src/oci_cli_lifecycle_environment/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_lifecycle_environment/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_lifecycle_environment/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_lifecycle_environment/generated/lifecycleenvironment_cli.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance/generated/managedinstance_cli.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance_group/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance_group/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance_group/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_managed_instance_group/generated/managedinstancegroup_cli.py +1 -1
- services/os_management_hub/src/oci_cli_management_station/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_management_station/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_management_station/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_management_station/generated/managementstation_cli.py +1 -1
- services/os_management_hub/src/oci_cli_onboarding/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_onboarding/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_onboarding/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_onboarding/generated/onboarding_cli.py +1 -1
- services/os_management_hub/src/oci_cli_os_management_hub/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_os_management_hub/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_os_management_hub/generated/os_management_hub_service_cli.py +1 -1
- services/os_management_hub/src/oci_cli_reporting_managed_instance/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_reporting_managed_instance/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_reporting_managed_instance/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_reporting_managed_instance/generated/reportingmanagedinstance_cli.py +1 -1
- services/os_management_hub/src/oci_cli_scheduled_job/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_scheduled_job/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_scheduled_job/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_scheduled_job/generated/scheduledjob_cli.py +1 -1
- services/os_management_hub/src/oci_cli_software_source/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_software_source/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_software_source/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_software_source/generated/softwaresource_cli.py +1 -1
- services/os_management_hub/src/oci_cli_work_request/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/os_management_hub/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/os_management_hub/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/os_management_hub/tests/__init__.py +1 -1
- services/osp_gateway/__init__.py +1 -1
- services/osp_gateway/src/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_address_rule_service/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_address_rule_service/generated/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_address_rule_service/generated/addressruleservice_cli.py +1 -1
- services/osp_gateway/src/oci_cli_address_rule_service/generated/client_mappings.py +1 -1
- services/osp_gateway/src/oci_cli_address_service/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_address_service/generated/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_address_service/generated/addressservice_cli.py +1 -1
- services/osp_gateway/src/oci_cli_address_service/generated/client_mappings.py +1 -1
- services/osp_gateway/src/oci_cli_invoice_service/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_invoice_service/generated/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_invoice_service/generated/client_mappings.py +1 -1
- services/osp_gateway/src/oci_cli_invoice_service/generated/invoiceservice_cli.py +1 -1
- services/osp_gateway/src/oci_cli_osp_gateway/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_osp_gateway/generated/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_osp_gateway/generated/osp_gateway_service_cli.py +1 -1
- services/osp_gateway/src/oci_cli_subscription_service/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_subscription_service/generated/__init__.py +1 -1
- services/osp_gateway/src/oci_cli_subscription_service/generated/client_mappings.py +1 -1
- services/osp_gateway/src/oci_cli_subscription_service/generated/subscriptionservice_cli.py +1 -1
- services/osp_gateway/tests/__init__.py +1 -1
- services/osub_billing_schedule/__init__.py +1 -1
- services/osub_billing_schedule/src/__init__.py +1 -1
- services/osub_billing_schedule/src/oci_cli_billing_schedule/__init__.py +1 -1
- services/osub_billing_schedule/src/oci_cli_billing_schedule/generated/__init__.py +1 -1
- services/osub_billing_schedule/src/oci_cli_billing_schedule/generated/billingschedule_cli.py +1 -1
- services/osub_billing_schedule/src/oci_cli_billing_schedule/generated/client_mappings.py +1 -1
- services/osub_billing_schedule/tests/__init__.py +1 -1
- services/osub_organization_subscription/__init__.py +1 -1
- services/osub_organization_subscription/src/__init__.py +1 -1
- services/osub_organization_subscription/src/oci_cli_organization_subscription/__init__.py +1 -1
- services/osub_organization_subscription/src/oci_cli_organization_subscription/generated/__init__.py +1 -1
- services/osub_organization_subscription/src/oci_cli_organization_subscription/generated/client_mappings.py +1 -1
- services/osub_organization_subscription/src/oci_cli_organization_subscription/generated/organizationsubscription_cli.py +1 -1
- services/osub_organization_subscription/tests/__init__.py +1 -1
- services/osub_subscription/__init__.py +1 -1
- services/osub_subscription/src/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_commitment/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_commitment/generated/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_commitment/generated/client_mappings.py +1 -1
- services/osub_subscription/src/oci_cli_commitment/generated/commitment_cli.py +1 -1
- services/osub_subscription/src/oci_cli_osub_subscription/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_osub_subscription/generated/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_osub_subscription/generated/osub_subscription_service_cli.py +1 -1
- services/osub_subscription/src/oci_cli_ratecard/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_ratecard/generated/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_ratecard/generated/client_mappings.py +1 -1
- services/osub_subscription/src/oci_cli_ratecard/generated/ratecard_cli.py +1 -1
- services/osub_subscription/src/oci_cli_subscription/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_subscription/generated/__init__.py +1 -1
- services/osub_subscription/src/oci_cli_subscription/generated/client_mappings.py +1 -1
- services/osub_subscription/src/oci_cli_subscription/generated/subscription_cli.py +1 -1
- services/osub_subscription/tests/__init__.py +1 -1
- services/osub_usage/__init__.py +1 -1
- services/osub_usage/src/__init__.py +1 -1
- services/osub_usage/src/oci_cli_computed_usage/__init__.py +1 -1
- services/osub_usage/src/oci_cli_computed_usage/generated/__init__.py +1 -1
- services/osub_usage/src/oci_cli_computed_usage/generated/client_mappings.py +1 -1
- services/osub_usage/src/oci_cli_computed_usage/generated/computedusage_cli.py +1 -1
- services/osub_usage/tests/__init__.py +1 -1
- services/psa/__init__.py +1 -1
- services/psa/src/__init__.py +1 -1
- services/psa/src/oci_cli_private_service_access/__init__.py +1 -1
- services/psa/src/oci_cli_private_service_access/generated/__init__.py +1 -1
- services/psa/src/oci_cli_private_service_access/generated/client_mappings.py +1 -1
- services/psa/src/oci_cli_private_service_access/generated/privateserviceaccess_cli.py +1 -1
- services/psa/tests/__init__.py +1 -1
- services/psql/__init__.py +1 -1
- services/psql/src/__init__.py +1 -1
- services/psql/src/oci_cli_postgresql/__init__.py +1 -1
- services/psql/src/oci_cli_postgresql/generated/__init__.py +1 -1
- services/psql/src/oci_cli_postgresql/generated/client_mappings.py +1 -1
- services/psql/src/oci_cli_postgresql/generated/postgresql_cli.py +1 -1
- services/psql/tests/__init__.py +1 -1
- services/queue/__init__.py +1 -1
- services/queue/src/__init__.py +1 -1
- services/queue/src/oci_cli_queue/__init__.py +1 -1
- services/queue/src/oci_cli_queue/generated/__init__.py +1 -1
- services/queue/src/oci_cli_queue/generated/client_mappings.py +1 -1
- services/queue/src/oci_cli_queue/generated/queue_cli.py +1 -1
- services/queue/src/oci_cli_queue/generated/queue_service_cli.py +1 -1
- services/queue/src/oci_cli_queue_admin/__init__.py +1 -1
- services/queue/src/oci_cli_queue_admin/generated/__init__.py +1 -1
- services/queue/src/oci_cli_queue_admin/generated/client_mappings.py +1 -1
- services/queue/src/oci_cli_queue_admin/generated/queueadmin_cli.py +1 -1
- services/queue/tests/__init__.py +1 -1
- services/recovery/__init__.py +1 -1
- services/recovery/src/__init__.py +1 -1
- services/recovery/src/oci_cli_database_recovery/__init__.py +1 -1
- services/recovery/src/oci_cli_database_recovery/generated/__init__.py +1 -1
- services/recovery/src/oci_cli_database_recovery/generated/client_mappings.py +1 -1
- services/recovery/src/oci_cli_database_recovery/generated/databaserecovery_cli.py +1 -1
- services/recovery/tests/__init__.py +1 -1
- services/redis/__init__.py +1 -1
- services/redis/src/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_config_set/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_config_set/generated/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_config_set/generated/client_mappings.py +1 -1
- services/redis/src/oci_cli_oci_cache_config_set/generated/ocicacheconfigset_cli.py +1 -1
- services/redis/src/oci_cli_oci_cache_default_config_set/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_default_config_set/generated/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_default_config_set/generated/client_mappings.py +1 -1
- services/redis/src/oci_cli_oci_cache_default_config_set/generated/ocicachedefaultconfigset_cli.py +1 -1
- services/redis/src/oci_cli_oci_cache_user/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_user/generated/__init__.py +1 -1
- services/redis/src/oci_cli_oci_cache_user/generated/client_mappings.py +1 -1
- services/redis/src/oci_cli_oci_cache_user/generated/ocicacheuser_cli.py +1 -1
- services/redis/src/oci_cli_redis/__init__.py +1 -1
- services/redis/src/oci_cli_redis/generated/__init__.py +1 -1
- services/redis/src/oci_cli_redis/generated/redis_service_cli.py +1 -1
- services/redis/src/oci_cli_redis_cluster/__init__.py +1 -1
- services/redis/src/oci_cli_redis_cluster/generated/__init__.py +1 -1
- services/redis/src/oci_cli_redis_cluster/generated/client_mappings.py +1 -1
- services/redis/src/oci_cli_redis_cluster/generated/rediscluster_cli.py +1 -1
- services/redis/src/oci_cli_redis_identity/__init__.py +1 -1
- services/redis/src/oci_cli_redis_identity/generated/__init__.py +1 -1
- services/redis/src/oci_cli_redis_identity/generated/client_mappings.py +1 -1
- services/redis/src/oci_cli_redis_identity/generated/redisidentity_cli.py +1 -1
- services/redis/tests/__init__.py +1 -1
- services/resource_analytics/__init__.py +1 -1
- services/resource_analytics/src/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_monitored_region/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_monitored_region/generated/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_monitored_region/generated/client_mappings.py +1 -1
- services/resource_analytics/src/oci_cli_monitored_region/generated/monitoredregion_cli.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics/generated/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics/generated/resource_analytics_service_cli.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics_instance/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics_instance/generated/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics_instance/generated/client_mappings.py +1 -1
- services/resource_analytics/src/oci_cli_resource_analytics_instance/generated/resourceanalyticsinstance_cli.py +1 -1
- services/resource_analytics/src/oci_cli_tenancy_attachment/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_tenancy_attachment/generated/__init__.py +1 -1
- services/resource_analytics/src/oci_cli_tenancy_attachment/generated/client_mappings.py +1 -1
- services/resource_analytics/src/oci_cli_tenancy_attachment/generated/tenancyattachment_cli.py +1 -1
- services/resource_analytics/tests/__init__.py +1 -1
- services/resource_manager/__init__.py +1 -1
- services/resource_manager/src/__init__.py +1 -1
- services/resource_manager/src/oci_cli_resource_manager/__init__.py +1 -1
- services/resource_manager/src/oci_cli_resource_manager/generated/__init__.py +1 -1
- services/resource_manager/src/oci_cli_resource_manager/generated/client_mappings.py +1 -1
- services/resource_manager/src/oci_cli_resource_manager/generated/resourcemanager_cli.py +1 -1
- services/resource_manager/tests/__init__.py +1 -1
- services/resource_scheduler/__init__.py +1 -1
- services/resource_scheduler/src/__init__.py +1 -1
- services/resource_scheduler/src/oci_cli_schedule/__init__.py +1 -1
- services/resource_scheduler/src/oci_cli_schedule/generated/__init__.py +1 -1
- services/resource_scheduler/src/oci_cli_schedule/generated/client_mappings.py +1 -1
- services/resource_scheduler/src/oci_cli_schedule/generated/schedule_cli.py +1 -1
- services/resource_scheduler/tests/__init__.py +1 -1
- services/resource_search/__init__.py +1 -1
- services/resource_search/src/__init__.py +1 -1
- services/resource_search/src/oci_cli_resource_search/__init__.py +1 -1
- services/resource_search/src/oci_cli_resource_search/generated/__init__.py +1 -1
- services/resource_search/src/oci_cli_resource_search/generated/client_mappings.py +1 -1
- services/resource_search/src/oci_cli_resource_search/generated/resourcesearch_cli.py +1 -1
- services/resource_search/tests/__init__.py +1 -1
- services/rover/__init__.py +1 -1
- services/rover/src/__init__.py +1 -1
- services/rover/src/oci_cli_rover/__init__.py +1 -1
- services/rover/src/oci_cli_rover/generated/__init__.py +1 -1
- services/rover/src/oci_cli_rover/generated/rover_service_cli.py +1 -1
- services/rover/src/oci_cli_rover_bundle/__init__.py +1 -1
- services/rover/src/oci_cli_rover_bundle/generated/__init__.py +1 -1
- services/rover/src/oci_cli_rover_bundle/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_rover_bundle/generated/roverbundle_cli.py +1 -1
- services/rover/src/oci_cli_rover_cluster/__init__.py +1 -1
- services/rover/src/oci_cli_rover_cluster/generated/__init__.py +1 -1
- services/rover/src/oci_cli_rover_cluster/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_rover_cluster/generated/rovercluster_cli.py +1 -1
- services/rover/src/oci_cli_rover_entitlement/__init__.py +1 -1
- services/rover/src/oci_cli_rover_entitlement/generated/__init__.py +1 -1
- services/rover/src/oci_cli_rover_entitlement/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_rover_entitlement/generated/roverentitlement_cli.py +1 -1
- services/rover/src/oci_cli_rover_node/__init__.py +1 -1
- services/rover/src/oci_cli_rover_node/generated/__init__.py +1 -1
- services/rover/src/oci_cli_rover_node/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_rover_node/generated/rovernode_cli.py +1 -1
- services/rover/src/oci_cli_shape/__init__.py +1 -1
- services/rover/src/oci_cli_shape/generated/__init__.py +1 -1
- services/rover/src/oci_cli_shape/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_shape/generated/shape_cli.py +1 -1
- services/rover/src/oci_cli_work_requests/__init__.py +1 -1
- services/rover/src/oci_cli_work_requests/generated/__init__.py +1 -1
- services/rover/src/oci_cli_work_requests/generated/client_mappings.py +1 -1
- services/rover/src/oci_cli_work_requests/generated/workrequests_cli.py +1 -1
- services/rover/tests/__init__.py +1 -1
- services/sch/__init__.py +1 -1
- services/sch/src/__init__.py +1 -1
- services/sch/src/oci_cli_connector_plugins/__init__.py +1 -1
- services/sch/src/oci_cli_connector_plugins/generated/__init__.py +1 -1
- services/sch/src/oci_cli_connector_plugins/generated/client_mappings.py +1 -1
- services/sch/src/oci_cli_connector_plugins/generated/connectorplugins_cli.py +1 -1
- services/sch/src/oci_cli_sch/__init__.py +1 -1
- services/sch/src/oci_cli_sch/generated/__init__.py +1 -1
- services/sch/src/oci_cli_sch/generated/sch_service_cli.py +1 -1
- services/sch/src/oci_cli_service_connector/__init__.py +1 -1
- services/sch/src/oci_cli_service_connector/generated/__init__.py +1 -1
- services/sch/src/oci_cli_service_connector/generated/client_mappings.py +1 -1
- services/sch/src/oci_cli_service_connector/generated/serviceconnector_cli.py +1 -1
- services/sch/tests/__init__.py +1 -1
- services/secrets/__init__.py +1 -1
- services/secrets/src/__init__.py +1 -1
- services/secrets/src/oci_cli_secrets/__init__.py +1 -1
- services/secrets/src/oci_cli_secrets/generated/__init__.py +1 -1
- services/secrets/src/oci_cli_secrets/generated/client_mappings.py +1 -1
- services/secrets/src/oci_cli_secrets/generated/secrets_cli.py +1 -1
- services/secrets/tests/__init__.py +1 -1
- services/security_attribute/__init__.py +1 -1
- services/security_attribute/src/__init__.py +1 -1
- services/security_attribute/src/oci_cli_security_attribute/__init__.py +1 -1
- services/security_attribute/src/oci_cli_security_attribute/generated/__init__.py +1 -1
- services/security_attribute/src/oci_cli_security_attribute/generated/client_mappings.py +1 -1
- services/security_attribute/src/oci_cli_security_attribute/generated/securityattribute_cli.py +1 -1
- services/security_attribute/tests/__init__.py +1 -1
- services/service_catalog/__init__.py +1 -1
- services/service_catalog/src/__init__.py +1 -1
- services/service_catalog/src/oci_cli_service_catalog/__init__.py +1 -1
- services/service_catalog/src/oci_cli_service_catalog/generated/__init__.py +1 -1
- services/service_catalog/src/oci_cli_service_catalog/generated/client_mappings.py +1 -1
- services/service_catalog/src/oci_cli_service_catalog/generated/servicecatalog_cli.py +1 -1
- services/service_catalog/tests/__init__.py +1 -1
- services/service_manager_proxy/__init__.py +1 -1
- services/service_manager_proxy/src/__init__.py +1 -1
- services/service_manager_proxy/src/oci_cli_service_manager_proxy/__init__.py +1 -1
- services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/__init__.py +1 -1
- services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/client_mappings.py +1 -1
- services/service_manager_proxy/src/oci_cli_service_manager_proxy/generated/servicemanagerproxy_cli.py +1 -1
- services/service_manager_proxy/tests/__init__.py +1 -1
- services/stack_monitoring/__init__.py +1 -1
- services/stack_monitoring/src/__init__.py +1 -1
- services/stack_monitoring/src/oci_cli_stack_monitoring/__init__.py +1 -1
- services/stack_monitoring/src/oci_cli_stack_monitoring/generated/__init__.py +1 -1
- services/stack_monitoring/src/oci_cli_stack_monitoring/generated/client_mappings.py +1 -1
- services/stack_monitoring/src/oci_cli_stack_monitoring/generated/stackmonitoring_cli.py +1 -1
- services/stack_monitoring/tests/__init__.py +1 -1
- services/streaming/__init__.py +1 -1
- services/streaming/src/__init__.py +1 -1
- services/streaming/src/oci_cli_stream/__init__.py +1 -1
- services/streaming/src/oci_cli_stream/generated/__init__.py +1 -1
- services/streaming/src/oci_cli_stream/generated/client_mappings.py +1 -1
- services/streaming/src/oci_cli_stream/generated/stream_cli.py +1 -1
- services/streaming/src/oci_cli_stream_admin/__init__.py +1 -1
- services/streaming/src/oci_cli_stream_admin/generated/__init__.py +1 -1
- services/streaming/src/oci_cli_stream_admin/generated/client_mappings.py +1 -1
- services/streaming/src/oci_cli_stream_admin/generated/streamadmin_cli.py +1 -1
- services/streaming/src/oci_cli_streaming/__init__.py +1 -1
- services/streaming/src/oci_cli_streaming/generated/__init__.py +1 -1
- services/streaming/src/oci_cli_streaming/generated/streaming_service_cli.py +1 -1
- services/streaming/tests/__init__.py +1 -1
- services/tenant_manager_control_plane/__init__.py +1 -1
- services/tenant_manager_control_plane/src/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain/generated/domain_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain_governance/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_domain_governance/generated/domaingovernance_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_governance/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_governance/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_governance/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_governance/generated/governance_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_link/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_link/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_link/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_link/generated/link_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_orders/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_orders/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_orders/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_orders/generated/orders_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_organization/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_organization/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_organization/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_organization/generated/organization_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_recipient_invitation/generated/recipientinvitation_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_sender_invitation/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_sender_invitation/generated/senderinvitation_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_subscription/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_subscription/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_subscription/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_subscription/generated/subscription_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_tenant_manager_control_plane/generated/organizations_service_cli.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_work_request/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/tenant_manager_control_plane/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/tenant_manager_control_plane/tests/__init__.py +1 -1
- services/threat_intelligence/__init__.py +1 -1
- services/threat_intelligence/src/__init__.py +1 -1
- services/threat_intelligence/src/oci_cli_threatintel/__init__.py +1 -1
- services/threat_intelligence/src/oci_cli_threatintel/generated/__init__.py +1 -1
- services/threat_intelligence/src/oci_cli_threatintel/generated/client_mappings.py +1 -1
- services/threat_intelligence/src/oci_cli_threatintel/generated/threatintel_cli.py +1 -1
- services/threat_intelligence/tests/__init__.py +1 -1
- services/usage/__init__.py +1 -1
- services/usage/src/__init__.py +1 -1
- services/usage/src/oci_cli_resources/__init__.py +1 -1
- services/usage/src/oci_cli_resources/generated/__init__.py +1 -1
- services/usage/src/oci_cli_resources/generated/client_mappings.py +1 -1
- services/usage/src/oci_cli_resources/generated/resources_cli.py +1 -1
- services/usage/src/oci_cli_rewards/__init__.py +1 -1
- services/usage/src/oci_cli_rewards/generated/__init__.py +1 -1
- services/usage/src/oci_cli_rewards/generated/client_mappings.py +1 -1
- services/usage/src/oci_cli_rewards/generated/rewards_cli.py +1 -1
- services/usage/src/oci_cli_usage/__init__.py +1 -1
- services/usage/src/oci_cli_usage/generated/__init__.py +1 -1
- services/usage/src/oci_cli_usage/generated/usage_service_cli.py +1 -1
- services/usage/src/oci_cli_usagelimits/__init__.py +1 -1
- services/usage/src/oci_cli_usagelimits/generated/__init__.py +1 -1
- services/usage/src/oci_cli_usagelimits/generated/client_mappings.py +1 -1
- services/usage/src/oci_cli_usagelimits/generated/usagelimits_cli.py +1 -1
- services/usage/tests/__init__.py +1 -1
- services/usage_api/__init__.py +1 -1
- services/usage_api/src/__init__.py +1 -1
- services/usage_api/src/oci_cli_usageapi/__init__.py +1 -1
- services/usage_api/src/oci_cli_usageapi/generated/__init__.py +1 -1
- services/usage_api/src/oci_cli_usageapi/generated/client_mappings.py +1 -1
- services/usage_api/src/oci_cli_usageapi/generated/usageapi_cli.py +1 -1
- services/usage_api/tests/__init__.py +1 -1
- services/vault/__init__.py +1 -1
- services/vault/src/__init__.py +1 -1
- services/vault/src/oci_cli_vaults/__init__.py +1 -1
- services/vault/src/oci_cli_vaults/generated/__init__.py +1 -1
- services/vault/src/oci_cli_vaults/generated/client_mappings.py +1 -1
- services/vault/src/oci_cli_vaults/generated/vaults_cli.py +1 -1
- services/vault/tests/__init__.py +1 -1
- services/vbs_inst/__init__.py +1 -1
- services/vbs_inst/src/__init__.py +1 -1
- services/vbs_inst/src/oci_cli_vbs_instance/__init__.py +1 -1
- services/vbs_inst/src/oci_cli_vbs_instance/generated/__init__.py +1 -1
- services/vbs_inst/src/oci_cli_vbs_instance/generated/client_mappings.py +1 -1
- services/vbs_inst/src/oci_cli_vbs_instance/generated/vbsinstance_cli.py +1 -1
- services/vbs_inst/tests/__init__.py +1 -1
- services/visual_builder/__init__.py +1 -1
- services/visual_builder/src/__init__.py +1 -1
- services/visual_builder/src/oci_cli_vb_instance/__init__.py +1 -1
- services/visual_builder/src/oci_cli_vb_instance/generated/__init__.py +1 -1
- services/visual_builder/src/oci_cli_vb_instance/generated/client_mappings.py +1 -1
- services/visual_builder/src/oci_cli_vb_instance/generated/vbinstance_cli.py +1 -1
- services/visual_builder/tests/__init__.py +1 -1
- services/vn_monitoring/__init__.py +1 -1
- services/vn_monitoring/src/__init__.py +1 -1
- services/vn_monitoring/src/oci_cli_vn_monitoring/__init__.py +1 -1
- services/vn_monitoring/src/oci_cli_vn_monitoring/generated/__init__.py +1 -1
- services/vn_monitoring/src/oci_cli_vn_monitoring/generated/client_mappings.py +1 -1
- services/vn_monitoring/src/oci_cli_vn_monitoring/generated/vnmonitoring_cli.py +1 -1
- services/vn_monitoring/tests/__init__.py +1 -1
- services/vulnerability_scanning/__init__.py +1 -1
- services/vulnerability_scanning/src/__init__.py +1 -1
- services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/__init__.py +1 -1
- services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/__init__.py +1 -1
- services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/client_mappings.py +1 -1
- services/vulnerability_scanning/src/oci_cli_vulnerability_scanning/generated/vulnerabilityscanning_cli.py +1 -1
- services/vulnerability_scanning/tests/__init__.py +1 -1
- services/waa/__init__.py +1 -1
- services/waa/src/__init__.py +1 -1
- services/waa/src/oci_cli_waa/__init__.py +1 -1
- services/waa/src/oci_cli_waa/generated/__init__.py +1 -1
- services/waa/src/oci_cli_waa/generated/client_mappings.py +1 -1
- services/waa/src/oci_cli_waa/generated/waa_cli.py +1 -1
- services/waa/src/oci_cli_waa/generated/waa_service_cli.py +1 -1
- services/waa/src/oci_cli_work_request/__init__.py +1 -1
- services/waa/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/waa/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/waa/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/waa/tests/__init__.py +1 -1
- services/waas/__init__.py +1 -1
- services/waas/src/__init__.py +1 -1
- services/waas/src/oci_cli_redirect/__init__.py +1 -1
- services/waas/src/oci_cli_redirect/generated/__init__.py +1 -1
- services/waas/src/oci_cli_redirect/generated/client_mappings.py +1 -1
- services/waas/src/oci_cli_redirect/generated/redirect_cli.py +1 -1
- services/waas/src/oci_cli_waas/__init__.py +1 -1
- services/waas/src/oci_cli_waas/generated/__init__.py +1 -1
- services/waas/src/oci_cli_waas/generated/client_mappings.py +1 -1
- services/waas/src/oci_cli_waas/generated/waas_cli.py +1 -1
- services/waas/src/oci_cli_waas/generated/waas_service_cli.py +1 -1
- services/waas/tests/__init__.py +1 -1
- services/waf/__init__.py +1 -1
- services/waf/src/__init__.py +1 -1
- services/waf/src/oci_cli_waf/__init__.py +1 -1
- services/waf/src/oci_cli_waf/generated/__init__.py +1 -1
- services/waf/src/oci_cli_waf/generated/client_mappings.py +1 -1
- services/waf/src/oci_cli_waf/generated/waf_cli.py +1 -1
- services/waf/tests/__init__.py +1 -1
- services/wlms/__init__.py +1 -1
- services/wlms/src/__init__.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service/__init__.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service/generated/__init__.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service/generated/client_mappings.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service/generated/weblogicmanagementservice_cli.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service_configuration/__init__.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service_configuration/generated/__init__.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service_configuration/generated/client_mappings.py +1 -1
- services/wlms/src/oci_cli_weblogic_management_service_configuration/generated/weblogicmanagementserviceconfiguration_cli.py +1 -1
- services/wlms/src/oci_cli_wlms/__init__.py +1 -1
- services/wlms/src/oci_cli_wlms/generated/__init__.py +1 -1
- services/wlms/src/oci_cli_wlms/generated/wlms_service_cli.py +1 -1
- services/wlms/tests/__init__.py +1 -1
- services/work_requests/__init__.py +1 -1
- services/work_requests/src/__init__.py +1 -1
- services/work_requests/src/oci_cli_work_request/__init__.py +1 -1
- services/work_requests/src/oci_cli_work_request/generated/__init__.py +1 -1
- services/work_requests/src/oci_cli_work_request/generated/client_mappings.py +1 -1
- services/work_requests/src/oci_cli_work_request/generated/workrequest_cli.py +1 -1
- services/work_requests/tests/__init__.py +1 -1
- services/zpr/__init__.py +1 -1
- services/zpr/src/__init__.py +1 -1
- services/zpr/src/oci_cli_zpr/__init__.py +1 -1
- services/zpr/src/oci_cli_zpr/generated/__init__.py +1 -1
- services/zpr/src/oci_cli_zpr/generated/client_mappings.py +1 -1
- services/zpr/src/oci_cli_zpr/generated/zpr_cli.py +1 -1
- services/zpr/tests/__init__.py +1 -1
- oci_cli/help_text_producer/data_files/text/cmdref/devops/pull-request/get-pull-request-change-summary-metrics.txt +0 -107
- oci_cli/help_text_producer/data_files/text/cmdref/devops/pull-request/list-pull-request-commits.txt +0 -126
- oci_cli/help_text_producer/data_files/text/cmdref/devops/pull-request/list-pull-request-file-changes.txt +0 -130
- /oci_cli/help_text_producer/data_files/text/cmdref/budgets/{alert-rule.txt → budget/alert-rule.txt} +0 -0
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/WHEEL +0 -0
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/entry_points.txt +0 -0
- {oci_cli-3.71.4.dist-info → oci_cli-3.72.0.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
-
# Copyright (c) 2016,
|
|
2
|
+
# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
3
3
|
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
4
4
|
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918
|
|
5
5
|
|
|
@@ -5605,6 +5605,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
5605
5605
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
5606
5606
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
5607
5607
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
5608
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
5608
5609
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
5609
5610
|
|
|
5610
5611
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -5626,12 +5627,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
5626
5627
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
5627
5628
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
5628
5629
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
5629
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
5630
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
5630
5631
|
@cli_util.help_option
|
|
5631
5632
|
@click.pass_context
|
|
5632
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
5633
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
5633
5634
|
@cli_util.wrap_exceptions
|
|
5634
|
-
def create_autonomous_database(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, source, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
5635
|
+
def create_autonomous_database(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, source, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
5635
5636
|
|
|
5636
5637
|
kwargs = {}
|
|
5637
5638
|
if opc_dry_run is not None:
|
|
@@ -5779,6 +5780,9 @@ def create_autonomous_database(ctx, from_json, wait_for_state, max_wait_seconds,
|
|
|
5779
5780
|
if autonomous_maintenance_schedule_type is not None:
|
|
5780
5781
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
5781
5782
|
|
|
5783
|
+
if autonomous_database_maintenance_window is not None:
|
|
5784
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
5785
|
+
|
|
5782
5786
|
if scheduled_operations is not None:
|
|
5783
5787
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
5784
5788
|
|
|
@@ -5931,6 +5935,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
5931
5935
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
5932
5936
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
5933
5937
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
5938
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
5934
5939
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
5935
5940
|
|
|
5936
5941
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -5952,12 +5957,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
5952
5957
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
5953
5958
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
5954
5959
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
5955
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
5960
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
5956
5961
|
@cli_util.help_option
|
|
5957
5962
|
@click.pass_context
|
|
5958
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
5963
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
5959
5964
|
@cli_util.wrap_exceptions
|
|
5960
|
-
def create_autonomous_database_undelete_autonomous_database_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
5965
|
+
def create_autonomous_database_undelete_autonomous_database_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
5961
5966
|
|
|
5962
5967
|
kwargs = {}
|
|
5963
5968
|
if opc_dry_run is not None:
|
|
@@ -6103,6 +6108,9 @@ def create_autonomous_database_undelete_autonomous_database_details(ctx, from_js
|
|
|
6103
6108
|
if autonomous_maintenance_schedule_type is not None:
|
|
6104
6109
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
6105
6110
|
|
|
6111
|
+
if autonomous_database_maintenance_window is not None:
|
|
6112
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
6113
|
+
|
|
6106
6114
|
if scheduled_operations is not None:
|
|
6107
6115
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
6108
6116
|
|
|
@@ -6258,6 +6266,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
6258
6266
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
6259
6267
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6260
6268
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
6269
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6261
6270
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
6262
6271
|
|
|
6263
6272
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -6279,12 +6288,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
6279
6288
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
6280
6289
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
6281
6290
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
6282
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
6291
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
6283
6292
|
@cli_util.help_option
|
|
6284
6293
|
@click.pass_context
|
|
6285
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6294
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6286
6295
|
@cli_util.wrap_exceptions
|
|
6287
|
-
def create_autonomous_database_create_autonomous_database_clone_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
6296
|
+
def create_autonomous_database_create_autonomous_database_clone_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
6288
6297
|
|
|
6289
6298
|
kwargs = {}
|
|
6290
6299
|
if opc_dry_run is not None:
|
|
@@ -6431,6 +6440,9 @@ def create_autonomous_database_create_autonomous_database_clone_details(ctx, fro
|
|
|
6431
6440
|
if autonomous_maintenance_schedule_type is not None:
|
|
6432
6441
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
6433
6442
|
|
|
6443
|
+
if autonomous_database_maintenance_window is not None:
|
|
6444
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
6445
|
+
|
|
6434
6446
|
if scheduled_operations is not None:
|
|
6435
6447
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
6436
6448
|
|
|
@@ -6585,6 +6597,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
6585
6597
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
6586
6598
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6587
6599
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
6600
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6588
6601
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
6589
6602
|
|
|
6590
6603
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -6614,12 +6627,12 @@ This cannot be updated in parallel with any of the following: cpuCoreCount, comp
|
|
|
6614
6627
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
6615
6628
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
6616
6629
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
6617
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
6630
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
6618
6631
|
@cli_util.help_option
|
|
6619
6632
|
@click.pass_context
|
|
6620
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6633
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6621
6634
|
@cli_util.wrap_exceptions
|
|
6622
|
-
def create_autonomous_database_create_refreshable_autonomous_database_clone_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, refreshable_mode, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, open_mode, clone_type, opc_dry_run):
|
|
6635
|
+
def create_autonomous_database_create_refreshable_autonomous_database_clone_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, refreshable_mode, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, open_mode, clone_type, opc_dry_run):
|
|
6623
6636
|
|
|
6624
6637
|
kwargs = {}
|
|
6625
6638
|
if opc_dry_run is not None:
|
|
@@ -6765,6 +6778,9 @@ def create_autonomous_database_create_refreshable_autonomous_database_clone_deta
|
|
|
6765
6778
|
if autonomous_maintenance_schedule_type is not None:
|
|
6766
6779
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
6767
6780
|
|
|
6781
|
+
if autonomous_database_maintenance_window is not None:
|
|
6782
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
6783
|
+
|
|
6768
6784
|
if scheduled_operations is not None:
|
|
6769
6785
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
6770
6786
|
|
|
@@ -6938,6 +6954,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
6938
6954
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
6939
6955
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6940
6956
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
6957
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
6941
6958
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
6942
6959
|
|
|
6943
6960
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -6960,12 +6977,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
6960
6977
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
6961
6978
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
6962
6979
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
6963
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}})
|
|
6980
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}})
|
|
6964
6981
|
@cli_util.help_option
|
|
6965
6982
|
@click.pass_context
|
|
6966
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6983
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
6967
6984
|
@cli_util.wrap_exceptions
|
|
6968
|
-
def create_autonomous_database_create_autonomous_database_from_backup_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, autonomous_database_backup_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, clone_table_space_list, opc_dry_run):
|
|
6985
|
+
def create_autonomous_database_create_autonomous_database_from_backup_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, autonomous_database_backup_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, clone_table_space_list, opc_dry_run):
|
|
6969
6986
|
|
|
6970
6987
|
kwargs = {}
|
|
6971
6988
|
if opc_dry_run is not None:
|
|
@@ -7112,6 +7129,9 @@ def create_autonomous_database_create_autonomous_database_from_backup_details(ct
|
|
|
7112
7129
|
if autonomous_maintenance_schedule_type is not None:
|
|
7113
7130
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
7114
7131
|
|
|
7132
|
+
if autonomous_database_maintenance_window is not None:
|
|
7133
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
7134
|
+
|
|
7115
7135
|
if scheduled_operations is not None:
|
|
7116
7136
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
7117
7137
|
|
|
@@ -7270,6 +7290,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
7270
7290
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
7271
7291
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7272
7292
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
7293
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7273
7294
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
7274
7295
|
|
|
7275
7296
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -7292,12 +7313,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
7292
7313
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
7293
7314
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
7294
7315
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
7295
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
7316
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
7296
7317
|
@cli_util.help_option
|
|
7297
7318
|
@click.pass_context
|
|
7298
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7319
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7299
7320
|
@cli_util.wrap_exceptions
|
|
7300
|
-
def create_autonomous_database_create_cross_region_disaster_recovery_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, remote_disaster_recovery_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, is_replicate_automatic_backups, opc_dry_run):
|
|
7321
|
+
def create_autonomous_database_create_cross_region_disaster_recovery_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, remote_disaster_recovery_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, is_replicate_automatic_backups, opc_dry_run):
|
|
7301
7322
|
|
|
7302
7323
|
kwargs = {}
|
|
7303
7324
|
if opc_dry_run is not None:
|
|
@@ -7444,6 +7465,9 @@ def create_autonomous_database_create_cross_region_disaster_recovery_details(ctx
|
|
|
7444
7465
|
if autonomous_maintenance_schedule_type is not None:
|
|
7445
7466
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
7446
7467
|
|
|
7468
|
+
if autonomous_database_maintenance_window is not None:
|
|
7469
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
7470
|
+
|
|
7447
7471
|
if scheduled_operations is not None:
|
|
7448
7472
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
7449
7473
|
|
|
@@ -7602,6 +7626,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
7602
7626
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
7603
7627
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7604
7628
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
7629
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7605
7630
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
7606
7631
|
|
|
7607
7632
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -7626,12 +7651,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
7626
7651
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
7627
7652
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
7628
7653
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
7629
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}})
|
|
7654
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}})
|
|
7630
7655
|
@cli_util.help_option
|
|
7631
7656
|
@click.pass_context
|
|
7632
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7657
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'clone-table-space-list': {'module': 'database', 'class': 'list[integer]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7633
7658
|
@cli_util.wrap_exceptions
|
|
7634
|
-
def create_autonomous_database_create_autonomous_database_from_backup_timestamp_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, autonomous_database_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, timestamp, use_latest_available_backup_time_stamp, clone_table_space_list, opc_dry_run):
|
|
7659
|
+
def create_autonomous_database_create_autonomous_database_from_backup_timestamp_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, autonomous_database_id, clone_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, timestamp, use_latest_available_backup_time_stamp, clone_table_space_list, opc_dry_run):
|
|
7635
7660
|
|
|
7636
7661
|
kwargs = {}
|
|
7637
7662
|
if opc_dry_run is not None:
|
|
@@ -7778,6 +7803,9 @@ def create_autonomous_database_create_autonomous_database_from_backup_timestamp_
|
|
|
7778
7803
|
if autonomous_maintenance_schedule_type is not None:
|
|
7779
7804
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
7780
7805
|
|
|
7806
|
+
if autonomous_database_maintenance_window is not None:
|
|
7807
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
7808
|
+
|
|
7781
7809
|
if scheduled_operations is not None:
|
|
7782
7810
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
7783
7811
|
|
|
@@ -7942,6 +7970,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
7942
7970
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
7943
7971
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7944
7972
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
7973
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
7945
7974
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
7946
7975
|
|
|
7947
7976
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -7964,12 +7993,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
7964
7993
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
7965
7994
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
7966
7995
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
7967
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
7996
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
7968
7997
|
@cli_util.help_option
|
|
7969
7998
|
@click.pass_context
|
|
7970
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7999
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
7971
8000
|
@cli_util.wrap_exceptions
|
|
7972
|
-
def create_autonomous_database_create_cross_tenancy_disaster_recovery_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, disaster_recovery_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, is_replicate_automatic_backups, opc_dry_run):
|
|
8001
|
+
def create_autonomous_database_create_cross_tenancy_disaster_recovery_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, disaster_recovery_type, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, is_replicate_automatic_backups, opc_dry_run):
|
|
7973
8002
|
|
|
7974
8003
|
kwargs = {}
|
|
7975
8004
|
if opc_dry_run is not None:
|
|
@@ -8116,6 +8145,9 @@ def create_autonomous_database_create_cross_tenancy_disaster_recovery_details(ct
|
|
|
8116
8145
|
if autonomous_maintenance_schedule_type is not None:
|
|
8117
8146
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
8118
8147
|
|
|
8148
|
+
if autonomous_database_maintenance_window is not None:
|
|
8149
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
8150
|
+
|
|
8119
8151
|
if scheduled_operations is not None:
|
|
8120
8152
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
8121
8153
|
|
|
@@ -8273,6 +8305,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
8273
8305
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
8274
8306
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8275
8307
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
8308
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8276
8309
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
8277
8310
|
|
|
8278
8311
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -8294,12 +8327,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
8294
8327
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
8295
8328
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
8296
8329
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
8297
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8330
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8298
8331
|
@cli_util.help_option
|
|
8299
8332
|
@click.pass_context
|
|
8300
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8333
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8301
8334
|
@cli_util.wrap_exceptions
|
|
8302
|
-
def create_autonomous_database_create_cross_region_autonomous_database_data_guard_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
8335
|
+
def create_autonomous_database_create_cross_region_autonomous_database_data_guard_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, source_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
8303
8336
|
|
|
8304
8337
|
kwargs = {}
|
|
8305
8338
|
if opc_dry_run is not None:
|
|
@@ -8445,6 +8478,9 @@ def create_autonomous_database_create_cross_region_autonomous_database_data_guar
|
|
|
8445
8478
|
if autonomous_maintenance_schedule_type is not None:
|
|
8446
8479
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
8447
8480
|
|
|
8481
|
+
if autonomous_database_maintenance_window is not None:
|
|
8482
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
8483
|
+
|
|
8448
8484
|
if scheduled_operations is not None:
|
|
8449
8485
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
8450
8486
|
|
|
@@ -8598,6 +8634,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
8598
8634
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
8599
8635
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8600
8636
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
8637
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8601
8638
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
8602
8639
|
|
|
8603
8640
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -8619,12 +8656,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
8619
8656
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
8620
8657
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
8621
8658
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
8622
|
-
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8659
|
+
@json_skeleton_utils.get_cli_json_input_option({'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8623
8660
|
@cli_util.help_option
|
|
8624
8661
|
@click.pass_context
|
|
8625
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8662
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8626
8663
|
@cli_util.wrap_exceptions
|
|
8627
|
-
def create_autonomous_database_create_autonomous_database_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
8664
|
+
def create_autonomous_database_create_autonomous_database_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, encryption_key, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
8628
8665
|
|
|
8629
8666
|
kwargs = {}
|
|
8630
8667
|
if opc_dry_run is not None:
|
|
@@ -8769,6 +8806,9 @@ def create_autonomous_database_create_autonomous_database_details(ctx, from_json
|
|
|
8769
8806
|
if autonomous_maintenance_schedule_type is not None:
|
|
8770
8807
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
8771
8808
|
|
|
8809
|
+
if autonomous_database_maintenance_window is not None:
|
|
8810
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
8811
|
+
|
|
8772
8812
|
if scheduled_operations is not None:
|
|
8773
8813
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
8774
8814
|
|
|
@@ -8925,6 +8965,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
8925
8965
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
8926
8966
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8927
8967
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
8968
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
8928
8969
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
8929
8970
|
|
|
8930
8971
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -8947,12 +8988,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
8947
8988
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
8948
8989
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
8949
8990
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
8950
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8991
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
8951
8992
|
@cli_util.help_option
|
|
8952
8993
|
@click.pass_context
|
|
8953
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8994
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
8954
8995
|
@cli_util.wrap_exceptions
|
|
8955
|
-
def create_autonomous_database_okv_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_okv_uri, encryption_key_okv_kms_key, encryption_key_directory_name, encryption_key_certificate_directory_name, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_certificate_id):
|
|
8996
|
+
def create_autonomous_database_okv_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_okv_uri, encryption_key_okv_kms_key, encryption_key_directory_name, encryption_key_certificate_directory_name, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_certificate_id):
|
|
8956
8997
|
|
|
8957
8998
|
kwargs = {}
|
|
8958
8999
|
if opc_dry_run is not None:
|
|
@@ -9099,6 +9140,9 @@ def create_autonomous_database_okv_key_details(ctx, from_json, wait_for_state, m
|
|
|
9099
9140
|
if autonomous_maintenance_schedule_type is not None:
|
|
9100
9141
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
9101
9142
|
|
|
9143
|
+
if autonomous_database_maintenance_window is not None:
|
|
9144
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
9145
|
+
|
|
9102
9146
|
if scheduled_operations is not None:
|
|
9103
9147
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
9104
9148
|
|
|
@@ -9256,6 +9300,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
9256
9300
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
9257
9301
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9258
9302
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
9303
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9259
9304
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
9260
9305
|
|
|
9261
9306
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -9277,12 +9322,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
9277
9322
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
9278
9323
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
9279
9324
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
9280
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9325
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9281
9326
|
@cli_util.help_option
|
|
9282
9327
|
@click.pass_context
|
|
9283
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9328
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9284
9329
|
@cli_util.wrap_exceptions
|
|
9285
|
-
def create_autonomous_database_azure_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_vault_uri, encryption_key_key_name, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
9330
|
+
def create_autonomous_database_azure_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_vault_uri, encryption_key_key_name, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
9286
9331
|
|
|
9287
9332
|
kwargs = {}
|
|
9288
9333
|
if opc_dry_run is not None:
|
|
@@ -9427,6 +9472,9 @@ def create_autonomous_database_azure_key_details(ctx, from_json, wait_for_state,
|
|
|
9427
9472
|
if autonomous_maintenance_schedule_type is not None:
|
|
9428
9473
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
9429
9474
|
|
|
9475
|
+
if autonomous_database_maintenance_window is not None:
|
|
9476
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
9477
|
+
|
|
9430
9478
|
if scheduled_operations is not None:
|
|
9431
9479
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
9432
9480
|
|
|
@@ -9581,6 +9629,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
9581
9629
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
9582
9630
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9583
9631
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
9632
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9584
9633
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
9585
9634
|
|
|
9586
9635
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -9604,12 +9653,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
9604
9653
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
9605
9654
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
9606
9655
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
9607
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9656
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9608
9657
|
@cli_util.help_option
|
|
9609
9658
|
@click.pass_context
|
|
9610
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9659
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9611
9660
|
@cli_util.wrap_exceptions
|
|
9612
|
-
def create_autonomous_database_aws_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_service_endpoint_uri, encryption_key_key_arn, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_arn_role, encryption_key_external_id):
|
|
9661
|
+
def create_autonomous_database_aws_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_service_endpoint_uri, encryption_key_key_arn, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_arn_role, encryption_key_external_id):
|
|
9613
9662
|
|
|
9614
9663
|
kwargs = {}
|
|
9615
9664
|
if opc_dry_run is not None:
|
|
@@ -9754,6 +9803,9 @@ def create_autonomous_database_aws_key_details(ctx, from_json, wait_for_state, m
|
|
|
9754
9803
|
if autonomous_maintenance_schedule_type is not None:
|
|
9755
9804
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
9756
9805
|
|
|
9806
|
+
if autonomous_database_maintenance_window is not None:
|
|
9807
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
9808
|
+
|
|
9757
9809
|
if scheduled_operations is not None:
|
|
9758
9810
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
9759
9811
|
|
|
@@ -9914,6 +9966,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
9914
9966
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
9915
9967
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9916
9968
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
9969
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
9917
9970
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
9918
9971
|
|
|
9919
9972
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -9935,12 +9988,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
9935
9988
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
9936
9989
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
9937
9990
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
9938
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9991
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
9939
9992
|
@cli_util.help_option
|
|
9940
9993
|
@click.pass_context
|
|
9941
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9994
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
9942
9995
|
@cli_util.wrap_exceptions
|
|
9943
|
-
def create_autonomous_database_oci_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_kms_key_id, encryption_key_vault_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
9996
|
+
def create_autonomous_database_oci_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_kms_key_id, encryption_key_vault_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
9944
9997
|
|
|
9945
9998
|
kwargs = {}
|
|
9946
9999
|
if opc_dry_run is not None:
|
|
@@ -10085,6 +10138,9 @@ def create_autonomous_database_oci_key_details(ctx, from_json, wait_for_state, m
|
|
|
10085
10138
|
if autonomous_maintenance_schedule_type is not None:
|
|
10086
10139
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
10087
10140
|
|
|
10141
|
+
if autonomous_database_maintenance_window is not None:
|
|
10142
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
10143
|
+
|
|
10088
10144
|
if scheduled_operations is not None:
|
|
10089
10145
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
10090
10146
|
|
|
@@ -10241,6 +10297,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
10241
10297
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
10242
10298
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
10243
10299
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
10300
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
10244
10301
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
10245
10302
|
|
|
10246
10303
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -10263,12 +10320,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
10263
10320
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
10264
10321
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
10265
10322
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
10266
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
10323
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
10267
10324
|
@cli_util.help_option
|
|
10268
10325
|
@click.pass_context
|
|
10269
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
10326
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
10270
10327
|
@cli_util.wrap_exceptions
|
|
10271
|
-
def create_autonomous_database_gcp_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_key_name, encryption_key_project, encryption_key_location, encryption_key_key_ring, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_kms_rest_endpoint):
|
|
10328
|
+
def create_autonomous_database_gcp_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, encryption_key_key_name, encryption_key_project, encryption_key_location, encryption_key_key_ring, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run, encryption_key_kms_rest_endpoint):
|
|
10272
10329
|
|
|
10273
10330
|
kwargs = {}
|
|
10274
10331
|
if opc_dry_run is not None:
|
|
@@ -10415,6 +10472,9 @@ def create_autonomous_database_gcp_key_details(ctx, from_json, wait_for_state, m
|
|
|
10415
10472
|
if autonomous_maintenance_schedule_type is not None:
|
|
10416
10473
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
10417
10474
|
|
|
10475
|
+
if autonomous_database_maintenance_window is not None:
|
|
10476
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
10477
|
+
|
|
10418
10478
|
if scheduled_operations is not None:
|
|
10419
10479
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
10420
10480
|
|
|
@@ -10570,6 +10630,7 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
10570
10630
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
10571
10631
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
10572
10632
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
10633
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
10573
10634
|
@cli_util.option('--scheduled-operations', type=custom_types.CLI_COMPLEX_TYPE, help=u"""The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
|
10574
10635
|
|
|
10575
10636
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
|
|
@@ -10591,12 +10652,12 @@ This cannot be used in conjunction with adminPassword.""")
|
|
|
10591
10652
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
10592
10653
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
10593
10654
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
10594
|
-
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
10655
|
+
@json_skeleton_utils.get_cli_json_input_option({'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}})
|
|
10595
10656
|
@cli_util.help_option
|
|
10596
10657
|
@click.pass_context
|
|
10597
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
10658
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
10598
10659
|
@cli_util.wrap_exceptions
|
|
10599
|
-
def create_autonomous_database_oracle_managed_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
10660
|
+
def create_autonomous_database_oracle_managed_key_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, compartment_id, subscription_id, character_set, ncharacter_set, db_name, cpu_core_count, backup_retention_period_in_days, compute_model, compute_count, ocpu_count, db_workload, data_storage_size_in_tbs, data_storage_size_in_gbs, is_free_tier, kms_key_id, vault_id, admin_password, display_name, license_model, byol_compute_count_limit, is_preview_version_with_service_terms_accepted, is_auto_scaling_enabled, is_dev_tier, is_dedicated, autonomous_container_database_id, in_memory_percentage, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_data_guard_enabled, is_local_data_guard_enabled, subnet_id, nsg_ids, private_endpoint_label, freeform_tags, defined_tags, security_attributes, private_endpoint_ip, db_version, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, is_backup_retention_locked, secret_id, secret_version_number, opc_dry_run):
|
|
10600
10661
|
|
|
10601
10662
|
kwargs = {}
|
|
10602
10663
|
if opc_dry_run is not None:
|
|
@@ -10739,6 +10800,9 @@ def create_autonomous_database_oracle_managed_key_details(ctx, from_json, wait_f
|
|
|
10739
10800
|
if autonomous_maintenance_schedule_type is not None:
|
|
10740
10801
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
10741
10802
|
|
|
10803
|
+
if autonomous_database_maintenance_window is not None:
|
|
10804
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
10805
|
+
|
|
10742
10806
|
if scheduled_operations is not None:
|
|
10743
10807
|
_details['scheduledOperations'] = cli_util.parse_json_parameter("scheduled_operations", scheduled_operations)
|
|
10744
10808
|
|
|
@@ -12805,7 +12869,7 @@ def create_data_guard_association_aws_encryption_key_details(ctx, from_json, wai
|
|
|
12805
12869
|
|
|
12806
12870
|
@database_group.command(name=cli_util.override('db.create_database.command_name', 'create'), help=u"""Creates a new database in the specified Database Home. If the database version is provided, it must match the version of the Database Home. Applies to Exadata and Exadata Cloud@Customer systems. \n[Command Reference](createDatabase)""")
|
|
12807
12871
|
@cli_util.option('--db-home-id', required=True, help=u"""The [OCID] of the Database Home.""")
|
|
12808
|
-
@cli_util.option('--source', required=True, type=custom_types.CliCaseInsensitiveChoice(["NONE", "DB_BACKUP", "DATAGUARD"]), help=u"""The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATAGUARD` for creating a new STANDBY database for a Data Guard setup.. The default is `NONE`.""")
|
|
12872
|
+
@cli_util.option('--source', required=True, type=custom_types.CliCaseInsensitiveChoice(["NONE", "DB_BACKUP", "DATABASE", "DATAGUARD"]), help=u"""The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATAGUARD` for creating a new STANDBY database for a Data Guard setup.. The default is `NONE`.""")
|
|
12809
12873
|
@cli_util.option('--db-version', help=u"""A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
|
|
12810
12874
|
|
|
12811
12875
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.""")
|
|
@@ -13011,6 +13075,76 @@ def create_database_create_stand_by_database_details(ctx, from_json, wait_for_st
|
|
|
13011
13075
|
cli_util.render_response(result, ctx)
|
|
13012
13076
|
|
|
13013
13077
|
|
|
13078
|
+
@database_group.command(name=cli_util.override('db.create_database_create_database_from_database.command_name', 'create-database-create-database-from-database'), help=u"""Creates a new database in the specified Database Home. If the database version is provided, it must match the version of the Database Home. Applies to Exadata and Exadata Cloud@Customer systems. \n[Command Reference](createDatabase)""")
|
|
13079
|
+
@cli_util.option('--db-home-id', required=True, help=u"""The [OCID] of the Database Home.""")
|
|
13080
|
+
@cli_util.option('--database', required=True, type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13081
|
+
@cli_util.option('--db-version', help=u"""A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.
|
|
13082
|
+
|
|
13083
|
+
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.""")
|
|
13084
|
+
@cli_util.option('--kms-key-id', help=u"""The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.""")
|
|
13085
|
+
@cli_util.option('--kms-key-version-id', help=u"""The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.""")
|
|
13086
|
+
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
13087
|
+
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "UPDATING", "BACKUP_IN_PROGRESS", "UPGRADING", "CONVERTING", "TERMINATING", "TERMINATED", "RESTORE_FAILED", "FAILED"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
13088
|
+
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
13089
|
+
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
13090
|
+
@json_skeleton_utils.get_cli_json_input_option({'database': {'module': 'database', 'class': 'CreateDatabaseFromAnotherDatabaseDetails'}})
|
|
13091
|
+
@cli_util.help_option
|
|
13092
|
+
@click.pass_context
|
|
13093
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'database': {'module': 'database', 'class': 'CreateDatabaseFromAnotherDatabaseDetails'}}, output_type={'module': 'database', 'class': 'Database'})
|
|
13094
|
+
@cli_util.wrap_exceptions
|
|
13095
|
+
def create_database_create_database_from_database(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, db_home_id, database, db_version, kms_key_id, kms_key_version_id, opc_dry_run):
|
|
13096
|
+
|
|
13097
|
+
kwargs = {}
|
|
13098
|
+
if opc_dry_run is not None:
|
|
13099
|
+
kwargs['opc_dry_run'] = opc_dry_run
|
|
13100
|
+
kwargs['opc_request_id'] = cli_util.use_or_generate_request_id(ctx.obj['request_id'])
|
|
13101
|
+
|
|
13102
|
+
_details = {}
|
|
13103
|
+
_details['dbHomeId'] = db_home_id
|
|
13104
|
+
_details['database'] = cli_util.parse_json_parameter("database", database)
|
|
13105
|
+
|
|
13106
|
+
if db_version is not None:
|
|
13107
|
+
_details['dbVersion'] = db_version
|
|
13108
|
+
|
|
13109
|
+
if kms_key_id is not None:
|
|
13110
|
+
_details['kmsKeyId'] = kms_key_id
|
|
13111
|
+
|
|
13112
|
+
if kms_key_version_id is not None:
|
|
13113
|
+
_details['kmsKeyVersionId'] = kms_key_version_id
|
|
13114
|
+
|
|
13115
|
+
_details['source'] = 'DATABASE'
|
|
13116
|
+
|
|
13117
|
+
client = cli_util.build_client('database', 'database', ctx)
|
|
13118
|
+
result = client.create_database(
|
|
13119
|
+
create_new_database_details=_details,
|
|
13120
|
+
**kwargs
|
|
13121
|
+
)
|
|
13122
|
+
if wait_for_state:
|
|
13123
|
+
|
|
13124
|
+
if hasattr(client, 'get_database') and callable(getattr(client, 'get_database')):
|
|
13125
|
+
try:
|
|
13126
|
+
wait_period_kwargs = {}
|
|
13127
|
+
if max_wait_seconds is not None:
|
|
13128
|
+
wait_period_kwargs['max_wait_seconds'] = max_wait_seconds
|
|
13129
|
+
if wait_interval_seconds is not None:
|
|
13130
|
+
wait_period_kwargs['max_interval_seconds'] = wait_interval_seconds
|
|
13131
|
+
|
|
13132
|
+
click.echo('Action completed. Waiting until the resource has entered state: {}'.format(wait_for_state), file=sys.stderr)
|
|
13133
|
+
result = oci.wait_until(client, client.get_database(result.data.id), 'lifecycle_state', wait_for_state, **wait_period_kwargs)
|
|
13134
|
+
except oci.exceptions.MaximumWaitTimeExceeded as e:
|
|
13135
|
+
# If we fail, we should show an error, but we should still provide the information to the customer
|
|
13136
|
+
click.echo('Failed to wait until the resource entered the specified state. Outputting last known resource state', file=sys.stderr)
|
|
13137
|
+
cli_util.render_response(result, ctx)
|
|
13138
|
+
sys.exit(2)
|
|
13139
|
+
except Exception:
|
|
13140
|
+
click.echo('Encountered error while waiting for resource to enter the specified state. Outputting last known resource state', file=sys.stderr)
|
|
13141
|
+
cli_util.render_response(result, ctx)
|
|
13142
|
+
raise
|
|
13143
|
+
else:
|
|
13144
|
+
click.echo('Unable to wait for the resource to enter the specified state', file=sys.stderr)
|
|
13145
|
+
cli_util.render_response(result, ctx)
|
|
13146
|
+
|
|
13147
|
+
|
|
13014
13148
|
@database_group.command(name=cli_util.override('db.create_database_create_database_from_backup.command_name', 'create-database-create-database-from-backup'), help=u"""Creates a new database in the specified Database Home. If the database version is provided, it must match the version of the Database Home. Applies to Exadata and Exadata Cloud@Customer systems. \n[Command Reference](createDatabase)""")
|
|
13015
13149
|
@cli_util.option('--db-home-id', required=True, help=u"""The [OCID] of the Database Home.""")
|
|
13016
13150
|
@cli_util.option('--database', required=True, type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
@@ -13178,7 +13312,7 @@ def create_database_software_image(ctx, from_json, wait_for_state, max_wait_seco
|
|
|
13178
13312
|
|
|
13179
13313
|
Example: `{\"Department\": \"Finance\"}`""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13180
13314
|
@cli_util.option('--defined-tags', type=custom_types.CLI_COMPLEX_TYPE, help=u"""Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags].""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13181
|
-
@cli_util.option('--source', type=custom_types.CliCaseInsensitiveChoice(["NONE", "DB_BACKUP", "DATABASE", "VM_CLUSTER_BACKUP", "VM_CLUSTER_NEW"]), help=u"""The source of database: NONE for creating a new database. DB_BACKUP for creating a new database by restoring from a database backup.""")
|
|
13315
|
+
@cli_util.option('--source', type=custom_types.CliCaseInsensitiveChoice(["NONE", "DB_BACKUP", "DATABASE", "VM_CLUSTER_BACKUP", "VM_CLUSTER_NEW", "VM_CLUSTER_DATABASE"]), help=u"""The source of database: NONE for creating a new database. DB_BACKUP for creating a new database by restoring from a database backup.""")
|
|
13182
13316
|
@cli_util.option('--is-desupported-version', type=click.BOOL, help=u"""If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.""")
|
|
13183
13317
|
@cli_util.option('--is-unified-auditing-enabled', type=click.BOOL, help=u"""Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.""")
|
|
13184
13318
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED", "FAILED"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
@@ -13425,6 +13559,92 @@ def create_db_home_create_db_home_with_db_system_id_from_backup_details(ctx, fro
|
|
|
13425
13559
|
cli_util.render_response(result, ctx)
|
|
13426
13560
|
|
|
13427
13561
|
|
|
13562
|
+
@db_home_group.command(name=cli_util.override('db.create_db_home_create_db_home_with_vm_cluster_id_from_database_details.command_name', 'create-db-home-create-db-home-with-vm-cluster-id-from-database-details'), help=u"""Creates a new Database Home in the specified database system based on the request parameters you provide. Applies to bare metal DB systems, Exadata systems, and Exadata Cloud@Customer systems. \n[Command Reference](createDbHome)""")
|
|
13563
|
+
@cli_util.option('--vm-cluster-id', required=True, help=u"""The [OCID] of the VM cluster.""")
|
|
13564
|
+
@cli_util.option('--database', required=True, type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13565
|
+
@cli_util.option('--display-name', help=u"""The user-provided name of the Database Home.""")
|
|
13566
|
+
@cli_util.option('--kms-key-id', help=u"""The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.""")
|
|
13567
|
+
@cli_util.option('--kms-key-version-id', help=u"""The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances.""")
|
|
13568
|
+
@cli_util.option('--database-software-image-id', help=u"""The database software image [OCID]""")
|
|
13569
|
+
@cli_util.option('--freeform-tags', type=custom_types.CLI_COMPLEX_TYPE, help=u"""Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags].
|
|
13570
|
+
|
|
13571
|
+
Example: `{\"Department\": \"Finance\"}`""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13572
|
+
@cli_util.option('--defined-tags', type=custom_types.CLI_COMPLEX_TYPE, help=u"""Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags].""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
13573
|
+
@cli_util.option('--is-desupported-version', type=click.BOOL, help=u"""If true, the customer acknowledges that the specified Oracle Database software is an older release that is not currently supported by OCI.""")
|
|
13574
|
+
@cli_util.option('--is-unified-auditing-enabled', type=click.BOOL, help=u"""Indicates whether unified autiding is enabled or not. Set to True to enable unified auditing on respective DBHome.""")
|
|
13575
|
+
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED", "FAILED"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
13576
|
+
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
13577
|
+
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
13578
|
+
@json_skeleton_utils.get_cli_json_input_option({'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'database': {'module': 'database', 'class': 'CreateDatabaseFromAnotherDatabaseDetails'}})
|
|
13579
|
+
@cli_util.help_option
|
|
13580
|
+
@click.pass_context
|
|
13581
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'database': {'module': 'database', 'class': 'CreateDatabaseFromAnotherDatabaseDetails'}}, output_type={'module': 'database', 'class': 'DbHome'})
|
|
13582
|
+
@cli_util.wrap_exceptions
|
|
13583
|
+
def create_db_home_create_db_home_with_vm_cluster_id_from_database_details(ctx, from_json, wait_for_state, max_wait_seconds, wait_interval_seconds, vm_cluster_id, database, display_name, kms_key_id, kms_key_version_id, database_software_image_id, freeform_tags, defined_tags, is_desupported_version, is_unified_auditing_enabled):
|
|
13584
|
+
|
|
13585
|
+
kwargs = {}
|
|
13586
|
+
|
|
13587
|
+
_details = {}
|
|
13588
|
+
_details['vmClusterId'] = vm_cluster_id
|
|
13589
|
+
_details['database'] = cli_util.parse_json_parameter("database", database)
|
|
13590
|
+
|
|
13591
|
+
if display_name is not None:
|
|
13592
|
+
_details['displayName'] = display_name
|
|
13593
|
+
|
|
13594
|
+
if kms_key_id is not None:
|
|
13595
|
+
_details['kmsKeyId'] = kms_key_id
|
|
13596
|
+
|
|
13597
|
+
if kms_key_version_id is not None:
|
|
13598
|
+
_details['kmsKeyVersionId'] = kms_key_version_id
|
|
13599
|
+
|
|
13600
|
+
if database_software_image_id is not None:
|
|
13601
|
+
_details['databaseSoftwareImageId'] = database_software_image_id
|
|
13602
|
+
|
|
13603
|
+
if freeform_tags is not None:
|
|
13604
|
+
_details['freeformTags'] = cli_util.parse_json_parameter("freeform_tags", freeform_tags)
|
|
13605
|
+
|
|
13606
|
+
if defined_tags is not None:
|
|
13607
|
+
_details['definedTags'] = cli_util.parse_json_parameter("defined_tags", defined_tags)
|
|
13608
|
+
|
|
13609
|
+
if is_desupported_version is not None:
|
|
13610
|
+
_details['isDesupportedVersion'] = is_desupported_version
|
|
13611
|
+
|
|
13612
|
+
if is_unified_auditing_enabled is not None:
|
|
13613
|
+
_details['isUnifiedAuditingEnabled'] = is_unified_auditing_enabled
|
|
13614
|
+
|
|
13615
|
+
_details['source'] = 'VM_CLUSTER_DATABASE'
|
|
13616
|
+
|
|
13617
|
+
client = cli_util.build_client('database', 'database', ctx)
|
|
13618
|
+
result = client.create_db_home(
|
|
13619
|
+
create_db_home_with_db_system_id_details=_details,
|
|
13620
|
+
**kwargs
|
|
13621
|
+
)
|
|
13622
|
+
if wait_for_state:
|
|
13623
|
+
|
|
13624
|
+
if hasattr(client, 'get_db_home') and callable(getattr(client, 'get_db_home')):
|
|
13625
|
+
try:
|
|
13626
|
+
wait_period_kwargs = {}
|
|
13627
|
+
if max_wait_seconds is not None:
|
|
13628
|
+
wait_period_kwargs['max_wait_seconds'] = max_wait_seconds
|
|
13629
|
+
if wait_interval_seconds is not None:
|
|
13630
|
+
wait_period_kwargs['max_interval_seconds'] = wait_interval_seconds
|
|
13631
|
+
|
|
13632
|
+
click.echo('Action completed. Waiting until the resource has entered state: {}'.format(wait_for_state), file=sys.stderr)
|
|
13633
|
+
result = oci.wait_until(client, client.get_db_home(result.data.id), 'lifecycle_state', wait_for_state, **wait_period_kwargs)
|
|
13634
|
+
except oci.exceptions.MaximumWaitTimeExceeded as e:
|
|
13635
|
+
# If we fail, we should show an error, but we should still provide the information to the customer
|
|
13636
|
+
click.echo('Failed to wait until the resource entered the specified state. Outputting last known resource state', file=sys.stderr)
|
|
13637
|
+
cli_util.render_response(result, ctx)
|
|
13638
|
+
sys.exit(2)
|
|
13639
|
+
except Exception:
|
|
13640
|
+
click.echo('Encountered error while waiting for resource to enter the specified state. Outputting last known resource state', file=sys.stderr)
|
|
13641
|
+
cli_util.render_response(result, ctx)
|
|
13642
|
+
raise
|
|
13643
|
+
else:
|
|
13644
|
+
click.echo('Unable to wait for the resource to enter the specified state', file=sys.stderr)
|
|
13645
|
+
cli_util.render_response(result, ctx)
|
|
13646
|
+
|
|
13647
|
+
|
|
13428
13648
|
@db_home_group.command(name=cli_util.override('db.create_db_home_create_db_home_with_vm_cluster_id_from_backup_details.command_name', 'create-db-home-create-db-home-with-vm-cluster-id-from-backup-details'), help=u"""Creates a new Database Home in the specified database system based on the request parameters you provide. Applies to bare metal DB systems, Exadata systems, and Exadata Cloud@Customer systems. \n[Command Reference](createDbHome)""")
|
|
13429
13649
|
@cli_util.option('--vm-cluster-id', required=True, help=u"""The [OCID] of the VM cluster.""")
|
|
13430
13650
|
@cli_util.option('--database', required=True, type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
@@ -32260,6 +32480,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
32260
32480
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
32261
32481
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
32262
32482
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
32483
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
32484
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
32263
32485
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
32264
32486
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
32265
32487
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -32285,24 +32507,25 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
32285
32507
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
32286
32508
|
|
|
32287
32509
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
32510
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
32288
32511
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
32289
32512
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
32290
32513
|
@cli_util.option('--force', help="""Perform update without prompting for confirmation.""", is_flag=True)
|
|
32291
32514
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
32292
32515
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
32293
32516
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
32294
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}, 'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}})
|
|
32517
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}, 'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}})
|
|
32295
32518
|
@cli_util.help_option
|
|
32296
32519
|
@click.pass_context
|
|
32297
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}, 'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
32520
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}, 'encryption-key': {'module': 'database', 'class': 'AutonomousDatabaseEncryptionKeyDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
32298
32521
|
@cli_util.wrap_exceptions
|
|
32299
|
-
def update_autonomous_database(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, encryption_key, is_disconnect_peer, if_match, opc_dry_run):
|
|
32522
|
+
def update_autonomous_database(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, encryption_key, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run):
|
|
32300
32523
|
|
|
32301
32524
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
32302
32525
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
32303
32526
|
if not force:
|
|
32304
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details or encryption_key:
|
|
32305
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details and encryption-key will replace any existing values. Are you sure you want to continue?"):
|
|
32527
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details or encryption_key:
|
|
32528
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details and encryption-key will replace any existing values. Are you sure you want to continue?"):
|
|
32306
32529
|
ctx.abort()
|
|
32307
32530
|
|
|
32308
32531
|
kwargs = {}
|
|
@@ -32452,6 +32675,12 @@ def update_autonomous_database(ctx, from_json, force, wait_for_state, max_wait_s
|
|
|
32452
32675
|
if autonomous_maintenance_schedule_type is not None:
|
|
32453
32676
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
32454
32677
|
|
|
32678
|
+
if autonomous_database_maintenance_window is not None:
|
|
32679
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
32680
|
+
|
|
32681
|
+
if time_maintenance_pause_until is not None:
|
|
32682
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
32683
|
+
|
|
32455
32684
|
if is_backup_retention_locked is not None:
|
|
32456
32685
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
32457
32686
|
|
|
@@ -32491,6 +32720,9 @@ def update_autonomous_database(ctx, from_json, force, wait_for_state, max_wait_s
|
|
|
32491
32720
|
if is_disconnect_peer is not None:
|
|
32492
32721
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
32493
32722
|
|
|
32723
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
32724
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
32725
|
+
|
|
32494
32726
|
client = cli_util.build_client('database', 'database', ctx)
|
|
32495
32727
|
result = client.update_autonomous_database(
|
|
32496
32728
|
autonomous_database_id=autonomous_database_id,
|
|
@@ -32657,6 +32889,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
32657
32889
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
32658
32890
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
32659
32891
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
32892
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
32893
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
32660
32894
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
32661
32895
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
32662
32896
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -32681,6 +32915,7 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
32681
32915
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
32682
32916
|
|
|
32683
32917
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
32918
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
32684
32919
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
32685
32920
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
32686
32921
|
@cli_util.option('--encryption-key-certificate-id', help=u"""OKV certificate id""")
|
|
@@ -32688,18 +32923,18 @@ To disconnect a cross region standby, please also provide the OCID of the standb
|
|
|
32688
32923
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
32689
32924
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
32690
32925
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
32691
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
32926
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
32692
32927
|
@cli_util.help_option
|
|
32693
32928
|
@click.pass_context
|
|
32694
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
32929
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
32695
32930
|
@cli_util.wrap_exceptions
|
|
32696
|
-
def update_autonomous_database_okv_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_okv_uri, encryption_key_okv_kms_key, encryption_key_directory_name, encryption_key_certificate_directory_name, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run, encryption_key_certificate_id):
|
|
32931
|
+
def update_autonomous_database_okv_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_okv_uri, encryption_key_okv_kms_key, encryption_key_directory_name, encryption_key_certificate_directory_name, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run, encryption_key_certificate_id):
|
|
32697
32932
|
|
|
32698
32933
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
32699
32934
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
32700
32935
|
if not force:
|
|
32701
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
32702
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
32936
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
32937
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
32703
32938
|
ctx.abort()
|
|
32704
32939
|
|
|
32705
32940
|
kwargs = {}
|
|
@@ -32854,6 +33089,12 @@ def update_autonomous_database_okv_key_details(ctx, from_json, force, wait_for_s
|
|
|
32854
33089
|
if autonomous_maintenance_schedule_type is not None:
|
|
32855
33090
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
32856
33091
|
|
|
33092
|
+
if autonomous_database_maintenance_window is not None:
|
|
33093
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
33094
|
+
|
|
33095
|
+
if time_maintenance_pause_until is not None:
|
|
33096
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
33097
|
+
|
|
32857
33098
|
if is_backup_retention_locked is not None:
|
|
32858
33099
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
32859
33100
|
|
|
@@ -32890,6 +33131,9 @@ def update_autonomous_database_okv_key_details(ctx, from_json, force, wait_for_s
|
|
|
32890
33131
|
if is_disconnect_peer is not None:
|
|
32891
33132
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
32892
33133
|
|
|
33134
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
33135
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
33136
|
+
|
|
32893
33137
|
if encryption_key_certificate_id is not None:
|
|
32894
33138
|
_details['encryptionKey']['certificateId'] = encryption_key_certificate_id
|
|
32895
33139
|
|
|
@@ -33059,6 +33303,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
33059
33303
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
33060
33304
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
33061
33305
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
33306
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
33307
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33062
33308
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
33063
33309
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33064
33310
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -33083,24 +33329,25 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
33083
33329
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
33084
33330
|
|
|
33085
33331
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
33332
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
33086
33333
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
33087
33334
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
33088
33335
|
@cli_util.option('--force', help="""Perform update without prompting for confirmation.""", is_flag=True)
|
|
33089
33336
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
33090
33337
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
33091
33338
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
33092
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
33339
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
33093
33340
|
@cli_util.help_option
|
|
33094
33341
|
@click.pass_context
|
|
33095
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
33342
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
33096
33343
|
@cli_util.wrap_exceptions
|
|
33097
|
-
def update_autonomous_database_azure_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_vault_uri, encryption_key_key_name, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run):
|
|
33344
|
+
def update_autonomous_database_azure_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_vault_uri, encryption_key_key_name, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run):
|
|
33098
33345
|
|
|
33099
33346
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
33100
33347
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
33101
33348
|
if not force:
|
|
33102
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
33103
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
33349
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
33350
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
33104
33351
|
ctx.abort()
|
|
33105
33352
|
|
|
33106
33353
|
kwargs = {}
|
|
@@ -33253,6 +33500,12 @@ def update_autonomous_database_azure_key_details(ctx, from_json, force, wait_for
|
|
|
33253
33500
|
if autonomous_maintenance_schedule_type is not None:
|
|
33254
33501
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
33255
33502
|
|
|
33503
|
+
if autonomous_database_maintenance_window is not None:
|
|
33504
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
33505
|
+
|
|
33506
|
+
if time_maintenance_pause_until is not None:
|
|
33507
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
33508
|
+
|
|
33256
33509
|
if is_backup_retention_locked is not None:
|
|
33257
33510
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
33258
33511
|
|
|
@@ -33289,6 +33542,9 @@ def update_autonomous_database_azure_key_details(ctx, from_json, force, wait_for
|
|
|
33289
33542
|
if is_disconnect_peer is not None:
|
|
33290
33543
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
33291
33544
|
|
|
33545
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
33546
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
33547
|
+
|
|
33292
33548
|
_details['encryptionKey']['provider'] = 'AZURE'
|
|
33293
33549
|
|
|
33294
33550
|
client = cli_util.build_client('database', 'database', ctx)
|
|
@@ -33455,6 +33711,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
33455
33711
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
33456
33712
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
33457
33713
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
33714
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
33715
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33458
33716
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
33459
33717
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33460
33718
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -33479,6 +33737,7 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
33479
33737
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
33480
33738
|
|
|
33481
33739
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
33740
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
33482
33741
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
33483
33742
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
33484
33743
|
@cli_util.option('--encryption-key-arn-role', help=u"""AWS ARN role""")
|
|
@@ -33487,18 +33746,18 @@ To disconnect a cross region standby, please also provide the OCID of the standb
|
|
|
33487
33746
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
33488
33747
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
33489
33748
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
33490
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
33749
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
33491
33750
|
@cli_util.help_option
|
|
33492
33751
|
@click.pass_context
|
|
33493
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
33752
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
33494
33753
|
@cli_util.wrap_exceptions
|
|
33495
|
-
def update_autonomous_database_aws_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_service_endpoint_uri, encryption_key_key_arn, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run, encryption_key_arn_role, encryption_key_external_id):
|
|
33754
|
+
def update_autonomous_database_aws_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_service_endpoint_uri, encryption_key_key_arn, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run, encryption_key_arn_role, encryption_key_external_id):
|
|
33496
33755
|
|
|
33497
33756
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
33498
33757
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
33499
33758
|
if not force:
|
|
33500
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
33501
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
33759
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
33760
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
33502
33761
|
ctx.abort()
|
|
33503
33762
|
|
|
33504
33763
|
kwargs = {}
|
|
@@ -33651,6 +33910,12 @@ def update_autonomous_database_aws_key_details(ctx, from_json, force, wait_for_s
|
|
|
33651
33910
|
if autonomous_maintenance_schedule_type is not None:
|
|
33652
33911
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
33653
33912
|
|
|
33913
|
+
if autonomous_database_maintenance_window is not None:
|
|
33914
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
33915
|
+
|
|
33916
|
+
if time_maintenance_pause_until is not None:
|
|
33917
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
33918
|
+
|
|
33654
33919
|
if is_backup_retention_locked is not None:
|
|
33655
33920
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
33656
33921
|
|
|
@@ -33687,6 +33952,9 @@ def update_autonomous_database_aws_key_details(ctx, from_json, force, wait_for_s
|
|
|
33687
33952
|
if is_disconnect_peer is not None:
|
|
33688
33953
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
33689
33954
|
|
|
33955
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
33956
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
33957
|
+
|
|
33690
33958
|
if encryption_key_arn_role is not None:
|
|
33691
33959
|
_details['encryptionKey']['arnRole'] = encryption_key_arn_role
|
|
33692
33960
|
|
|
@@ -33859,6 +34127,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
33859
34127
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
33860
34128
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
33861
34129
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
34130
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
34131
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33862
34132
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
33863
34133
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
33864
34134
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -33883,24 +34153,25 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
33883
34153
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
33884
34154
|
|
|
33885
34155
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
34156
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
33886
34157
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
33887
34158
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
33888
34159
|
@cli_util.option('--force', help="""Perform update without prompting for confirmation.""", is_flag=True)
|
|
33889
34160
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
33890
34161
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
33891
34162
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
33892
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
34163
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
33893
34164
|
@cli_util.help_option
|
|
33894
34165
|
@click.pass_context
|
|
33895
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
34166
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
33896
34167
|
@cli_util.wrap_exceptions
|
|
33897
|
-
def update_autonomous_database_oci_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_kms_key_id, encryption_key_vault_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run):
|
|
34168
|
+
def update_autonomous_database_oci_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_kms_key_id, encryption_key_vault_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run):
|
|
33898
34169
|
|
|
33899
34170
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
33900
34171
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
33901
34172
|
if not force:
|
|
33902
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
33903
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
34173
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
34174
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
33904
34175
|
ctx.abort()
|
|
33905
34176
|
|
|
33906
34177
|
kwargs = {}
|
|
@@ -34053,6 +34324,12 @@ def update_autonomous_database_oci_key_details(ctx, from_json, force, wait_for_s
|
|
|
34053
34324
|
if autonomous_maintenance_schedule_type is not None:
|
|
34054
34325
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
34055
34326
|
|
|
34327
|
+
if autonomous_database_maintenance_window is not None:
|
|
34328
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
34329
|
+
|
|
34330
|
+
if time_maintenance_pause_until is not None:
|
|
34331
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
34332
|
+
|
|
34056
34333
|
if is_backup_retention_locked is not None:
|
|
34057
34334
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
34058
34335
|
|
|
@@ -34089,6 +34366,9 @@ def update_autonomous_database_oci_key_details(ctx, from_json, force, wait_for_s
|
|
|
34089
34366
|
if is_disconnect_peer is not None:
|
|
34090
34367
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
34091
34368
|
|
|
34369
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
34370
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
34371
|
+
|
|
34092
34372
|
_details['encryptionKey']['provider'] = 'OCI'
|
|
34093
34373
|
|
|
34094
34374
|
client = cli_util.build_client('database', 'database', ctx)
|
|
@@ -34257,6 +34537,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
34257
34537
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
34258
34538
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
34259
34539
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
34540
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
34541
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
34260
34542
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
34261
34543
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
34262
34544
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -34281,6 +34563,7 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
34281
34563
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
34282
34564
|
|
|
34283
34565
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
34566
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
34284
34567
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
34285
34568
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
34286
34569
|
@cli_util.option('--encryption-key-kms-rest-endpoint', help=u"""GCP kms REST API endpoint""")
|
|
@@ -34288,18 +34571,18 @@ To disconnect a cross region standby, please also provide the OCID of the standb
|
|
|
34288
34571
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
34289
34572
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
34290
34573
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
34291
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
34574
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
34292
34575
|
@cli_util.help_option
|
|
34293
34576
|
@click.pass_context
|
|
34294
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
34577
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
34295
34578
|
@cli_util.wrap_exceptions
|
|
34296
|
-
def update_autonomous_database_gcp_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_key_name, encryption_key_project, encryption_key_location, encryption_key_key_ring, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run, encryption_key_kms_rest_endpoint):
|
|
34579
|
+
def update_autonomous_database_gcp_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, encryption_key_key_name, encryption_key_project, encryption_key_location, encryption_key_key_ring, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run, encryption_key_kms_rest_endpoint):
|
|
34297
34580
|
|
|
34298
34581
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
34299
34582
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
34300
34583
|
if not force:
|
|
34301
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
34302
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
34584
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
34585
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
34303
34586
|
ctx.abort()
|
|
34304
34587
|
|
|
34305
34588
|
kwargs = {}
|
|
@@ -34454,6 +34737,12 @@ def update_autonomous_database_gcp_key_details(ctx, from_json, force, wait_for_s
|
|
|
34454
34737
|
if autonomous_maintenance_schedule_type is not None:
|
|
34455
34738
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
34456
34739
|
|
|
34740
|
+
if autonomous_database_maintenance_window is not None:
|
|
34741
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
34742
|
+
|
|
34743
|
+
if time_maintenance_pause_until is not None:
|
|
34744
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
34745
|
+
|
|
34457
34746
|
if is_backup_retention_locked is not None:
|
|
34458
34747
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
34459
34748
|
|
|
@@ -34490,6 +34779,9 @@ def update_autonomous_database_gcp_key_details(ctx, from_json, force, wait_for_s
|
|
|
34490
34779
|
if is_disconnect_peer is not None:
|
|
34491
34780
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
34492
34781
|
|
|
34782
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
34783
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
34784
|
+
|
|
34493
34785
|
if encryption_key_kms_rest_endpoint is not None:
|
|
34494
34786
|
_details['encryptionKey']['kmsRestEndpoint'] = encryption_key_kms_rest_endpoint
|
|
34495
34787
|
|
|
@@ -34657,6 +34949,8 @@ Service Change: The default value of the isMTLSConnectionRequired attribute will
|
|
|
34657
34949
|
@cli_util.option('--resource-pool-leader-id', help=u"""The unique identifier for leader Autonomous AI Database OCID [OCID].""")
|
|
34658
34950
|
@cli_util.option('--resource-pool-summary', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
34659
34951
|
@cli_util.option('--autonomous-maintenance-schedule-type', type=custom_types.CliCaseInsensitiveChoice(["EARLY", "REGULAR"]), help=u"""The maintenance schedule type of the Autonomous AI Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle""")
|
|
34952
|
+
@cli_util.option('--autonomous-database-maintenance-window', type=custom_types.CLI_COMPLEX_TYPE, help=u"""""" + custom_types.cli_complex_type.COMPLEX_TYPE_HELP)
|
|
34953
|
+
@cli_util.option('--time-maintenance-pause-until', type=custom_types.CLI_DATETIME, help=u"""The date until which maintenance of Autonomous AI Database is temporarily paused.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
34660
34954
|
@cli_util.option('--is-backup-retention-locked', type=click.BOOL, help=u"""True if the Autonomous AI Database is backup retention locked.""")
|
|
34661
34955
|
@cli_util.option('--time-scheduled-db-version-upgrade', type=custom_types.CLI_DATETIME, help=u"""The date and time the Autonomous AI Database scheduled to upgrade to 26ai.""" + custom_types.CLI_DATETIME.VALID_DATETIME_CLI_HELP_MESSAGE)
|
|
34662
34956
|
@cli_util.option('--is-disable-db-version-upgrade-schedule', type=click.BOOL, help=u"""True if user wants to disable Autonomous AI Database scheduled upgrade to 26ai.""")
|
|
@@ -34681,24 +34975,25 @@ This option is a JSON list with items of type DatabaseTool. For documentation o
|
|
|
34681
34975
|
@cli_util.option('--is-disconnect-peer', type=click.BOOL, help=u"""If true, this will disconnect the Autonomous AI Database from its peer and the Autonomous AI Database can work permanently as a standalone database.
|
|
34682
34976
|
|
|
34683
34977
|
To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.""")
|
|
34978
|
+
@cli_util.option('--local-adg-resource-pool-leader-id', help=u"""The [OCID] of a dedicated resource pool leader Autonomous AI Database in the same region, that is required when local Autonomous Data Guard is enabled for a dedicated resource pool member using the parameter `isLocalDataGuardEnabled`. This field applies only to dedicated resource pool members, and the specified leader must be different from the primary\u2019s leader. Local Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in the region.""")
|
|
34684
34979
|
@cli_util.option('--if-match', help=u"""For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.""")
|
|
34685
34980
|
@cli_util.option('--opc-dry-run', type=click.BOOL, help=u"""Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually creating or updating a resource and is used only to perform validation on the submitted data.""")
|
|
34686
34981
|
@cli_util.option('--force', help="""Perform update without prompting for confirmation.""", is_flag=True)
|
|
34687
34982
|
@cli_util.option('--wait-for-state', type=custom_types.CliCaseInsensitiveChoice(["PROVISIONING", "AVAILABLE", "STOPPING", "STOPPED", "STARTING", "TERMINATING", "TERMINATED", "UNAVAILABLE", "RESTORE_IN_PROGRESS", "RESTORE_FAILED", "BACKUP_IN_PROGRESS", "SCALE_IN_PROGRESS", "AVAILABLE_NEEDS_ATTENTION", "UPDATING", "MAINTENANCE_IN_PROGRESS", "RESTARTING", "RECREATING", "ROLE_CHANGE_IN_PROGRESS", "UPGRADING", "INACCESSIBLE", "STANDBY"]), multiple=True, help="""This operation creates, modifies or deletes a resource that has a defined lifecycle state. Specify this option to perform the action and then wait until the resource reaches a given lifecycle state. Multiple states can be specified, returning on the first state. For example, --wait-for-state SUCCEEDED --wait-for-state FAILED would return on whichever lifecycle state is reached first. If timeout is reached, a return code of 2 is returned. For any other error, a return code of 1 is returned.""")
|
|
34688
34983
|
@cli_util.option('--max-wait-seconds', type=click.INT, help="""The maximum time to wait for the resource to reach the lifecycle state defined by --wait-for-state. Defaults to 1200 seconds.""")
|
|
34689
34984
|
@cli_util.option('--wait-interval-seconds', type=click.INT, help="""Check every --wait-interval-seconds to see whether the resource has reached the lifecycle state defined by --wait-for-state. Defaults to 30 seconds.""")
|
|
34690
|
-
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
34985
|
+
@json_skeleton_utils.get_cli_json_input_option({'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}})
|
|
34691
34986
|
@cli_util.help_option
|
|
34692
34987
|
@click.pass_context
|
|
34693
|
-
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
34988
|
+
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={'long-term-backup-schedule': {'module': 'database', 'class': 'LongTermBackUpScheduleDetails'}, 'freeform-tags': {'module': 'database', 'class': 'dict(str, string)'}, 'defined-tags': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'security-attributes': {'module': 'database', 'class': 'dict(str, dict(str, object))'}, 'whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'standby-whitelisted-ips': {'module': 'database', 'class': 'list[string]'}, 'nsg-ids': {'module': 'database', 'class': 'list[string]'}, 'customer-contacts': {'module': 'database', 'class': 'list[CustomerContact]'}, 'resource-pool-summary': {'module': 'database', 'class': 'ResourcePoolSummary'}, 'autonomous-database-maintenance-window': {'module': 'database', 'class': 'AutonomousDatabaseMaintenanceWindowSummary'}, 'scheduled-operations': {'module': 'database', 'class': 'list[ScheduledOperationDetails]'}, 'db-tools-details': {'module': 'database', 'class': 'list[DatabaseTool]'}, 'vanity-url-details': {'module': 'database', 'class': 'VanityUrlDetails'}}, output_type={'module': 'database', 'class': 'AutonomousDatabase'})
|
|
34694
34989
|
@cli_util.wrap_exceptions
|
|
34695
|
-
def update_autonomous_database_oracle_managed_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, if_match, opc_dry_run):
|
|
34990
|
+
def update_autonomous_database_oracle_managed_key_details(ctx, from_json, force, wait_for_state, max_wait_seconds, wait_interval_seconds, autonomous_database_id, backup_retention_period_in_days, compute_model, in_memory_percentage, local_adg_auto_failover_max_data_loss_limit, cpu_core_count, long_term_backup_schedule, is_dev_tier, compute_count, ocpu_count, data_storage_size_in_tbs, data_storage_size_in_gbs, display_name, is_free_tier, admin_password, db_name, freeform_tags, defined_tags, security_attributes, db_workload, license_model, byol_compute_count_limit, is_access_control_enabled, whitelisted_ips, are_primary_whitelisted_ips_used, standby_whitelisted_ips, is_auto_scaling_enabled, is_refreshable_clone, refreshable_mode, is_local_data_guard_enabled, is_data_guard_enabled, peer_db_id, db_version, open_mode, permission_level, subnet_id, private_endpoint_label, private_endpoint_ip, nsg_ids, auto_refresh_frequency_in_seconds, auto_refresh_point_lag_in_seconds, time_of_auto_refresh_start, customer_contacts, is_mtls_connection_required, resource_pool_leader_id, resource_pool_summary, autonomous_maintenance_schedule_type, autonomous_database_maintenance_window, time_maintenance_pause_until, is_backup_retention_locked, time_scheduled_db_version_upgrade, is_disable_db_version_upgrade_schedule, is_schedule_db_version_upgrade_to_earliest, scheduled_operations, is_auto_scaling_for_storage_enabled, database_edition, db_tools_details, vanity_url_details, secret_id, secret_version_number, is_disconnect_peer, local_adg_resource_pool_leader_id, if_match, opc_dry_run):
|
|
34696
34991
|
|
|
34697
34992
|
if isinstance(autonomous_database_id, six.string_types) and len(autonomous_database_id.strip()) == 0:
|
|
34698
34993
|
raise click.UsageError('Parameter --autonomous-database-id cannot be whitespace or empty string')
|
|
34699
34994
|
if not force:
|
|
34700
|
-
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or scheduled_operations or db_tools_details or vanity_url_details:
|
|
34701
|
-
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
34995
|
+
if long_term_backup_schedule or freeform_tags or defined_tags or security_attributes or whitelisted_ips or standby_whitelisted_ips or nsg_ids or customer_contacts or resource_pool_summary or autonomous_database_maintenance_window or scheduled_operations or db_tools_details or vanity_url_details:
|
|
34996
|
+
if not click.confirm("WARNING: Updates to long-term-backup-schedule and freeform-tags and defined-tags and security-attributes and whitelisted-ips and standby-whitelisted-ips and nsg-ids and customer-contacts and resource-pool-summary and autonomous-database-maintenance-window and scheduled-operations and db-tools-details and vanity-url-details will replace any existing values. Are you sure you want to continue?"):
|
|
34702
34997
|
ctx.abort()
|
|
34703
34998
|
|
|
34704
34999
|
kwargs = {}
|
|
@@ -34849,6 +35144,12 @@ def update_autonomous_database_oracle_managed_key_details(ctx, from_json, force,
|
|
|
34849
35144
|
if autonomous_maintenance_schedule_type is not None:
|
|
34850
35145
|
_details['autonomousMaintenanceScheduleType'] = autonomous_maintenance_schedule_type
|
|
34851
35146
|
|
|
35147
|
+
if autonomous_database_maintenance_window is not None:
|
|
35148
|
+
_details['autonomousDatabaseMaintenanceWindow'] = cli_util.parse_json_parameter("autonomous_database_maintenance_window", autonomous_database_maintenance_window)
|
|
35149
|
+
|
|
35150
|
+
if time_maintenance_pause_until is not None:
|
|
35151
|
+
_details['timeMaintenancePauseUntil'] = time_maintenance_pause_until
|
|
35152
|
+
|
|
34852
35153
|
if is_backup_retention_locked is not None:
|
|
34853
35154
|
_details['isBackupRetentionLocked'] = is_backup_retention_locked
|
|
34854
35155
|
|
|
@@ -34885,6 +35186,9 @@ def update_autonomous_database_oracle_managed_key_details(ctx, from_json, force,
|
|
|
34885
35186
|
if is_disconnect_peer is not None:
|
|
34886
35187
|
_details['isDisconnectPeer'] = is_disconnect_peer
|
|
34887
35188
|
|
|
35189
|
+
if local_adg_resource_pool_leader_id is not None:
|
|
35190
|
+
_details['localAdgResourcePoolLeaderId'] = local_adg_resource_pool_leader_id
|
|
35191
|
+
|
|
34888
35192
|
_details['encryptionKey']['provider'] = 'ORACLE_MANAGED'
|
|
34889
35193
|
|
|
34890
35194
|
client = cli_util.build_client('database', 'database', ctx)
|