oci 2.110.2__py3-none-any.whl → 2.112.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/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/adm/application_dependency_management_client.py +18 -18
- oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
- oci/ai_document/ai_service_document_client.py +22 -22
- oci/ai_language/ai_service_language_client.py +36 -36
- oci/ai_speech/ai_service_speech_client.py +9 -9
- oci/ai_vision/ai_service_vision_client.py +25 -25
- oci/analytics/analytics_client.py +23 -23
- oci/announcements_service/announcement_client.py +4 -4
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- 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 +8 -8
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +18 -18
- oci/apm_synthetics/models/__init__.py +2 -0
- oci/apm_synthetics/models/browser_monitor_configuration.py +3 -3
- oci/apm_synthetics/models/client_certificate.py +1 -1
- oci/apm_synthetics/models/create_monitor_details.py +9 -3
- oci/apm_synthetics/models/link.py +2 -2
- oci/apm_synthetics/models/monitor.py +9 -3
- oci/apm_synthetics/models/monitor_configuration.py +11 -3
- oci/apm_synthetics/models/monitor_summary.py +9 -3
- oci/apm_synthetics/models/network_monitor_configuration.py +92 -0
- oci/apm_synthetics/models/private_key.py +1 -1
- oci/apm_synthetics/models/rest_monitor_configuration.py +1 -1
- oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +3 -3
- oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +1 -1
- oci/apm_synthetics/models/update_monitor_details.py +2 -0
- oci/apm_traces/query_client.py +2 -2
- oci/apm_traces/trace_client.py +4 -4
- oci/application_migration/application_migration_client.py +19 -19
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/auth/auth_utils.py +16 -0
- oci/auth/rpt_path_providers.py +54 -4
- oci/auth/security_token_container.py +4 -0
- oci/auth/signers/__init__.py +3 -1
- oci/auth/signers/ephemeral_resource_principals_v21_signer.py +31 -1
- oci/auth/signers/nested_resource_principals_signer.py +200 -0
- oci/auth/signers/oke_workload_identity_resource_principal_signer.py +154 -0
- oci/auth/signers/resource_principals_federation_signer.py +1 -1
- oci/auth/signers/resource_principals_signer.py +149 -5
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/base_client.py +3 -1
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +47 -47
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/__init__.py +1 -3
- oci/cims/incident_client.py +356 -93
- oci/cims/models/__init__.py +6 -0
- oci/cims/models/account_item.py +85 -0
- oci/cims/models/activity_item.py +112 -14
- oci/cims/models/category.py +5 -5
- oci/cims/models/contact.py +32 -1
- oci/cims/models/contextual_data.py +9 -9
- oci/cims/models/create_account_item_details.py +78 -0
- oci/cims/models/create_category_details.py +2 -4
- oci/cims/models/create_incident.py +13 -9
- oci/cims/models/create_issue_type_details.py +0 -2
- oci/cims/models/create_item_details.py +9 -7
- oci/cims/models/create_limit_item_details.py +3 -3
- oci/cims/models/create_resource_details.py +2 -289
- oci/cims/models/create_sub_category_details.py +3 -5
- oci/cims/models/create_tech_support_item_details.py +1 -3
- oci/cims/models/create_ticket_details.py +11 -13
- oci/cims/models/create_user_details.py +65 -36
- oci/cims/models/incident.py +10 -6
- oci/cims/models/incident_resource_type.py +66 -4
- oci/cims/models/incident_summary.py +9 -5
- oci/cims/models/incident_type.py +1 -1
- oci/cims/models/issue_type.py +33 -2
- oci/cims/models/item.py +8 -4
- oci/cims/models/limit_item.py +7 -7
- oci/cims/models/resource.py +2 -285
- oci/cims/models/service_categories.py +134 -0
- oci/cims/models/service_category.py +1 -1
- oci/cims/models/sub_category.py +5 -5
- oci/cims/models/tenancy_information.py +3 -3
- oci/cims/models/ticket.py +7 -3
- oci/cims/models/update_activity_item_details.py +8 -6
- oci/cims/models/update_incident.py +62 -2
- oci/cims/models/update_item_details.py +3 -5
- oci/cims/models/update_resource_details.py +0 -2
- oci/cims/models/update_ticket_details.py +0 -2
- oci/cims/models/user.py +79 -19
- oci/cims/user_client.py +1 -1
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +14 -14
- 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 +133 -133
- oci/cloud_migrations/migration_client.py +43 -43
- 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 +44 -44
- oci/container_instances/container_instance_client.py +129 -24
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +90 -90
- oci/core/compute_management_client.py +32 -32
- oci/core/models/__init__.py +20 -0
- oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
- oci/core/models/amd_milan_bm_gpu_platform_config.py +34 -3
- oci/core/models/amd_milan_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/amd_milan_bm_platform_config.py +34 -3
- oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
- oci/core/models/amd_rome_bm_gpu_platform_config.py +34 -3
- oci/core/models/amd_rome_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/amd_rome_bm_platform_config.py +34 -3
- oci/core/models/amd_vm_launch_instance_platform_config.py +1 -1
- oci/core/models/amd_vm_platform_config.py +1 -1
- oci/core/models/capture_filter.py +5 -2
- oci/core/models/change_capture_filter_compartment_details.py +1 -1
- oci/core/models/cluster_network_placement_configuration_details.py +32 -5
- oci/core/models/cpe.py +33 -2
- oci/core/models/create_capture_filter_details.py +1 -1
- oci/core/models/create_cpe_details.py +33 -2
- oci/core/models/create_instance_pool_placement_configuration_details.py +32 -5
- oci/core/models/create_ip_sec_connection_tunnel_details.py +105 -0
- oci/core/models/create_macsec_properties.py +33 -2
- oci/core/models/create_virtual_circuit_details.py +31 -0
- oci/core/models/create_vnic_details.py +76 -0
- oci/core/models/drg_attachment_network_create_details.py +1 -1
- oci/core/models/drg_attachment_network_details.py +5 -1
- oci/core/models/generic_bm_launch_instance_platform_config.py +349 -0
- oci/core/models/generic_bm_platform_config.py +349 -0
- oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
- oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
- oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +1 -1
- oci/core/models/instance_configuration_create_vnic_details.py +76 -0
- oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py +349 -0
- oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +199 -3
- oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +1 -1
- oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py +103 -0
- oci/core/models/instance_configuration_launch_instance_platform_config.py +11 -3
- oci/core/models/instance_pool_placement_configuration.py +32 -3
- oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py +72 -0
- oci/core/models/instance_pool_placement_primary_subnet.py +152 -0
- oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +76 -0
- oci/core/models/instance_pool_placement_subnet_details.py +152 -0
- oci/core/models/intel_icelake_bm_launch_instance_platform_config.py +34 -3
- oci/core/models/intel_icelake_bm_platform_config.py +34 -3
- oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +199 -3
- oci/core/models/intel_skylake_bm_platform_config.py +199 -3
- oci/core/models/intel_vm_launch_instance_platform_config.py +1 -1
- oci/core/models/intel_vm_platform_config.py +1 -1
- oci/core/models/ip_sec_connection.py +49 -2
- oci/core/models/ip_sec_connection_tunnel.py +37 -2
- oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
- oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py +109 -0
- oci/core/models/launch_instance_platform_config.py +11 -3
- oci/core/models/loop_back_drg_attachment_network_details.py +93 -0
- oci/core/models/macsec_properties.py +33 -2
- oci/core/models/platform_config.py +11 -3
- oci/core/models/shape_platform_config_options.py +7 -3
- oci/core/models/update_capture_filter_details.py +1 -1
- oci/core/models/update_instance_pool_placement_configuration_details.py +34 -7
- oci/core/models/update_macsec_properties.py +33 -2
- oci/core/models/update_virtual_circuit_details.py +31 -0
- oci/core/models/virtual_circuit.py +31 -0
- oci/core/models/virtual_circuit_associated_tunnel_details.py +154 -0
- oci/core/models/virtual_circuit_drg_attachment_network_details.py +37 -2
- oci/core/models/vnic.py +37 -2
- oci/core/virtual_network_client.py +361 -241
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +424 -154
- oci/data_catalog/models/__init__.py +22 -0
- oci/data_catalog/models/asynchronous_export_glossary_details.py +68 -0
- oci/data_catalog/models/asynchronous_export_glossary_result.py +196 -0
- oci/data_catalog/models/asynchronous_export_request_details.py +68 -0
- oci/data_catalog/models/asynchronous_export_result.py +196 -0
- oci/data_catalog/models/attribute.py +33 -0
- oci/data_catalog/models/attribute_summary.py +33 -0
- oci/data_catalog/models/create_job_definition_details.py +42 -3
- oci/data_catalog/models/create_job_details.py +2 -0
- oci/data_catalog/models/create_job_execution_details.py +11 -3
- oci/data_catalog/models/data_asset.py +33 -0
- oci/data_catalog/models/data_asset_summary.py +35 -2
- oci/data_catalog/models/entity.py +33 -0
- oci/data_catalog/models/entity_lineage.py +222 -0
- oci/data_catalog/models/entity_summary.py +33 -0
- oci/data_catalog/models/faceted_search_date_filter_request.py +2 -2
- oci/data_catalog/models/faceted_search_string_filter_request.py +8 -2
- oci/data_catalog/models/fetch_entity_lineage_details.py +190 -0
- oci/data_catalog/models/folder.py +33 -0
- oci/data_catalog/models/folder_summary.py +35 -2
- oci/data_catalog/models/job.py +44 -3
- oci/data_catalog/models/job_definition.py +42 -3
- oci/data_catalog/models/job_definition_summary.py +44 -5
- oci/data_catalog/models/job_execution.py +11 -3
- oci/data_catalog/models/job_execution_summary.py +11 -3
- oci/data_catalog/models/job_summary.py +44 -3
- oci/data_catalog/models/lineage_object.py +400 -0
- oci/data_catalog/models/lineage_relationship.py +134 -0
- oci/data_catalog/models/object_lineage.py +223 -0
- oci/data_catalog/models/object_lineage_request_details.py +190 -0
- oci/data_catalog/models/object_storage_object_reference.py +134 -0
- oci/data_catalog/models/update_job_definition_details.py +31 -0
- oci/data_catalog/models/update_job_details.py +2 -0
- oci/data_flow/data_flow_client.py +42 -42
- 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 +214 -214
- oci/data_science/data_science_client.py +85 -85
- oci/database/database_client.py +626 -308
- oci/database/models/__init__.py +10 -0
- oci/database/models/acd_avm_resource_stats.py +241 -0
- oci/database/models/autonomous_container_database.py +107 -38
- oci/database/models/autonomous_container_database_resource_usage.py +437 -0
- oci/database/models/autonomous_container_database_summary.py +107 -38
- oci/database/models/autonomous_database.py +2 -6
- oci/database/models/autonomous_database_connection_strings.py +1 -1
- oci/database/models/autonomous_database_summary.py +2 -6
- oci/database/models/autonomous_vm_cluster.py +6 -18
- oci/database/models/autonomous_vm_cluster_summary.py +6 -18
- oci/database/models/autonomous_vm_resource_usage.py +299 -0
- oci/database/models/avm_acd_resource_stats.py +272 -0
- oci/database/models/cloud_autonomous_vm_cluster.py +287 -20
- oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py +673 -0
- oci/database/models/cloud_autonomous_vm_cluster_summary.py +287 -20
- oci/database/models/create_autonomous_vm_cluster_details.py +4 -12
- oci/database/models/create_cloud_autonomous_vm_cluster_details.py +4 -12
- oci/database/models/update_autonomous_database_details.py +2 -6
- oci/database_management/db_management_client.py +182 -182
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/sql_tuning_client.py +10 -10
- oci/database_migration/database_migration_client.py +41 -41
- oci/database_migration/models/__init__.py +10 -0
- oci/database_migration/models/connection.py +27 -0
- oci/database_migration/models/create_connection_details.py +27 -0
- oci/database_migration/models/create_golden_gate_hub.py +4 -4
- oci/database_migration/models/create_golden_gate_service_details.py +149 -0
- oci/database_migration/models/create_migration_details.py +27 -0
- oci/database_migration/models/database_credentials.py +103 -0
- oci/database_migration/models/ggs_deployment.py +103 -0
- oci/database_migration/models/golden_gate_service_details.py +95 -0
- oci/database_migration/models/migration.py +38 -3
- oci/database_migration/models/migration_job_progress_resource.py +11 -3
- oci/database_migration/models/migration_job_progress_summary.py +11 -3
- oci/database_migration/models/migration_phase_summary.py +11 -3
- oci/database_migration/models/phase_status.py +11 -3
- oci/database_migration/models/resume_job_details.py +11 -3
- oci/database_migration/models/start_migration_details.py +11 -3
- oci/database_migration/models/update_connection_details.py +27 -0
- oci/database_migration/models/update_golden_gate_service_details.py +149 -0
- oci/database_migration/models/update_migration_details.py +27 -0
- oci/database_tools/database_tools_client.py +19 -19
- oci/devops/devops_client.py +89 -89
- oci/disaster_recovery/disaster_recovery_client.py +29 -29
- oci/dns/dns_client.py +52 -52
- 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_data_lake_client.py +13 -13
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +25 -25
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +50 -50
- oci/fleet_software_update/fleet_software_update_client.py +44 -44
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/data_masking_activity_client.py +3 -3
- oci/fusion_apps/fusion_applications_client.py +39 -39
- oci/fusion_apps/fusion_environment_client.py +15 -15
- oci/fusion_apps/fusion_environment_family_client.py +8 -8
- oci/fusion_apps/refresh_activity_client.py +4 -4
- oci/fusion_apps/scheduled_activity_client.py +2 -2
- oci/fusion_apps/service_attachment_client.py +2 -2
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/golden_gate/golden_gate_client.py +57 -57
- 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 +190 -190
- oci/integration/integration_instance_client.py +15 -15
- oci/jms/java_management_service_client.py +56 -56
- oci/key_management/kms_crypto_client.py +6 -6
- 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 +22 -22
- oci/log_analytics/log_analytics_client.py +192 -192
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/management_agent/management_agent_client.py +23 -23
- oci/management_dashboard/dashx_apis_client.py +14 -14
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +25 -25
- oci/media_services/media_services_client.py +48 -48
- oci/media_services/media_stream_client.py +2 -2
- oci/monitoring/monitoring_client.py +13 -13
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +6 -6
- oci/mysql/db_system_client.py +273 -1328
- oci/mysql/db_system_client_composite_operations.py +0 -294
- oci/mysql/models/__init__.py +0 -16
- oci/mysql/models/db_system.py +0 -60
- oci/mysql/models/db_system_summary.py +0 -60
- oci/mysql/models/shape_summary.py +3 -7
- oci/mysql/models/work_request.py +3 -31
- oci/mysql/models/work_request_summary.py +3 -31
- oci/mysql/mysqlaas_client.py +9 -9
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +17 -17
- oci/network_load_balancer/network_load_balancer_client.py +34 -34
- oci/nosql/nosql_client.py +22 -22
- oci/object_storage/object_storage_client.py +50 -50
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/esxi_host_client.py +6 -6
- oci/ocvp/sddc_client.py +13 -13
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +56 -56
- 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 +11 -11
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +14 -14
- oci/operator_access_control/access_requests_client.py +9 -9
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +6 -6
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +159 -159
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/lifecycle_environment_client.py +11 -11
- oci/os_management_hub/managed_instance_client.py +22 -22
- oci/os_management_hub/managed_instance_group_client.py +22 -22
- oci/os_management_hub/management_station_client.py +8 -8
- oci/os_management_hub/onboarding_client.py +5 -5
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +6 -6
- oci/os_management_hub/software_source_client.py +22 -22
- oci/os_management_hub/work_request_client.py +4 -4
- 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/queue/models/__init__.py +4 -0
- oci/queue/models/channel_collection.py +72 -0
- oci/queue/models/create_queue_details.py +50 -11
- oci/queue/models/delete_messages_details_entry.py +2 -2
- oci/queue/models/get_message.py +55 -12
- oci/queue/models/message_metadata.py +103 -0
- oci/queue/models/purge_queue_details.py +43 -8
- oci/queue/models/put_message.py +44 -5
- oci/queue/models/put_messages.py +3 -3
- oci/queue/models/put_messages_details_entry.py +29 -2
- oci/queue/models/queue.py +76 -21
- oci/queue/models/queue_stats.py +34 -3
- oci/queue/models/queue_summary.py +37 -17
- oci/queue/models/stats.py +2 -2
- oci/queue/models/update_messages_details.py +1 -1
- oci/queue/models/update_messages_details_entry.py +2 -2
- oci/queue/models/update_messages_result.py +2 -2
- oci/queue/models/update_messages_result_entry.py +12 -4
- oci/queue/models/update_queue_details.py +47 -8
- oci/queue/models/updated_message.py +12 -4
- oci/queue/models/work_request.py +6 -2
- oci/queue/models/work_request_error.py +6 -2
- oci/queue/models/work_request_log_entry.py +6 -2
- oci/queue/models/work_request_summary.py +8 -4
- oci/queue/queue_admin_client.py +67 -46
- oci/queue/queue_admin_client_composite_operations.py +4 -4
- oci/queue/queue_client.py +209 -36
- oci/recovery/database_recovery_client.py +23 -23
- oci/resource_manager/resource_manager_client.py +52 -52
- 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/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- 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 +22 -22
- 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 +19 -19
- oci/vault/vaults_client.py +11 -11
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +13 -13
- oci/vn_monitoring/models/__init__.py +4 -0
- oci/vn_monitoring/models/cpe.py +33 -2
- oci/vn_monitoring/models/create_cpe_details.py +33 -2
- oci/vn_monitoring/models/create_ip_sec_connection_details.py +35 -2
- oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py +105 -0
- oci/vn_monitoring/models/create_virtual_circuit_details.py +31 -0
- oci/vn_monitoring/models/drg_attachment_network_create_details.py +1 -1
- oci/vn_monitoring/models/drg_attachment_network_details.py +5 -1
- oci/vn_monitoring/models/ip_sec_connection.py +50 -2
- oci/vn_monitoring/models/ip_sec_connection_tunnel.py +37 -2
- oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
- oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py +93 -0
- oci/vn_monitoring/models/update_virtual_circuit_details.py +31 -0
- oci/vn_monitoring/models/virtual_circuit.py +31 -0
- oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py +155 -0
- oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py +37 -2
- 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-2.110.2.dist-info → oci-2.112.0.dist-info}/METADATA +1 -1
- {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/RECORD +475 -434
- {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/WHEEL +0 -0
- {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/top_level.txt +0 -0
@@ -156,7 +156,7 @@ class LoggingManagementClient(object):
|
|
156
156
|
:rtype: :class:`~oci.response.Response`
|
157
157
|
|
158
158
|
:example:
|
159
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
159
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/change_log_group_compartment.py.html>`__ to see an example of how to use change_log_group_compartment API.
|
160
160
|
"""
|
161
161
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
162
162
|
required_arguments = ['logGroupId']
|
@@ -268,7 +268,7 @@ class LoggingManagementClient(object):
|
|
268
268
|
:rtype: :class:`~oci.response.Response`
|
269
269
|
|
270
270
|
:example:
|
271
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
271
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/change_log_log_group.py.html>`__ to see an example of how to use change_log_log_group API.
|
272
272
|
"""
|
273
273
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
274
274
|
required_arguments = ['logGroupId', 'logId']
|
@@ -389,7 +389,7 @@ class LoggingManagementClient(object):
|
|
389
389
|
:rtype: :class:`~oci.response.Response`
|
390
390
|
|
391
391
|
:example:
|
392
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
392
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/change_log_saved_search_compartment.py.html>`__ to see an example of how to use change_log_saved_search_compartment API.
|
393
393
|
"""
|
394
394
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
395
395
|
required_arguments = ['logSavedSearchId']
|
@@ -512,7 +512,7 @@ class LoggingManagementClient(object):
|
|
512
512
|
:rtype: :class:`~oci.response.Response`
|
513
513
|
|
514
514
|
:example:
|
515
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
515
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/change_unified_agent_configuration_compartment.py.html>`__ to see an example of how to use change_unified_agent_configuration_compartment API.
|
516
516
|
"""
|
517
517
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
518
518
|
required_arguments = ['unifiedAgentConfigurationId']
|
@@ -626,7 +626,7 @@ class LoggingManagementClient(object):
|
|
626
626
|
:rtype: :class:`~oci.response.Response`
|
627
627
|
|
628
628
|
:example:
|
629
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
629
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/create_log.py.html>`__ to see an example of how to use create_log API.
|
630
630
|
"""
|
631
631
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
632
632
|
required_arguments = ['logGroupId']
|
@@ -735,7 +735,7 @@ class LoggingManagementClient(object):
|
|
735
735
|
:rtype: :class:`~oci.response.Response`
|
736
736
|
|
737
737
|
:example:
|
738
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
738
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/create_log_group.py.html>`__ to see an example of how to use create_log_group API.
|
739
739
|
"""
|
740
740
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
741
741
|
required_arguments = []
|
@@ -831,7 +831,7 @@ class LoggingManagementClient(object):
|
|
831
831
|
:rtype: :class:`~oci.response.Response`
|
832
832
|
|
833
833
|
:example:
|
834
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
834
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/create_log_saved_search.py.html>`__ to see an example of how to use create_log_saved_search API.
|
835
835
|
"""
|
836
836
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
837
837
|
required_arguments = []
|
@@ -929,7 +929,7 @@ class LoggingManagementClient(object):
|
|
929
929
|
:rtype: :class:`~oci.response.Response`
|
930
930
|
|
931
931
|
:example:
|
932
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
932
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/create_unified_agent_configuration.py.html>`__ to see an example of how to use create_unified_agent_configuration API.
|
933
933
|
"""
|
934
934
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
935
935
|
required_arguments = []
|
@@ -1027,7 +1027,7 @@ class LoggingManagementClient(object):
|
|
1027
1027
|
:rtype: :class:`~oci.response.Response`
|
1028
1028
|
|
1029
1029
|
:example:
|
1030
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1030
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/delete_log.py.html>`__ to see an example of how to use delete_log API.
|
1031
1031
|
"""
|
1032
1032
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1033
1033
|
required_arguments = ['logGroupId', 'logId']
|
@@ -1132,7 +1132,7 @@ class LoggingManagementClient(object):
|
|
1132
1132
|
:rtype: :class:`~oci.response.Response`
|
1133
1133
|
|
1134
1134
|
:example:
|
1135
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1135
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/delete_log_group.py.html>`__ to see an example of how to use delete_log_group API.
|
1136
1136
|
"""
|
1137
1137
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1138
1138
|
required_arguments = ['logGroupId']
|
@@ -1236,7 +1236,7 @@ class LoggingManagementClient(object):
|
|
1236
1236
|
:rtype: :class:`~oci.response.Response`
|
1237
1237
|
|
1238
1238
|
:example:
|
1239
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1239
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/delete_log_saved_search.py.html>`__ to see an example of how to use delete_log_saved_search API.
|
1240
1240
|
"""
|
1241
1241
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1242
1242
|
required_arguments = ['logSavedSearchId']
|
@@ -1340,7 +1340,7 @@ class LoggingManagementClient(object):
|
|
1340
1340
|
:rtype: :class:`~oci.response.Response`
|
1341
1341
|
|
1342
1342
|
:example:
|
1343
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1343
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/delete_unified_agent_configuration.py.html>`__ to see an example of how to use delete_unified_agent_configuration API.
|
1344
1344
|
"""
|
1345
1345
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1346
1346
|
required_arguments = ['unifiedAgentConfigurationId']
|
@@ -1444,7 +1444,7 @@ class LoggingManagementClient(object):
|
|
1444
1444
|
:rtype: :class:`~oci.response.Response`
|
1445
1445
|
|
1446
1446
|
:example:
|
1447
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1447
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/delete_work_request.py.html>`__ to see an example of how to use delete_work_request API.
|
1448
1448
|
"""
|
1449
1449
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1450
1450
|
required_arguments = ['workRequestId']
|
@@ -1544,7 +1544,7 @@ class LoggingManagementClient(object):
|
|
1544
1544
|
:rtype: :class:`~oci.response.Response`
|
1545
1545
|
|
1546
1546
|
:example:
|
1547
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1547
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/get_log.py.html>`__ to see an example of how to use get_log API.
|
1548
1548
|
"""
|
1549
1549
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1550
1550
|
required_arguments = ['logGroupId', 'logId']
|
@@ -1642,7 +1642,7 @@ class LoggingManagementClient(object):
|
|
1642
1642
|
:rtype: :class:`~oci.response.Response`
|
1643
1643
|
|
1644
1644
|
:example:
|
1645
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1645
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/get_log_group.py.html>`__ to see an example of how to use get_log_group API.
|
1646
1646
|
"""
|
1647
1647
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1648
1648
|
required_arguments = ['logGroupId']
|
@@ -1739,7 +1739,7 @@ class LoggingManagementClient(object):
|
|
1739
1739
|
:rtype: :class:`~oci.response.Response`
|
1740
1740
|
|
1741
1741
|
:example:
|
1742
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1742
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/get_log_saved_search.py.html>`__ to see an example of how to use get_log_saved_search API.
|
1743
1743
|
"""
|
1744
1744
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1745
1745
|
required_arguments = ['logSavedSearchId']
|
@@ -1836,7 +1836,7 @@ class LoggingManagementClient(object):
|
|
1836
1836
|
:rtype: :class:`~oci.response.Response`
|
1837
1837
|
|
1838
1838
|
:example:
|
1839
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1839
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/get_unified_agent_configuration.py.html>`__ to see an example of how to use get_unified_agent_configuration API.
|
1840
1840
|
"""
|
1841
1841
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1842
1842
|
required_arguments = ['unifiedAgentConfigurationId']
|
@@ -1933,7 +1933,7 @@ class LoggingManagementClient(object):
|
|
1933
1933
|
:rtype: :class:`~oci.response.Response`
|
1934
1934
|
|
1935
1935
|
:example:
|
1936
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1936
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
1937
1937
|
"""
|
1938
1938
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1939
1939
|
required_arguments = ['workRequestId']
|
@@ -2057,7 +2057,7 @@ class LoggingManagementClient(object):
|
|
2057
2057
|
:rtype: :class:`~oci.response.Response`
|
2058
2058
|
|
2059
2059
|
:example:
|
2060
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2060
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_log_groups.py.html>`__ to see an example of how to use list_log_groups API.
|
2061
2061
|
"""
|
2062
2062
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2063
2063
|
required_arguments = ['compartmentId']
|
@@ -2202,7 +2202,7 @@ class LoggingManagementClient(object):
|
|
2202
2202
|
:rtype: :class:`~oci.response.Response`
|
2203
2203
|
|
2204
2204
|
:example:
|
2205
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2205
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_log_saved_searches.py.html>`__ to see an example of how to use list_log_saved_searches API.
|
2206
2206
|
"""
|
2207
2207
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2208
2208
|
required_arguments = ['compartmentId']
|
@@ -2359,7 +2359,7 @@ class LoggingManagementClient(object):
|
|
2359
2359
|
:rtype: :class:`~oci.response.Response`
|
2360
2360
|
|
2361
2361
|
:example:
|
2362
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2362
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_logs.py.html>`__ to see an example of how to use list_logs API.
|
2363
2363
|
"""
|
2364
2364
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2365
2365
|
required_arguments = ['logGroupId']
|
@@ -2508,7 +2508,7 @@ class LoggingManagementClient(object):
|
|
2508
2508
|
:rtype: :class:`~oci.response.Response`
|
2509
2509
|
|
2510
2510
|
:example:
|
2511
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2511
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_services.py.html>`__ to see an example of how to use list_services API.
|
2512
2512
|
"""
|
2513
2513
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2514
2514
|
required_arguments = []
|
@@ -2639,7 +2639,7 @@ class LoggingManagementClient(object):
|
|
2639
2639
|
:rtype: :class:`~oci.response.Response`
|
2640
2640
|
|
2641
2641
|
:example:
|
2642
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_unified_agent_configurations.py.html>`__ to see an example of how to use list_unified_agent_configurations API.
|
2643
2643
|
"""
|
2644
2644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2645
2645
|
required_arguments = ['compartmentId']
|
@@ -2779,7 +2779,7 @@ class LoggingManagementClient(object):
|
|
2779
2779
|
:rtype: :class:`~oci.response.Response`
|
2780
2780
|
|
2781
2781
|
:example:
|
2782
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2782
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
2783
2783
|
"""
|
2784
2784
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2785
2785
|
required_arguments = ['workRequestId']
|
@@ -2895,7 +2895,7 @@ class LoggingManagementClient(object):
|
|
2895
2895
|
:rtype: :class:`~oci.response.Response`
|
2896
2896
|
|
2897
2897
|
:example:
|
2898
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2898
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
2899
2899
|
"""
|
2900
2900
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2901
2901
|
required_arguments = ['workRequestId']
|
@@ -3032,7 +3032,7 @@ class LoggingManagementClient(object):
|
|
3032
3032
|
:rtype: :class:`~oci.response.Response`
|
3033
3033
|
|
3034
3034
|
:example:
|
3035
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3035
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
3036
3036
|
"""
|
3037
3037
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3038
3038
|
required_arguments = ['compartmentId']
|
@@ -3171,7 +3171,7 @@ class LoggingManagementClient(object):
|
|
3171
3171
|
:rtype: :class:`~oci.response.Response`
|
3172
3172
|
|
3173
3173
|
:example:
|
3174
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3174
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/update_log.py.html>`__ to see an example of how to use update_log API.
|
3175
3175
|
"""
|
3176
3176
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3177
3177
|
required_arguments = ['logGroupId', 'logId']
|
@@ -3282,7 +3282,7 @@ class LoggingManagementClient(object):
|
|
3282
3282
|
:rtype: :class:`~oci.response.Response`
|
3283
3283
|
|
3284
3284
|
:example:
|
3285
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3285
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/update_log_group.py.html>`__ to see an example of how to use update_log_group API.
|
3286
3286
|
"""
|
3287
3287
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3288
3288
|
required_arguments = ['logGroupId']
|
@@ -3391,7 +3391,7 @@ class LoggingManagementClient(object):
|
|
3391
3391
|
:rtype: :class:`~oci.response.Response`
|
3392
3392
|
|
3393
3393
|
:example:
|
3394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/update_log_saved_search.py.html>`__ to see an example of how to use update_log_saved_search API.
|
3395
3395
|
"""
|
3396
3396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3397
3397
|
required_arguments = ['logSavedSearchId']
|
@@ -3503,7 +3503,7 @@ class LoggingManagementClient(object):
|
|
3503
3503
|
:rtype: :class:`~oci.response.Response`
|
3504
3504
|
|
3505
3505
|
:example:
|
3506
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/logging/update_unified_agent_configuration.py.html>`__ to see an example of how to use update_unified_agent_configuration API.
|
3507
3507
|
"""
|
3508
3508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3509
3509
|
required_arguments = ['unifiedAgentConfigurationId']
|
@@ -150,7 +150,7 @@ class LoggingClient(object):
|
|
150
150
|
:rtype: :class:`~oci.response.Response`
|
151
151
|
|
152
152
|
:example:
|
153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
153
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/loggingingestion/put_logs.py.html>`__ to see an example of how to use put_logs API.
|
154
154
|
"""
|
155
155
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
156
156
|
required_arguments = ['logId']
|
@@ -152,7 +152,7 @@ class LogSearchClient(object):
|
|
152
152
|
:rtype: :class:`~oci.response.Response`
|
153
153
|
|
154
154
|
:example:
|
155
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
155
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/loggingsearch/search_logs.py.html>`__ to see an example of how to use search_logs API.
|
156
156
|
"""
|
157
157
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
158
158
|
required_arguments = []
|
@@ -146,7 +146,7 @@ class ManagementAgentClient(object):
|
|
146
146
|
:rtype: :class:`~oci.response.Response`
|
147
147
|
|
148
148
|
:example:
|
149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/create_management_agent_install_key.py.html>`__ to see an example of how to use create_management_agent_install_key API.
|
150
150
|
"""
|
151
151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
152
152
|
required_arguments = []
|
@@ -242,7 +242,7 @@ class ManagementAgentClient(object):
|
|
242
242
|
:rtype: :class:`~oci.response.Response`
|
243
243
|
|
244
244
|
:example:
|
245
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/delete_management_agent.py.html>`__ to see an example of how to use delete_management_agent API.
|
246
246
|
"""
|
247
247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
248
248
|
required_arguments = ['managementAgentId']
|
@@ -345,7 +345,7 @@ class ManagementAgentClient(object):
|
|
345
345
|
:rtype: :class:`~oci.response.Response`
|
346
346
|
|
347
347
|
:example:
|
348
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
348
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/delete_management_agent_install_key.py.html>`__ to see an example of how to use delete_management_agent_install_key API.
|
349
349
|
"""
|
350
350
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
351
351
|
required_arguments = ['managementAgentInstallKeyId']
|
@@ -448,7 +448,7 @@ class ManagementAgentClient(object):
|
|
448
448
|
:rtype: :class:`~oci.response.Response`
|
449
449
|
|
450
450
|
:example:
|
451
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
451
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/delete_work_request.py.html>`__ to see an example of how to use delete_work_request API.
|
452
452
|
"""
|
453
453
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
454
454
|
required_arguments = ['workRequestId']
|
@@ -551,7 +551,7 @@ class ManagementAgentClient(object):
|
|
551
551
|
:rtype: :class:`~oci.response.Response`
|
552
552
|
|
553
553
|
:example:
|
554
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
554
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/deploy_plugins.py.html>`__ to see an example of how to use deploy_plugins API.
|
555
555
|
"""
|
556
556
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
557
557
|
required_arguments = []
|
@@ -639,7 +639,7 @@ class ManagementAgentClient(object):
|
|
639
639
|
:rtype: :class:`~oci.response.Response`
|
640
640
|
|
641
641
|
:example:
|
642
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/get_auto_upgradable_config.py.html>`__ to see an example of how to use get_auto_upgradable_config API.
|
643
643
|
"""
|
644
644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
645
645
|
required_arguments = ['compartmentId']
|
@@ -730,7 +730,7 @@ class ManagementAgentClient(object):
|
|
730
730
|
:rtype: :class:`~oci.response.Response`
|
731
731
|
|
732
732
|
:example:
|
733
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
733
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/get_management_agent.py.html>`__ to see an example of how to use get_management_agent API.
|
734
734
|
"""
|
735
735
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
736
736
|
required_arguments = ['managementAgentId']
|
@@ -826,7 +826,7 @@ class ManagementAgentClient(object):
|
|
826
826
|
:rtype: :class:`~oci.response.Response`
|
827
827
|
|
828
828
|
:example:
|
829
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
829
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/get_management_agent_install_key.py.html>`__ to see an example of how to use get_management_agent_install_key API.
|
830
830
|
"""
|
831
831
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
832
832
|
required_arguments = ['managementAgentInstallKeyId']
|
@@ -925,7 +925,7 @@ class ManagementAgentClient(object):
|
|
925
925
|
:rtype: :class:`~oci.response.Response`
|
926
926
|
|
927
927
|
:example:
|
928
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
928
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/get_management_agent_install_key_content.py.html>`__ to see an example of how to use get_management_agent_install_key_content API.
|
929
929
|
"""
|
930
930
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
931
931
|
required_arguments = ['managementAgentInstallKeyId']
|
@@ -1029,7 +1029,7 @@ class ManagementAgentClient(object):
|
|
1029
1029
|
:rtype: :class:`~oci.response.Response`
|
1030
1030
|
|
1031
1031
|
:example:
|
1032
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1032
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
1033
1033
|
"""
|
1034
1034
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1035
1035
|
required_arguments = ['workRequestId']
|
@@ -1155,7 +1155,7 @@ class ManagementAgentClient(object):
|
|
1155
1155
|
:rtype: :class:`~oci.response.Response`
|
1156
1156
|
|
1157
1157
|
:example:
|
1158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1158
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_availability_histories.py.html>`__ to see an example of how to use list_availability_histories API.
|
1159
1159
|
"""
|
1160
1160
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1161
1161
|
required_arguments = ['managementAgentId']
|
@@ -1319,7 +1319,7 @@ class ManagementAgentClient(object):
|
|
1319
1319
|
:rtype: :class:`~oci.response.Response`
|
1320
1320
|
|
1321
1321
|
:example:
|
1322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_management_agent_images.py.html>`__ to see an example of how to use list_management_agent_images API.
|
1323
1323
|
"""
|
1324
1324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1325
1325
|
required_arguments = ['compartmentId']
|
@@ -1482,7 +1482,7 @@ class ManagementAgentClient(object):
|
|
1482
1482
|
:rtype: :class:`~oci.response.Response`
|
1483
1483
|
|
1484
1484
|
:example:
|
1485
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_management_agent_install_keys.py.html>`__ to see an example of how to use list_management_agent_install_keys API.
|
1486
1486
|
"""
|
1487
1487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1488
1488
|
required_arguments = ['compartmentId']
|
@@ -1640,7 +1640,7 @@ class ManagementAgentClient(object):
|
|
1640
1640
|
:rtype: :class:`~oci.response.Response`
|
1641
1641
|
|
1642
1642
|
:example:
|
1643
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1643
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_management_agent_plugins.py.html>`__ to see an example of how to use list_management_agent_plugins API.
|
1644
1644
|
"""
|
1645
1645
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1646
1646
|
required_arguments = ['compartmentId']
|
@@ -1838,7 +1838,7 @@ class ManagementAgentClient(object):
|
|
1838
1838
|
:rtype: :class:`~oci.response.Response`
|
1839
1839
|
|
1840
1840
|
:example:
|
1841
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1841
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_management_agents.py.html>`__ to see an example of how to use list_management_agents API.
|
1842
1842
|
"""
|
1843
1843
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1844
1844
|
required_arguments = ['compartmentId']
|
@@ -2020,7 +2020,7 @@ class ManagementAgentClient(object):
|
|
2020
2020
|
:rtype: :class:`~oci.response.Response`
|
2021
2021
|
|
2022
2022
|
:example:
|
2023
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2023
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
2024
2024
|
"""
|
2025
2025
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2026
2026
|
required_arguments = ['workRequestId']
|
@@ -2160,7 +2160,7 @@ class ManagementAgentClient(object):
|
|
2160
2160
|
:rtype: :class:`~oci.response.Response`
|
2161
2161
|
|
2162
2162
|
:example:
|
2163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
2164
2164
|
"""
|
2165
2165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2166
2166
|
required_arguments = ['workRequestId']
|
@@ -2318,7 +2318,7 @@ class ManagementAgentClient(object):
|
|
2318
2318
|
:rtype: :class:`~oci.response.Response`
|
2319
2319
|
|
2320
2320
|
:example:
|
2321
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2321
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
2322
2322
|
"""
|
2323
2323
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2324
2324
|
required_arguments = ['compartmentId']
|
@@ -2461,7 +2461,7 @@ class ManagementAgentClient(object):
|
|
2461
2461
|
:rtype: :class:`~oci.response.Response`
|
2462
2462
|
|
2463
2463
|
:example:
|
2464
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/set_auto_upgradable_config.py.html>`__ to see an example of how to use set_auto_upgradable_config API.
|
2465
2465
|
"""
|
2466
2466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2467
2467
|
required_arguments = []
|
@@ -2570,7 +2570,7 @@ class ManagementAgentClient(object):
|
|
2570
2570
|
:rtype: :class:`~oci.response.Response`
|
2571
2571
|
|
2572
2572
|
:example:
|
2573
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2573
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/summarize_management_agent_counts.py.html>`__ to see an example of how to use summarize_management_agent_counts API.
|
2574
2574
|
"""
|
2575
2575
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2576
2576
|
required_arguments = ['compartmentId', 'groupBy']
|
@@ -2696,7 +2696,7 @@ class ManagementAgentClient(object):
|
|
2696
2696
|
:rtype: :class:`~oci.response.Response`
|
2697
2697
|
|
2698
2698
|
:example:
|
2699
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2699
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/summarize_management_agent_plugin_counts.py.html>`__ to see an example of how to use summarize_management_agent_plugin_counts API.
|
2700
2700
|
"""
|
2701
2701
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2702
2702
|
required_arguments = ['compartmentId', 'groupBy']
|
@@ -2815,7 +2815,7 @@ class ManagementAgentClient(object):
|
|
2815
2815
|
:rtype: :class:`~oci.response.Response`
|
2816
2816
|
|
2817
2817
|
:example:
|
2818
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2818
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/update_management_agent.py.html>`__ to see an example of how to use update_management_agent API.
|
2819
2819
|
"""
|
2820
2820
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2821
2821
|
required_arguments = ['managementAgentId']
|
@@ -2935,7 +2935,7 @@ class ManagementAgentClient(object):
|
|
2935
2935
|
:rtype: :class:`~oci.response.Response`
|
2936
2936
|
|
2937
2937
|
:example:
|
2938
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2938
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/managementagent/update_management_agent_install_key.py.html>`__ to see an example of how to use update_management_agent_install_key API.
|
2939
2939
|
"""
|
2940
2940
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2941
2941
|
required_arguments = ['managementAgentInstallKeyId']
|