oci 2.150.3__py3-none-any.whl → 2.152.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.
- oci/__init__.py +2 -5
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/__init__.py +20 -0
- oci/addons/adk/__init__.py +13 -0
- oci/addons/adk/agent.py +852 -0
- oci/addons/adk/agent_client.py +682 -0
- oci/addons/adk/agent_error.py +36 -0
- oci/addons/adk/auth/__init__.py +3 -0
- oci/addons/adk/auth/auth_provider.py +28 -0
- oci/addons/adk/auth/factory.py +78 -0
- oci/addons/adk/auth/oci/__init__.py +3 -0
- oci/addons/adk/auth/oci/instance_principal.py +53 -0
- oci/addons/adk/auth/oci/resource_principal.py +53 -0
- oci/addons/adk/auth/oci/session.py +91 -0
- oci/addons/adk/auth/oci/user_principal.py +64 -0
- oci/addons/adk/constants.py +17 -0
- oci/addons/adk/logger.py +163 -0
- oci/addons/adk/run/__init__.py +3 -0
- oci/addons/adk/run/response.py +56 -0
- oci/addons/adk/run/types.py +32 -0
- oci/addons/adk/tool/__init__.py +13 -0
- oci/addons/adk/tool/function_tool.py +334 -0
- oci/addons/adk/tool/prebuilt/__init__.py +8 -0
- oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
- oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
- oci/addons/adk/tool/tool.py +37 -0
- oci/addons/adk/tool/toolkit.py +189 -0
- oci/addons/adk/tool/utils.py +120 -0
- oci/addons/adk/util.py +325 -0
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/attributes_client.py +8 -8
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +84 -84
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +117 -117
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +606 -427
- oci/database/models/__init__.py +4 -0
- oci/database/models/system_version_minor_version_collection.py +70 -0
- oci/database/models/system_version_minor_version_summary.py +70 -0
- oci/database_management/db_management_client.py +356 -230
- oci/database_management/db_management_client_composite_operations.py +44 -0
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +7 -247
- oci/database_management/models/__init__.py +0 -4
- oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
- oci/database_management/models/disable_database_management_feature_details.py +33 -2
- oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
- oci/database_management/models/discovered_external_database.py +64 -2
- oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
- oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
- oci/database_management/models/managed_database.py +2 -4
- oci/database_management/models/managed_database_summary.py +2 -4
- oci/database_management/models/modify_database_management_feature_details.py +1 -1
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +42 -42
- oci/database_migration/models/migration.py +7 -3
- oci/database_migration/models/migration_job_progress_resource.py +7 -3
- oci/database_migration/models/migration_job_progress_summary.py +7 -3
- oci/database_migration/models/migration_phase_summary.py +7 -3
- oci/database_migration/models/my_sql_migration.py +1 -1
- oci/database_migration/models/oracle_migration.py +1 -1
- oci/database_migration/models/parameter_file_version.py +1 -1
- oci/database_migration/models/parameter_file_version_collection.py +3 -3
- oci/database_migration/models/parameter_file_version_summary.py +1 -1
- oci/database_migration/models/phase_status.py +7 -3
- oci/database_migration/models/resume_job_details.py +7 -3
- oci/database_migration/models/start_migration_details.py +7 -3
- oci/database_migration/models/update_oracle_migration_details.py +2 -2
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/__init__.py +8 -2
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +396 -84
- oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py +92 -11
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +969 -0
- oci/fleet_apps_management/fleet_apps_management_catalog_client_composite_operations.py +246 -0
- oci/fleet_apps_management/fleet_apps_management_client.py +248 -670
- oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py +49 -7
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +17 -14
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py +1 -1
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +597 -98
- oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py +46 -4
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +814 -0
- oci/fleet_apps_management/fleet_apps_management_provision_client_composite_operations.py +202 -0
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +952 -135
- oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py +218 -6
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +656 -0
- oci/fleet_apps_management/fleet_apps_management_work_request_client_composite_operations.py +26 -0
- oci/fleet_apps_management/models/__init__.py +155 -5
- oci/fleet_apps_management/models/action_group.py +62 -233
- oci/fleet_apps_management/models/action_group_based_user_action_details.py +2 -2
- oci/fleet_apps_management/models/action_group_details.py +57 -141
- oci/fleet_apps_management/models/activity_resource_target.py +1 -1
- oci/fleet_apps_management/models/announcement_collection.py +3 -3
- oci/fleet_apps_management/models/announcement_summary.py +5 -5
- oci/fleet_apps_management/models/api_based_execution_details.py +2 -2
- oci/fleet_apps_management/models/artifact_details.py +1 -1
- oci/fleet_apps_management/models/associated_fleet_credential_details.py +3 -3
- oci/fleet_apps_management/models/associated_fleet_property_details.py +3 -3
- oci/fleet_apps_management/models/associated_fleet_resource_details.py +1 -1
- oci/fleet_apps_management/models/associated_local_task_details.py +2 -2
- oci/fleet_apps_management/models/associated_scheduler_definition.py +1 -32
- oci/fleet_apps_management/models/associated_shared_task_details.py +1 -1
- oci/fleet_apps_management/models/associated_task_details.py +1 -1
- oci/fleet_apps_management/models/catalog_content_details.py +80 -0
- oci/fleet_apps_management/models/catalog_git_result_config.py +153 -0
- oci/fleet_apps_management/models/catalog_git_source_config.py +152 -0
- oci/fleet_apps_management/models/catalog_item.py +874 -0
- oci/fleet_apps_management/models/catalog_item_collection.py +70 -0
- oci/fleet_apps_management/models/catalog_item_summary.py +689 -0
- oci/fleet_apps_management/models/catalog_marketplace_source_config.py +117 -0
- oci/fleet_apps_management/models/catalog_par_result_config.py +126 -0
- oci/fleet_apps_management/models/catalog_par_source_config.py +218 -0
- oci/fleet_apps_management/models/catalog_result_payload.py +146 -0
- oci/fleet_apps_management/models/catalog_source_payload.py +130 -0
- oci/fleet_apps_management/models/catalog_source_template_config.py +179 -0
- oci/fleet_apps_management/models/catalog_template_result_config.py +87 -0
- oci/fleet_apps_management/models/change_catalog_item_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_fleet_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_patch_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_platform_configuration_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_property_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_provision_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_runbook_compartment_details.py +74 -0
- oci/fleet_apps_management/models/change_task_record_compartment_details.py +74 -0
- oci/fleet_apps_management/models/check_resource_tagging_details.py +3 -3
- oci/fleet_apps_management/models/clone_catalog_item_details.py +105 -0
- oci/fleet_apps_management/models/compliance_detail_policy.py +1 -1
- oci/fleet_apps_management/models/compliance_detail_product.py +2 -2
- oci/fleet_apps_management/models/compliance_detail_resource.py +3 -3
- oci/fleet_apps_management/models/compliance_detail_target.py +2 -2
- oci/fleet_apps_management/models/compliance_patch_detail.py +2 -2
- oci/fleet_apps_management/models/compliance_policy.py +49 -2
- oci/fleet_apps_management/models/compliance_policy_collection.py +3 -3
- oci/fleet_apps_management/models/compliance_policy_rule.py +16 -16
- oci/fleet_apps_management/models/compliance_policy_rule_collection.py +1 -1
- oci/fleet_apps_management/models/compliance_policy_rule_summary.py +16 -16
- oci/fleet_apps_management/models/compliance_policy_summary.py +32 -1
- oci/fleet_apps_management/models/compliance_record.py +102 -3
- oci/fleet_apps_management/models/compliance_record_aggregation.py +3 -3
- oci/fleet_apps_management/models/compliance_record_aggregation_collection.py +1 -1
- oci/fleet_apps_management/models/compliance_record_collection.py +1 -1
- oci/fleet_apps_management/models/compliance_record_dimension.py +1 -1
- oci/fleet_apps_management/models/compliance_record_summary.py +102 -3
- oci/fleet_apps_management/models/compliance_report.py +32 -1
- oci/fleet_apps_management/models/compliance_report_patch_detail.py +1 -1
- oci/fleet_apps_management/models/compliance_report_product.py +1 -1
- oci/fleet_apps_management/models/compliance_report_resource.py +1 -1
- oci/fleet_apps_management/models/compliance_report_target.py +1 -1
- oci/fleet_apps_management/models/component_properties.py +20 -30
- oci/fleet_apps_management/models/condition.py +1 -1
- oci/fleet_apps_management/models/config_association_details.py +1 -1
- oci/fleet_apps_management/models/config_category_details.py +20 -4
- oci/fleet_apps_management/models/config_file_details.py +99 -0
- oci/fleet_apps_management/models/confirm_targets_details.py +1 -1
- oci/fleet_apps_management/models/content_details.py +12 -4
- oci/fleet_apps_management/models/create_catalog_item_details.py +452 -0
- oci/fleet_apps_management/models/create_compliance_policy_rule_details.py +17 -48
- oci/fleet_apps_management/models/create_fleet_credential_details.py +1 -32
- oci/fleet_apps_management/models/create_fleet_details.py +112 -151
- oci/fleet_apps_management/models/create_fleet_property_details.py +1 -32
- oci/fleet_apps_management/models/create_fleet_resource_details.py +1 -1
- oci/fleet_apps_management/models/create_maintenance_window_details.py +4 -78
- oci/fleet_apps_management/models/create_onboarding_details.py +1 -1
- oci/fleet_apps_management/models/create_patch_details.py +1 -1
- oci/fleet_apps_management/models/create_platform_configuration_details.py +4 -4
- oci/fleet_apps_management/models/create_property_details.py +4 -4
- oci/fleet_apps_management/models/create_provision_details.py +431 -0
- oci/fleet_apps_management/models/create_runbook_details.py +53 -53
- oci/fleet_apps_management/models/create_runbook_version_details.py +252 -0
- oci/fleet_apps_management/models/create_scheduler_definition_details.py +3 -34
- oci/fleet_apps_management/models/create_task_record_details.py +3 -3
- oci/fleet_apps_management/models/credential_config_category_details.py +2 -2
- oci/fleet_apps_management/models/credential_details.py +1 -1
- oci/fleet_apps_management/models/credential_entity_specific_details.py +1 -1
- oci/fleet_apps_management/models/custom_schedule.py +118 -0
- oci/fleet_apps_management/models/dependent_patch_details.py +1 -1
- oci/fleet_apps_management/models/deployed_resource_details.py +200 -0
- oci/fleet_apps_management/models/details.py +35 -4
- oci/fleet_apps_management/models/discovered_target.py +1 -1
- oci/fleet_apps_management/models/dynamic_resource_selection.py +76 -0
- oci/fleet_apps_management/models/enable_latest_policy_details.py +1 -1
- oci/fleet_apps_management/models/entity_execution_details.py +1 -1
- oci/fleet_apps_management/models/environment_config_category_details.py +2 -2
- oci/fleet_apps_management/models/environment_fleet_details.py +49 -0
- oci/fleet_apps_management/models/execution.py +32 -1
- oci/fleet_apps_management/models/execution_collection.py +1 -1
- oci/fleet_apps_management/models/execution_details.py +12 -4
- oci/fleet_apps_management/models/execution_summary.py +32 -1
- oci/fleet_apps_management/models/execution_workflow_details.py +1 -1
- oci/fleet_apps_management/models/export_compliance_report_details.py +2 -2
- oci/fleet_apps_management/models/file_input_argument.py +63 -0
- oci/fleet_apps_management/models/file_task_argument.py +83 -0
- oci/fleet_apps_management/models/fleet.py +80 -208
- oci/fleet_apps_management/models/fleet_based_action_group.py +186 -0
- oci/fleet_apps_management/models/fleet_based_action_group_details.py +223 -0
- oci/fleet_apps_management/models/fleet_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_credential.py +3 -3
- oci/fleet_apps_management/models/fleet_credential_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py +1 -1
- oci/fleet_apps_management/models/fleet_credential_summary.py +3 -3
- oci/fleet_apps_management/models/fleet_details.py +131 -0
- oci/fleet_apps_management/models/fleet_product_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_product_summary.py +1 -1
- oci/fleet_apps_management/models/fleet_property.py +4 -4
- oci/fleet_apps_management/models/fleet_property_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_property_summary.py +3 -3
- oci/fleet_apps_management/models/fleet_resource.py +32 -34
- oci/fleet_apps_management/models/fleet_resource_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_resource_summary.py +32 -34
- oci/fleet_apps_management/models/fleet_summary.py +20 -32
- oci/fleet_apps_management/models/fleet_target.py +3 -3
- oci/fleet_apps_management/models/fleet_target_collection.py +1 -1
- oci/fleet_apps_management/models/fleet_target_summary.py +3 -3
- oci/fleet_apps_management/models/generate_compliance_report_details.py +1 -1
- oci/fleet_apps_management/models/generic_artifact.py +5 -5
- oci/fleet_apps_management/models/generic_artifact_details.py +1 -1
- oci/fleet_apps_management/models/generic_fleet_details.py +49 -0
- oci/fleet_apps_management/models/group.py +1 -1
- oci/fleet_apps_management/models/group_fleet_details.py +49 -0
- oci/fleet_apps_management/models/input_argument.py +12 -4
- oci/fleet_apps_management/models/input_file_content_details.py +99 -0
- oci/fleet_apps_management/models/input_file_object_storage_bucket_content_details.py +174 -0
- oci/fleet_apps_management/models/input_parameter.py +1 -1
- oci/fleet_apps_management/models/instance_summary.py +140 -0
- oci/fleet_apps_management/models/inventory_record.py +547 -0
- oci/fleet_apps_management/models/inventory_record_collection.py +70 -0
- oci/fleet_apps_management/models/inventory_record_component.py +163 -0
- oci/fleet_apps_management/models/inventory_record_patch_details.py +194 -0
- oci/fleet_apps_management/models/inventory_record_property.py +101 -0
- oci/fleet_apps_management/models/inventory_record_summary.py +535 -0
- oci/fleet_apps_management/models/inventory_resource_collection.py +1 -1
- oci/fleet_apps_management/models/inventory_resource_summary.py +1 -1
- oci/fleet_apps_management/models/job_activity.py +32 -1
- oci/fleet_apps_management/models/job_execution_details.py +194 -0
- oci/fleet_apps_management/models/key_encryption_credential_details.py +1 -1
- oci/fleet_apps_management/models/lifecycle_operation_config_category_details.py +49 -0
- oci/fleet_apps_management/models/maintenance_window.py +3 -77
- oci/fleet_apps_management/models/maintenance_window_collection.py +1 -1
- oci/fleet_apps_management/models/maintenance_window_schedule.py +87 -0
- oci/fleet_apps_management/models/maintenance_window_summary.py +3 -77
- oci/fleet_apps_management/models/manage_job_execution_details.py +1 -1
- oci/fleet_apps_management/models/manage_settings_details.py +1 -1
- oci/fleet_apps_management/models/managed_entity_aggregation.py +3 -3
- oci/fleet_apps_management/models/managed_entity_aggregation_collection.py +1 -1
- oci/fleet_apps_management/models/managed_entity_dimension.py +1 -1
- oci/fleet_apps_management/models/manual_resource_selection.py +49 -0
- oci/fleet_apps_management/models/model_property.py +10 -6
- oci/fleet_apps_management/models/{notification_preferences.py → notification_preference.py} +18 -18
- oci/fleet_apps_management/models/object_storage_bucket_config_file_details.py +174 -0
- oci/fleet_apps_management/models/object_storage_bucket_content_details.py +2 -2
- oci/fleet_apps_management/models/onboarding.py +69 -3
- oci/fleet_apps_management/models/onboarding_collection.py +1 -1
- oci/fleet_apps_management/models/onboarding_policy_collection.py +1 -1
- oci/fleet_apps_management/models/onboarding_policy_summary.py +1 -1
- oci/fleet_apps_management/models/onboarding_summary.py +69 -3
- oci/fleet_apps_management/models/operation_runbook.py +47 -16
- oci/fleet_apps_management/models/outcome.py +1 -1
- oci/fleet_apps_management/models/output_variable_details.py +1 -1
- oci/fleet_apps_management/models/output_variable_input_argument.py +2 -2
- oci/fleet_apps_management/models/output_variable_mapping.py +1 -1
- oci/fleet_apps_management/models/patch.py +1 -1
- oci/fleet_apps_management/models/patch_collection.py +1 -1
- oci/fleet_apps_management/models/patch_file_content_details.py +99 -0
- oci/fleet_apps_management/models/patch_file_object_storage_bucket_content_details.py +174 -0
- oci/fleet_apps_management/models/patch_level_selection_details.py +1 -1
- oci/fleet_apps_management/models/patch_name_selection_details.py +1 -1
- oci/fleet_apps_management/models/patch_product.py +2 -2
- oci/fleet_apps_management/models/patch_release_date_selection_details.py +1 -1
- oci/fleet_apps_management/models/patch_selection_details.py +1 -1
- oci/fleet_apps_management/models/patch_summary.py +1 -1
- oci/fleet_apps_management/models/patch_type.py +1 -1
- oci/fleet_apps_management/models/patch_type_config_category_details.py +2 -2
- oci/fleet_apps_management/models/pause_details.py +1 -1
- oci/fleet_apps_management/models/plain_text_credential_details.py +1 -1
- oci/fleet_apps_management/models/platform_configuration.py +10 -6
- oci/fleet_apps_management/models/platform_configuration_collection.py +1 -1
- oci/fleet_apps_management/models/platform_configuration_summary.py +3 -3
- oci/fleet_apps_management/models/platform_specific_artifact.py +5 -5
- oci/fleet_apps_management/models/platform_specific_artifact_details.py +2 -2
- oci/fleet_apps_management/models/preferences.py +175 -24
- oci/fleet_apps_management/models/previous_task_instance_details.py +128 -0
- oci/fleet_apps_management/models/previous_task_instance_run_on_details.py +80 -0
- oci/fleet_apps_management/models/product_config_category_details.py +2 -2
- oci/fleet_apps_management/models/product_fleet_details.py +49 -0
- oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py +1 -1
- oci/fleet_apps_management/models/product_stack_config_category_details.py +2 -2
- oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py +1 -1
- oci/fleet_apps_management/models/product_stack_sub_category_details.py +1 -1
- oci/fleet_apps_management/models/product_version_details.py +1 -1
- oci/fleet_apps_management/models/properties.py +1 -1
- oci/fleet_apps_management/models/property_collection.py +1 -1
- oci/fleet_apps_management/models/property_summary.py +3 -3
- oci/fleet_apps_management/models/provision.py +997 -0
- oci/fleet_apps_management/models/provision_collection.py +70 -0
- oci/fleet_apps_management/models/provision_summary.py +738 -0
- oci/fleet_apps_management/models/publish_runbook_details.py +34 -3
- oci/fleet_apps_management/models/request_resource_validation_details.py +1 -1
- oci/fleet_apps_management/models/request_target_discovery_details.py +1 -1
- oci/fleet_apps_management/models/resource_collection.py +1 -1
- oci/fleet_apps_management/models/resource_credential_entity_specific_details.py +1 -1
- oci/fleet_apps_management/models/resource_selection.py +109 -0
- oci/fleet_apps_management/models/resource_summary.py +1 -1
- oci/fleet_apps_management/models/resource_tag_check_details.py +1 -1
- oci/fleet_apps_management/models/resource_tag_enablement_info.py +1 -1
- oci/fleet_apps_management/models/rollback_workflow_details.py +1 -1
- oci/fleet_apps_management/models/rule.py +3 -3
- oci/fleet_apps_management/models/run_on_details.py +115 -0
- oci/fleet_apps_management/models/runbook.py +116 -69
- oci/fleet_apps_management/models/runbook_collection.py +1 -1
- oci/fleet_apps_management/models/runbook_summary.py +65 -34
- oci/fleet_apps_management/models/runbook_version.py +542 -0
- oci/fleet_apps_management/models/runbook_version_collection.py +70 -0
- oci/fleet_apps_management/models/runbook_version_summary.py +533 -0
- oci/fleet_apps_management/models/schedule.py +25 -97
- oci/fleet_apps_management/models/schedule_instance_run_on_details.py +80 -0
- oci/fleet_apps_management/models/scheduled_fleet_collection.py +1 -1
- oci/fleet_apps_management/models/scheduled_fleet_summary.py +35 -82
- oci/fleet_apps_management/models/scheduler_definition.py +3 -112
- oci/fleet_apps_management/models/scheduler_definition_collection.py +1 -1
- oci/fleet_apps_management/models/scheduler_definition_summary.py +5 -83
- oci/fleet_apps_management/models/scheduler_execution_collection.py +70 -0
- oci/fleet_apps_management/models/scheduler_execution_summary.py +753 -0
- oci/fleet_apps_management/models/scheduler_job.py +40 -102
- oci/fleet_apps_management/models/scheduler_job_aggregation.py +3 -3
- oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py +1 -1
- oci/fleet_apps_management/models/scheduler_job_collection.py +1 -1
- oci/fleet_apps_management/models/scheduler_job_dimension.py +1 -1
- oci/fleet_apps_management/models/scheduler_job_summary.py +18 -96
- oci/fleet_apps_management/models/script_based_execution_details.py +66 -4
- oci/fleet_apps_management/models/selection_criteria.py +1 -1
- oci/fleet_apps_management/models/self_hosted_instance_config_category_details.py +117 -0
- oci/fleet_apps_management/models/self_hosted_instance_run_on_details.py +80 -0
- oci/fleet_apps_management/models/set_default_runbook_details.py +1 -1
- oci/fleet_apps_management/models/step_based_user_action_details.py +2 -2
- oci/fleet_apps_management/models/step_collection.py +1 -1
- oci/fleet_apps_management/models/step_summary.py +11 -11
- oci/fleet_apps_management/models/string_input_argument.py +2 -2
- oci/fleet_apps_management/models/string_task_argument.py +87 -0
- oci/fleet_apps_management/models/target_credential_entity_specific_details.py +1 -1
- oci/fleet_apps_management/models/target_resource.py +1 -1
- oci/fleet_apps_management/models/task.py +1 -44
- oci/fleet_apps_management/models/task_argument.py +71 -34
- oci/fleet_apps_management/models/task_notification_preferences.py +1 -1
- oci/fleet_apps_management/models/task_record.py +6 -6
- oci/fleet_apps_management/models/task_record_collection.py +4 -4
- oci/fleet_apps_management/models/task_record_summary.py +6 -6
- oci/fleet_apps_management/models/task_variable.py +1 -1
- oci/fleet_apps_management/models/terraform_based_execution_details.py +173 -0
- oci/fleet_apps_management/models/time_based_pause_details.py +1 -1
- oci/fleet_apps_management/models/upcoming_schedule.py +101 -0
- oci/fleet_apps_management/models/update_catalog_item_details.py +229 -0
- oci/fleet_apps_management/models/update_compliance_policy_rule_details.py +16 -16
- oci/fleet_apps_management/models/update_fleet_credential_details.py +1 -1
- oci/fleet_apps_management/models/update_fleet_details.py +69 -32
- oci/fleet_apps_management/models/update_fleet_property_details.py +1 -1
- oci/fleet_apps_management/models/update_fleet_resource_details.py +1 -1
- oci/fleet_apps_management/models/update_maintenance_window_details.py +1 -75
- oci/fleet_apps_management/models/update_onboarding_details.py +1 -1
- oci/fleet_apps_management/models/update_patch_details.py +1 -32
- oci/fleet_apps_management/models/update_platform_configuration_details.py +1 -1
- oci/fleet_apps_management/models/update_property_details.py +1 -1
- oci/fleet_apps_management/models/update_provision_details.py +167 -0
- oci/fleet_apps_management/models/update_runbook_details.py +24 -51
- oci/fleet_apps_management/models/update_runbook_version_details.py +155 -0
- oci/fleet_apps_management/models/update_scheduler_definition_details.py +1 -32
- oci/fleet_apps_management/models/update_scheduler_job_details.py +1 -1
- oci/fleet_apps_management/models/update_task_record_details.py +2 -2
- oci/fleet_apps_management/models/user_action_based_pause_details.py +1 -1
- oci/fleet_apps_management/models/user_action_details.py +12 -4
- oci/fleet_apps_management/models/variable.py +1 -1
- oci/fleet_apps_management/models/vault_secret_credential_details.py +1 -1
- oci/fleet_apps_management/models/{associations.py → version.py} +62 -31
- oci/fleet_apps_management/models/work_request.py +84 -4
- oci/fleet_apps_management/models/work_request_error.py +1 -1
- oci/fleet_apps_management/models/work_request_error_collection.py +1 -1
- oci/fleet_apps_management/models/work_request_log_entry.py +1 -1
- oci/fleet_apps_management/models/work_request_log_entry_collection.py +1 -1
- oci/fleet_apps_management/models/work_request_resource.py +1 -1
- oci/fleet_apps_management/models/work_request_summary.py +84 -4
- oci/fleet_apps_management/models/work_request_summary_collection.py +1 -1
- oci/fleet_apps_management/models/workflow_component.py +1 -1
- oci/fleet_apps_management/models/workflow_group.py +1 -1
- oci/fleet_apps_management/models/workflow_group_component.py +1 -1
- oci/fleet_apps_management/models/workflow_task_component.py +1 -1
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
- oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +58 -58
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +1358 -250
- oci/log_analytics/models/__init__.py +38 -0
- oci/log_analytics/models/abstract_command_descriptor.py +11 -3
- oci/log_analytics/models/add_fields_command_descriptor.py +1 -1
- oci/log_analytics/models/add_insights_command_descriptor.py +1 -1
- oci/log_analytics/models/anomaly_command_descriptor.py +1 -1
- oci/log_analytics/models/auto_schedule.py +64 -0
- oci/log_analytics/models/bottom_command_descriptor.py +1 -1
- oci/log_analytics/models/bucket_command_descriptor.py +1 -1
- oci/log_analytics/models/change_lookup_compartment_details.py +70 -0
- oci/log_analytics/models/classify_command_descriptor.py +1 -1
- oci/log_analytics/models/cluster_command_descriptor.py +1 -1
- oci/log_analytics/models/cluster_compare_command_descriptor.py +1 -1
- oci/log_analytics/models/cluster_details_command_descriptor.py +1 -1
- oci/log_analytics/models/cluster_split_command_descriptor.py +1 -1
- oci/log_analytics/models/command_descriptor.py +1 -1
- oci/log_analytics/models/compare_command_descriptor.py +1 -1
- oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py +134 -1
- oci/log_analytics/models/create_standard_task_details.py +1 -1
- oci/log_analytics/models/create_table_command_descriptor.py +1 -1
- oci/log_analytics/models/create_view_command_descriptor.py +1 -1
- oci/log_analytics/models/cron_schedule.py +3 -3
- oci/log_analytics/models/dedup_command_descriptor.py +1 -1
- oci/log_analytics/models/delete_command_descriptor.py +1 -1
- oci/log_analytics/models/delta_command_descriptor.py +1 -1
- oci/log_analytics/models/demo_mode_command_descriptor.py +1 -1
- oci/log_analytics/models/dependency.py +64 -2
- oci/log_analytics/models/dependent_parser.py +1 -1
- oci/log_analytics/models/dependent_source.py +1 -1
- oci/log_analytics/models/distinct_command_descriptor.py +1 -1
- oci/log_analytics/models/estimate_recall_data_size_result.py +64 -2
- oci/log_analytics/models/eval_command_descriptor.py +1 -1
- oci/log_analytics/models/event_stats_command_descriptor.py +1 -1
- oci/log_analytics/models/export_details.py +7 -3
- oci/log_analytics/models/extract_command_descriptor.py +1 -1
- oci/log_analytics/models/field_summary_command_descriptor.py +1 -1
- oci/log_analytics/models/fields_command_descriptor.py +1 -1
- oci/log_analytics/models/fixed_frequency_schedule.py +2 -2
- oci/log_analytics/models/frequent_command_descriptor.py +1 -1
- oci/log_analytics/models/generic_condition_block.py +251 -0
- oci/log_analytics/models/geo_stats_command_descriptor.py +1 -1
- oci/log_analytics/models/head_command_descriptor.py +1 -1
- oci/log_analytics/models/highlight_command_descriptor.py +1 -1
- oci/log_analytics/models/highlight_groups_command_descriptor.py +1 -1
- oci/log_analytics/models/highlight_rows_command_descriptor.py +1 -1
- oci/log_analytics/models/json_extract_command_descriptor.py +1 -1
- oci/log_analytics/models/link_command_descriptor.py +1 -1
- oci/log_analytics/models/link_details_command_descriptor.py +1 -1
- oci/log_analytics/models/log_analytics_entity.py +33 -2
- oci/log_analytics/models/log_analytics_entity_summary.py +33 -2
- oci/log_analytics/models/log_analytics_entity_topology_link.py +64 -2
- oci/log_analytics/models/log_analytics_field.py +64 -2
- oci/log_analytics/models/log_analytics_field_summary.py +64 -2
- oci/log_analytics/models/log_analytics_field_usages.py +101 -0
- oci/log_analytics/models/log_analytics_lookup.py +136 -2
- oci/log_analytics/models/log_analytics_object_collection_rule.py +164 -0
- oci/log_analytics/models/log_analytics_object_collection_rule_summary.py +31 -0
- oci/log_analytics/models/log_analytics_parser_field.py +33 -2
- oci/log_analytics/models/log_analytics_resource_category.py +64 -2
- oci/log_analytics/models/log_analytics_source_extended_field_definition.py +62 -4
- oci/log_analytics/models/log_analytics_template.py +594 -0
- oci/log_analytics/models/log_analytics_template_collection.py +70 -0
- oci/log_analytics/models/log_analytics_template_summary.py +439 -0
- oci/log_analytics/models/lookup_command_descriptor.py +1 -1
- oci/log_analytics/models/macro_command_descriptor.py +1 -1
- oci/log_analytics/models/map_command_descriptor.py +1 -1
- oci/log_analytics/models/metric_extraction.py +3 -3
- oci/log_analytics/models/module_command_descriptor.py +127 -3
- oci/log_analytics/models/multi_search_command_descriptor.py +1 -1
- oci/log_analytics/models/namespace.py +33 -2
- oci/log_analytics/models/namespace_summary.py +33 -2
- oci/log_analytics/models/nlp_command_descriptor.py +1 -1
- oci/log_analytics/models/outlier_command_descriptor.py +1 -1
- oci/log_analytics/models/overlapping_recall_summary.py +7 -3
- oci/log_analytics/models/parse_query_output.py +64 -2
- oci/log_analytics/models/parser_action.py +101 -0
- oci/log_analytics/models/parser_action_summary.py +132 -0
- oci/log_analytics/models/parser_action_summary_collection.py +70 -0
- oci/log_analytics/models/property_definition.py +195 -0
- oci/log_analytics/models/query_aggregation.py +89 -0
- oci/log_analytics/models/rare_command_descriptor.py +1 -1
- oci/log_analytics/models/recall_archived_data_details.py +35 -2
- oci/log_analytics/models/recall_definition.py +101 -0
- oci/log_analytics/models/recalled_data.py +40 -5
- oci/log_analytics/models/recalled_info.py +280 -0
- oci/log_analytics/models/recalled_info_collection.py +70 -0
- oci/log_analytics/models/regex_command_descriptor.py +1 -1
- oci/log_analytics/models/rename_command_descriptor.py +1 -1
- oci/log_analytics/models/schedule.py +11 -3
- oci/log_analytics/models/scheduled_task_summary.py +49 -2
- oci/log_analytics/models/search_command_descriptor.py +1 -1
- oci/log_analytics/models/search_lookup_command_descriptor.py +1 -1
- oci/log_analytics/models/sequence_command_descriptor.py +1 -1
- oci/log_analytics/models/sort_command_descriptor.py +1 -1
- oci/log_analytics/models/stats_command_descriptor.py +1 -1
- oci/log_analytics/models/stream_action.py +27 -0
- oci/log_analytics/models/tail_command_descriptor.py +1 -1
- oci/log_analytics/models/template_details.py +101 -0
- oci/log_analytics/models/template_facet.py +101 -0
- oci/log_analytics/models/template_params.py +101 -0
- oci/log_analytics/models/time_cluster_command_descriptor.py +1 -1
- oci/log_analytics/models/time_compare_command_descriptor.py +1 -1
- oci/log_analytics/models/time_stats_command_descriptor.py +1 -1
- oci/log_analytics/models/top_command_descriptor.py +1 -1
- oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py +133 -0
- oci/log_analytics/models/update_lookup_metadata_details.py +68 -2
- oci/log_analytics/models/update_table_command_descriptor.py +122 -0
- oci/log_analytics/models/upsert_log_analytics_field_details.py +33 -2
- oci/log_analytics/models/usage_status_item.py +33 -2
- oci/log_analytics/models/variable_definition.py +214 -0
- oci/log_analytics/models/where_command_descriptor.py +1 -1
- oci/log_analytics/models/xml_extract_command_descriptor.py +1 -1
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/__init__.py +14 -0
- oci/model_deployment/model_deployment_client.py +331 -0
- oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
- oci/model_deployment/models/__init__.py +14 -0
- oci/model_deployment/models/inference_result.py +70 -0
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +7 -7
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +86 -86
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/nosql_client.py +24 -24
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/models/__init__.py +2 -0
- oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
- oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/models/opensearch_cluster.py +291 -0
- oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
- oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
- oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
- oci/opensearch/models/shapes_details.py +70 -0
- oci/opensearch/models/update_cluster_specs_details.py +186 -0
- oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +87 -16
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +15 -15
- oci/os_management/os_management_client.py +138 -138
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/redis_cluster_client.py +12 -12
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +48 -48
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/METADATA +6 -1
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/RECORD +756 -623
- oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
- oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/WHEEL +0 -0
- {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@
|
|
2
2
|
# Copyright (c) 2016, 2025, 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
|
|
5
|
-
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version:
|
5
|
+
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20250228
|
6
6
|
|
7
7
|
from __future__ import absolute_import
|
8
8
|
|
@@ -99,7 +99,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
99
99
|
base_client_init_kwargs = {
|
100
100
|
'regional_client': True,
|
101
101
|
'service_endpoint': kwargs.get('service_endpoint'),
|
102
|
-
'base_path': '/
|
102
|
+
'base_path': '/20250228',
|
103
103
|
'service_endpoint_template': 'https://fams.{region}.oci.{secondLevelDomain}',
|
104
104
|
'service_endpoint_template_per_realm': { }, # noqa: E201 E202
|
105
105
|
'skip_deserialization': kwargs.get('skip_deserialization', False),
|
@@ -116,6 +116,129 @@ class FleetAppsManagementOperationsClient(object):
|
|
116
116
|
self.retry_strategy = kwargs.get('retry_strategy')
|
117
117
|
self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback')
|
118
118
|
|
119
|
+
def change_patch_compartment(self, patch_id, change_patch_compartment_details, **kwargs):
|
120
|
+
"""
|
121
|
+
Moves a Patch into a different compartment within the same tenancy. For information about moving resources between
|
122
|
+
compartments, see `Moving Resources to a Different Compartment`__.
|
123
|
+
|
124
|
+
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes
|
125
|
+
|
126
|
+
|
127
|
+
:param str patch_id: (required)
|
128
|
+
Unique Patch identifier.
|
129
|
+
|
130
|
+
:param oci.fleet_apps_management.models.ChangePatchCompartmentDetails change_patch_compartment_details: (required)
|
131
|
+
Details of the target compartment.
|
132
|
+
|
133
|
+
:param str if_match: (optional)
|
134
|
+
For optimistic concurrency control. In the PUT or DELETE call
|
135
|
+
for a resource, set the `if-match` parameter to the value of the
|
136
|
+
etag from a previous GET or POST response for that resource.
|
137
|
+
The resource will be updated or deleted only if the etag you
|
138
|
+
provide matches the resource's current etag value.
|
139
|
+
|
140
|
+
:param str opc_request_id: (optional)
|
141
|
+
The client request ID for tracing.
|
142
|
+
|
143
|
+
:param str opc_retry_token: (optional)
|
144
|
+
A token that uniquely identifies a request so it can be retried in case of a timeout or
|
145
|
+
server error without risk of executing that same action again. Retry tokens expire after 24
|
146
|
+
hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
147
|
+
has been deleted and purged from the system, then a retry of the original creation request
|
148
|
+
might be rejected.
|
149
|
+
|
150
|
+
:param obj retry_strategy: (optional)
|
151
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
152
|
+
|
153
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
154
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
155
|
+
|
156
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
157
|
+
|
158
|
+
:param bool allow_control_chars: (optional)
|
159
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
160
|
+
By default, the response will not allow control characters in strings
|
161
|
+
|
162
|
+
:return: A :class:`~oci.response.Response` object with data of type None
|
163
|
+
:rtype: :class:`~oci.response.Response`
|
164
|
+
|
165
|
+
:example:
|
166
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/change_patch_compartment.py.html>`__ to see an example of how to use change_patch_compartment API.
|
167
|
+
"""
|
168
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
169
|
+
required_arguments = ['patchId']
|
170
|
+
resource_path = "/patches/{patchId}/actions/changeCompartment"
|
171
|
+
method = "POST"
|
172
|
+
operation_name = "change_patch_compartment"
|
173
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Patch/ChangePatchCompartment"
|
174
|
+
|
175
|
+
# Don't accept unknown kwargs
|
176
|
+
expected_kwargs = [
|
177
|
+
"allow_control_chars",
|
178
|
+
"retry_strategy",
|
179
|
+
"if_match",
|
180
|
+
"opc_request_id",
|
181
|
+
"opc_retry_token"
|
182
|
+
]
|
183
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
184
|
+
if extra_kwargs:
|
185
|
+
raise ValueError(
|
186
|
+
f"change_patch_compartment got unknown kwargs: {extra_kwargs!r}")
|
187
|
+
|
188
|
+
path_params = {
|
189
|
+
"patchId": patch_id
|
190
|
+
}
|
191
|
+
|
192
|
+
path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
|
193
|
+
|
194
|
+
for (k, v) in six.iteritems(path_params):
|
195
|
+
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
|
196
|
+
raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
|
197
|
+
|
198
|
+
header_params = {
|
199
|
+
"accept": "application/json",
|
200
|
+
"content-type": "application/json",
|
201
|
+
"if-match": kwargs.get("if_match", missing),
|
202
|
+
"opc-request-id": kwargs.get("opc_request_id", missing),
|
203
|
+
"opc-retry-token": kwargs.get("opc_retry_token", missing)
|
204
|
+
}
|
205
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
206
|
+
|
207
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
208
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
209
|
+
client_retry_strategy=self.retry_strategy
|
210
|
+
)
|
211
|
+
if retry_strategy is None:
|
212
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
213
|
+
|
214
|
+
if retry_strategy:
|
215
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
216
|
+
self.base_client.add_opc_retry_token_if_needed(header_params)
|
217
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
218
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
219
|
+
return retry_strategy.make_retrying_call(
|
220
|
+
self.base_client.call_api,
|
221
|
+
resource_path=resource_path,
|
222
|
+
method=method,
|
223
|
+
path_params=path_params,
|
224
|
+
header_params=header_params,
|
225
|
+
body=change_patch_compartment_details,
|
226
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
227
|
+
operation_name=operation_name,
|
228
|
+
api_reference_link=api_reference_link,
|
229
|
+
required_arguments=required_arguments)
|
230
|
+
else:
|
231
|
+
return self.base_client.call_api(
|
232
|
+
resource_path=resource_path,
|
233
|
+
method=method,
|
234
|
+
path_params=path_params,
|
235
|
+
header_params=header_params,
|
236
|
+
body=change_patch_compartment_details,
|
237
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
238
|
+
operation_name=operation_name,
|
239
|
+
api_reference_link=api_reference_link,
|
240
|
+
required_arguments=required_arguments)
|
241
|
+
|
119
242
|
def create_patch(self, create_patch_details, **kwargs):
|
120
243
|
"""
|
121
244
|
Creates a new Patch.
|
@@ -150,14 +273,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
150
273
|
:rtype: :class:`~oci.response.Response`
|
151
274
|
|
152
275
|
:example:
|
153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/create_patch.py.html>`__ to see an example of how to use create_patch API.
|
154
277
|
"""
|
155
278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
156
279
|
required_arguments = []
|
157
280
|
resource_path = "/patches"
|
158
281
|
method = "POST"
|
159
282
|
operation_name = "create_patch"
|
160
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
283
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Patch/CreatePatch"
|
161
284
|
|
162
285
|
# Don't accept unknown kwargs
|
163
286
|
expected_kwargs = [
|
@@ -248,14 +371,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
248
371
|
:rtype: :class:`~oci.response.Response`
|
249
372
|
|
250
373
|
:example:
|
251
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
374
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/create_scheduler_definition.py.html>`__ to see an example of how to use create_scheduler_definition API.
|
252
375
|
"""
|
253
376
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
254
377
|
required_arguments = []
|
255
378
|
resource_path = "/schedulerDefinitions"
|
256
379
|
method = "POST"
|
257
380
|
operation_name = "create_scheduler_definition"
|
258
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
381
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerDefinition/CreateSchedulerDefinition"
|
259
382
|
|
260
383
|
# Don't accept unknown kwargs
|
261
384
|
expected_kwargs = [
|
@@ -314,11 +437,11 @@ class FleetAppsManagementOperationsClient(object):
|
|
314
437
|
|
315
438
|
def delete_patch(self, patch_id, **kwargs):
|
316
439
|
"""
|
317
|
-
Deletes
|
440
|
+
Deletes the patch specified by identifier.
|
318
441
|
|
319
442
|
|
320
443
|
:param str patch_id: (required)
|
321
|
-
|
444
|
+
Unique Patch identifier.
|
322
445
|
|
323
446
|
:param str if_match: (optional)
|
324
447
|
For optimistic concurrency control. In the PUT or DELETE call
|
@@ -346,14 +469,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
346
469
|
:rtype: :class:`~oci.response.Response`
|
347
470
|
|
348
471
|
:example:
|
349
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
472
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/delete_patch.py.html>`__ to see an example of how to use delete_patch API.
|
350
473
|
"""
|
351
474
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
352
475
|
required_arguments = ['patchId']
|
353
476
|
resource_path = "/patches/{patchId}"
|
354
477
|
method = "DELETE"
|
355
478
|
operation_name = "delete_patch"
|
356
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
479
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Patch/DeletePatch"
|
357
480
|
|
358
481
|
# Don't accept unknown kwargs
|
359
482
|
expected_kwargs = [
|
@@ -451,14 +574,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
451
574
|
:rtype: :class:`~oci.response.Response`
|
452
575
|
|
453
576
|
:example:
|
454
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
577
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/delete_scheduler_definition.py.html>`__ to see an example of how to use delete_scheduler_definition API.
|
455
578
|
"""
|
456
579
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
457
580
|
required_arguments = ['schedulerDefinitionId']
|
458
581
|
resource_path = "/schedulerDefinitions/{schedulerDefinitionId}"
|
459
582
|
method = "DELETE"
|
460
583
|
operation_name = "delete_scheduler_definition"
|
461
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
584
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerDefinition/DeleteSchedulerDefinition"
|
462
585
|
|
463
586
|
# Don't accept unknown kwargs
|
464
587
|
expected_kwargs = [
|
@@ -524,7 +647,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
524
647
|
|
525
648
|
def delete_scheduler_job(self, scheduler_job_id, **kwargs):
|
526
649
|
"""
|
527
|
-
|
650
|
+
Deletes the schedule job specified by an identifier.
|
528
651
|
|
529
652
|
|
530
653
|
:param str scheduler_job_id: (required)
|
@@ -556,14 +679,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
556
679
|
:rtype: :class:`~oci.response.Response`
|
557
680
|
|
558
681
|
:example:
|
559
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/delete_scheduler_job.py.html>`__ to see an example of how to use delete_scheduler_job API.
|
560
683
|
"""
|
561
684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
562
685
|
required_arguments = ['schedulerJobId']
|
563
686
|
resource_path = "/schedulerJobs/{schedulerJobId}"
|
564
687
|
method = "DELETE"
|
565
688
|
operation_name = "delete_scheduler_job"
|
566
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
689
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJob/DeleteSchedulerJob"
|
567
690
|
|
568
691
|
# Don't accept unknown kwargs
|
569
692
|
expected_kwargs = [
|
@@ -668,14 +791,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
668
791
|
:rtype: :class:`~oci.response.Response`
|
669
792
|
|
670
793
|
:example:
|
671
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
794
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/export_compliance_report.py.html>`__ to see an example of how to use export_compliance_report API.
|
672
795
|
"""
|
673
796
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
674
797
|
required_arguments = []
|
675
798
|
resource_path = "/complianceRecords/actions/exportComplianceReport"
|
676
799
|
method = "POST"
|
677
800
|
operation_name = "export_compliance_report"
|
678
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
801
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ComplianceRecord/ExportComplianceReport"
|
679
802
|
|
680
803
|
# Don't accept unknown kwargs
|
681
804
|
expected_kwargs = [
|
@@ -770,14 +893,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
770
893
|
:rtype: :class:`~oci.response.Response`
|
771
894
|
|
772
895
|
:example:
|
773
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
896
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/get_execution.py.html>`__ to see an example of how to use get_execution API.
|
774
897
|
"""
|
775
898
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
776
899
|
required_arguments = ['schedulerJobId', 'jobActivityId', 'resourceId', 'executionId']
|
777
900
|
resource_path = "/schedulerJobs/{schedulerJobId}/jobActivities/{jobActivityId}/resources/{resourceId}/executions/{executionId}"
|
778
901
|
method = "GET"
|
779
902
|
operation_name = "get_execution"
|
780
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
903
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Execution/GetExecution"
|
781
904
|
|
782
905
|
# Don't accept unknown kwargs
|
783
906
|
expected_kwargs = [
|
@@ -874,14 +997,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
874
997
|
:rtype: :class:`~oci.response.Response`
|
875
998
|
|
876
999
|
:example:
|
877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1000
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/get_job_activity.py.html>`__ to see an example of how to use get_job_activity API.
|
878
1001
|
"""
|
879
1002
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
880
1003
|
required_arguments = ['schedulerJobId', 'jobActivityId']
|
881
1004
|
resource_path = "/schedulerJobs/{schedulerJobId}/jobActivities/{jobActivityId}"
|
882
1005
|
method = "GET"
|
883
1006
|
operation_name = "get_job_activity"
|
884
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1007
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/JobActivity/GetJobActivity"
|
885
1008
|
|
886
1009
|
# Don't accept unknown kwargs
|
887
1010
|
expected_kwargs = [
|
@@ -948,11 +1071,11 @@ class FleetAppsManagementOperationsClient(object):
|
|
948
1071
|
|
949
1072
|
def get_patch(self, patch_id, **kwargs):
|
950
1073
|
"""
|
951
|
-
Gets a Patch by identifier
|
1074
|
+
Gets a Patch by identifier.
|
952
1075
|
|
953
1076
|
|
954
1077
|
:param str patch_id: (required)
|
955
|
-
|
1078
|
+
Unique Patch identifier.
|
956
1079
|
|
957
1080
|
:param str opc_request_id: (optional)
|
958
1081
|
The client request ID for tracing.
|
@@ -973,14 +1096,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
973
1096
|
:rtype: :class:`~oci.response.Response`
|
974
1097
|
|
975
1098
|
:example:
|
976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1099
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/get_patch.py.html>`__ to see an example of how to use get_patch API.
|
977
1100
|
"""
|
978
1101
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
979
1102
|
required_arguments = ['patchId']
|
980
1103
|
resource_path = "/patches/{patchId}"
|
981
1104
|
method = "GET"
|
982
1105
|
operation_name = "get_patch"
|
983
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1106
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Patch/GetPatch"
|
984
1107
|
|
985
1108
|
# Don't accept unknown kwargs
|
986
1109
|
expected_kwargs = [
|
@@ -1071,14 +1194,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1071
1194
|
:rtype: :class:`~oci.response.Response`
|
1072
1195
|
|
1073
1196
|
:example:
|
1074
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1197
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/get_scheduler_definition.py.html>`__ to see an example of how to use get_scheduler_definition API.
|
1075
1198
|
"""
|
1076
1199
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1077
1200
|
required_arguments = ['schedulerDefinitionId']
|
1078
1201
|
resource_path = "/schedulerDefinitions/{schedulerDefinitionId}"
|
1079
1202
|
method = "GET"
|
1080
1203
|
operation_name = "get_scheduler_definition"
|
1081
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1204
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerDefinition/GetSchedulerDefinition"
|
1082
1205
|
|
1083
1206
|
# Don't accept unknown kwargs
|
1084
1207
|
expected_kwargs = [
|
@@ -1169,14 +1292,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1169
1292
|
:rtype: :class:`~oci.response.Response`
|
1170
1293
|
|
1171
1294
|
:example:
|
1172
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1295
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/get_scheduler_job.py.html>`__ to see an example of how to use get_scheduler_job API.
|
1173
1296
|
"""
|
1174
1297
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1175
1298
|
required_arguments = ['schedulerJobId']
|
1176
1299
|
resource_path = "/schedulerJobs/{schedulerJobId}"
|
1177
1300
|
method = "GET"
|
1178
1301
|
operation_name = "get_scheduler_job"
|
1179
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1302
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJob/GetSchedulerJob"
|
1180
1303
|
|
1181
1304
|
# Don't accept unknown kwargs
|
1182
1305
|
expected_kwargs = [
|
@@ -1240,12 +1363,12 @@ class FleetAppsManagementOperationsClient(object):
|
|
1240
1363
|
api_reference_link=api_reference_link,
|
1241
1364
|
required_arguments=required_arguments)
|
1242
1365
|
|
1243
|
-
def list_compliance_records(self, **kwargs):
|
1366
|
+
def list_compliance_records(self, compartment_id, **kwargs):
|
1244
1367
|
"""
|
1245
1368
|
Gets a list of complianceDetails.
|
1246
1369
|
|
1247
1370
|
|
1248
|
-
:param str compartment_id: (
|
1371
|
+
:param str compartment_id: (required)
|
1249
1372
|
The ID of the compartment in which to list resources.
|
1250
1373
|
|
1251
1374
|
:param str resource_id: (optional)
|
@@ -1266,6 +1389,10 @@ class FleetAppsManagementOperationsClient(object):
|
|
1266
1389
|
:param str compliance_state: (optional)
|
1267
1390
|
Target Compliance State.
|
1268
1391
|
|
1392
|
+
:param bool compartment_id_in_subtree: (optional)
|
1393
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
1394
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
1395
|
+
|
1269
1396
|
:param int limit: (optional)
|
1270
1397
|
The maximum number of items to return.
|
1271
1398
|
|
@@ -1301,26 +1428,26 @@ class FleetAppsManagementOperationsClient(object):
|
|
1301
1428
|
:rtype: :class:`~oci.response.Response`
|
1302
1429
|
|
1303
1430
|
:example:
|
1304
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1431
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_compliance_records.py.html>`__ to see an example of how to use list_compliance_records API.
|
1305
1432
|
"""
|
1306
1433
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1307
|
-
required_arguments = []
|
1434
|
+
required_arguments = ['compartmentId']
|
1308
1435
|
resource_path = "/complianceRecords"
|
1309
1436
|
method = "GET"
|
1310
1437
|
operation_name = "list_compliance_records"
|
1311
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1438
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ComplianceRecordCollection/ListComplianceRecords"
|
1312
1439
|
|
1313
1440
|
# Don't accept unknown kwargs
|
1314
1441
|
expected_kwargs = [
|
1315
1442
|
"allow_control_chars",
|
1316
1443
|
"retry_strategy",
|
1317
|
-
"compartment_id",
|
1318
1444
|
"resource_id",
|
1319
1445
|
"entity_id",
|
1320
1446
|
"product_name",
|
1321
1447
|
"product_stack",
|
1322
1448
|
"target_name",
|
1323
1449
|
"compliance_state",
|
1450
|
+
"compartment_id_in_subtree",
|
1324
1451
|
"limit",
|
1325
1452
|
"page",
|
1326
1453
|
"sort_order",
|
@@ -1347,13 +1474,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1347
1474
|
)
|
1348
1475
|
|
1349
1476
|
query_params = {
|
1350
|
-
"compartmentId":
|
1477
|
+
"compartmentId": compartment_id,
|
1351
1478
|
"resourceId": kwargs.get("resource_id", missing),
|
1352
1479
|
"entityId": kwargs.get("entity_id", missing),
|
1353
1480
|
"productName": kwargs.get("product_name", missing),
|
1354
1481
|
"productStack": kwargs.get("product_stack", missing),
|
1355
1482
|
"targetName": kwargs.get("target_name", missing),
|
1356
1483
|
"complianceState": kwargs.get("compliance_state", missing),
|
1484
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
1357
1485
|
"limit": kwargs.get("limit", missing),
|
1358
1486
|
"page": kwargs.get("page", missing),
|
1359
1487
|
"sortOrder": kwargs.get("sort_order", missing),
|
@@ -1463,14 +1591,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1463
1591
|
:rtype: :class:`~oci.response.Response`
|
1464
1592
|
|
1465
1593
|
:example:
|
1466
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1594
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_executions.py.html>`__ to see an example of how to use list_executions API.
|
1467
1595
|
"""
|
1468
1596
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1469
1597
|
required_arguments = ['schedulerJobId', 'jobActivityId', 'resourceId']
|
1470
1598
|
resource_path = "/schedulerJobs/{schedulerJobId}/jobActivities/{jobActivityId}/resources/{resourceId}/executions"
|
1471
1599
|
method = "GET"
|
1472
1600
|
operation_name = "list_executions"
|
1473
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1601
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ExecutionCollection/ListExecutions"
|
1474
1602
|
|
1475
1603
|
# Don't accept unknown kwargs
|
1476
1604
|
expected_kwargs = [
|
@@ -1572,19 +1700,168 @@ class FleetAppsManagementOperationsClient(object):
|
|
1572
1700
|
api_reference_link=api_reference_link,
|
1573
1701
|
required_arguments=required_arguments)
|
1574
1702
|
|
1703
|
+
def list_inventory_records(self, compartment_id, **kwargs):
|
1704
|
+
"""
|
1705
|
+
Gets a list of inventoryDetails.
|
1706
|
+
|
1707
|
+
|
1708
|
+
:param str compartment_id: (required)
|
1709
|
+
The ID of the compartment in which to list resources.
|
1710
|
+
|
1711
|
+
:param bool compartment_id_in_subtree: (optional)
|
1712
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
1713
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
1714
|
+
|
1715
|
+
:param str fleet_id: (optional)
|
1716
|
+
unique Fleet identifier
|
1717
|
+
|
1718
|
+
:param str resource_id: (optional)
|
1719
|
+
Resource Identifier
|
1720
|
+
|
1721
|
+
:param int limit: (optional)
|
1722
|
+
The maximum number of items to return.
|
1723
|
+
|
1724
|
+
:param str page: (optional)
|
1725
|
+
A token representing the position at which to start retrieving results. This must come from the `opc-next-page` header field of a previous response.
|
1726
|
+
|
1727
|
+
:param str sort_order: (optional)
|
1728
|
+
The sort order to use, either 'ASC' or 'DESC'.
|
1729
|
+
|
1730
|
+
Allowed values are: "ASC", "DESC"
|
1731
|
+
|
1732
|
+
:param str opc_request_id: (optional)
|
1733
|
+
The client request ID for tracing.
|
1734
|
+
|
1735
|
+
:param str sort_by: (optional)
|
1736
|
+
The field to sort by. Only one sort order may be provided.
|
1737
|
+
|
1738
|
+
Allowed values are: "targetName", "targetProductName", "targetResourceId", "osType", "architecture"
|
1739
|
+
|
1740
|
+
:param obj retry_strategy: (optional)
|
1741
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
1742
|
+
|
1743
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
1744
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
1745
|
+
|
1746
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
1747
|
+
|
1748
|
+
:param bool allow_control_chars: (optional)
|
1749
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
1750
|
+
By default, the response will not allow control characters in strings
|
1751
|
+
|
1752
|
+
:return: A :class:`~oci.response.Response` object with data of type :class:`~oci.fleet_apps_management.models.InventoryRecordCollection`
|
1753
|
+
:rtype: :class:`~oci.response.Response`
|
1754
|
+
|
1755
|
+
:example:
|
1756
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_inventory_records.py.html>`__ to see an example of how to use list_inventory_records API.
|
1757
|
+
"""
|
1758
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1759
|
+
required_arguments = ['compartmentId']
|
1760
|
+
resource_path = "/inventoryRecords"
|
1761
|
+
method = "GET"
|
1762
|
+
operation_name = "list_inventory_records"
|
1763
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/InventoryRecordCollection/ListInventoryRecords"
|
1764
|
+
|
1765
|
+
# Don't accept unknown kwargs
|
1766
|
+
expected_kwargs = [
|
1767
|
+
"allow_control_chars",
|
1768
|
+
"retry_strategy",
|
1769
|
+
"compartment_id_in_subtree",
|
1770
|
+
"fleet_id",
|
1771
|
+
"resource_id",
|
1772
|
+
"limit",
|
1773
|
+
"page",
|
1774
|
+
"sort_order",
|
1775
|
+
"opc_request_id",
|
1776
|
+
"sort_by"
|
1777
|
+
]
|
1778
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
1779
|
+
if extra_kwargs:
|
1780
|
+
raise ValueError(
|
1781
|
+
f"list_inventory_records got unknown kwargs: {extra_kwargs!r}")
|
1782
|
+
|
1783
|
+
if 'sort_order' in kwargs:
|
1784
|
+
sort_order_allowed_values = ["ASC", "DESC"]
|
1785
|
+
if kwargs['sort_order'] not in sort_order_allowed_values:
|
1786
|
+
raise ValueError(
|
1787
|
+
f"Invalid value for `sort_order`, must be one of { sort_order_allowed_values }"
|
1788
|
+
)
|
1789
|
+
|
1790
|
+
if 'sort_by' in kwargs:
|
1791
|
+
sort_by_allowed_values = ["targetName", "targetProductName", "targetResourceId", "osType", "architecture"]
|
1792
|
+
if kwargs['sort_by'] not in sort_by_allowed_values:
|
1793
|
+
raise ValueError(
|
1794
|
+
f"Invalid value for `sort_by`, must be one of { sort_by_allowed_values }"
|
1795
|
+
)
|
1796
|
+
|
1797
|
+
query_params = {
|
1798
|
+
"compartmentId": compartment_id,
|
1799
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
1800
|
+
"fleetId": kwargs.get("fleet_id", missing),
|
1801
|
+
"resourceId": kwargs.get("resource_id", missing),
|
1802
|
+
"limit": kwargs.get("limit", missing),
|
1803
|
+
"page": kwargs.get("page", missing),
|
1804
|
+
"sortOrder": kwargs.get("sort_order", missing),
|
1805
|
+
"sortBy": kwargs.get("sort_by", missing)
|
1806
|
+
}
|
1807
|
+
query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
|
1808
|
+
|
1809
|
+
header_params = {
|
1810
|
+
"accept": "application/json",
|
1811
|
+
"content-type": "application/json",
|
1812
|
+
"opc-request-id": kwargs.get("opc_request_id", missing)
|
1813
|
+
}
|
1814
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
1815
|
+
|
1816
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
1817
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
1818
|
+
client_retry_strategy=self.retry_strategy
|
1819
|
+
)
|
1820
|
+
if retry_strategy is None:
|
1821
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
1822
|
+
|
1823
|
+
if retry_strategy:
|
1824
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
1825
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
1826
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
1827
|
+
return retry_strategy.make_retrying_call(
|
1828
|
+
self.base_client.call_api,
|
1829
|
+
resource_path=resource_path,
|
1830
|
+
method=method,
|
1831
|
+
query_params=query_params,
|
1832
|
+
header_params=header_params,
|
1833
|
+
response_type="InventoryRecordCollection",
|
1834
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
1835
|
+
operation_name=operation_name,
|
1836
|
+
api_reference_link=api_reference_link,
|
1837
|
+
required_arguments=required_arguments)
|
1838
|
+
else:
|
1839
|
+
return self.base_client.call_api(
|
1840
|
+
resource_path=resource_path,
|
1841
|
+
method=method,
|
1842
|
+
query_params=query_params,
|
1843
|
+
header_params=header_params,
|
1844
|
+
response_type="InventoryRecordCollection",
|
1845
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
1846
|
+
operation_name=operation_name,
|
1847
|
+
api_reference_link=api_reference_link,
|
1848
|
+
required_arguments=required_arguments)
|
1849
|
+
|
1575
1850
|
def list_patches(self, **kwargs):
|
1576
1851
|
"""
|
1577
|
-
Returns a list of Patches.
|
1852
|
+
Returns a list of all the Patches in the specified compartment.
|
1853
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
1578
1854
|
|
1579
1855
|
|
1580
1856
|
:param str compartment_id: (optional)
|
1581
1857
|
The ID of the compartment in which to list resources.
|
1858
|
+
Empty only if the resource OCID query param is not specified.
|
1582
1859
|
|
1583
1860
|
:param str product_id: (optional)
|
1584
1861
|
Product platformConfigurationId associated with the Patch.
|
1585
1862
|
|
1586
1863
|
:param str version: (optional)
|
1587
|
-
Product version
|
1864
|
+
Product version.
|
1588
1865
|
|
1589
1866
|
:param str type: (optional)
|
1590
1867
|
DefinedBy type.
|
@@ -1598,16 +1875,17 @@ class FleetAppsManagementOperationsClient(object):
|
|
1598
1875
|
A filter to return only resources that match the entire name given.
|
1599
1876
|
|
1600
1877
|
:param str id: (optional)
|
1601
|
-
|
1878
|
+
Unique identifier or OCID for listing a single Patch by id.
|
1879
|
+
Either compartmentId or id must be provided.
|
1602
1880
|
|
1603
1881
|
:param datetime time_released_greater_than_or_equal_to: (optional)
|
1604
|
-
|
1882
|
+
A filter to return patches whose release date is greater than or equal to the given date.
|
1605
1883
|
|
1606
1884
|
:param datetime time_released_less_than: (optional)
|
1607
|
-
|
1885
|
+
A filter to return patches whose release date is less than the given date.
|
1608
1886
|
|
1609
1887
|
:param bool should_compliance_policy_rules_be_applied: (optional)
|
1610
|
-
Filter patch based on compliance policy rules for the Product
|
1888
|
+
Filter patch based on compliance policy rules for the Product.
|
1611
1889
|
|
1612
1890
|
:param int limit: (optional)
|
1613
1891
|
The maximum number of items to return.
|
@@ -1621,9 +1899,9 @@ class FleetAppsManagementOperationsClient(object):
|
|
1621
1899
|
Allowed values are: "ACTIVE", "INACTIVE", "DELETED", "DELETING", "FAILED", "UPDATING"
|
1622
1900
|
|
1623
1901
|
:param str sort_by: (optional)
|
1624
|
-
The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for
|
1902
|
+
The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for name is ascending.
|
1625
1903
|
|
1626
|
-
Allowed values are: "timeCreated", "
|
1904
|
+
Allowed values are: "timeCreated", "name"
|
1627
1905
|
|
1628
1906
|
:param str sort_order: (optional)
|
1629
1907
|
The sort order to use, either 'ASC' or 'DESC'.
|
@@ -1649,14 +1927,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1649
1927
|
:rtype: :class:`~oci.response.Response`
|
1650
1928
|
|
1651
1929
|
:example:
|
1652
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1930
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_patches.py.html>`__ to see an example of how to use list_patches API.
|
1653
1931
|
"""
|
1654
1932
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1655
1933
|
required_arguments = []
|
1656
1934
|
resource_path = "/patches"
|
1657
1935
|
method = "GET"
|
1658
1936
|
operation_name = "list_patches"
|
1659
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
1937
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/PatchCollection/ListPatches"
|
1660
1938
|
|
1661
1939
|
# Don't accept unknown kwargs
|
1662
1940
|
expected_kwargs = [
|
@@ -1699,7 +1977,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
1699
1977
|
)
|
1700
1978
|
|
1701
1979
|
if 'sort_by' in kwargs:
|
1702
|
-
sort_by_allowed_values = ["timeCreated", "
|
1980
|
+
sort_by_allowed_values = ["timeCreated", "name"]
|
1703
1981
|
if kwargs['sort_by'] not in sort_by_allowed_values:
|
1704
1982
|
raise ValueError(
|
1705
1983
|
f"Invalid value for `sort_by`, must be one of { sort_by_allowed_values }"
|
@@ -1830,14 +2108,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
1830
2108
|
:rtype: :class:`~oci.response.Response`
|
1831
2109
|
|
1832
2110
|
:example:
|
1833
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2111
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_resources.py.html>`__ to see an example of how to use list_resources API.
|
1834
2112
|
"""
|
1835
2113
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1836
2114
|
required_arguments = ['schedulerJobId', 'jobActivityId']
|
1837
2115
|
resource_path = "/schedulerJobs/{schedulerJobId}/jobActivities/{jobActivityId}/resources"
|
1838
2116
|
method = "GET"
|
1839
2117
|
operation_name = "list_resources"
|
1840
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
2118
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ResourceCollection/ListResources"
|
1841
2119
|
|
1842
2120
|
# Don't accept unknown kwargs
|
1843
2121
|
expected_kwargs = [
|
@@ -1946,9 +2224,6 @@ class FleetAppsManagementOperationsClient(object):
|
|
1946
2224
|
:param str scheduler_definition_id: (required)
|
1947
2225
|
unique SchedulerDefinition identifier
|
1948
2226
|
|
1949
|
-
:param str compartment_id: (optional)
|
1950
|
-
The ID of the compartment in which to list resources.
|
1951
|
-
|
1952
2227
|
:param str display_name: (optional)
|
1953
2228
|
A filter to return only resources that match the entire display name given.
|
1954
2229
|
|
@@ -1987,20 +2262,19 @@ class FleetAppsManagementOperationsClient(object):
|
|
1987
2262
|
:rtype: :class:`~oci.response.Response`
|
1988
2263
|
|
1989
2264
|
:example:
|
1990
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2265
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_scheduled_fleets.py.html>`__ to see an example of how to use list_scheduled_fleets API.
|
1991
2266
|
"""
|
1992
2267
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1993
2268
|
required_arguments = ['schedulerDefinitionId']
|
1994
2269
|
resource_path = "/schedulerDefinitions/{schedulerDefinitionId}/scheduledFleets"
|
1995
2270
|
method = "GET"
|
1996
2271
|
operation_name = "list_scheduled_fleets"
|
1997
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
2272
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ScheduledFleetCollection/ListScheduledFleets"
|
1998
2273
|
|
1999
2274
|
# Don't accept unknown kwargs
|
2000
2275
|
expected_kwargs = [
|
2001
2276
|
"allow_control_chars",
|
2002
2277
|
"retry_strategy",
|
2003
|
-
"compartment_id",
|
2004
2278
|
"display_name",
|
2005
2279
|
"limit",
|
2006
2280
|
"page",
|
@@ -2038,7 +2312,6 @@ class FleetAppsManagementOperationsClient(object):
|
|
2038
2312
|
)
|
2039
2313
|
|
2040
2314
|
query_params = {
|
2041
|
-
"compartmentId": kwargs.get("compartment_id", missing),
|
2042
2315
|
"displayName": kwargs.get("display_name", missing),
|
2043
2316
|
"limit": kwargs.get("limit", missing),
|
2044
2317
|
"page": kwargs.get("page", missing),
|
@@ -2092,11 +2365,13 @@ class FleetAppsManagementOperationsClient(object):
|
|
2092
2365
|
|
2093
2366
|
def list_scheduler_definitions(self, **kwargs):
|
2094
2367
|
"""
|
2095
|
-
|
2368
|
+
Returns a list of all the Schedule Definitions in the specified compartment.
|
2369
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
2096
2370
|
|
2097
2371
|
|
2098
2372
|
:param str compartment_id: (optional)
|
2099
2373
|
The ID of the compartment in which to list resources.
|
2374
|
+
Empty only if the resource OCID query param is not specified.
|
2100
2375
|
|
2101
2376
|
:param str lifecycle_state: (optional)
|
2102
2377
|
A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
|
@@ -2110,7 +2385,8 @@ class FleetAppsManagementOperationsClient(object):
|
|
2110
2385
|
A filter to return only dchedule definitions whose assocaited product matches the given product
|
2111
2386
|
|
2112
2387
|
:param str id: (optional)
|
2113
|
-
|
2388
|
+
Unique identifier or OCID for listing a single Schedule Definition by id.
|
2389
|
+
Either compartmentId or id must be provided.
|
2114
2390
|
|
2115
2391
|
:param str maintenance_window_id: (optional)
|
2116
2392
|
A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
|
@@ -2118,6 +2394,15 @@ class FleetAppsManagementOperationsClient(object):
|
|
2118
2394
|
:param str runbook_id: (optional)
|
2119
2395
|
A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
|
2120
2396
|
|
2397
|
+
:param str runbook_version_name: (optional)
|
2398
|
+
RunbookVersion Name filter
|
2399
|
+
|
2400
|
+
:param datetime time_scheduled_greater_than_or_equal_to: (optional)
|
2401
|
+
Scheduled Time
|
2402
|
+
|
2403
|
+
:param datetime time_scheduled_less_than: (optional)
|
2404
|
+
Scheduled Time
|
2405
|
+
|
2121
2406
|
:param str fleet_id: (optional)
|
2122
2407
|
unique Fleet identifier
|
2123
2408
|
|
@@ -2156,14 +2441,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
2156
2441
|
:rtype: :class:`~oci.response.Response`
|
2157
2442
|
|
2158
2443
|
:example:
|
2159
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2444
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_scheduler_definitions.py.html>`__ to see an example of how to use list_scheduler_definitions API.
|
2160
2445
|
"""
|
2161
2446
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2162
2447
|
required_arguments = []
|
2163
2448
|
resource_path = "/schedulerDefinitions"
|
2164
2449
|
method = "GET"
|
2165
2450
|
operation_name = "list_scheduler_definitions"
|
2166
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
2451
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerDefinitionCollection/ListSchedulerDefinitions"
|
2167
2452
|
|
2168
2453
|
# Don't accept unknown kwargs
|
2169
2454
|
expected_kwargs = [
|
@@ -2176,6 +2461,9 @@ class FleetAppsManagementOperationsClient(object):
|
|
2176
2461
|
"id",
|
2177
2462
|
"maintenance_window_id",
|
2178
2463
|
"runbook_id",
|
2464
|
+
"runbook_version_name",
|
2465
|
+
"time_scheduled_greater_than_or_equal_to",
|
2466
|
+
"time_scheduled_less_than",
|
2179
2467
|
"fleet_id",
|
2180
2468
|
"limit",
|
2181
2469
|
"page",
|
@@ -2217,6 +2505,9 @@ class FleetAppsManagementOperationsClient(object):
|
|
2217
2505
|
"id": kwargs.get("id", missing),
|
2218
2506
|
"maintenanceWindowId": kwargs.get("maintenance_window_id", missing),
|
2219
2507
|
"runbookId": kwargs.get("runbook_id", missing),
|
2508
|
+
"runbookVersionName": kwargs.get("runbook_version_name", missing),
|
2509
|
+
"timeScheduledGreaterThanOrEqualTo": kwargs.get("time_scheduled_greater_than_or_equal_to", missing),
|
2510
|
+
"timeScheduledLessThan": kwargs.get("time_scheduled_less_than", missing),
|
2220
2511
|
"fleetId": kwargs.get("fleet_id", missing),
|
2221
2512
|
"limit": kwargs.get("limit", missing),
|
2222
2513
|
"page": kwargs.get("page", missing),
|
@@ -2266,18 +2557,202 @@ class FleetAppsManagementOperationsClient(object):
|
|
2266
2557
|
api_reference_link=api_reference_link,
|
2267
2558
|
required_arguments=required_arguments)
|
2268
2559
|
|
2560
|
+
def list_scheduler_executions(self, **kwargs):
|
2561
|
+
"""
|
2562
|
+
Returns a list of all Fleets that are scheduled.
|
2563
|
+
|
2564
|
+
|
2565
|
+
:param str compartment_id: (optional)
|
2566
|
+
The ID of the compartment in which to list resources.
|
2567
|
+
Empty only if the resource OCID query param is not specified.
|
2568
|
+
|
2569
|
+
:param str display_name: (optional)
|
2570
|
+
A filter to return only resources that match the entire display name given.
|
2571
|
+
|
2572
|
+
:param datetime time_scheduled_greater_than_or_equal_to: (optional)
|
2573
|
+
Scheduled Time
|
2574
|
+
|
2575
|
+
:param datetime time_scheduled_less_than: (optional)
|
2576
|
+
Scheduled Time
|
2577
|
+
|
2578
|
+
:param str scheduler_defintion_id: (optional)
|
2579
|
+
SchedulerDefinition identifier
|
2580
|
+
|
2581
|
+
:param str scheduler_job_id: (optional)
|
2582
|
+
SchedulerJob identifier filter
|
2583
|
+
|
2584
|
+
:param str resource_id: (optional)
|
2585
|
+
ResourceId filter (Example FleetId)
|
2586
|
+
|
2587
|
+
:param str runbook_id: (optional)
|
2588
|
+
A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
|
2589
|
+
|
2590
|
+
:param str runbook_version_name: (optional)
|
2591
|
+
RunbookVersion Name filter
|
2592
|
+
|
2593
|
+
:param str substate: (optional)
|
2594
|
+
A filter to return only resources their subState matches the given subState.
|
2595
|
+
|
2596
|
+
:param int limit: (optional)
|
2597
|
+
The maximum number of items to return.
|
2598
|
+
|
2599
|
+
:param str page: (optional)
|
2600
|
+
A token representing the position at which to start retrieving results. This must come from the `opc-next-page` header field of a previous response.
|
2601
|
+
|
2602
|
+
:param str sort_order: (optional)
|
2603
|
+
The sort order to use, either 'ASC' or 'DESC'.
|
2604
|
+
|
2605
|
+
Allowed values are: "ASC", "DESC"
|
2606
|
+
|
2607
|
+
:param str sort_by: (optional)
|
2608
|
+
The field to sort by. Only one sort order may be provided. Default order for timeCreated and timeScheduled is descending.
|
2609
|
+
|
2610
|
+
Allowed values are: "timeCreated", "timeScheduled"
|
2611
|
+
|
2612
|
+
:param str opc_request_id: (optional)
|
2613
|
+
The client request ID for tracing.
|
2614
|
+
|
2615
|
+
:param obj retry_strategy: (optional)
|
2616
|
+
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
|
2617
|
+
|
2618
|
+
This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
|
2619
|
+
The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
|
2620
|
+
|
2621
|
+
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
|
2622
|
+
|
2623
|
+
:param bool allow_control_chars: (optional)
|
2624
|
+
allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
|
2625
|
+
By default, the response will not allow control characters in strings
|
2626
|
+
|
2627
|
+
:return: A :class:`~oci.response.Response` object with data of type :class:`~oci.fleet_apps_management.models.SchedulerExecutionCollection`
|
2628
|
+
:rtype: :class:`~oci.response.Response`
|
2629
|
+
|
2630
|
+
:example:
|
2631
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_scheduler_executions.py.html>`__ to see an example of how to use list_scheduler_executions API.
|
2632
|
+
"""
|
2633
|
+
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2634
|
+
required_arguments = []
|
2635
|
+
resource_path = "/schedulerExecutions"
|
2636
|
+
method = "GET"
|
2637
|
+
operation_name = "list_scheduler_executions"
|
2638
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerExecutionCollection/ListSchedulerExecutions"
|
2639
|
+
|
2640
|
+
# Don't accept unknown kwargs
|
2641
|
+
expected_kwargs = [
|
2642
|
+
"allow_control_chars",
|
2643
|
+
"retry_strategy",
|
2644
|
+
"compartment_id",
|
2645
|
+
"display_name",
|
2646
|
+
"time_scheduled_greater_than_or_equal_to",
|
2647
|
+
"time_scheduled_less_than",
|
2648
|
+
"scheduler_defintion_id",
|
2649
|
+
"scheduler_job_id",
|
2650
|
+
"resource_id",
|
2651
|
+
"runbook_id",
|
2652
|
+
"runbook_version_name",
|
2653
|
+
"substate",
|
2654
|
+
"limit",
|
2655
|
+
"page",
|
2656
|
+
"sort_order",
|
2657
|
+
"sort_by",
|
2658
|
+
"opc_request_id"
|
2659
|
+
]
|
2660
|
+
extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
|
2661
|
+
if extra_kwargs:
|
2662
|
+
raise ValueError(
|
2663
|
+
f"list_scheduler_executions got unknown kwargs: {extra_kwargs!r}")
|
2664
|
+
|
2665
|
+
if 'sort_order' in kwargs:
|
2666
|
+
sort_order_allowed_values = ["ASC", "DESC"]
|
2667
|
+
if kwargs['sort_order'] not in sort_order_allowed_values:
|
2668
|
+
raise ValueError(
|
2669
|
+
f"Invalid value for `sort_order`, must be one of { sort_order_allowed_values }"
|
2670
|
+
)
|
2671
|
+
|
2672
|
+
if 'sort_by' in kwargs:
|
2673
|
+
sort_by_allowed_values = ["timeCreated", "timeScheduled"]
|
2674
|
+
if kwargs['sort_by'] not in sort_by_allowed_values:
|
2675
|
+
raise ValueError(
|
2676
|
+
f"Invalid value for `sort_by`, must be one of { sort_by_allowed_values }"
|
2677
|
+
)
|
2678
|
+
|
2679
|
+
query_params = {
|
2680
|
+
"compartmentId": kwargs.get("compartment_id", missing),
|
2681
|
+
"displayName": kwargs.get("display_name", missing),
|
2682
|
+
"timeScheduledGreaterThanOrEqualTo": kwargs.get("time_scheduled_greater_than_or_equal_to", missing),
|
2683
|
+
"timeScheduledLessThan": kwargs.get("time_scheduled_less_than", missing),
|
2684
|
+
"schedulerDefintionId": kwargs.get("scheduler_defintion_id", missing),
|
2685
|
+
"schedulerJobId": kwargs.get("scheduler_job_id", missing),
|
2686
|
+
"resourceId": kwargs.get("resource_id", missing),
|
2687
|
+
"runbookId": kwargs.get("runbook_id", missing),
|
2688
|
+
"runbookVersionName": kwargs.get("runbook_version_name", missing),
|
2689
|
+
"substate": kwargs.get("substate", missing),
|
2690
|
+
"limit": kwargs.get("limit", missing),
|
2691
|
+
"page": kwargs.get("page", missing),
|
2692
|
+
"sortOrder": kwargs.get("sort_order", missing),
|
2693
|
+
"sortBy": kwargs.get("sort_by", missing)
|
2694
|
+
}
|
2695
|
+
query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
|
2696
|
+
|
2697
|
+
header_params = {
|
2698
|
+
"accept": "application/json",
|
2699
|
+
"content-type": "application/json",
|
2700
|
+
"opc-request-id": kwargs.get("opc_request_id", missing)
|
2701
|
+
}
|
2702
|
+
header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
|
2703
|
+
|
2704
|
+
retry_strategy = self.base_client.get_preferred_retry_strategy(
|
2705
|
+
operation_retry_strategy=kwargs.get('retry_strategy'),
|
2706
|
+
client_retry_strategy=self.retry_strategy
|
2707
|
+
)
|
2708
|
+
if retry_strategy is None:
|
2709
|
+
retry_strategy = retry.DEFAULT_RETRY_STRATEGY
|
2710
|
+
|
2711
|
+
if retry_strategy:
|
2712
|
+
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
|
2713
|
+
self.base_client.add_opc_client_retries_header(header_params)
|
2714
|
+
retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
|
2715
|
+
return retry_strategy.make_retrying_call(
|
2716
|
+
self.base_client.call_api,
|
2717
|
+
resource_path=resource_path,
|
2718
|
+
method=method,
|
2719
|
+
query_params=query_params,
|
2720
|
+
header_params=header_params,
|
2721
|
+
response_type="SchedulerExecutionCollection",
|
2722
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
2723
|
+
operation_name=operation_name,
|
2724
|
+
api_reference_link=api_reference_link,
|
2725
|
+
required_arguments=required_arguments)
|
2726
|
+
else:
|
2727
|
+
return self.base_client.call_api(
|
2728
|
+
resource_path=resource_path,
|
2729
|
+
method=method,
|
2730
|
+
query_params=query_params,
|
2731
|
+
header_params=header_params,
|
2732
|
+
response_type="SchedulerExecutionCollection",
|
2733
|
+
allow_control_chars=kwargs.get('allow_control_chars'),
|
2734
|
+
operation_name=operation_name,
|
2735
|
+
api_reference_link=api_reference_link,
|
2736
|
+
required_arguments=required_arguments)
|
2737
|
+
|
2269
2738
|
def list_scheduler_jobs(self, **kwargs):
|
2270
2739
|
"""
|
2271
|
-
|
2740
|
+
Returns a list of all schedule jobs in the specified compartment.
|
2741
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
2272
2742
|
|
2273
2743
|
|
2274
2744
|
:param str compartment_id: (optional)
|
2275
2745
|
The ID of the compartment in which to list resources.
|
2746
|
+
Empty only if the resource OCID query param is not specified.
|
2747
|
+
|
2748
|
+
:param bool compartment_id_in_subtree: (optional)
|
2749
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
2750
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
2276
2751
|
|
2277
2752
|
:param str lifecycle_state: (optional)
|
2278
2753
|
A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
2279
2754
|
|
2280
|
-
Allowed values are: "
|
2755
|
+
Allowed values are: "ACCEPTED", "IN_PROGRESS", "WAITING", "FAILED", "SUCCEEDED", "CANCELED", "NEEDS_ATTENTION"
|
2281
2756
|
|
2282
2757
|
:param str fleet_id: (optional)
|
2283
2758
|
unique Fleet identifier
|
@@ -2291,17 +2766,18 @@ class FleetAppsManagementOperationsClient(object):
|
|
2291
2766
|
:param bool is_remediation_job_needed: (optional)
|
2292
2767
|
Fetch next remediation Job
|
2293
2768
|
|
2294
|
-
:param str
|
2769
|
+
:param str substate: (optional)
|
2295
2770
|
A filter to return only resources their subState matches the given subState.
|
2296
2771
|
|
2297
2772
|
:param str display_name: (optional)
|
2298
2773
|
A filter to return only resources that match the entire display name given.
|
2299
2774
|
|
2300
2775
|
:param str id: (optional)
|
2301
|
-
|
2776
|
+
Unique identifier or OCID for listing a single Schedule Job by id.
|
2777
|
+
Either compartmentId or id must be provided.
|
2302
2778
|
|
2303
|
-
:param str
|
2304
|
-
|
2779
|
+
:param str scheduler_defintion_id: (optional)
|
2780
|
+
SchedulerDefinition identifier
|
2305
2781
|
|
2306
2782
|
:param int limit: (optional)
|
2307
2783
|
The maximum number of items to return.
|
@@ -2338,29 +2814,30 @@ class FleetAppsManagementOperationsClient(object):
|
|
2338
2814
|
:rtype: :class:`~oci.response.Response`
|
2339
2815
|
|
2340
2816
|
:example:
|
2341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2817
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_scheduler_jobs.py.html>`__ to see an example of how to use list_scheduler_jobs API.
|
2342
2818
|
"""
|
2343
2819
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2344
2820
|
required_arguments = []
|
2345
2821
|
resource_path = "/schedulerJobs"
|
2346
2822
|
method = "GET"
|
2347
2823
|
operation_name = "list_scheduler_jobs"
|
2348
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
2824
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJobCollection/ListSchedulerJobs"
|
2349
2825
|
|
2350
2826
|
# Don't accept unknown kwargs
|
2351
2827
|
expected_kwargs = [
|
2352
2828
|
"allow_control_chars",
|
2353
2829
|
"retry_strategy",
|
2354
2830
|
"compartment_id",
|
2831
|
+
"compartment_id_in_subtree",
|
2355
2832
|
"lifecycle_state",
|
2356
2833
|
"fleet_id",
|
2357
2834
|
"time_scheduled_greater_than_or_equal_to",
|
2358
2835
|
"time_scheduled_less_than",
|
2359
2836
|
"is_remediation_job_needed",
|
2360
|
-
"
|
2837
|
+
"substate",
|
2361
2838
|
"display_name",
|
2362
2839
|
"id",
|
2363
|
-
"
|
2840
|
+
"scheduler_defintion_id",
|
2364
2841
|
"limit",
|
2365
2842
|
"page",
|
2366
2843
|
"sort_order",
|
@@ -2373,7 +2850,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
2373
2850
|
f"list_scheduler_jobs got unknown kwargs: {extra_kwargs!r}")
|
2374
2851
|
|
2375
2852
|
if 'lifecycle_state' in kwargs:
|
2376
|
-
lifecycle_state_allowed_values = ["
|
2853
|
+
lifecycle_state_allowed_values = ["ACCEPTED", "IN_PROGRESS", "WAITING", "FAILED", "SUCCEEDED", "CANCELED", "NEEDS_ATTENTION"]
|
2377
2854
|
if kwargs['lifecycle_state'] not in lifecycle_state_allowed_values:
|
2378
2855
|
raise ValueError(
|
2379
2856
|
f"Invalid value for `lifecycle_state`, must be one of { lifecycle_state_allowed_values }"
|
@@ -2395,15 +2872,16 @@ class FleetAppsManagementOperationsClient(object):
|
|
2395
2872
|
|
2396
2873
|
query_params = {
|
2397
2874
|
"compartmentId": kwargs.get("compartment_id", missing),
|
2875
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
2398
2876
|
"lifecycleState": kwargs.get("lifecycle_state", missing),
|
2399
2877
|
"fleetId": kwargs.get("fleet_id", missing),
|
2400
2878
|
"timeScheduledGreaterThanOrEqualTo": kwargs.get("time_scheduled_greater_than_or_equal_to", missing),
|
2401
2879
|
"timeScheduledLessThan": kwargs.get("time_scheduled_less_than", missing),
|
2402
2880
|
"isRemediationJobNeeded": kwargs.get("is_remediation_job_needed", missing),
|
2403
|
-
"
|
2881
|
+
"substate": kwargs.get("substate", missing),
|
2404
2882
|
"displayName": kwargs.get("display_name", missing),
|
2405
2883
|
"id": kwargs.get("id", missing),
|
2406
|
-
"
|
2884
|
+
"schedulerDefintionId": kwargs.get("scheduler_defintion_id", missing),
|
2407
2885
|
"limit": kwargs.get("limit", missing),
|
2408
2886
|
"page": kwargs.get("page", missing),
|
2409
2887
|
"sortOrder": kwargs.get("sort_order", missing),
|
@@ -2510,14 +2988,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
2510
2988
|
:rtype: :class:`~oci.response.Response`
|
2511
2989
|
|
2512
2990
|
:example:
|
2513
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/list_steps.py.html>`__ to see an example of how to use list_steps API.
|
2514
2992
|
"""
|
2515
2993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2516
2994
|
required_arguments = ['schedulerJobId', 'jobActivityId']
|
2517
2995
|
resource_path = "/schedulerJobs/{schedulerJobId}/jobActivities/{jobActivityId}/steps"
|
2518
2996
|
method = "GET"
|
2519
2997
|
operation_name = "list_steps"
|
2520
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
2998
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/StepCollection/ListSteps"
|
2521
2999
|
|
2522
3000
|
# Don't accept unknown kwargs
|
2523
3001
|
expected_kwargs = [
|
@@ -2662,14 +3140,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
2662
3140
|
:rtype: :class:`~oci.response.Response`
|
2663
3141
|
|
2664
3142
|
:example:
|
2665
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3143
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/manage_job_execution.py.html>`__ to see an example of how to use manage_job_execution API.
|
2666
3144
|
"""
|
2667
3145
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2668
3146
|
required_arguments = ['schedulerJobId']
|
2669
3147
|
resource_path = "/schedulerJobs/{schedulerJobId}/actions/manageJobExecution"
|
2670
3148
|
method = "POST"
|
2671
3149
|
operation_name = "manage_job_execution"
|
2672
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3150
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJob/ManageJobExecution"
|
2673
3151
|
|
2674
3152
|
# Don't accept unknown kwargs
|
2675
3153
|
expected_kwargs = [
|
@@ -2740,11 +3218,16 @@ class FleetAppsManagementOperationsClient(object):
|
|
2740
3218
|
|
2741
3219
|
def summarize_compliance_record_counts(self, **kwargs):
|
2742
3220
|
"""
|
2743
|
-
Retrieve aggregated summary information of ComplianceRecords within a
|
3221
|
+
Retrieve aggregated summary information of ComplianceRecords within a Compartment.
|
2744
3222
|
|
2745
3223
|
|
2746
3224
|
:param str compartment_id: (optional)
|
2747
3225
|
The ID of the compartment in which to list resources.
|
3226
|
+
Empty only if the resource OCID query param is not specified.
|
3227
|
+
|
3228
|
+
:param bool compartment_id_in_subtree: (optional)
|
3229
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
3230
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
2748
3231
|
|
2749
3232
|
:param str opc_request_id: (optional)
|
2750
3233
|
The client request ID for tracing.
|
@@ -2776,20 +3259,21 @@ class FleetAppsManagementOperationsClient(object):
|
|
2776
3259
|
:rtype: :class:`~oci.response.Response`
|
2777
3260
|
|
2778
3261
|
:example:
|
2779
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3262
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/summarize_compliance_record_counts.py.html>`__ to see an example of how to use summarize_compliance_record_counts API.
|
2780
3263
|
"""
|
2781
3264
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2782
3265
|
required_arguments = []
|
2783
3266
|
resource_path = "/complianceRecordCounts"
|
2784
3267
|
method = "GET"
|
2785
3268
|
operation_name = "summarize_compliance_record_counts"
|
2786
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3269
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ComplianceRecordAggregationCollection/SummarizeComplianceRecordCounts"
|
2787
3270
|
|
2788
3271
|
# Don't accept unknown kwargs
|
2789
3272
|
expected_kwargs = [
|
2790
3273
|
"allow_control_chars",
|
2791
3274
|
"retry_strategy",
|
2792
3275
|
"compartment_id",
|
3276
|
+
"compartment_id_in_subtree",
|
2793
3277
|
"opc_request_id",
|
2794
3278
|
"limit",
|
2795
3279
|
"page",
|
@@ -2809,6 +3293,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
2809
3293
|
|
2810
3294
|
query_params = {
|
2811
3295
|
"compartmentId": kwargs.get("compartment_id", missing),
|
3296
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
2812
3297
|
"limit": kwargs.get("limit", missing),
|
2813
3298
|
"page": kwargs.get("page", missing),
|
2814
3299
|
"sortOrder": kwargs.get("sort_order", missing)
|
@@ -2858,11 +3343,16 @@ class FleetAppsManagementOperationsClient(object):
|
|
2858
3343
|
|
2859
3344
|
def summarize_managed_entity_counts(self, **kwargs):
|
2860
3345
|
"""
|
2861
|
-
Retrieve aggregated summary information of Managed
|
3346
|
+
Retrieve aggregated summary information of Managed entities within a Compartment.
|
2862
3347
|
|
2863
3348
|
|
2864
3349
|
:param str compartment_id: (optional)
|
2865
3350
|
The ID of the compartment in which to list resources.
|
3351
|
+
Empty only if the resource OCID query param is not specified.
|
3352
|
+
|
3353
|
+
:param bool compartment_id_in_subtree: (optional)
|
3354
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
3355
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
2866
3356
|
|
2867
3357
|
:param str opc_request_id: (optional)
|
2868
3358
|
The client request ID for tracing.
|
@@ -2894,20 +3384,21 @@ class FleetAppsManagementOperationsClient(object):
|
|
2894
3384
|
:rtype: :class:`~oci.response.Response`
|
2895
3385
|
|
2896
3386
|
:example:
|
2897
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3387
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/summarize_managed_entity_counts.py.html>`__ to see an example of how to use summarize_managed_entity_counts API.
|
2898
3388
|
"""
|
2899
3389
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2900
3390
|
required_arguments = []
|
2901
3391
|
resource_path = "/managedEntityCounts"
|
2902
3392
|
method = "GET"
|
2903
3393
|
operation_name = "summarize_managed_entity_counts"
|
2904
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3394
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/ManagedEntityAggregationCollection/SummarizeManagedEntityCounts"
|
2905
3395
|
|
2906
3396
|
# Don't accept unknown kwargs
|
2907
3397
|
expected_kwargs = [
|
2908
3398
|
"allow_control_chars",
|
2909
3399
|
"retry_strategy",
|
2910
3400
|
"compartment_id",
|
3401
|
+
"compartment_id_in_subtree",
|
2911
3402
|
"opc_request_id",
|
2912
3403
|
"limit",
|
2913
3404
|
"page",
|
@@ -2927,6 +3418,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
2927
3418
|
|
2928
3419
|
query_params = {
|
2929
3420
|
"compartmentId": kwargs.get("compartment_id", missing),
|
3421
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
2930
3422
|
"limit": kwargs.get("limit", missing),
|
2931
3423
|
"page": kwargs.get("page", missing),
|
2932
3424
|
"sortOrder": kwargs.get("sort_order", missing)
|
@@ -2976,11 +3468,16 @@ class FleetAppsManagementOperationsClient(object):
|
|
2976
3468
|
|
2977
3469
|
def summarize_scheduler_job_counts(self, **kwargs):
|
2978
3470
|
"""
|
2979
|
-
Retrieve aggregated summary information of Scheduler Jobs within a
|
3471
|
+
Retrieve aggregated summary information of Scheduler Jobs within a Compartment.
|
2980
3472
|
|
2981
3473
|
|
2982
3474
|
:param str compartment_id: (optional)
|
2983
3475
|
The ID of the compartment in which to list resources.
|
3476
|
+
Empty only if the resource OCID query param is not specified.
|
3477
|
+
|
3478
|
+
:param bool compartment_id_in_subtree: (optional)
|
3479
|
+
If set to true, resources will be returned for not only the provided compartment, but all compartments which
|
3480
|
+
descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
2984
3481
|
|
2985
3482
|
:param str opc_request_id: (optional)
|
2986
3483
|
The client request ID for tracing.
|
@@ -3012,20 +3509,21 @@ class FleetAppsManagementOperationsClient(object):
|
|
3012
3509
|
:rtype: :class:`~oci.response.Response`
|
3013
3510
|
|
3014
3511
|
:example:
|
3015
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3512
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/summarize_scheduler_job_counts.py.html>`__ to see an example of how to use summarize_scheduler_job_counts API.
|
3016
3513
|
"""
|
3017
3514
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3018
3515
|
required_arguments = []
|
3019
3516
|
resource_path = "/schedulerJobCounts"
|
3020
3517
|
method = "GET"
|
3021
3518
|
operation_name = "summarize_scheduler_job_counts"
|
3022
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3519
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJobAggregationCollection/SummarizeSchedulerJobCounts"
|
3023
3520
|
|
3024
3521
|
# Don't accept unknown kwargs
|
3025
3522
|
expected_kwargs = [
|
3026
3523
|
"allow_control_chars",
|
3027
3524
|
"retry_strategy",
|
3028
3525
|
"compartment_id",
|
3526
|
+
"compartment_id_in_subtree",
|
3029
3527
|
"opc_request_id",
|
3030
3528
|
"limit",
|
3031
3529
|
"page",
|
@@ -3045,6 +3543,7 @@ class FleetAppsManagementOperationsClient(object):
|
|
3045
3543
|
|
3046
3544
|
query_params = {
|
3047
3545
|
"compartmentId": kwargs.get("compartment_id", missing),
|
3546
|
+
"compartmentIdInSubtree": kwargs.get("compartment_id_in_subtree", missing),
|
3048
3547
|
"limit": kwargs.get("limit", missing),
|
3049
3548
|
"page": kwargs.get("page", missing),
|
3050
3549
|
"sortOrder": kwargs.get("sort_order", missing)
|
@@ -3094,11 +3593,11 @@ class FleetAppsManagementOperationsClient(object):
|
|
3094
3593
|
|
3095
3594
|
def update_patch(self, patch_id, update_patch_details, **kwargs):
|
3096
3595
|
"""
|
3097
|
-
Updates the
|
3596
|
+
Updates the patch specified by the identifier.
|
3098
3597
|
|
3099
3598
|
|
3100
3599
|
:param str patch_id: (required)
|
3101
|
-
|
3600
|
+
Unique Patch identifier.
|
3102
3601
|
|
3103
3602
|
:param oci.fleet_apps_management.models.UpdatePatchDetails update_patch_details: (required)
|
3104
3603
|
The information to be updated.
|
@@ -3129,14 +3628,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
3129
3628
|
:rtype: :class:`~oci.response.Response`
|
3130
3629
|
|
3131
3630
|
:example:
|
3132
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3631
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/update_patch.py.html>`__ to see an example of how to use update_patch API.
|
3133
3632
|
"""
|
3134
3633
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3135
3634
|
required_arguments = ['patchId']
|
3136
3635
|
resource_path = "/patches/{patchId}"
|
3137
3636
|
method = "PUT"
|
3138
3637
|
operation_name = "update_patch"
|
3139
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3638
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/Patch/UpdatePatch"
|
3140
3639
|
|
3141
3640
|
# Don't accept unknown kwargs
|
3142
3641
|
expected_kwargs = [
|
@@ -3239,14 +3738,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
3239
3738
|
:rtype: :class:`~oci.response.Response`
|
3240
3739
|
|
3241
3740
|
:example:
|
3242
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3741
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/update_scheduler_definition.py.html>`__ to see an example of how to use update_scheduler_definition API.
|
3243
3742
|
"""
|
3244
3743
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3245
3744
|
required_arguments = ['schedulerDefinitionId']
|
3246
3745
|
resource_path = "/schedulerDefinitions/{schedulerDefinitionId}"
|
3247
3746
|
method = "PUT"
|
3248
3747
|
operation_name = "update_scheduler_definition"
|
3249
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3748
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerDefinition/UpdateSchedulerDefinition"
|
3250
3749
|
|
3251
3750
|
# Don't accept unknown kwargs
|
3252
3751
|
expected_kwargs = [
|
@@ -3314,14 +3813,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
3314
3813
|
|
3315
3814
|
def update_scheduler_job(self, scheduler_job_id, update_scheduler_job_details, **kwargs):
|
3316
3815
|
"""
|
3317
|
-
|
3816
|
+
Updates certain attributes for the specified schedule job.
|
3318
3817
|
|
3319
3818
|
|
3320
3819
|
:param str scheduler_job_id: (required)
|
3321
3820
|
unique SchedulerJob identifier
|
3322
3821
|
|
3323
3822
|
:param oci.fleet_apps_management.models.UpdateSchedulerJobDetails update_scheduler_job_details: (required)
|
3324
|
-
|
3823
|
+
Attributes to update a schedule job.
|
3325
3824
|
|
3326
3825
|
:param str if_match: (optional)
|
3327
3826
|
For optimistic concurrency control. In the PUT or DELETE call
|
@@ -3349,14 +3848,14 @@ class FleetAppsManagementOperationsClient(object):
|
|
3349
3848
|
:rtype: :class:`~oci.response.Response`
|
3350
3849
|
|
3351
3850
|
:example:
|
3352
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3851
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/fleetappsmanagement/update_scheduler_job.py.html>`__ to see an example of how to use update_scheduler_job API.
|
3353
3852
|
"""
|
3354
3853
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3355
3854
|
required_arguments = ['schedulerJobId']
|
3356
3855
|
resource_path = "/schedulerJobs/{schedulerJobId}"
|
3357
3856
|
method = "PUT"
|
3358
3857
|
operation_name = "update_scheduler_job"
|
3359
|
-
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/
|
3858
|
+
api_reference_link = "https://docs.oracle.com/iaas/api/#/en/fleet-management/20250228/SchedulerJob/UpdateSchedulerJob"
|
3360
3859
|
|
3361
3860
|
# Don't accept unknown kwargs
|
3362
3861
|
expected_kwargs = [
|