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
@@ -157,7 +157,7 @@ class CloudGuardClient(object):
|
|
157
157
|
:rtype: :class:`~oci.response.Response`
|
158
158
|
|
159
159
|
:example:
|
160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/add_compartment.py.html>`__ to see an example of how to use add_compartment API.
|
161
161
|
"""
|
162
162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
163
163
|
required_arguments = ['securityZoneId']
|
@@ -267,7 +267,7 @@ class CloudGuardClient(object):
|
|
267
267
|
:rtype: :class:`~oci.response.Response`
|
268
268
|
|
269
269
|
:example:
|
270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
270
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
|
271
271
|
"""
|
272
272
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
273
273
|
required_arguments = ['workRequestId']
|
@@ -380,7 +380,7 @@ class CloudGuardClient(object):
|
|
380
380
|
:rtype: :class:`~oci.response.Response`
|
381
381
|
|
382
382
|
:example:
|
383
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
383
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_data_source_compartment.py.html>`__ to see an example of how to use change_data_source_compartment API.
|
384
384
|
"""
|
385
385
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
386
386
|
required_arguments = ['dataSourceId']
|
@@ -498,7 +498,7 @@ class CloudGuardClient(object):
|
|
498
498
|
:rtype: :class:`~oci.response.Response`
|
499
499
|
|
500
500
|
:example:
|
501
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
501
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_detector_recipe_compartment.py.html>`__ to see an example of how to use change_detector_recipe_compartment API.
|
502
502
|
"""
|
503
503
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
504
504
|
required_arguments = ['detectorRecipeId']
|
@@ -616,7 +616,7 @@ class CloudGuardClient(object):
|
|
616
616
|
:rtype: :class:`~oci.response.Response`
|
617
617
|
|
618
618
|
:example:
|
619
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
619
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_managed_list_compartment.py.html>`__ to see an example of how to use change_managed_list_compartment API.
|
620
620
|
"""
|
621
621
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
622
622
|
required_arguments = ['managedListId']
|
@@ -734,7 +734,7 @@ class CloudGuardClient(object):
|
|
734
734
|
:rtype: :class:`~oci.response.Response`
|
735
735
|
|
736
736
|
:example:
|
737
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
737
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_responder_recipe_compartment.py.html>`__ to see an example of how to use change_responder_recipe_compartment API.
|
738
738
|
"""
|
739
739
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
740
740
|
required_arguments = ['responderRecipeId']
|
@@ -852,7 +852,7 @@ class CloudGuardClient(object):
|
|
852
852
|
:rtype: :class:`~oci.response.Response`
|
853
853
|
|
854
854
|
:example:
|
855
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
855
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_security_recipe_compartment.py.html>`__ to see an example of how to use change_security_recipe_compartment API.
|
856
856
|
"""
|
857
857
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
858
858
|
required_arguments = ['securityRecipeId']
|
@@ -970,7 +970,7 @@ class CloudGuardClient(object):
|
|
970
970
|
:rtype: :class:`~oci.response.Response`
|
971
971
|
|
972
972
|
:example:
|
973
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
973
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_security_zone_compartment.py.html>`__ to see an example of how to use change_security_zone_compartment API.
|
974
974
|
"""
|
975
975
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
976
976
|
required_arguments = ['securityZoneId']
|
@@ -1078,7 +1078,7 @@ class CloudGuardClient(object):
|
|
1078
1078
|
:rtype: :class:`~oci.response.Response`
|
1079
1079
|
|
1080
1080
|
:example:
|
1081
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1081
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_data_mask_rule.py.html>`__ to see an example of how to use create_data_mask_rule API.
|
1082
1082
|
"""
|
1083
1083
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1084
1084
|
required_arguments = []
|
@@ -1174,7 +1174,7 @@ class CloudGuardClient(object):
|
|
1174
1174
|
:rtype: :class:`~oci.response.Response`
|
1175
1175
|
|
1176
1176
|
:example:
|
1177
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1177
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_data_source.py.html>`__ to see an example of how to use create_data_source API.
|
1178
1178
|
"""
|
1179
1179
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1180
1180
|
required_arguments = []
|
@@ -1268,7 +1268,7 @@ class CloudGuardClient(object):
|
|
1268
1268
|
:rtype: :class:`~oci.response.Response`
|
1269
1269
|
|
1270
1270
|
:example:
|
1271
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1271
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_detector_recipe.py.html>`__ to see an example of how to use create_detector_recipe API.
|
1272
1272
|
"""
|
1273
1273
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1274
1274
|
required_arguments = []
|
@@ -1367,7 +1367,7 @@ class CloudGuardClient(object):
|
|
1367
1367
|
:rtype: :class:`~oci.response.Response`
|
1368
1368
|
|
1369
1369
|
:example:
|
1370
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1370
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_detector_recipe_detector_rule.py.html>`__ to see an example of how to use create_detector_recipe_detector_rule API.
|
1371
1371
|
"""
|
1372
1372
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1373
1373
|
required_arguments = ['detectorRecipeId']
|
@@ -1475,7 +1475,7 @@ class CloudGuardClient(object):
|
|
1475
1475
|
:rtype: :class:`~oci.response.Response`
|
1476
1476
|
|
1477
1477
|
:example:
|
1478
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1478
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_managed_list.py.html>`__ to see an example of how to use create_managed_list API.
|
1479
1479
|
"""
|
1480
1480
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1481
1481
|
required_arguments = []
|
@@ -1571,7 +1571,7 @@ class CloudGuardClient(object):
|
|
1571
1571
|
:rtype: :class:`~oci.response.Response`
|
1572
1572
|
|
1573
1573
|
:example:
|
1574
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1574
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_responder_recipe.py.html>`__ to see an example of how to use create_responder_recipe API.
|
1575
1575
|
"""
|
1576
1576
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1577
1577
|
required_arguments = []
|
@@ -1667,7 +1667,7 @@ class CloudGuardClient(object):
|
|
1667
1667
|
:rtype: :class:`~oci.response.Response`
|
1668
1668
|
|
1669
1669
|
:example:
|
1670
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1670
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_security_recipe.py.html>`__ to see an example of how to use create_security_recipe API.
|
1671
1671
|
"""
|
1672
1672
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1673
1673
|
required_arguments = []
|
@@ -1763,7 +1763,7 @@ class CloudGuardClient(object):
|
|
1763
1763
|
:rtype: :class:`~oci.response.Response`
|
1764
1764
|
|
1765
1765
|
:example:
|
1766
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1766
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_security_zone.py.html>`__ to see an example of how to use create_security_zone API.
|
1767
1767
|
"""
|
1768
1768
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1769
1769
|
required_arguments = []
|
@@ -1859,7 +1859,7 @@ class CloudGuardClient(object):
|
|
1859
1859
|
:rtype: :class:`~oci.response.Response`
|
1860
1860
|
|
1861
1861
|
:example:
|
1862
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target.py.html>`__ to see an example of how to use create_target API.
|
1863
1863
|
"""
|
1864
1864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1865
1865
|
required_arguments = []
|
@@ -1958,7 +1958,7 @@ class CloudGuardClient(object):
|
|
1958
1958
|
:rtype: :class:`~oci.response.Response`
|
1959
1959
|
|
1960
1960
|
:example:
|
1961
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1961
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target_detector_recipe.py.html>`__ to see an example of how to use create_target_detector_recipe API.
|
1962
1962
|
"""
|
1963
1963
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1964
1964
|
required_arguments = ['targetId']
|
@@ -2069,7 +2069,7 @@ class CloudGuardClient(object):
|
|
2069
2069
|
:rtype: :class:`~oci.response.Response`
|
2070
2070
|
|
2071
2071
|
:example:
|
2072
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2072
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target_responder_recipe.py.html>`__ to see an example of how to use create_target_responder_recipe API.
|
2073
2073
|
"""
|
2074
2074
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2075
2075
|
required_arguments = ['targetId']
|
@@ -2177,7 +2177,7 @@ class CloudGuardClient(object):
|
|
2177
2177
|
:rtype: :class:`~oci.response.Response`
|
2178
2178
|
|
2179
2179
|
:example:
|
2180
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2180
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_data_mask_rule.py.html>`__ to see an example of how to use delete_data_mask_rule API.
|
2181
2181
|
"""
|
2182
2182
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2183
2183
|
required_arguments = ['dataMaskRuleId']
|
@@ -2287,7 +2287,7 @@ class CloudGuardClient(object):
|
|
2287
2287
|
:rtype: :class:`~oci.response.Response`
|
2288
2288
|
|
2289
2289
|
:example:
|
2290
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2290
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_data_source.py.html>`__ to see an example of how to use delete_data_source API.
|
2291
2291
|
"""
|
2292
2292
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2293
2293
|
required_arguments = ['dataSourceId']
|
@@ -2400,7 +2400,7 @@ class CloudGuardClient(object):
|
|
2400
2400
|
:rtype: :class:`~oci.response.Response`
|
2401
2401
|
|
2402
2402
|
:example:
|
2403
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2403
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe.py.html>`__ to see an example of how to use delete_detector_recipe API.
|
2404
2404
|
"""
|
2405
2405
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2406
2406
|
required_arguments = ['detectorRecipeId']
|
@@ -2509,7 +2509,7 @@ class CloudGuardClient(object):
|
|
2509
2509
|
:rtype: :class:`~oci.response.Response`
|
2510
2510
|
|
2511
2511
|
:example:
|
2512
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2512
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe_detector_rule.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule API.
|
2513
2513
|
"""
|
2514
2514
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2515
2515
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -2619,7 +2619,7 @@ class CloudGuardClient(object):
|
|
2619
2619
|
:rtype: :class:`~oci.response.Response`
|
2620
2620
|
|
2621
2621
|
:example:
|
2622
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2622
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe_detector_rule_data_source.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule_data_source API.
|
2623
2623
|
"""
|
2624
2624
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2625
2625
|
required_arguments = ['detectorRecipeId', 'detectorRuleId', 'dataSourceId']
|
@@ -2731,7 +2731,7 @@ class CloudGuardClient(object):
|
|
2731
2731
|
:rtype: :class:`~oci.response.Response`
|
2732
2732
|
|
2733
2733
|
:example:
|
2734
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2734
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_managed_list.py.html>`__ to see an example of how to use delete_managed_list API.
|
2735
2735
|
"""
|
2736
2736
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2737
2737
|
required_arguments = ['managedListId']
|
@@ -2837,7 +2837,7 @@ class CloudGuardClient(object):
|
|
2837
2837
|
:rtype: :class:`~oci.response.Response`
|
2838
2838
|
|
2839
2839
|
:example:
|
2840
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2840
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_responder_recipe.py.html>`__ to see an example of how to use delete_responder_recipe API.
|
2841
2841
|
"""
|
2842
2842
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2843
2843
|
required_arguments = ['responderRecipeId']
|
@@ -2940,7 +2940,7 @@ class CloudGuardClient(object):
|
|
2940
2940
|
:rtype: :class:`~oci.response.Response`
|
2941
2941
|
|
2942
2942
|
:example:
|
2943
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2943
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_security_recipe.py.html>`__ to see an example of how to use delete_security_recipe API.
|
2944
2944
|
"""
|
2945
2945
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2946
2946
|
required_arguments = ['securityRecipeId']
|
@@ -3043,7 +3043,7 @@ class CloudGuardClient(object):
|
|
3043
3043
|
:rtype: :class:`~oci.response.Response`
|
3044
3044
|
|
3045
3045
|
:example:
|
3046
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3046
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_security_zone.py.html>`__ to see an example of how to use delete_security_zone API.
|
3047
3047
|
"""
|
3048
3048
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3049
3049
|
required_arguments = ['securityZoneId']
|
@@ -3146,7 +3146,7 @@ class CloudGuardClient(object):
|
|
3146
3146
|
:rtype: :class:`~oci.response.Response`
|
3147
3147
|
|
3148
3148
|
:example:
|
3149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target.py.html>`__ to see an example of how to use delete_target API.
|
3150
3150
|
"""
|
3151
3151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3152
3152
|
required_arguments = ['targetId']
|
@@ -3252,7 +3252,7 @@ class CloudGuardClient(object):
|
|
3252
3252
|
:rtype: :class:`~oci.response.Response`
|
3253
3253
|
|
3254
3254
|
:example:
|
3255
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3255
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target_detector_recipe.py.html>`__ to see an example of how to use delete_target_detector_recipe API.
|
3256
3256
|
"""
|
3257
3257
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3258
3258
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -3359,7 +3359,7 @@ class CloudGuardClient(object):
|
|
3359
3359
|
:rtype: :class:`~oci.response.Response`
|
3360
3360
|
|
3361
3361
|
:example:
|
3362
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3362
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target_responder_recipe.py.html>`__ to see an example of how to use delete_target_responder_recipe API.
|
3363
3363
|
"""
|
3364
3364
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3365
3365
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -3476,7 +3476,7 @@ class CloudGuardClient(object):
|
|
3476
3476
|
:rtype: :class:`~oci.response.Response`
|
3477
3477
|
|
3478
3478
|
:example:
|
3479
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3479
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/execute_responder_execution.py.html>`__ to see an example of how to use execute_responder_execution API.
|
3480
3480
|
"""
|
3481
3481
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3482
3482
|
required_arguments = ['responderExecutionId', 'compartmentId']
|
@@ -3593,7 +3593,7 @@ class CloudGuardClient(object):
|
|
3593
3593
|
:rtype: :class:`~oci.response.Response`
|
3594
3594
|
|
3595
3595
|
:example:
|
3596
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3596
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_condition_metadata_type.py.html>`__ to see an example of how to use get_condition_metadata_type API.
|
3597
3597
|
"""
|
3598
3598
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3599
3599
|
required_arguments = ['conditionMetadataTypeId']
|
@@ -3699,7 +3699,7 @@ class CloudGuardClient(object):
|
|
3699
3699
|
:rtype: :class:`~oci.response.Response`
|
3700
3700
|
|
3701
3701
|
:example:
|
3702
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3702
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_configuration.py.html>`__ to see an example of how to use get_configuration API.
|
3703
3703
|
"""
|
3704
3704
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3705
3705
|
required_arguments = ['compartmentId']
|
@@ -3790,7 +3790,7 @@ class CloudGuardClient(object):
|
|
3790
3790
|
:rtype: :class:`~oci.response.Response`
|
3791
3791
|
|
3792
3792
|
:example:
|
3793
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3793
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_data_mask_rule.py.html>`__ to see an example of how to use get_data_mask_rule API.
|
3794
3794
|
"""
|
3795
3795
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3796
3796
|
required_arguments = ['dataMaskRuleId']
|
@@ -3886,7 +3886,7 @@ class CloudGuardClient(object):
|
|
3886
3886
|
:rtype: :class:`~oci.response.Response`
|
3887
3887
|
|
3888
3888
|
:example:
|
3889
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3889
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_data_source.py.html>`__ to see an example of how to use get_data_source API.
|
3890
3890
|
"""
|
3891
3891
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3892
3892
|
required_arguments = ['dataSourceId']
|
@@ -3982,7 +3982,7 @@ class CloudGuardClient(object):
|
|
3982
3982
|
:rtype: :class:`~oci.response.Response`
|
3983
3983
|
|
3984
3984
|
:example:
|
3985
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3985
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector.py.html>`__ to see an example of how to use get_detector API.
|
3986
3986
|
"""
|
3987
3987
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3988
3988
|
required_arguments = ['detectorId']
|
@@ -4078,7 +4078,7 @@ class CloudGuardClient(object):
|
|
4078
4078
|
:rtype: :class:`~oci.response.Response`
|
4079
4079
|
|
4080
4080
|
:example:
|
4081
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4081
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_recipe.py.html>`__ to see an example of how to use get_detector_recipe API.
|
4082
4082
|
"""
|
4083
4083
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4084
4084
|
required_arguments = ['detectorRecipeId']
|
@@ -4177,7 +4177,7 @@ class CloudGuardClient(object):
|
|
4177
4177
|
:rtype: :class:`~oci.response.Response`
|
4178
4178
|
|
4179
4179
|
:example:
|
4180
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4180
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_detector_recipe_detector_rule API.
|
4181
4181
|
"""
|
4182
4182
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4183
4183
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -4277,7 +4277,7 @@ class CloudGuardClient(object):
|
|
4277
4277
|
:rtype: :class:`~oci.response.Response`
|
4278
4278
|
|
4279
4279
|
:example:
|
4280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_rule.py.html>`__ to see an example of how to use get_detector_rule API.
|
4281
4281
|
"""
|
4282
4282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4283
4283
|
required_arguments = ['detectorId', 'detectorRuleId']
|
@@ -4374,7 +4374,7 @@ class CloudGuardClient(object):
|
|
4374
4374
|
:rtype: :class:`~oci.response.Response`
|
4375
4375
|
|
4376
4376
|
:example:
|
4377
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4377
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_managed_list.py.html>`__ to see an example of how to use get_managed_list API.
|
4378
4378
|
"""
|
4379
4379
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4380
4380
|
required_arguments = ['managedListId']
|
@@ -4470,7 +4470,7 @@ class CloudGuardClient(object):
|
|
4470
4470
|
:rtype: :class:`~oci.response.Response`
|
4471
4471
|
|
4472
4472
|
:example:
|
4473
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4473
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_problem.py.html>`__ to see an example of how to use get_problem API.
|
4474
4474
|
"""
|
4475
4475
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4476
4476
|
required_arguments = ['problemId']
|
@@ -4566,7 +4566,7 @@ class CloudGuardClient(object):
|
|
4566
4566
|
:rtype: :class:`~oci.response.Response`
|
4567
4567
|
|
4568
4568
|
:example:
|
4569
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4569
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_resource_profile.py.html>`__ to see an example of how to use get_resource_profile API.
|
4570
4570
|
"""
|
4571
4571
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4572
4572
|
required_arguments = ['resourceProfileId']
|
@@ -4662,7 +4662,7 @@ class CloudGuardClient(object):
|
|
4662
4662
|
:rtype: :class:`~oci.response.Response`
|
4663
4663
|
|
4664
4664
|
:example:
|
4665
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4665
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_execution.py.html>`__ to see an example of how to use get_responder_execution API.
|
4666
4666
|
"""
|
4667
4667
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4668
4668
|
required_arguments = ['responderExecutionId']
|
@@ -4758,7 +4758,7 @@ class CloudGuardClient(object):
|
|
4758
4758
|
:rtype: :class:`~oci.response.Response`
|
4759
4759
|
|
4760
4760
|
:example:
|
4761
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4761
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_recipe.py.html>`__ to see an example of how to use get_responder_recipe API.
|
4762
4762
|
"""
|
4763
4763
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4764
4764
|
required_arguments = ['responderRecipeId']
|
@@ -4857,7 +4857,7 @@ class CloudGuardClient(object):
|
|
4857
4857
|
:rtype: :class:`~oci.response.Response`
|
4858
4858
|
|
4859
4859
|
:example:
|
4860
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4860
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_responder_recipe_responder_rule API.
|
4861
4861
|
"""
|
4862
4862
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4863
4863
|
required_arguments = ['responderRecipeId', 'responderRuleId']
|
@@ -4954,7 +4954,7 @@ class CloudGuardClient(object):
|
|
4954
4954
|
:rtype: :class:`~oci.response.Response`
|
4955
4955
|
|
4956
4956
|
:example:
|
4957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4957
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_rule.py.html>`__ to see an example of how to use get_responder_rule API.
|
4958
4958
|
"""
|
4959
4959
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4960
4960
|
required_arguments = ['responderRuleId']
|
@@ -5050,7 +5050,7 @@ class CloudGuardClient(object):
|
|
5050
5050
|
:rtype: :class:`~oci.response.Response`
|
5051
5051
|
|
5052
5052
|
:example:
|
5053
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_policy.py.html>`__ to see an example of how to use get_security_policy API.
|
5054
5054
|
"""
|
5055
5055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5056
5056
|
required_arguments = ['securityPolicyId']
|
@@ -5146,7 +5146,7 @@ class CloudGuardClient(object):
|
|
5146
5146
|
:rtype: :class:`~oci.response.Response`
|
5147
5147
|
|
5148
5148
|
:example:
|
5149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_recipe.py.html>`__ to see an example of how to use get_security_recipe API.
|
5150
5150
|
"""
|
5151
5151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5152
5152
|
required_arguments = ['securityRecipeId']
|
@@ -5242,7 +5242,7 @@ class CloudGuardClient(object):
|
|
5242
5242
|
:rtype: :class:`~oci.response.Response`
|
5243
5243
|
|
5244
5244
|
:example:
|
5245
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_zone.py.html>`__ to see an example of how to use get_security_zone API.
|
5246
5246
|
"""
|
5247
5247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5248
5248
|
required_arguments = ['securityZoneId']
|
@@ -5338,7 +5338,7 @@ class CloudGuardClient(object):
|
|
5338
5338
|
:rtype: :class:`~oci.response.Response`
|
5339
5339
|
|
5340
5340
|
:example:
|
5341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5341
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_sighting.py.html>`__ to see an example of how to use get_sighting API.
|
5342
5342
|
"""
|
5343
5343
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5344
5344
|
required_arguments = ['sightingId']
|
@@ -5434,7 +5434,7 @@ class CloudGuardClient(object):
|
|
5434
5434
|
:rtype: :class:`~oci.response.Response`
|
5435
5435
|
|
5436
5436
|
:example:
|
5437
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target.py.html>`__ to see an example of how to use get_target API.
|
5438
5438
|
"""
|
5439
5439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5440
5440
|
required_arguments = ['targetId']
|
@@ -5533,7 +5533,7 @@ class CloudGuardClient(object):
|
|
5533
5533
|
:rtype: :class:`~oci.response.Response`
|
5534
5534
|
|
5535
5535
|
:example:
|
5536
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5536
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_detector_recipe.py.html>`__ to see an example of how to use get_target_detector_recipe API.
|
5537
5537
|
"""
|
5538
5538
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5539
5539
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -5636,7 +5636,7 @@ class CloudGuardClient(object):
|
|
5636
5636
|
:rtype: :class:`~oci.response.Response`
|
5637
5637
|
|
5638
5638
|
:example:
|
5639
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5639
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_target_detector_recipe_detector_rule API.
|
5640
5640
|
"""
|
5641
5641
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5642
5642
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
|
@@ -5737,7 +5737,7 @@ class CloudGuardClient(object):
|
|
5737
5737
|
:rtype: :class:`~oci.response.Response`
|
5738
5738
|
|
5739
5739
|
:example:
|
5740
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5740
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_responder_recipe.py.html>`__ to see an example of how to use get_target_responder_recipe API.
|
5741
5741
|
"""
|
5742
5742
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5743
5743
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -5840,7 +5840,7 @@ class CloudGuardClient(object):
|
|
5840
5840
|
:rtype: :class:`~oci.response.Response`
|
5841
5841
|
|
5842
5842
|
:example:
|
5843
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5843
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_target_responder_recipe_responder_rule API.
|
5844
5844
|
"""
|
5845
5845
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5846
5846
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']
|
@@ -5938,7 +5938,7 @@ class CloudGuardClient(object):
|
|
5938
5938
|
:rtype: :class:`~oci.response.Response`
|
5939
5939
|
|
5940
5940
|
:example:
|
5941
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5941
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
5942
5942
|
"""
|
5943
5943
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5944
5944
|
required_arguments = ['workRequestId']
|
@@ -6055,7 +6055,7 @@ class CloudGuardClient(object):
|
|
6055
6055
|
:rtype: :class:`~oci.response.Response`
|
6056
6056
|
|
6057
6057
|
:example:
|
6058
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_condition_metadata_types.py.html>`__ to see an example of how to use list_condition_metadata_types API.
|
6059
6059
|
"""
|
6060
6060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6061
6061
|
required_arguments = ['compartmentId']
|
@@ -6224,7 +6224,7 @@ class CloudGuardClient(object):
|
|
6224
6224
|
:rtype: :class:`~oci.response.Response`
|
6225
6225
|
|
6226
6226
|
:example:
|
6227
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6227
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_mask_rules.py.html>`__ to see an example of how to use list_data_mask_rules API.
|
6228
6228
|
"""
|
6229
6229
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6230
6230
|
required_arguments = ['compartmentId']
|
@@ -6391,7 +6391,7 @@ class CloudGuardClient(object):
|
|
6391
6391
|
:rtype: :class:`~oci.response.Response`
|
6392
6392
|
|
6393
6393
|
:example:
|
6394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_source_events.py.html>`__ to see an example of how to use list_data_source_events API.
|
6395
6395
|
"""
|
6396
6396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6397
6397
|
required_arguments = ['dataSourceId']
|
@@ -6580,7 +6580,7 @@ class CloudGuardClient(object):
|
|
6580
6580
|
:rtype: :class:`~oci.response.Response`
|
6581
6581
|
|
6582
6582
|
:example:
|
6583
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6583
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_sources.py.html>`__ to see an example of how to use list_data_sources API.
|
6584
6584
|
"""
|
6585
6585
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6586
6586
|
required_arguments = ['compartmentId']
|
@@ -6760,7 +6760,7 @@ class CloudGuardClient(object):
|
|
6760
6760
|
:rtype: :class:`~oci.response.Response`
|
6761
6761
|
|
6762
6762
|
:example:
|
6763
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6763
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_detector_recipe_detector_rules API.
|
6764
6764
|
"""
|
6765
6765
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6766
6766
|
required_arguments = ['detectorRecipeId', 'compartmentId']
|
@@ -6954,7 +6954,7 @@ class CloudGuardClient(object):
|
|
6954
6954
|
:rtype: :class:`~oci.response.Response`
|
6955
6955
|
|
6956
6956
|
:example:
|
6957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6957
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_recipes.py.html>`__ to see an example of how to use list_detector_recipes API.
|
6958
6958
|
"""
|
6959
6959
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6960
6960
|
required_arguments = ['compartmentId']
|
@@ -7118,7 +7118,7 @@ class CloudGuardClient(object):
|
|
7118
7118
|
:rtype: :class:`~oci.response.Response`
|
7119
7119
|
|
7120
7120
|
:example:
|
7121
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7121
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_rules.py.html>`__ to see an example of how to use list_detector_rules API.
|
7122
7122
|
"""
|
7123
7123
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7124
7124
|
required_arguments = ['detectorId', 'compartmentId']
|
@@ -7275,7 +7275,7 @@ class CloudGuardClient(object):
|
|
7275
7275
|
:rtype: :class:`~oci.response.Response`
|
7276
7276
|
|
7277
7277
|
:example:
|
7278
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7278
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detectors.py.html>`__ to see an example of how to use list_detectors API.
|
7279
7279
|
"""
|
7280
7280
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7281
7281
|
required_arguments = ['compartmentId']
|
@@ -7413,7 +7413,7 @@ class CloudGuardClient(object):
|
|
7413
7413
|
:rtype: :class:`~oci.response.Response`
|
7414
7414
|
|
7415
7415
|
:example:
|
7416
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7416
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_impacted_resources.py.html>`__ to see an example of how to use list_impacted_resources API.
|
7417
7417
|
"""
|
7418
7418
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7419
7419
|
required_arguments = ['problemId']
|
@@ -7558,7 +7558,7 @@ class CloudGuardClient(object):
|
|
7558
7558
|
:rtype: :class:`~oci.response.Response`
|
7559
7559
|
|
7560
7560
|
:example:
|
7561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_managed_list_types.py.html>`__ to see an example of how to use list_managed_list_types API.
|
7562
7562
|
"""
|
7563
7563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7564
7564
|
required_arguments = ['compartmentId']
|
@@ -7742,7 +7742,7 @@ class CloudGuardClient(object):
|
|
7742
7742
|
:rtype: :class:`~oci.response.Response`
|
7743
7743
|
|
7744
7744
|
:example:
|
7745
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7745
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_managed_lists.py.html>`__ to see an example of how to use list_managed_lists API.
|
7746
7746
|
"""
|
7747
7747
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7748
7748
|
required_arguments = ['compartmentId']
|
@@ -7904,7 +7904,7 @@ class CloudGuardClient(object):
|
|
7904
7904
|
:rtype: :class:`~oci.response.Response`
|
7905
7905
|
|
7906
7906
|
:example:
|
7907
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7907
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_policies.py.html>`__ to see an example of how to use list_policies API.
|
7908
7908
|
"""
|
7909
7909
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7910
7910
|
required_arguments = ['compartmentId']
|
@@ -8033,7 +8033,7 @@ class CloudGuardClient(object):
|
|
8033
8033
|
:rtype: :class:`~oci.response.Response`
|
8034
8034
|
|
8035
8035
|
:example:
|
8036
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8036
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_endpoints.py.html>`__ to see an example of how to use list_problem_endpoints API.
|
8037
8037
|
"""
|
8038
8038
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8039
8039
|
required_arguments = ['problemId']
|
@@ -8173,7 +8173,7 @@ class CloudGuardClient(object):
|
|
8173
8173
|
:rtype: :class:`~oci.response.Response`
|
8174
8174
|
|
8175
8175
|
:example:
|
8176
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8176
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_entities.py.html>`__ to see an example of how to use list_problem_entities API.
|
8177
8177
|
"""
|
8178
8178
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8179
8179
|
required_arguments = ['problemId']
|
@@ -8316,7 +8316,7 @@ class CloudGuardClient(object):
|
|
8316
8316
|
:rtype: :class:`~oci.response.Response`
|
8317
8317
|
|
8318
8318
|
:example:
|
8319
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8319
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_histories.py.html>`__ to see an example of how to use list_problem_histories API.
|
8320
8320
|
"""
|
8321
8321
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8322
8322
|
required_arguments = ['problemId', 'compartmentId']
|
@@ -8548,7 +8548,7 @@ class CloudGuardClient(object):
|
|
8548
8548
|
:rtype: :class:`~oci.response.Response`
|
8549
8549
|
|
8550
8550
|
:example:
|
8551
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8551
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problems.py.html>`__ to see an example of how to use list_problems API.
|
8552
8552
|
"""
|
8553
8553
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8554
8554
|
required_arguments = ['compartmentId']
|
@@ -8780,7 +8780,7 @@ class CloudGuardClient(object):
|
|
8780
8780
|
:rtype: :class:`~oci.response.Response`
|
8781
8781
|
|
8782
8782
|
:example:
|
8783
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8783
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_recommendations.py.html>`__ to see an example of how to use list_recommendations API.
|
8784
8784
|
"""
|
8785
8785
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8786
8786
|
required_arguments = ['compartmentId']
|
@@ -8940,7 +8940,7 @@ class CloudGuardClient(object):
|
|
8940
8940
|
:rtype: :class:`~oci.response.Response`
|
8941
8941
|
|
8942
8942
|
:example:
|
8943
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8943
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profile_endpoints.py.html>`__ to see an example of how to use list_resource_profile_endpoints API.
|
8944
8944
|
"""
|
8945
8945
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8946
8946
|
required_arguments = ['resourceProfileId']
|
@@ -9080,7 +9080,7 @@ class CloudGuardClient(object):
|
|
9080
9080
|
:rtype: :class:`~oci.response.Response`
|
9081
9081
|
|
9082
9082
|
:example:
|
9083
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9083
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profile_impacted_resources.py.html>`__ to see an example of how to use list_resource_profile_impacted_resources API.
|
9084
9084
|
"""
|
9085
9085
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9086
9086
|
required_arguments = ['resourceProfileId']
|
@@ -9275,7 +9275,7 @@ class CloudGuardClient(object):
|
|
9275
9275
|
:rtype: :class:`~oci.response.Response`
|
9276
9276
|
|
9277
9277
|
:example:
|
9278
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9278
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profiles.py.html>`__ to see an example of how to use list_resource_profiles API.
|
9279
9279
|
"""
|
9280
9280
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9281
9281
|
required_arguments = ['compartmentId']
|
@@ -9443,7 +9443,7 @@ class CloudGuardClient(object):
|
|
9443
9443
|
:rtype: :class:`~oci.response.Response`
|
9444
9444
|
|
9445
9445
|
:example:
|
9446
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9446
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_types.py.html>`__ to see an example of how to use list_resource_types API.
|
9447
9447
|
"""
|
9448
9448
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9449
9449
|
required_arguments = ['compartmentId']
|
@@ -9590,7 +9590,7 @@ class CloudGuardClient(object):
|
|
9590
9590
|
:rtype: :class:`~oci.response.Response`
|
9591
9591
|
|
9592
9592
|
:example:
|
9593
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9593
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_activities.py.html>`__ to see an example of how to use list_responder_activities API.
|
9594
9594
|
"""
|
9595
9595
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9596
9596
|
required_arguments = ['problemId']
|
@@ -9781,7 +9781,7 @@ class CloudGuardClient(object):
|
|
9781
9781
|
:rtype: :class:`~oci.response.Response`
|
9782
9782
|
|
9783
9783
|
:example:
|
9784
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9784
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_executions.py.html>`__ to see an example of how to use list_responder_executions API.
|
9785
9785
|
"""
|
9786
9786
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9787
9787
|
required_arguments = ['compartmentId']
|
@@ -9973,7 +9973,7 @@ class CloudGuardClient(object):
|
|
9973
9973
|
:rtype: :class:`~oci.response.Response`
|
9974
9974
|
|
9975
9975
|
:example:
|
9976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9976
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_responder_recipe_responder_rules API.
|
9977
9977
|
"""
|
9978
9978
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9979
9979
|
required_arguments = ['responderRecipeId', 'compartmentId']
|
@@ -10166,7 +10166,7 @@ class CloudGuardClient(object):
|
|
10166
10166
|
:rtype: :class:`~oci.response.Response`
|
10167
10167
|
|
10168
10168
|
:example:
|
10169
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10169
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_recipes.py.html>`__ to see an example of how to use list_responder_recipes API.
|
10170
10170
|
"""
|
10171
10171
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10172
10172
|
required_arguments = ['compartmentId']
|
@@ -10327,7 +10327,7 @@ class CloudGuardClient(object):
|
|
10327
10327
|
:rtype: :class:`~oci.response.Response`
|
10328
10328
|
|
10329
10329
|
:example:
|
10330
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10330
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_rules.py.html>`__ to see an example of how to use list_responder_rules API.
|
10331
10331
|
"""
|
10332
10332
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10333
10333
|
required_arguments = ['compartmentId']
|
@@ -10478,7 +10478,7 @@ class CloudGuardClient(object):
|
|
10478
10478
|
:rtype: :class:`~oci.response.Response`
|
10479
10479
|
|
10480
10480
|
:example:
|
10481
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10481
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_policies.py.html>`__ to see an example of how to use list_security_policies API.
|
10482
10482
|
"""
|
10483
10483
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10484
10484
|
required_arguments = ['compartmentId']
|
@@ -10631,7 +10631,7 @@ class CloudGuardClient(object):
|
|
10631
10631
|
:rtype: :class:`~oci.response.Response`
|
10632
10632
|
|
10633
10633
|
:example:
|
10634
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_recipes.py.html>`__ to see an example of how to use list_security_recipes API.
|
10635
10635
|
"""
|
10636
10636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10637
10637
|
required_arguments = ['compartmentId']
|
@@ -10790,7 +10790,7 @@ class CloudGuardClient(object):
|
|
10790
10790
|
:rtype: :class:`~oci.response.Response`
|
10791
10791
|
|
10792
10792
|
:example:
|
10793
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10793
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_zones.py.html>`__ to see an example of how to use list_security_zones API.
|
10794
10794
|
"""
|
10795
10795
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10796
10796
|
required_arguments = ['compartmentId']
|
@@ -10936,7 +10936,7 @@ class CloudGuardClient(object):
|
|
10936
10936
|
:rtype: :class:`~oci.response.Response`
|
10937
10937
|
|
10938
10938
|
:example:
|
10939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10939
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sighting_endpoints.py.html>`__ to see an example of how to use list_sighting_endpoints API.
|
10940
10940
|
"""
|
10941
10941
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10942
10942
|
required_arguments = ['sightingId']
|
@@ -11076,7 +11076,7 @@ class CloudGuardClient(object):
|
|
11076
11076
|
:rtype: :class:`~oci.response.Response`
|
11077
11077
|
|
11078
11078
|
:example:
|
11079
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11079
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sighting_impacted_resources.py.html>`__ to see an example of how to use list_sighting_impacted_resources API.
|
11080
11080
|
"""
|
11081
11081
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11082
11082
|
required_arguments = ['sightingId']
|
@@ -11255,7 +11255,7 @@ class CloudGuardClient(object):
|
|
11255
11255
|
:rtype: :class:`~oci.response.Response`
|
11256
11256
|
|
11257
11257
|
:example:
|
11258
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11258
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sightings.py.html>`__ to see an example of how to use list_sightings API.
|
11259
11259
|
"""
|
11260
11260
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11261
11261
|
required_arguments = ['compartmentId']
|
@@ -11408,7 +11408,7 @@ class CloudGuardClient(object):
|
|
11408
11408
|
:rtype: :class:`~oci.response.Response`
|
11409
11409
|
|
11410
11410
|
:example:
|
11411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_tactics.py.html>`__ to see an example of how to use list_tactics API.
|
11412
11412
|
"""
|
11413
11413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11414
11414
|
required_arguments = ['compartmentId']
|
@@ -11560,7 +11560,7 @@ class CloudGuardClient(object):
|
|
11560
11560
|
:rtype: :class:`~oci.response.Response`
|
11561
11561
|
|
11562
11562
|
:example:
|
11563
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11563
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_target_detector_recipe_detector_rules API.
|
11564
11564
|
"""
|
11565
11565
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11566
11566
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'compartmentId']
|
@@ -11724,7 +11724,7 @@ class CloudGuardClient(object):
|
|
11724
11724
|
:rtype: :class:`~oci.response.Response`
|
11725
11725
|
|
11726
11726
|
:example:
|
11727
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11727
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_detector_recipes.py.html>`__ to see an example of how to use list_target_detector_recipes API.
|
11728
11728
|
"""
|
11729
11729
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11730
11730
|
required_arguments = ['targetId', 'compartmentId']
|
@@ -11890,7 +11890,7 @@ class CloudGuardClient(object):
|
|
11890
11890
|
:rtype: :class:`~oci.response.Response`
|
11891
11891
|
|
11892
11892
|
:example:
|
11893
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11893
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_target_responder_recipe_responder_rules API.
|
11894
11894
|
"""
|
11895
11895
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11896
11896
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'compartmentId']
|
@@ -12054,7 +12054,7 @@ class CloudGuardClient(object):
|
|
12054
12054
|
:rtype: :class:`~oci.response.Response`
|
12055
12055
|
|
12056
12056
|
:example:
|
12057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12057
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_responder_recipes.py.html>`__ to see an example of how to use list_target_responder_recipes API.
|
12058
12058
|
"""
|
12059
12059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12060
12060
|
required_arguments = ['targetId', 'compartmentId']
|
@@ -12247,7 +12247,7 @@ class CloudGuardClient(object):
|
|
12247
12247
|
:rtype: :class:`~oci.response.Response`
|
12248
12248
|
|
12249
12249
|
:example:
|
12250
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12250
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_targets.py.html>`__ to see an example of how to use list_targets API.
|
12251
12251
|
"""
|
12252
12252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12253
12253
|
required_arguments = ['compartmentId']
|
@@ -12408,7 +12408,7 @@ class CloudGuardClient(object):
|
|
12408
12408
|
:rtype: :class:`~oci.response.Response`
|
12409
12409
|
|
12410
12410
|
:example:
|
12411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_techniques.py.html>`__ to see an example of how to use list_techniques API.
|
12412
12412
|
"""
|
12413
12413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12414
12414
|
required_arguments = ['compartmentId']
|
@@ -12548,7 +12548,7 @@ class CloudGuardClient(object):
|
|
12548
12548
|
:rtype: :class:`~oci.response.Response`
|
12549
12549
|
|
12550
12550
|
:example:
|
12551
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12551
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
12552
12552
|
"""
|
12553
12553
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12554
12554
|
required_arguments = ['workRequestId']
|
@@ -12688,7 +12688,7 @@ class CloudGuardClient(object):
|
|
12688
12688
|
:rtype: :class:`~oci.response.Response`
|
12689
12689
|
|
12690
12690
|
:example:
|
12691
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12691
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
12692
12692
|
"""
|
12693
12693
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12694
12694
|
required_arguments = ['workRequestId']
|
@@ -12836,7 +12836,7 @@ class CloudGuardClient(object):
|
|
12836
12836
|
:rtype: :class:`~oci.response.Response`
|
12837
12837
|
|
12838
12838
|
:example:
|
12839
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12839
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
12840
12840
|
"""
|
12841
12841
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12842
12842
|
required_arguments = ['compartmentId']
|
@@ -12977,7 +12977,7 @@ class CloudGuardClient(object):
|
|
12977
12977
|
:rtype: :class:`~oci.response.Response`
|
12978
12978
|
|
12979
12979
|
:example:
|
12980
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12980
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/remove_compartment.py.html>`__ to see an example of how to use remove_compartment API.
|
12981
12981
|
"""
|
12982
12982
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12983
12983
|
required_arguments = ['securityZoneId']
|
@@ -13086,7 +13086,7 @@ class CloudGuardClient(object):
|
|
13086
13086
|
:rtype: :class:`~oci.response.Response`
|
13087
13087
|
|
13088
13088
|
:example:
|
13089
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13089
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_risk_scores.py.html>`__ to see an example of how to use request_risk_scores API.
|
13090
13090
|
"""
|
13091
13091
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13092
13092
|
required_arguments = ['compartmentId']
|
@@ -13194,7 +13194,7 @@ class CloudGuardClient(object):
|
|
13194
13194
|
:rtype: :class:`~oci.response.Response`
|
13195
13195
|
|
13196
13196
|
:example:
|
13197
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13197
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_security_score_summarized_trend.py.html>`__ to see an example of how to use request_security_score_summarized_trend API.
|
13198
13198
|
"""
|
13199
13199
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13200
13200
|
required_arguments = ['compartmentId']
|
@@ -13299,7 +13299,7 @@ class CloudGuardClient(object):
|
|
13299
13299
|
:rtype: :class:`~oci.response.Response`
|
13300
13300
|
|
13301
13301
|
:example:
|
13302
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13302
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_security_scores.py.html>`__ to see an example of how to use request_security_scores API.
|
13303
13303
|
"""
|
13304
13304
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13305
13305
|
required_arguments = ['compartmentId']
|
@@ -13434,7 +13434,7 @@ class CloudGuardClient(object):
|
|
13434
13434
|
:rtype: :class:`~oci.response.Response`
|
13435
13435
|
|
13436
13436
|
:example:
|
13437
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_activity_problems.py.html>`__ to see an example of how to use request_summarized_activity_problems API.
|
13438
13438
|
"""
|
13439
13439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13440
13440
|
required_arguments = ['compartmentId']
|
@@ -13579,7 +13579,7 @@ class CloudGuardClient(object):
|
|
13579
13579
|
:rtype: :class:`~oci.response.Response`
|
13580
13580
|
|
13581
13581
|
:example:
|
13582
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13582
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_problems.py.html>`__ to see an example of how to use request_summarized_problems API.
|
13583
13583
|
"""
|
13584
13584
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13585
13585
|
required_arguments = ['listDimensions', 'compartmentId']
|
@@ -13742,7 +13742,7 @@ class CloudGuardClient(object):
|
|
13742
13742
|
:rtype: :class:`~oci.response.Response`
|
13743
13743
|
|
13744
13744
|
:example:
|
13745
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13745
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_responder_executions.py.html>`__ to see an example of how to use request_summarized_responder_executions API.
|
13746
13746
|
"""
|
13747
13747
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13748
13748
|
required_arguments = ['responderExecutionsDimensions', 'compartmentId']
|
@@ -13882,7 +13882,7 @@ class CloudGuardClient(object):
|
|
13882
13882
|
:rtype: :class:`~oci.response.Response`
|
13883
13883
|
|
13884
13884
|
:example:
|
13885
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13885
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_risk_scores.py.html>`__ to see an example of how to use request_summarized_risk_scores API.
|
13886
13886
|
"""
|
13887
13887
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13888
13888
|
required_arguments = ['compartmentId']
|
@@ -13983,7 +13983,7 @@ class CloudGuardClient(object):
|
|
13983
13983
|
:rtype: :class:`~oci.response.Response`
|
13984
13984
|
|
13985
13985
|
:example:
|
13986
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13986
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_security_scores.py.html>`__ to see an example of how to use request_summarized_security_scores API.
|
13987
13987
|
"""
|
13988
13988
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13989
13989
|
required_arguments = ['compartmentId']
|
@@ -14113,7 +14113,7 @@ class CloudGuardClient(object):
|
|
14113
14113
|
:rtype: :class:`~oci.response.Response`
|
14114
14114
|
|
14115
14115
|
:example:
|
14116
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14116
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_top_trend_resource_profile_risk_scores.py.html>`__ to see an example of how to use request_summarized_top_trend_resource_profile_risk_scores API.
|
14117
14117
|
"""
|
14118
14118
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14119
14119
|
required_arguments = ['compartmentId']
|
@@ -14272,7 +14272,7 @@ class CloudGuardClient(object):
|
|
14272
14272
|
:rtype: :class:`~oci.response.Response`
|
14273
14273
|
|
14274
14274
|
:example:
|
14275
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_problems.py.html>`__ to see an example of how to use request_summarized_trend_problems API.
|
14276
14276
|
"""
|
14277
14277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14278
14278
|
required_arguments = ['compartmentId']
|
@@ -14412,7 +14412,7 @@ class CloudGuardClient(object):
|
|
14412
14412
|
:rtype: :class:`~oci.response.Response`
|
14413
14413
|
|
14414
14414
|
:example:
|
14415
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14415
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_resource_risk_scores.py.html>`__ to see an example of how to use request_summarized_trend_resource_risk_scores API.
|
14416
14416
|
"""
|
14417
14417
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14418
14418
|
required_arguments = ['compartmentId']
|
@@ -14562,7 +14562,7 @@ class CloudGuardClient(object):
|
|
14562
14562
|
:rtype: :class:`~oci.response.Response`
|
14563
14563
|
|
14564
14564
|
:example:
|
14565
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14565
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_responder_executions.py.html>`__ to see an example of how to use request_summarized_trend_responder_executions API.
|
14566
14566
|
"""
|
14567
14567
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14568
14568
|
required_arguments = ['compartmentId']
|
@@ -14684,7 +14684,7 @@ class CloudGuardClient(object):
|
|
14684
14684
|
:rtype: :class:`~oci.response.Response`
|
14685
14685
|
|
14686
14686
|
:example:
|
14687
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14687
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_security_scores.py.html>`__ to see an example of how to use request_summarized_trend_security_scores API.
|
14688
14688
|
"""
|
14689
14689
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14690
14690
|
required_arguments = ['compartmentId']
|
@@ -14784,7 +14784,7 @@ class CloudGuardClient(object):
|
|
14784
14784
|
:rtype: :class:`~oci.response.Response`
|
14785
14785
|
|
14786
14786
|
:example:
|
14787
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14787
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/skip_bulk_responder_execution.py.html>`__ to see an example of how to use skip_bulk_responder_execution API.
|
14788
14788
|
"""
|
14789
14789
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14790
14790
|
required_arguments = []
|
@@ -14885,7 +14885,7 @@ class CloudGuardClient(object):
|
|
14885
14885
|
:rtype: :class:`~oci.response.Response`
|
14886
14886
|
|
14887
14887
|
:example:
|
14888
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14888
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/skip_responder_execution.py.html>`__ to see an example of how to use skip_responder_execution API.
|
14889
14889
|
"""
|
14890
14890
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14891
14891
|
required_arguments = ['responderExecutionId', 'compartmentId']
|
@@ -15008,7 +15008,7 @@ class CloudGuardClient(object):
|
|
15008
15008
|
:rtype: :class:`~oci.response.Response`
|
15009
15009
|
|
15010
15010
|
:example:
|
15011
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15011
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/trigger_responder.py.html>`__ to see an example of how to use trigger_responder API.
|
15012
15012
|
"""
|
15013
15013
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15014
15014
|
required_arguments = ['problemId']
|
@@ -15110,7 +15110,7 @@ class CloudGuardClient(object):
|
|
15110
15110
|
:rtype: :class:`~oci.response.Response`
|
15111
15111
|
|
15112
15112
|
:example:
|
15113
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15113
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_bulk_problem_status.py.html>`__ to see an example of how to use update_bulk_problem_status API.
|
15114
15114
|
"""
|
15115
15115
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15116
15116
|
required_arguments = []
|
@@ -15211,7 +15211,7 @@ class CloudGuardClient(object):
|
|
15211
15211
|
:rtype: :class:`~oci.response.Response`
|
15212
15212
|
|
15213
15213
|
:example:
|
15214
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15214
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_configuration.py.html>`__ to see an example of how to use update_configuration API.
|
15215
15215
|
"""
|
15216
15216
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15217
15217
|
required_arguments = ['compartmentId']
|
@@ -15319,7 +15319,7 @@ class CloudGuardClient(object):
|
|
15319
15319
|
:rtype: :class:`~oci.response.Response`
|
15320
15320
|
|
15321
15321
|
:example:
|
15322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_data_mask_rule.py.html>`__ to see an example of how to use update_data_mask_rule API.
|
15323
15323
|
"""
|
15324
15324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15325
15325
|
required_arguments = ['dataMaskRuleId']
|
@@ -15436,7 +15436,7 @@ class CloudGuardClient(object):
|
|
15436
15436
|
:rtype: :class:`~oci.response.Response`
|
15437
15437
|
|
15438
15438
|
:example:
|
15439
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15439
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_data_source.py.html>`__ to see an example of how to use update_data_source API.
|
15440
15440
|
"""
|
15441
15441
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15442
15442
|
required_arguments = ['dataSourceId']
|
@@ -15554,7 +15554,7 @@ class CloudGuardClient(object):
|
|
15554
15554
|
:rtype: :class:`~oci.response.Response`
|
15555
15555
|
|
15556
15556
|
:example:
|
15557
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15557
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_detector_recipe.py.html>`__ to see an example of how to use update_detector_recipe API.
|
15558
15558
|
"""
|
15559
15559
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15560
15560
|
required_arguments = ['detectorRecipeId']
|
@@ -15670,7 +15670,7 @@ class CloudGuardClient(object):
|
|
15670
15670
|
:rtype: :class:`~oci.response.Response`
|
15671
15671
|
|
15672
15672
|
:example:
|
15673
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15673
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_detector_recipe_detector_rule API.
|
15674
15674
|
"""
|
15675
15675
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15676
15676
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -15788,7 +15788,7 @@ class CloudGuardClient(object):
|
|
15788
15788
|
:rtype: :class:`~oci.response.Response`
|
15789
15789
|
|
15790
15790
|
:example:
|
15791
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15791
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_managed_list.py.html>`__ to see an example of how to use update_managed_list API.
|
15792
15792
|
"""
|
15793
15793
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15794
15794
|
required_arguments = ['managedListId']
|
@@ -15908,7 +15908,7 @@ class CloudGuardClient(object):
|
|
15908
15908
|
:rtype: :class:`~oci.response.Response`
|
15909
15909
|
|
15910
15910
|
:example:
|
15911
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15911
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_problem_status.py.html>`__ to see an example of how to use update_problem_status API.
|
15912
15912
|
"""
|
15913
15913
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15914
15914
|
required_arguments = ['problemId']
|
@@ -16021,7 +16021,7 @@ class CloudGuardClient(object):
|
|
16021
16021
|
:rtype: :class:`~oci.response.Response`
|
16022
16022
|
|
16023
16023
|
:example:
|
16024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_responder_recipe.py.html>`__ to see an example of how to use update_responder_recipe API.
|
16025
16025
|
"""
|
16026
16026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16027
16027
|
required_arguments = ['responderRecipeId']
|
@@ -16134,7 +16134,7 @@ class CloudGuardClient(object):
|
|
16134
16134
|
:rtype: :class:`~oci.response.Response`
|
16135
16135
|
|
16136
16136
|
:example:
|
16137
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16137
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_responder_recipe_responder_rule API.
|
16138
16138
|
"""
|
16139
16139
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16140
16140
|
required_arguments = ['responderRecipeId', 'responderRuleId']
|
@@ -16245,7 +16245,7 @@ class CloudGuardClient(object):
|
|
16245
16245
|
:rtype: :class:`~oci.response.Response`
|
16246
16246
|
|
16247
16247
|
:example:
|
16248
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16248
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_security_recipe.py.html>`__ to see an example of how to use update_security_recipe API.
|
16249
16249
|
"""
|
16250
16250
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16251
16251
|
required_arguments = ['securityRecipeId']
|
@@ -16355,7 +16355,7 @@ class CloudGuardClient(object):
|
|
16355
16355
|
:rtype: :class:`~oci.response.Response`
|
16356
16356
|
|
16357
16357
|
:example:
|
16358
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16358
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_security_zone.py.html>`__ to see an example of how to use update_security_zone API.
|
16359
16359
|
"""
|
16360
16360
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16361
16361
|
required_arguments = ['securityZoneId']
|
@@ -16465,7 +16465,7 @@ class CloudGuardClient(object):
|
|
16465
16465
|
:rtype: :class:`~oci.response.Response`
|
16466
16466
|
|
16467
16467
|
:example:
|
16468
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16468
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target.py.html>`__ to see an example of how to use update_target API.
|
16469
16469
|
"""
|
16470
16470
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16471
16471
|
required_arguments = ['targetId']
|
@@ -16578,7 +16578,7 @@ class CloudGuardClient(object):
|
|
16578
16578
|
:rtype: :class:`~oci.response.Response`
|
16579
16579
|
|
16580
16580
|
:example:
|
16581
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16581
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_detector_recipe.py.html>`__ to see an example of how to use update_target_detector_recipe API.
|
16582
16582
|
"""
|
16583
16583
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16584
16584
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -16695,7 +16695,7 @@ class CloudGuardClient(object):
|
|
16695
16695
|
:rtype: :class:`~oci.response.Response`
|
16696
16696
|
|
16697
16697
|
:example:
|
16698
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16698
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_target_detector_recipe_detector_rule API.
|
16699
16699
|
"""
|
16700
16700
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16701
16701
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
|
@@ -16810,7 +16810,7 @@ class CloudGuardClient(object):
|
|
16810
16810
|
:rtype: :class:`~oci.response.Response`
|
16811
16811
|
|
16812
16812
|
:example:
|
16813
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16813
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_responder_recipe.py.html>`__ to see an example of how to use update_target_responder_recipe API.
|
16814
16814
|
"""
|
16815
16815
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16816
16816
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -16927,7 +16927,7 @@ class CloudGuardClient(object):
|
|
16927
16927
|
:rtype: :class:`~oci.response.Response`
|
16928
16928
|
|
16929
16929
|
:example:
|
16930
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16930
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_target_responder_recipe_responder_rule API.
|
16931
16931
|
"""
|
16932
16932
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16933
16933
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']
|