oci 2.154.2__py3-none-any.whl → 2.155.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/adk/agent.py +82 -32
- oci/addons/adk/mcp/__init__.py +11 -0
- oci/addons/adk/mcp/mcp_client.py +420 -0
- oci/addons/adk/tool/function_tool.py +7 -3
- oci/addons/adk/tool/tool.py +11 -1
- oci/addons/adk/tool/toolkit.py +11 -2
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apiaccesscontrol/api_metadata_client.py +6 -6
- oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
- oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
- oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/__init__.py +3 -1
- oci/apm_traces/attributes_client.py +12 -12
- oci/apm_traces/models/__init__.py +25 -1
- oci/apm_traces/models/attribute.py +101 -0
- oci/apm_traces/models/attribute_metadata.py +149 -0
- oci/apm_traces/models/attribute_response.py +2 -2
- oci/apm_traces/models/attribute_update_response.py +2 -2
- oci/apm_traces/models/auto_activate_status.py +16 -0
- oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
- oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
- oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
- oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
- oci/apm_traces/models/create_scheduled_query_details.py +471 -0
- oci/apm_traces/models/custom_metric.py +295 -0
- oci/apm_traces/models/log.py +475 -0
- oci/apm_traces/models/object_storage.py +132 -0
- oci/apm_traces/models/scheduled_query.py +666 -0
- oci/apm_traces/models/scheduled_query_collection.py +70 -0
- oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
- oci/apm_traces/models/scheduled_query_summary.py +573 -0
- oci/apm_traces/models/streaming.py +70 -0
- oci/apm_traces/models/tag_metadata.py +2 -2
- oci/apm_traces/models/update_scheduled_query_details.py +471 -0
- oci/apm_traces/query_client.py +8 -6
- oci/apm_traces/scheduled_query_client.py +755 -0
- oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
- oci/apm_traces/trace_client.py +131 -6
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/base_client.py +3 -0
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +88 -88
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/capacity_management/demand_signal_client.py +13 -13
- oci/capacity_management/internal_demand_signal_client.py +12 -12
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +125 -125
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +901 -421
- oci/database/database_client_composite_operations.py +123 -0
- oci/database/models/__init__.py +14 -0
- oci/database/models/autonomous_container_database.py +37 -0
- oci/database/models/autonomous_container_database_summary.py +37 -0
- oci/database/models/autonomous_database_software_image.py +37 -0
- oci/database/models/autonomous_database_software_image_summary.py +37 -0
- oci/database/models/autonomous_vm_cluster.py +37 -0
- oci/database/models/autonomous_vm_cluster_summary.py +37 -0
- oci/database/models/azure_encryption_key_details.py +80 -0
- oci/database/models/backup.py +7 -3
- oci/database/models/backup_destination.py +37 -0
- oci/database/models/backup_destination_configuration_summary.py +7 -3
- oci/database/models/backup_destination_details.py +7 -3
- oci/database/models/backup_destination_details_summary.py +7 -3
- oci/database/models/backup_destination_summary.py +37 -0
- oci/database/models/backup_summary.py +7 -3
- oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
- oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
- oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
- oci/database/models/cloud_vm_cluster.py +80 -2
- oci/database/models/cloud_vm_cluster_summary.py +80 -2
- oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
- oci/database/models/create_cloud_vm_cluster_details.py +17 -17
- oci/database/models/create_database_base.py +1 -1
- oci/database/models/create_vm_cluster_details.py +2 -2
- oci/database/models/database.py +37 -0
- oci/database/models/database_software_image.py +37 -0
- oci/database/models/database_software_image_summary.py +37 -0
- oci/database/models/database_summary.py +37 -0
- oci/database/models/db_home.py +37 -0
- oci/database/models/db_home_from_agent_resource_id.py +37 -0
- oci/database/models/db_home_summary.py +37 -0
- oci/database/models/db_node.py +37 -0
- oci/database/models/db_node_summary.py +37 -0
- oci/database/models/db_server.py +37 -0
- oci/database/models/db_server_summary.py +37 -0
- oci/database/models/db_system.py +37 -0
- oci/database/models/db_system_summary.py +37 -0
- oci/database/models/encryption_key_location_details.py +15 -5
- oci/database/models/exadata_infrastructure.py +37 -0
- oci/database/models/exadata_infrastructure_summary.py +37 -0
- oci/database/models/execution_action.py +39 -2
- oci/database/models/execution_action_summary.py +39 -2
- oci/database/models/execution_window.py +39 -2
- oci/database/models/execution_window_summary.py +39 -2
- oci/database/models/external_container_database.py +37 -0
- oci/database/models/external_container_database_summary.py +37 -0
- oci/database/models/external_database_base.py +37 -0
- oci/database/models/external_database_connector.py +37 -0
- oci/database/models/external_database_connector_summary.py +37 -0
- oci/database/models/external_hsm_encryption_details.py +1 -1
- oci/database/models/external_macs_connector.py +7 -0
- oci/database/models/external_macs_connector_summary.py +7 -0
- oci/database/models/external_non_container_database.py +37 -0
- oci/database/models/external_non_container_database_summary.py +37 -0
- oci/database/models/external_pluggable_database.py +37 -0
- oci/database/models/external_pluggable_database_summary.py +37 -0
- oci/database/models/identity_connector_details.py +113 -0
- oci/database/models/key_store.py +39 -2
- oci/database/models/key_store_summary.py +39 -2
- oci/database/models/maintenance_run.py +37 -0
- oci/database/models/maintenance_run_history.py +39 -2
- oci/database/models/maintenance_run_history_summary.py +39 -2
- oci/database/models/maintenance_run_summary.py +37 -0
- oci/database/models/oneoff_patch.py +39 -2
- oci/database/models/oneoff_patch_summary.py +39 -2
- oci/database/models/pluggable_database.py +37 -0
- oci/database/models/pluggable_database_summary.py +37 -0
- oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/resource_pool_member_collection.py +70 -0
- oci/database/models/resource_pool_member_summary.py +74 -0
- oci/database/models/scheduling_policy.py +39 -2
- oci/database/models/scheduling_policy_summary.py +39 -2
- oci/database/models/scheduling_window.py +39 -2
- oci/database/models/scheduling_window_summary.py +39 -2
- oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/vm_cluster.py +37 -0
- oci/database/models/vm_cluster_network.py +39 -2
- oci/database/models/vm_cluster_network_summary.py +39 -2
- oci/database/models/vm_cluster_summary.py +37 -0
- oci/database_management/db_management_client.py +229 -229
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +15 -15
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +155 -42
- oci/database_migration/database_migration_client_composite_operations.py +42 -0
- oci/database_migration/models/__init__.py +4 -0
- oci/database_migration/models/collect_traces_data.py +183 -0
- oci/database_migration/models/collect_traces_details.py +132 -0
- oci/database_migration/models/job.py +27 -0
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/dbmulticloud/__init__.py +28 -0
- oci/dbmulticloud/models/__init__.py +112 -0
- oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
- oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
- oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
- oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
- oci/dbmulticloud/models/resources.py +229 -0
- oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/work_request.py +496 -0
- oci/dbmulticloud/models/work_request_error.py +134 -0
- oci/dbmulticloud/models/work_request_error_collection.py +70 -0
- oci/dbmulticloud/models/work_request_log_entry.py +101 -0
- oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
- oci/dbmulticloud/models/work_request_resource.py +232 -0
- oci/dbmulticloud/models/work_request_summary.py +496 -0
- oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
- oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
- oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
- oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
- oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
- oci/dbmulticloud/work_request_client.py +770 -0
- oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
- oci/distributed_database/distributed_db_service_client.py +19 -19
- oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/fleet_software_update/models/__init__.py +12 -0
- oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
- oci/fleet_software_update/models/fsu_cycle.py +11 -3
- oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
- oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
- oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
- oci/fleet_software_update/models/upgrade_details.py +107 -0
- oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
- oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/load_balancer/models/backend.py +4 -4
- oci/load_balancer/models/backend_details.py +10 -4
- oci/load_balancer/models/backend_set.py +6 -4
- oci/load_balancer/models/backend_set_details.py +12 -4
- oci/load_balancer/models/create_backend_details.py +10 -4
- oci/load_balancer/models/create_backend_set_details.py +12 -4
- oci/load_balancer/models/create_listener_details.py +6 -4
- oci/load_balancer/models/create_load_balancer_details.py +39 -0
- oci/load_balancer/models/listener.py +6 -4
- oci/load_balancer/models/listener_details.py +6 -4
- oci/load_balancer/models/load_balancer.py +61 -2
- oci/load_balancer/models/reserved_ip.py +4 -0
- oci/load_balancer/models/update_backend_details.py +10 -4
- oci/load_balancer/models/update_backend_set_details.py +12 -4
- oci/load_balancer/models/update_listener_details.py +6 -4
- oci/load_balancer/models/update_load_balancer_details.py +59 -0
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +18 -18
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/model_deployment_client.py +2 -2
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +8 -8
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/__init__.py +2 -0
- oci/mysql/models/backup.py +29 -2
- oci/mysql/models/backup_summary.py +29 -2
- oci/mysql/models/copy_backup_details.py +29 -2
- oci/mysql/models/create_db_system_details.py +27 -0
- oci/mysql/models/db_system.py +27 -0
- oci/mysql/models/db_system_snapshot.py +27 -0
- oci/mysql/models/encrypt_data_details.py +117 -0
- oci/mysql/models/replica.py +27 -0
- oci/mysql/models/update_db_system_details.py +27 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +92 -92
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/models/__init__.py +14 -0
- oci/nosql/models/configuration.py +109 -0
- oci/nosql/models/hosted_configuration.py +78 -0
- oci/nosql/models/kms_key.py +244 -0
- oci/nosql/models/multi_tenancy_configuration.py +49 -0
- oci/nosql/models/update_configuration_details.py +109 -0
- oci/nosql/models/update_hosted_configuration_details.py +78 -0
- oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
- oci/nosql/models/work_request.py +7 -3
- oci/nosql/models/work_request_summary.py +7 -3
- oci/nosql/nosql_client.py +340 -25
- oci/nosql/nosql_client_composite_operations.py +81 -0
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +17 -17
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/oci_cache_user_client.py +7 -7
- oci/redis/redis_cluster_client.py +15 -15
- oci/redis/redis_identity_client.py +1 -1
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +96 -96
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/wlms/weblogic_management_service_client.py +41 -41
- oci/wlms/weblogic_management_service_configuration_client.py +2 -2
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
@@ -166,7 +166,7 @@ class CloudGuardClient(object):
|
|
166
166
|
:rtype: :class:`~oci.response.Response`
|
167
167
|
|
168
168
|
:example:
|
169
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
169
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/add_compartment.py.html>`__ to see an example of how to use add_compartment API.
|
170
170
|
"""
|
171
171
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
172
172
|
required_arguments = ['securityZoneId']
|
@@ -276,7 +276,7 @@ class CloudGuardClient(object):
|
|
276
276
|
:rtype: :class:`~oci.response.Response`
|
277
277
|
|
278
278
|
:example:
|
279
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
279
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
|
280
280
|
"""
|
281
281
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
282
282
|
required_arguments = ['workRequestId']
|
@@ -391,7 +391,7 @@ class CloudGuardClient(object):
|
|
391
391
|
:rtype: :class:`~oci.response.Response`
|
392
392
|
|
393
393
|
:example:
|
394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_data_source_compartment.py.html>`__ to see an example of how to use change_data_source_compartment API.
|
395
395
|
"""
|
396
396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
397
397
|
required_arguments = ['dataSourceId']
|
@@ -512,7 +512,7 @@ class CloudGuardClient(object):
|
|
512
512
|
:rtype: :class:`~oci.response.Response`
|
513
513
|
|
514
514
|
:example:
|
515
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
515
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_detector_recipe_compartment.py.html>`__ to see an example of how to use change_detector_recipe_compartment API.
|
516
516
|
"""
|
517
517
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
518
518
|
required_arguments = ['detectorRecipeId']
|
@@ -630,7 +630,7 @@ class CloudGuardClient(object):
|
|
630
630
|
:rtype: :class:`~oci.response.Response`
|
631
631
|
|
632
632
|
:example:
|
633
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
633
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_managed_list_compartment.py.html>`__ to see an example of how to use change_managed_list_compartment API.
|
634
634
|
"""
|
635
635
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
636
636
|
required_arguments = ['managedListId']
|
@@ -750,7 +750,7 @@ class CloudGuardClient(object):
|
|
750
750
|
:rtype: :class:`~oci.response.Response`
|
751
751
|
|
752
752
|
:example:
|
753
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
753
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_responder_recipe_compartment.py.html>`__ to see an example of how to use change_responder_recipe_compartment API.
|
754
754
|
"""
|
755
755
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
756
756
|
required_arguments = ['responderRecipeId']
|
@@ -868,7 +868,7 @@ class CloudGuardClient(object):
|
|
868
868
|
:rtype: :class:`~oci.response.Response`
|
869
869
|
|
870
870
|
:example:
|
871
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
871
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_saved_query_compartment.py.html>`__ to see an example of how to use change_saved_query_compartment API.
|
872
872
|
"""
|
873
873
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
874
874
|
required_arguments = ['savedQueryId']
|
@@ -988,7 +988,7 @@ class CloudGuardClient(object):
|
|
988
988
|
:rtype: :class:`~oci.response.Response`
|
989
989
|
|
990
990
|
:example:
|
991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_security_recipe_compartment.py.html>`__ to see an example of how to use change_security_recipe_compartment API.
|
992
992
|
"""
|
993
993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
994
994
|
required_arguments = ['securityRecipeId']
|
@@ -1108,7 +1108,7 @@ class CloudGuardClient(object):
|
|
1108
1108
|
:rtype: :class:`~oci.response.Response`
|
1109
1109
|
|
1110
1110
|
:example:
|
1111
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1111
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/change_security_zone_compartment.py.html>`__ to see an example of how to use change_security_zone_compartment API.
|
1112
1112
|
"""
|
1113
1113
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1114
1114
|
required_arguments = ['securityZoneId']
|
@@ -1216,7 +1216,7 @@ class CloudGuardClient(object):
|
|
1216
1216
|
:rtype: :class:`~oci.response.Response`
|
1217
1217
|
|
1218
1218
|
:example:
|
1219
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1219
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_adhoc_query.py.html>`__ to see an example of how to use create_adhoc_query API.
|
1220
1220
|
"""
|
1221
1221
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1222
1222
|
required_arguments = []
|
@@ -1312,7 +1312,7 @@ class CloudGuardClient(object):
|
|
1312
1312
|
:rtype: :class:`~oci.response.Response`
|
1313
1313
|
|
1314
1314
|
:example:
|
1315
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1315
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_data_mask_rule.py.html>`__ to see an example of how to use create_data_mask_rule API.
|
1316
1316
|
"""
|
1317
1317
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1318
1318
|
required_arguments = []
|
@@ -1409,7 +1409,7 @@ class CloudGuardClient(object):
|
|
1409
1409
|
:rtype: :class:`~oci.response.Response`
|
1410
1410
|
|
1411
1411
|
:example:
|
1412
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1412
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_data_source.py.html>`__ to see an example of how to use create_data_source API.
|
1413
1413
|
"""
|
1414
1414
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1415
1415
|
required_arguments = []
|
@@ -1503,7 +1503,7 @@ class CloudGuardClient(object):
|
|
1503
1503
|
:rtype: :class:`~oci.response.Response`
|
1504
1504
|
|
1505
1505
|
:example:
|
1506
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_detector_recipe.py.html>`__ to see an example of how to use create_detector_recipe API.
|
1507
1507
|
"""
|
1508
1508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1509
1509
|
required_arguments = []
|
@@ -1602,7 +1602,7 @@ class CloudGuardClient(object):
|
|
1602
1602
|
:rtype: :class:`~oci.response.Response`
|
1603
1603
|
|
1604
1604
|
:example:
|
1605
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1605
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_detector_recipe_detector_rule.py.html>`__ to see an example of how to use create_detector_recipe_detector_rule API.
|
1606
1606
|
"""
|
1607
1607
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1608
1608
|
required_arguments = ['detectorRecipeId']
|
@@ -1710,7 +1710,7 @@ class CloudGuardClient(object):
|
|
1710
1710
|
:rtype: :class:`~oci.response.Response`
|
1711
1711
|
|
1712
1712
|
:example:
|
1713
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1713
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_managed_list.py.html>`__ to see an example of how to use create_managed_list API.
|
1714
1714
|
"""
|
1715
1715
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1716
1716
|
required_arguments = []
|
@@ -1807,7 +1807,7 @@ class CloudGuardClient(object):
|
|
1807
1807
|
:rtype: :class:`~oci.response.Response`
|
1808
1808
|
|
1809
1809
|
:example:
|
1810
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1810
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_responder_recipe.py.html>`__ to see an example of how to use create_responder_recipe API.
|
1811
1811
|
"""
|
1812
1812
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1813
1813
|
required_arguments = []
|
@@ -1903,7 +1903,7 @@ class CloudGuardClient(object):
|
|
1903
1903
|
:rtype: :class:`~oci.response.Response`
|
1904
1904
|
|
1905
1905
|
:example:
|
1906
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1906
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_saved_query.py.html>`__ to see an example of how to use create_saved_query API.
|
1907
1907
|
"""
|
1908
1908
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1909
1909
|
required_arguments = []
|
@@ -2000,7 +2000,7 @@ class CloudGuardClient(object):
|
|
2000
2000
|
:rtype: :class:`~oci.response.Response`
|
2001
2001
|
|
2002
2002
|
:example:
|
2003
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2003
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_security_recipe.py.html>`__ to see an example of how to use create_security_recipe API.
|
2004
2004
|
"""
|
2005
2005
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2006
2006
|
required_arguments = []
|
@@ -2097,7 +2097,7 @@ class CloudGuardClient(object):
|
|
2097
2097
|
:rtype: :class:`~oci.response.Response`
|
2098
2098
|
|
2099
2099
|
:example:
|
2100
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2100
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_security_zone.py.html>`__ to see an example of how to use create_security_zone API.
|
2101
2101
|
"""
|
2102
2102
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2103
2103
|
required_arguments = []
|
@@ -2193,7 +2193,7 @@ class CloudGuardClient(object):
|
|
2193
2193
|
:rtype: :class:`~oci.response.Response`
|
2194
2194
|
|
2195
2195
|
:example:
|
2196
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2196
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_target.py.html>`__ to see an example of how to use create_target API.
|
2197
2197
|
"""
|
2198
2198
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2199
2199
|
required_arguments = []
|
@@ -2294,7 +2294,7 @@ class CloudGuardClient(object):
|
|
2294
2294
|
:rtype: :class:`~oci.response.Response`
|
2295
2295
|
|
2296
2296
|
:example:
|
2297
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2297
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_target_detector_recipe.py.html>`__ to see an example of how to use create_target_detector_recipe API.
|
2298
2298
|
"""
|
2299
2299
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2300
2300
|
required_arguments = ['targetId']
|
@@ -2405,7 +2405,7 @@ class CloudGuardClient(object):
|
|
2405
2405
|
:rtype: :class:`~oci.response.Response`
|
2406
2406
|
|
2407
2407
|
:example:
|
2408
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2408
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_target_responder_recipe.py.html>`__ to see an example of how to use create_target_responder_recipe API.
|
2409
2409
|
"""
|
2410
2410
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2411
2411
|
required_arguments = ['targetId']
|
@@ -2514,7 +2514,7 @@ class CloudGuardClient(object):
|
|
2514
2514
|
:rtype: :class:`~oci.response.Response`
|
2515
2515
|
|
2516
2516
|
:example:
|
2517
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2517
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/create_wlp_agent.py.html>`__ to see an example of how to use create_wlp_agent API.
|
2518
2518
|
"""
|
2519
2519
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2520
2520
|
required_arguments = []
|
@@ -2617,7 +2617,7 @@ class CloudGuardClient(object):
|
|
2617
2617
|
:rtype: :class:`~oci.response.Response`
|
2618
2618
|
|
2619
2619
|
:example:
|
2620
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2620
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_adhoc_query.py.html>`__ to see an example of how to use delete_adhoc_query API.
|
2621
2621
|
"""
|
2622
2622
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2623
2623
|
required_arguments = ['adhocQueryId']
|
@@ -2723,7 +2723,7 @@ class CloudGuardClient(object):
|
|
2723
2723
|
:rtype: :class:`~oci.response.Response`
|
2724
2724
|
|
2725
2725
|
:example:
|
2726
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2726
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_data_mask_rule.py.html>`__ to see an example of how to use delete_data_mask_rule API.
|
2727
2727
|
"""
|
2728
2728
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2729
2729
|
required_arguments = ['dataMaskRuleId']
|
@@ -2833,7 +2833,7 @@ class CloudGuardClient(object):
|
|
2833
2833
|
:rtype: :class:`~oci.response.Response`
|
2834
2834
|
|
2835
2835
|
:example:
|
2836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2836
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_data_source.py.html>`__ to see an example of how to use delete_data_source API.
|
2837
2837
|
"""
|
2838
2838
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2839
2839
|
required_arguments = ['dataSourceId']
|
@@ -2946,7 +2946,7 @@ class CloudGuardClient(object):
|
|
2946
2946
|
:rtype: :class:`~oci.response.Response`
|
2947
2947
|
|
2948
2948
|
:example:
|
2949
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2949
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_detector_recipe.py.html>`__ to see an example of how to use delete_detector_recipe API.
|
2950
2950
|
"""
|
2951
2951
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2952
2952
|
required_arguments = ['detectorRecipeId']
|
@@ -3055,7 +3055,7 @@ class CloudGuardClient(object):
|
|
3055
3055
|
:rtype: :class:`~oci.response.Response`
|
3056
3056
|
|
3057
3057
|
:example:
|
3058
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_detector_recipe_detector_rule.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule API.
|
3059
3059
|
"""
|
3060
3060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3061
3061
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -3165,7 +3165,7 @@ class CloudGuardClient(object):
|
|
3165
3165
|
:rtype: :class:`~oci.response.Response`
|
3166
3166
|
|
3167
3167
|
:example:
|
3168
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3168
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
3169
3169
|
"""
|
3170
3170
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3171
3171
|
required_arguments = ['detectorRecipeId', 'detectorRuleId', 'dataSourceId']
|
@@ -3277,7 +3277,7 @@ class CloudGuardClient(object):
|
|
3277
3277
|
:rtype: :class:`~oci.response.Response`
|
3278
3278
|
|
3279
3279
|
:example:
|
3280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_managed_list.py.html>`__ to see an example of how to use delete_managed_list API.
|
3281
3281
|
"""
|
3282
3282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3283
3283
|
required_arguments = ['managedListId']
|
@@ -3383,7 +3383,7 @@ class CloudGuardClient(object):
|
|
3383
3383
|
:rtype: :class:`~oci.response.Response`
|
3384
3384
|
|
3385
3385
|
:example:
|
3386
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3386
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_responder_recipe.py.html>`__ to see an example of how to use delete_responder_recipe API.
|
3387
3387
|
"""
|
3388
3388
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3389
3389
|
required_arguments = ['responderRecipeId']
|
@@ -3493,7 +3493,7 @@ class CloudGuardClient(object):
|
|
3493
3493
|
:rtype: :class:`~oci.response.Response`
|
3494
3494
|
|
3495
3495
|
:example:
|
3496
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3496
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_saved_query.py.html>`__ to see an example of how to use delete_saved_query API.
|
3497
3497
|
"""
|
3498
3498
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3499
3499
|
required_arguments = ['savedQueryId']
|
@@ -3599,7 +3599,7 @@ class CloudGuardClient(object):
|
|
3599
3599
|
:rtype: :class:`~oci.response.Response`
|
3600
3600
|
|
3601
3601
|
:example:
|
3602
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3602
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_security_recipe.py.html>`__ to see an example of how to use delete_security_recipe API.
|
3603
3603
|
"""
|
3604
3604
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3605
3605
|
required_arguments = ['securityRecipeId']
|
@@ -3702,7 +3702,7 @@ class CloudGuardClient(object):
|
|
3702
3702
|
:rtype: :class:`~oci.response.Response`
|
3703
3703
|
|
3704
3704
|
:example:
|
3705
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3705
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_security_zone.py.html>`__ to see an example of how to use delete_security_zone API.
|
3706
3706
|
"""
|
3707
3707
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3708
3708
|
required_arguments = ['securityZoneId']
|
@@ -3805,7 +3805,7 @@ class CloudGuardClient(object):
|
|
3805
3805
|
:rtype: :class:`~oci.response.Response`
|
3806
3806
|
|
3807
3807
|
:example:
|
3808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3808
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_target.py.html>`__ to see an example of how to use delete_target API.
|
3809
3809
|
"""
|
3810
3810
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3811
3811
|
required_arguments = ['targetId']
|
@@ -3912,7 +3912,7 @@ class CloudGuardClient(object):
|
|
3912
3912
|
:rtype: :class:`~oci.response.Response`
|
3913
3913
|
|
3914
3914
|
:example:
|
3915
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3915
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_target_detector_recipe.py.html>`__ to see an example of how to use delete_target_detector_recipe API.
|
3916
3916
|
"""
|
3917
3917
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3918
3918
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -4021,7 +4021,7 @@ class CloudGuardClient(object):
|
|
4021
4021
|
:rtype: :class:`~oci.response.Response`
|
4022
4022
|
|
4023
4023
|
:example:
|
4024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_target_responder_recipe.py.html>`__ to see an example of how to use delete_target_responder_recipe API.
|
4025
4025
|
"""
|
4026
4026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4027
4027
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -4164,7 +4164,7 @@ class CloudGuardClient(object):
|
|
4164
4164
|
:rtype: :class:`~oci.response.Response`
|
4165
4165
|
|
4166
4166
|
:example:
|
4167
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4167
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/delete_wlp_agent.py.html>`__ to see an example of how to use delete_wlp_agent API.
|
4168
4168
|
"""
|
4169
4169
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4170
4170
|
required_arguments = ['wlpAgentId']
|
@@ -4284,7 +4284,7 @@ class CloudGuardClient(object):
|
|
4284
4284
|
:rtype: :class:`~oci.response.Response`
|
4285
4285
|
|
4286
4286
|
:example:
|
4287
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4287
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/execute_responder_execution.py.html>`__ to see an example of how to use execute_responder_execution API.
|
4288
4288
|
"""
|
4289
4289
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4290
4290
|
required_arguments = ['responderExecutionId', 'compartmentId']
|
@@ -4393,7 +4393,7 @@ class CloudGuardClient(object):
|
|
4393
4393
|
:rtype: :class:`~oci.response.Response`
|
4394
4394
|
|
4395
4395
|
:example:
|
4396
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4396
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_adhoc_query.py.html>`__ to see an example of how to use get_adhoc_query API.
|
4397
4397
|
"""
|
4398
4398
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4399
4399
|
required_arguments = ['adhocQueryId']
|
@@ -4489,7 +4489,7 @@ class CloudGuardClient(object):
|
|
4489
4489
|
:rtype: :class:`~oci.response.Response`
|
4490
4490
|
|
4491
4491
|
:example:
|
4492
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4492
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_adhoc_query_result_content.py.html>`__ to see an example of how to use get_adhoc_query_result_content API.
|
4493
4493
|
"""
|
4494
4494
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4495
4495
|
required_arguments = ['adhocQueryId']
|
@@ -4593,7 +4593,7 @@ class CloudGuardClient(object):
|
|
4593
4593
|
:rtype: :class:`~oci.response.Response`
|
4594
4594
|
|
4595
4595
|
:example:
|
4596
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4596
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_condition_metadata_type.py.html>`__ to see an example of how to use get_condition_metadata_type API.
|
4597
4597
|
"""
|
4598
4598
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4599
4599
|
required_arguments = ['conditionMetadataTypeId']
|
@@ -4700,7 +4700,7 @@ class CloudGuardClient(object):
|
|
4700
4700
|
:rtype: :class:`~oci.response.Response`
|
4701
4701
|
|
4702
4702
|
:example:
|
4703
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4703
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_configuration.py.html>`__ to see an example of how to use get_configuration API.
|
4704
4704
|
"""
|
4705
4705
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4706
4706
|
required_arguments = ['compartmentId']
|
@@ -4791,7 +4791,7 @@ class CloudGuardClient(object):
|
|
4791
4791
|
:rtype: :class:`~oci.response.Response`
|
4792
4792
|
|
4793
4793
|
:example:
|
4794
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4794
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_data_mask_rule.py.html>`__ to see an example of how to use get_data_mask_rule API.
|
4795
4795
|
"""
|
4796
4796
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4797
4797
|
required_arguments = ['dataMaskRuleId']
|
@@ -4887,7 +4887,7 @@ class CloudGuardClient(object):
|
|
4887
4887
|
:rtype: :class:`~oci.response.Response`
|
4888
4888
|
|
4889
4889
|
:example:
|
4890
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4890
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_data_source.py.html>`__ to see an example of how to use get_data_source API.
|
4891
4891
|
"""
|
4892
4892
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4893
4893
|
required_arguments = ['dataSourceId']
|
@@ -4983,7 +4983,7 @@ class CloudGuardClient(object):
|
|
4983
4983
|
:rtype: :class:`~oci.response.Response`
|
4984
4984
|
|
4985
4985
|
:example:
|
4986
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4986
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_detector.py.html>`__ to see an example of how to use get_detector API.
|
4987
4987
|
"""
|
4988
4988
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4989
4989
|
required_arguments = ['detectorId']
|
@@ -5079,7 +5079,7 @@ class CloudGuardClient(object):
|
|
5079
5079
|
:rtype: :class:`~oci.response.Response`
|
5080
5080
|
|
5081
5081
|
:example:
|
5082
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5082
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_detector_recipe.py.html>`__ to see an example of how to use get_detector_recipe API.
|
5083
5083
|
"""
|
5084
5084
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5085
5085
|
required_arguments = ['detectorRecipeId']
|
@@ -5178,7 +5178,7 @@ class CloudGuardClient(object):
|
|
5178
5178
|
:rtype: :class:`~oci.response.Response`
|
5179
5179
|
|
5180
5180
|
:example:
|
5181
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_detector_recipe_detector_rule API.
|
5182
5182
|
"""
|
5183
5183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5184
5184
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -5278,7 +5278,7 @@ class CloudGuardClient(object):
|
|
5278
5278
|
:rtype: :class:`~oci.response.Response`
|
5279
5279
|
|
5280
5280
|
:example:
|
5281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_detector_rule.py.html>`__ to see an example of how to use get_detector_rule API.
|
5282
5282
|
"""
|
5283
5283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5284
5284
|
required_arguments = ['detectorId', 'detectorRuleId']
|
@@ -5375,7 +5375,7 @@ class CloudGuardClient(object):
|
|
5375
5375
|
:rtype: :class:`~oci.response.Response`
|
5376
5376
|
|
5377
5377
|
:example:
|
5378
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_managed_list.py.html>`__ to see an example of how to use get_managed_list API.
|
5379
5379
|
"""
|
5380
5380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5381
5381
|
required_arguments = ['managedListId']
|
@@ -5471,7 +5471,7 @@ class CloudGuardClient(object):
|
|
5471
5471
|
:rtype: :class:`~oci.response.Response`
|
5472
5472
|
|
5473
5473
|
:example:
|
5474
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5474
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_problem.py.html>`__ to see an example of how to use get_problem API.
|
5475
5475
|
"""
|
5476
5476
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5477
5477
|
required_arguments = ['problemId']
|
@@ -5567,7 +5567,7 @@ class CloudGuardClient(object):
|
|
5567
5567
|
:rtype: :class:`~oci.response.Response`
|
5568
5568
|
|
5569
5569
|
:example:
|
5570
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5570
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_resource.py.html>`__ to see an example of how to use get_resource API.
|
5571
5571
|
"""
|
5572
5572
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5573
5573
|
required_arguments = ['resourceId']
|
@@ -5663,7 +5663,7 @@ class CloudGuardClient(object):
|
|
5663
5663
|
:rtype: :class:`~oci.response.Response`
|
5664
5664
|
|
5665
5665
|
:example:
|
5666
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5666
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_resource_profile.py.html>`__ to see an example of how to use get_resource_profile API.
|
5667
5667
|
"""
|
5668
5668
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5669
5669
|
required_arguments = ['resourceProfileId']
|
@@ -5762,7 +5762,7 @@ class CloudGuardClient(object):
|
|
5762
5762
|
:rtype: :class:`~oci.response.Response`
|
5763
5763
|
|
5764
5764
|
:example:
|
5765
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5765
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_resource_vulnerability.py.html>`__ to see an example of how to use get_resource_vulnerability API.
|
5766
5766
|
"""
|
5767
5767
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5768
5768
|
required_arguments = ['resourceId', 'vulnerabilityKey']
|
@@ -5859,7 +5859,7 @@ class CloudGuardClient(object):
|
|
5859
5859
|
:rtype: :class:`~oci.response.Response`
|
5860
5860
|
|
5861
5861
|
:example:
|
5862
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5862
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_responder_execution.py.html>`__ to see an example of how to use get_responder_execution API.
|
5863
5863
|
"""
|
5864
5864
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5865
5865
|
required_arguments = ['responderExecutionId']
|
@@ -5955,7 +5955,7 @@ class CloudGuardClient(object):
|
|
5955
5955
|
:rtype: :class:`~oci.response.Response`
|
5956
5956
|
|
5957
5957
|
:example:
|
5958
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5958
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_responder_recipe.py.html>`__ to see an example of how to use get_responder_recipe API.
|
5959
5959
|
"""
|
5960
5960
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5961
5961
|
required_arguments = ['responderRecipeId']
|
@@ -6054,7 +6054,7 @@ class CloudGuardClient(object):
|
|
6054
6054
|
:rtype: :class:`~oci.response.Response`
|
6055
6055
|
|
6056
6056
|
:example:
|
6057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6057
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_responder_recipe_responder_rule API.
|
6058
6058
|
"""
|
6059
6059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6060
6060
|
required_arguments = ['responderRecipeId', 'responderRuleId']
|
@@ -6151,7 +6151,7 @@ class CloudGuardClient(object):
|
|
6151
6151
|
:rtype: :class:`~oci.response.Response`
|
6152
6152
|
|
6153
6153
|
:example:
|
6154
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6154
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_responder_rule.py.html>`__ to see an example of how to use get_responder_rule API.
|
6155
6155
|
"""
|
6156
6156
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6157
6157
|
required_arguments = ['responderRuleId']
|
@@ -6247,7 +6247,7 @@ class CloudGuardClient(object):
|
|
6247
6247
|
:rtype: :class:`~oci.response.Response`
|
6248
6248
|
|
6249
6249
|
:example:
|
6250
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6250
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_saved_query.py.html>`__ to see an example of how to use get_saved_query API.
|
6251
6251
|
"""
|
6252
6252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6253
6253
|
required_arguments = ['savedQueryId']
|
@@ -6345,7 +6345,7 @@ class CloudGuardClient(object):
|
|
6345
6345
|
:rtype: :class:`~oci.response.Response`
|
6346
6346
|
|
6347
6347
|
:example:
|
6348
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6348
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_security_policy.py.html>`__ to see an example of how to use get_security_policy API.
|
6349
6349
|
"""
|
6350
6350
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6351
6351
|
required_arguments = ['securityPolicyId']
|
@@ -6441,7 +6441,7 @@ class CloudGuardClient(object):
|
|
6441
6441
|
:rtype: :class:`~oci.response.Response`
|
6442
6442
|
|
6443
6443
|
:example:
|
6444
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6444
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_security_recipe.py.html>`__ to see an example of how to use get_security_recipe API.
|
6445
6445
|
"""
|
6446
6446
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6447
6447
|
required_arguments = ['securityRecipeId']
|
@@ -6537,7 +6537,7 @@ class CloudGuardClient(object):
|
|
6537
6537
|
:rtype: :class:`~oci.response.Response`
|
6538
6538
|
|
6539
6539
|
:example:
|
6540
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6540
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_security_zone.py.html>`__ to see an example of how to use get_security_zone API.
|
6541
6541
|
"""
|
6542
6542
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6543
6543
|
required_arguments = ['securityZoneId']
|
@@ -6633,7 +6633,7 @@ class CloudGuardClient(object):
|
|
6633
6633
|
:rtype: :class:`~oci.response.Response`
|
6634
6634
|
|
6635
6635
|
:example:
|
6636
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6636
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_sighting.py.html>`__ to see an example of how to use get_sighting API.
|
6637
6637
|
"""
|
6638
6638
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6639
6639
|
required_arguments = ['sightingId']
|
@@ -6729,7 +6729,7 @@ class CloudGuardClient(object):
|
|
6729
6729
|
:rtype: :class:`~oci.response.Response`
|
6730
6730
|
|
6731
6731
|
:example:
|
6732
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6732
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_target.py.html>`__ to see an example of how to use get_target API.
|
6733
6733
|
"""
|
6734
6734
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6735
6735
|
required_arguments = ['targetId']
|
@@ -6828,7 +6828,7 @@ class CloudGuardClient(object):
|
|
6828
6828
|
:rtype: :class:`~oci.response.Response`
|
6829
6829
|
|
6830
6830
|
:example:
|
6831
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6831
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_target_detector_recipe.py.html>`__ to see an example of how to use get_target_detector_recipe API.
|
6832
6832
|
"""
|
6833
6833
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6834
6834
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -6931,7 +6931,7 @@ class CloudGuardClient(object):
|
|
6931
6931
|
:rtype: :class:`~oci.response.Response`
|
6932
6932
|
|
6933
6933
|
:example:
|
6934
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6934
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
6935
6935
|
"""
|
6936
6936
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6937
6937
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
|
@@ -7033,7 +7033,7 @@ class CloudGuardClient(object):
|
|
7033
7033
|
:rtype: :class:`~oci.response.Response`
|
7034
7034
|
|
7035
7035
|
:example:
|
7036
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7036
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_target_responder_recipe.py.html>`__ to see an example of how to use get_target_responder_recipe API.
|
7037
7037
|
"""
|
7038
7038
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7039
7039
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -7139,7 +7139,7 @@ class CloudGuardClient(object):
|
|
7139
7139
|
:rtype: :class:`~oci.response.Response`
|
7140
7140
|
|
7141
7141
|
:example:
|
7142
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7142
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
7143
7143
|
"""
|
7144
7144
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7145
7145
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']
|
@@ -7237,7 +7237,7 @@ class CloudGuardClient(object):
|
|
7237
7237
|
:rtype: :class:`~oci.response.Response`
|
7238
7238
|
|
7239
7239
|
:example:
|
7240
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7240
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_wlp_agent.py.html>`__ to see an example of how to use get_wlp_agent API.
|
7241
7241
|
"""
|
7242
7242
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7243
7243
|
required_arguments = ['wlpAgentId']
|
@@ -7333,7 +7333,7 @@ class CloudGuardClient(object):
|
|
7333
7333
|
:rtype: :class:`~oci.response.Response`
|
7334
7334
|
|
7335
7335
|
:example:
|
7336
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7336
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
7337
7337
|
"""
|
7338
7338
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7339
7339
|
required_arguments = ['workRequestId']
|
@@ -7487,7 +7487,7 @@ class CloudGuardClient(object):
|
|
7487
7487
|
:rtype: :class:`~oci.response.Response`
|
7488
7488
|
|
7489
7489
|
:example:
|
7490
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7490
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_adhoc_queries.py.html>`__ to see an example of how to use list_adhoc_queries API.
|
7491
7491
|
"""
|
7492
7492
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7493
7493
|
required_arguments = ['compartmentId']
|
@@ -7643,7 +7643,7 @@ class CloudGuardClient(object):
|
|
7643
7643
|
:rtype: :class:`~oci.response.Response`
|
7644
7644
|
|
7645
7645
|
:example:
|
7646
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7646
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_adhoc_query_results.py.html>`__ to see an example of how to use list_adhoc_query_results API.
|
7647
7647
|
"""
|
7648
7648
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7649
7649
|
required_arguments = ['adhocQueryId', 'compartmentId']
|
@@ -7789,7 +7789,7 @@ class CloudGuardClient(object):
|
|
7789
7789
|
:rtype: :class:`~oci.response.Response`
|
7790
7790
|
|
7791
7791
|
:example:
|
7792
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7792
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_condition_metadata_types.py.html>`__ to see an example of how to use list_condition_metadata_types API.
|
7793
7793
|
"""
|
7794
7794
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7795
7795
|
required_arguments = ['compartmentId']
|
@@ -7958,7 +7958,7 @@ class CloudGuardClient(object):
|
|
7958
7958
|
:rtype: :class:`~oci.response.Response`
|
7959
7959
|
|
7960
7960
|
:example:
|
7961
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7961
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_data_mask_rules.py.html>`__ to see an example of how to use list_data_mask_rules API.
|
7962
7962
|
"""
|
7963
7963
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7964
7964
|
required_arguments = ['compartmentId']
|
@@ -8127,7 +8127,7 @@ class CloudGuardClient(object):
|
|
8127
8127
|
:rtype: :class:`~oci.response.Response`
|
8128
8128
|
|
8129
8129
|
:example:
|
8130
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8130
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_data_source_events.py.html>`__ to see an example of how to use list_data_source_events API.
|
8131
8131
|
"""
|
8132
8132
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8133
8133
|
required_arguments = ['dataSourceId']
|
@@ -8318,7 +8318,7 @@ class CloudGuardClient(object):
|
|
8318
8318
|
:rtype: :class:`~oci.response.Response`
|
8319
8319
|
|
8320
8320
|
:example:
|
8321
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8321
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_data_sources.py.html>`__ to see an example of how to use list_data_sources API.
|
8322
8322
|
"""
|
8323
8323
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8324
8324
|
required_arguments = ['compartmentId']
|
@@ -8498,7 +8498,7 @@ class CloudGuardClient(object):
|
|
8498
8498
|
:rtype: :class:`~oci.response.Response`
|
8499
8499
|
|
8500
8500
|
:example:
|
8501
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8501
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_detector_recipe_detector_rules API.
|
8502
8502
|
"""
|
8503
8503
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8504
8504
|
required_arguments = ['detectorRecipeId', 'compartmentId']
|
@@ -8692,7 +8692,7 @@ class CloudGuardClient(object):
|
|
8692
8692
|
:rtype: :class:`~oci.response.Response`
|
8693
8693
|
|
8694
8694
|
:example:
|
8695
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8695
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_detector_recipes.py.html>`__ to see an example of how to use list_detector_recipes API.
|
8696
8696
|
"""
|
8697
8697
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8698
8698
|
required_arguments = ['compartmentId']
|
@@ -8856,7 +8856,7 @@ class CloudGuardClient(object):
|
|
8856
8856
|
:rtype: :class:`~oci.response.Response`
|
8857
8857
|
|
8858
8858
|
:example:
|
8859
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8859
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_detector_rules.py.html>`__ to see an example of how to use list_detector_rules API.
|
8860
8860
|
"""
|
8861
8861
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8862
8862
|
required_arguments = ['detectorId', 'compartmentId']
|
@@ -9013,7 +9013,7 @@ class CloudGuardClient(object):
|
|
9013
9013
|
:rtype: :class:`~oci.response.Response`
|
9014
9014
|
|
9015
9015
|
:example:
|
9016
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9016
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_detectors.py.html>`__ to see an example of how to use list_detectors API.
|
9017
9017
|
"""
|
9018
9018
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9019
9019
|
required_arguments = ['compartmentId']
|
@@ -9151,7 +9151,7 @@ class CloudGuardClient(object):
|
|
9151
9151
|
:rtype: :class:`~oci.response.Response`
|
9152
9152
|
|
9153
9153
|
:example:
|
9154
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9154
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_impacted_resources.py.html>`__ to see an example of how to use list_impacted_resources API.
|
9155
9155
|
"""
|
9156
9156
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9157
9157
|
required_arguments = ['problemId']
|
@@ -9296,7 +9296,7 @@ class CloudGuardClient(object):
|
|
9296
9296
|
:rtype: :class:`~oci.response.Response`
|
9297
9297
|
|
9298
9298
|
:example:
|
9299
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9299
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_managed_list_types.py.html>`__ to see an example of how to use list_managed_list_types API.
|
9300
9300
|
"""
|
9301
9301
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9302
9302
|
required_arguments = ['compartmentId']
|
@@ -9480,7 +9480,7 @@ class CloudGuardClient(object):
|
|
9480
9480
|
:rtype: :class:`~oci.response.Response`
|
9481
9481
|
|
9482
9482
|
:example:
|
9483
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9483
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_managed_lists.py.html>`__ to see an example of how to use list_managed_lists API.
|
9484
9484
|
"""
|
9485
9485
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9486
9486
|
required_arguments = ['compartmentId']
|
@@ -9642,7 +9642,7 @@ class CloudGuardClient(object):
|
|
9642
9642
|
:rtype: :class:`~oci.response.Response`
|
9643
9643
|
|
9644
9644
|
:example:
|
9645
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9645
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_policies.py.html>`__ to see an example of how to use list_policies API.
|
9646
9646
|
"""
|
9647
9647
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9648
9648
|
required_arguments = ['compartmentId']
|
@@ -9771,7 +9771,7 @@ class CloudGuardClient(object):
|
|
9771
9771
|
:rtype: :class:`~oci.response.Response`
|
9772
9772
|
|
9773
9773
|
:example:
|
9774
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9774
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_problem_endpoints.py.html>`__ to see an example of how to use list_problem_endpoints API.
|
9775
9775
|
"""
|
9776
9776
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9777
9777
|
required_arguments = ['problemId']
|
@@ -9911,7 +9911,7 @@ class CloudGuardClient(object):
|
|
9911
9911
|
:rtype: :class:`~oci.response.Response`
|
9912
9912
|
|
9913
9913
|
:example:
|
9914
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_problem_entities.py.html>`__ to see an example of how to use list_problem_entities API.
|
9915
9915
|
"""
|
9916
9916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9917
9917
|
required_arguments = ['problemId']
|
@@ -10054,7 +10054,7 @@ class CloudGuardClient(object):
|
|
10054
10054
|
:rtype: :class:`~oci.response.Response`
|
10055
10055
|
|
10056
10056
|
:example:
|
10057
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10057
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_problem_histories.py.html>`__ to see an example of how to use list_problem_histories API.
|
10058
10058
|
"""
|
10059
10059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10060
10060
|
required_arguments = ['problemId', 'compartmentId']
|
@@ -10286,7 +10286,7 @@ class CloudGuardClient(object):
|
|
10286
10286
|
:rtype: :class:`~oci.response.Response`
|
10287
10287
|
|
10288
10288
|
:example:
|
10289
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10289
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_problems.py.html>`__ to see an example of how to use list_problems API.
|
10290
10290
|
"""
|
10291
10291
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10292
10292
|
required_arguments = ['compartmentId']
|
@@ -10519,7 +10519,7 @@ class CloudGuardClient(object):
|
|
10519
10519
|
:rtype: :class:`~oci.response.Response`
|
10520
10520
|
|
10521
10521
|
:example:
|
10522
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10522
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_recommendations.py.html>`__ to see an example of how to use list_recommendations API.
|
10523
10523
|
"""
|
10524
10524
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10525
10525
|
required_arguments = ['compartmentId']
|
@@ -10682,7 +10682,7 @@ class CloudGuardClient(object):
|
|
10682
10682
|
:rtype: :class:`~oci.response.Response`
|
10683
10683
|
|
10684
10684
|
:example:
|
10685
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10685
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_ports.py.html>`__ to see an example of how to use list_resource_ports API.
|
10686
10686
|
"""
|
10687
10687
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10688
10688
|
required_arguments = ['resourceId']
|
@@ -10825,7 +10825,7 @@ class CloudGuardClient(object):
|
|
10825
10825
|
:rtype: :class:`~oci.response.Response`
|
10826
10826
|
|
10827
10827
|
:example:
|
10828
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10828
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_profile_endpoints.py.html>`__ to see an example of how to use list_resource_profile_endpoints API.
|
10829
10829
|
"""
|
10830
10830
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10831
10831
|
required_arguments = ['resourceProfileId']
|
@@ -10967,7 +10967,7 @@ class CloudGuardClient(object):
|
|
10967
10967
|
:rtype: :class:`~oci.response.Response`
|
10968
10968
|
|
10969
10969
|
:example:
|
10970
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10970
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_profile_impacted_resources.py.html>`__ to see an example of how to use list_resource_profile_impacted_resources API.
|
10971
10971
|
"""
|
10972
10972
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10973
10973
|
required_arguments = ['resourceProfileId']
|
@@ -11162,7 +11162,7 @@ class CloudGuardClient(object):
|
|
11162
11162
|
:rtype: :class:`~oci.response.Response`
|
11163
11163
|
|
11164
11164
|
:example:
|
11165
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11165
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_profiles.py.html>`__ to see an example of how to use list_resource_profiles API.
|
11166
11166
|
"""
|
11167
11167
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11168
11168
|
required_arguments = ['compartmentId']
|
@@ -11331,7 +11331,7 @@ class CloudGuardClient(object):
|
|
11331
11331
|
:rtype: :class:`~oci.response.Response`
|
11332
11332
|
|
11333
11333
|
:example:
|
11334
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11334
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_types.py.html>`__ to see an example of how to use list_resource_types API.
|
11335
11335
|
"""
|
11336
11336
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11337
11337
|
required_arguments = ['compartmentId']
|
@@ -11484,7 +11484,7 @@ class CloudGuardClient(object):
|
|
11484
11484
|
:rtype: :class:`~oci.response.Response`
|
11485
11485
|
|
11486
11486
|
:example:
|
11487
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11487
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resource_vulnerabilities.py.html>`__ to see an example of how to use list_resource_vulnerabilities API.
|
11488
11488
|
"""
|
11489
11489
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11490
11490
|
required_arguments = ['resourceId']
|
@@ -11692,7 +11692,7 @@ class CloudGuardClient(object):
|
|
11692
11692
|
:rtype: :class:`~oci.response.Response`
|
11693
11693
|
|
11694
11694
|
:example:
|
11695
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11695
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_resources.py.html>`__ to see an example of how to use list_resources API.
|
11696
11696
|
"""
|
11697
11697
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11698
11698
|
required_arguments = ['compartmentId']
|
@@ -11862,7 +11862,7 @@ class CloudGuardClient(object):
|
|
11862
11862
|
:rtype: :class:`~oci.response.Response`
|
11863
11863
|
|
11864
11864
|
:example:
|
11865
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11865
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_responder_activities.py.html>`__ to see an example of how to use list_responder_activities API.
|
11866
11866
|
"""
|
11867
11867
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11868
11868
|
required_arguments = ['problemId']
|
@@ -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.155.0/cloudguard/list_responder_executions.py.html>`__ to see an example of how to use list_responder_executions API.
|
12058
12058
|
"""
|
12059
12059
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12060
12060
|
required_arguments = ['compartmentId']
|
@@ -12248,7 +12248,7 @@ class CloudGuardClient(object):
|
|
12248
12248
|
:rtype: :class:`~oci.response.Response`
|
12249
12249
|
|
12250
12250
|
:example:
|
12251
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12251
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_responder_recipe_responder_rules API.
|
12252
12252
|
"""
|
12253
12253
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12254
12254
|
required_arguments = ['responderRecipeId', 'compartmentId']
|
@@ -12442,7 +12442,7 @@ class CloudGuardClient(object):
|
|
12442
12442
|
:rtype: :class:`~oci.response.Response`
|
12443
12443
|
|
12444
12444
|
:example:
|
12445
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12445
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_responder_recipes.py.html>`__ to see an example of how to use list_responder_recipes API.
|
12446
12446
|
"""
|
12447
12447
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12448
12448
|
required_arguments = ['compartmentId']
|
@@ -12605,7 +12605,7 @@ class CloudGuardClient(object):
|
|
12605
12605
|
:rtype: :class:`~oci.response.Response`
|
12606
12606
|
|
12607
12607
|
:example:
|
12608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_responder_rules.py.html>`__ to see an example of how to use list_responder_rules API.
|
12609
12609
|
"""
|
12610
12610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12611
12611
|
required_arguments = ['compartmentId']
|
@@ -12763,7 +12763,7 @@ class CloudGuardClient(object):
|
|
12763
12763
|
:rtype: :class:`~oci.response.Response`
|
12764
12764
|
|
12765
12765
|
:example:
|
12766
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12766
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_saved_queries.py.html>`__ to see an example of how to use list_saved_queries API.
|
12767
12767
|
"""
|
12768
12768
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12769
12769
|
required_arguments = ['compartmentId']
|
@@ -12917,7 +12917,7 @@ class CloudGuardClient(object):
|
|
12917
12917
|
:rtype: :class:`~oci.response.Response`
|
12918
12918
|
|
12919
12919
|
:example:
|
12920
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12920
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_security_policies.py.html>`__ to see an example of how to use list_security_policies API.
|
12921
12921
|
"""
|
12922
12922
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12923
12923
|
required_arguments = ['compartmentId']
|
@@ -13071,7 +13071,7 @@ class CloudGuardClient(object):
|
|
13071
13071
|
:rtype: :class:`~oci.response.Response`
|
13072
13072
|
|
13073
13073
|
:example:
|
13074
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13074
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_security_recipes.py.html>`__ to see an example of how to use list_security_recipes API.
|
13075
13075
|
"""
|
13076
13076
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13077
13077
|
required_arguments = ['compartmentId']
|
@@ -13231,7 +13231,7 @@ class CloudGuardClient(object):
|
|
13231
13231
|
:rtype: :class:`~oci.response.Response`
|
13232
13232
|
|
13233
13233
|
:example:
|
13234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13234
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_security_zones.py.html>`__ to see an example of how to use list_security_zones API.
|
13235
13235
|
"""
|
13236
13236
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13237
13237
|
required_arguments = ['compartmentId']
|
@@ -13379,7 +13379,7 @@ class CloudGuardClient(object):
|
|
13379
13379
|
:rtype: :class:`~oci.response.Response`
|
13380
13380
|
|
13381
13381
|
:example:
|
13382
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13382
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_sighting_endpoints.py.html>`__ to see an example of how to use list_sighting_endpoints API.
|
13383
13383
|
"""
|
13384
13384
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13385
13385
|
required_arguments = ['sightingId']
|
@@ -13520,7 +13520,7 @@ class CloudGuardClient(object):
|
|
13520
13520
|
:rtype: :class:`~oci.response.Response`
|
13521
13521
|
|
13522
13522
|
:example:
|
13523
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13523
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_sighting_impacted_resources.py.html>`__ to see an example of how to use list_sighting_impacted_resources API.
|
13524
13524
|
"""
|
13525
13525
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13526
13526
|
required_arguments = ['sightingId']
|
@@ -13699,7 +13699,7 @@ class CloudGuardClient(object):
|
|
13699
13699
|
:rtype: :class:`~oci.response.Response`
|
13700
13700
|
|
13701
13701
|
:example:
|
13702
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13702
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_sightings.py.html>`__ to see an example of how to use list_sightings API.
|
13703
13703
|
"""
|
13704
13704
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13705
13705
|
required_arguments = ['compartmentId']
|
@@ -13852,7 +13852,7 @@ class CloudGuardClient(object):
|
|
13852
13852
|
:rtype: :class:`~oci.response.Response`
|
13853
13853
|
|
13854
13854
|
:example:
|
13855
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13855
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_tactics.py.html>`__ to see an example of how to use list_tactics API.
|
13856
13856
|
"""
|
13857
13857
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13858
13858
|
required_arguments = ['compartmentId']
|
@@ -14004,7 +14004,7 @@ class CloudGuardClient(object):
|
|
14004
14004
|
:rtype: :class:`~oci.response.Response`
|
14005
14005
|
|
14006
14006
|
:example:
|
14007
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14007
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14008
14008
|
"""
|
14009
14009
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14010
14010
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'compartmentId']
|
@@ -14170,7 +14170,7 @@ class CloudGuardClient(object):
|
|
14170
14170
|
:rtype: :class:`~oci.response.Response`
|
14171
14171
|
|
14172
14172
|
:example:
|
14173
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14173
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_target_detector_recipes.py.html>`__ to see an example of how to use list_target_detector_recipes API.
|
14174
14174
|
"""
|
14175
14175
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14176
14176
|
required_arguments = ['targetId', 'compartmentId']
|
@@ -14339,7 +14339,7 @@ class CloudGuardClient(object):
|
|
14339
14339
|
:rtype: :class:`~oci.response.Response`
|
14340
14340
|
|
14341
14341
|
:example:
|
14342
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14342
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
14343
14343
|
"""
|
14344
14344
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14345
14345
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'compartmentId']
|
@@ -14505,7 +14505,7 @@ class CloudGuardClient(object):
|
|
14505
14505
|
:rtype: :class:`~oci.response.Response`
|
14506
14506
|
|
14507
14507
|
:example:
|
14508
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14508
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_target_responder_recipes.py.html>`__ to see an example of how to use list_target_responder_recipes API.
|
14509
14509
|
"""
|
14510
14510
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14511
14511
|
required_arguments = ['targetId', 'compartmentId']
|
@@ -14699,7 +14699,7 @@ class CloudGuardClient(object):
|
|
14699
14699
|
:rtype: :class:`~oci.response.Response`
|
14700
14700
|
|
14701
14701
|
:example:
|
14702
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14702
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_targets.py.html>`__ to see an example of how to use list_targets API.
|
14703
14703
|
"""
|
14704
14704
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14705
14705
|
required_arguments = ['compartmentId']
|
@@ -14860,7 +14860,7 @@ class CloudGuardClient(object):
|
|
14860
14860
|
:rtype: :class:`~oci.response.Response`
|
14861
14861
|
|
14862
14862
|
:example:
|
14863
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14863
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_techniques.py.html>`__ to see an example of how to use list_techniques API.
|
14864
14864
|
"""
|
14865
14865
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14866
14866
|
required_arguments = ['compartmentId']
|
@@ -15000,7 +15000,7 @@ class CloudGuardClient(object):
|
|
15000
15000
|
:rtype: :class:`~oci.response.Response`
|
15001
15001
|
|
15002
15002
|
:example:
|
15003
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15003
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_wlp_agents.py.html>`__ to see an example of how to use list_wlp_agents API.
|
15004
15004
|
"""
|
15005
15005
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15006
15006
|
required_arguments = ['compartmentId']
|
@@ -15130,7 +15130,7 @@ class CloudGuardClient(object):
|
|
15130
15130
|
:rtype: :class:`~oci.response.Response`
|
15131
15131
|
|
15132
15132
|
:example:
|
15133
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15133
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
15134
15134
|
"""
|
15135
15135
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15136
15136
|
required_arguments = ['workRequestId']
|
@@ -15271,7 +15271,7 @@ class CloudGuardClient(object):
|
|
15271
15271
|
:rtype: :class:`~oci.response.Response`
|
15272
15272
|
|
15273
15273
|
:example:
|
15274
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15274
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
15275
15275
|
"""
|
15276
15276
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15277
15277
|
required_arguments = ['workRequestId']
|
@@ -15420,7 +15420,7 @@ class CloudGuardClient(object):
|
|
15420
15420
|
:rtype: :class:`~oci.response.Response`
|
15421
15421
|
|
15422
15422
|
:example:
|
15423
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15423
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
15424
15424
|
"""
|
15425
15425
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15426
15426
|
required_arguments = ['compartmentId']
|
@@ -15564,7 +15564,7 @@ class CloudGuardClient(object):
|
|
15564
15564
|
:rtype: :class:`~oci.response.Response`
|
15565
15565
|
|
15566
15566
|
:example:
|
15567
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15567
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/remove_compartment.py.html>`__ to see an example of how to use remove_compartment API.
|
15568
15568
|
"""
|
15569
15569
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15570
15570
|
required_arguments = ['securityZoneId']
|
@@ -15674,7 +15674,7 @@ class CloudGuardClient(object):
|
|
15674
15674
|
:rtype: :class:`~oci.response.Response`
|
15675
15675
|
|
15676
15676
|
:example:
|
15677
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15677
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_risk_scores.py.html>`__ to see an example of how to use request_risk_scores API.
|
15678
15678
|
"""
|
15679
15679
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15680
15680
|
required_arguments = ['compartmentId']
|
@@ -15782,7 +15782,7 @@ class CloudGuardClient(object):
|
|
15782
15782
|
:rtype: :class:`~oci.response.Response`
|
15783
15783
|
|
15784
15784
|
:example:
|
15785
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15785
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_security_score_summarized_trend.py.html>`__ to see an example of how to use request_security_score_summarized_trend API.
|
15786
15786
|
"""
|
15787
15787
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15788
15788
|
required_arguments = ['compartmentId']
|
@@ -15888,7 +15888,7 @@ class CloudGuardClient(object):
|
|
15888
15888
|
:rtype: :class:`~oci.response.Response`
|
15889
15889
|
|
15890
15890
|
:example:
|
15891
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15891
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_security_scores.py.html>`__ to see an example of how to use request_security_scores API.
|
15892
15892
|
"""
|
15893
15893
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15894
15894
|
required_arguments = ['compartmentId']
|
@@ -16023,7 +16023,7 @@ class CloudGuardClient(object):
|
|
16023
16023
|
:rtype: :class:`~oci.response.Response`
|
16024
16024
|
|
16025
16025
|
:example:
|
16026
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16026
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_activity_problems.py.html>`__ to see an example of how to use request_summarized_activity_problems API.
|
16027
16027
|
"""
|
16028
16028
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16029
16029
|
required_arguments = ['compartmentId']
|
@@ -16168,7 +16168,7 @@ class CloudGuardClient(object):
|
|
16168
16168
|
:rtype: :class:`~oci.response.Response`
|
16169
16169
|
|
16170
16170
|
:example:
|
16171
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16171
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_problems.py.html>`__ to see an example of how to use request_summarized_problems API.
|
16172
16172
|
"""
|
16173
16173
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16174
16174
|
required_arguments = ['listDimensions', 'compartmentId']
|
@@ -16331,7 +16331,7 @@ class CloudGuardClient(object):
|
|
16331
16331
|
:rtype: :class:`~oci.response.Response`
|
16332
16332
|
|
16333
16333
|
:example:
|
16334
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16334
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_responder_executions.py.html>`__ to see an example of how to use request_summarized_responder_executions API.
|
16335
16335
|
"""
|
16336
16336
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16337
16337
|
required_arguments = ['responderExecutionsDimensions', 'compartmentId']
|
@@ -16471,7 +16471,7 @@ class CloudGuardClient(object):
|
|
16471
16471
|
:rtype: :class:`~oci.response.Response`
|
16472
16472
|
|
16473
16473
|
:example:
|
16474
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16474
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_risk_scores.py.html>`__ to see an example of how to use request_summarized_risk_scores API.
|
16475
16475
|
"""
|
16476
16476
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16477
16477
|
required_arguments = ['compartmentId']
|
@@ -16572,7 +16572,7 @@ class CloudGuardClient(object):
|
|
16572
16572
|
:rtype: :class:`~oci.response.Response`
|
16573
16573
|
|
16574
16574
|
:example:
|
16575
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16575
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_security_scores.py.html>`__ to see an example of how to use request_summarized_security_scores API.
|
16576
16576
|
"""
|
16577
16577
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16578
16578
|
required_arguments = ['compartmentId']
|
@@ -16704,7 +16704,7 @@ class CloudGuardClient(object):
|
|
16704
16704
|
:rtype: :class:`~oci.response.Response`
|
16705
16705
|
|
16706
16706
|
:example:
|
16707
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16707
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
16708
16708
|
"""
|
16709
16709
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16710
16710
|
required_arguments = ['compartmentId']
|
@@ -16863,7 +16863,7 @@ class CloudGuardClient(object):
|
|
16863
16863
|
:rtype: :class:`~oci.response.Response`
|
16864
16864
|
|
16865
16865
|
:example:
|
16866
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16866
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_trend_problems.py.html>`__ to see an example of how to use request_summarized_trend_problems API.
|
16867
16867
|
"""
|
16868
16868
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16869
16869
|
required_arguments = ['compartmentId']
|
@@ -17005,7 +17005,7 @@ class CloudGuardClient(object):
|
|
17005
17005
|
:rtype: :class:`~oci.response.Response`
|
17006
17006
|
|
17007
17007
|
:example:
|
17008
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17008
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
17009
17009
|
"""
|
17010
17010
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17011
17011
|
required_arguments = ['compartmentId']
|
@@ -17155,7 +17155,7 @@ class CloudGuardClient(object):
|
|
17155
17155
|
:rtype: :class:`~oci.response.Response`
|
17156
17156
|
|
17157
17157
|
:example:
|
17158
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17158
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_trend_responder_executions.py.html>`__ to see an example of how to use request_summarized_trend_responder_executions API.
|
17159
17159
|
"""
|
17160
17160
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17161
17161
|
required_arguments = ['compartmentId']
|
@@ -17277,7 +17277,7 @@ class CloudGuardClient(object):
|
|
17277
17277
|
:rtype: :class:`~oci.response.Response`
|
17278
17278
|
|
17279
17279
|
:example:
|
17280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/request_summarized_trend_security_scores.py.html>`__ to see an example of how to use request_summarized_trend_security_scores API.
|
17281
17281
|
"""
|
17282
17282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17283
17283
|
required_arguments = ['compartmentId']
|
@@ -17376,7 +17376,7 @@ class CloudGuardClient(object):
|
|
17376
17376
|
:rtype: :class:`~oci.response.Response`
|
17377
17377
|
|
17378
17378
|
:example:
|
17379
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17379
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/skip_bulk_responder_execution.py.html>`__ to see an example of how to use skip_bulk_responder_execution API.
|
17380
17380
|
"""
|
17381
17381
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17382
17382
|
required_arguments = []
|
@@ -17477,7 +17477,7 @@ class CloudGuardClient(object):
|
|
17477
17477
|
:rtype: :class:`~oci.response.Response`
|
17478
17478
|
|
17479
17479
|
:example:
|
17480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17480
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/skip_responder_execution.py.html>`__ to see an example of how to use skip_responder_execution API.
|
17481
17481
|
"""
|
17482
17482
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17483
17483
|
required_arguments = ['responderExecutionId', 'compartmentId']
|
@@ -17601,7 +17601,7 @@ class CloudGuardClient(object):
|
|
17601
17601
|
:rtype: :class:`~oci.response.Response`
|
17602
17602
|
|
17603
17603
|
:example:
|
17604
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17604
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/trigger_responder.py.html>`__ to see an example of how to use trigger_responder API.
|
17605
17605
|
"""
|
17606
17606
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17607
17607
|
required_arguments = ['problemId']
|
@@ -17702,7 +17702,7 @@ class CloudGuardClient(object):
|
|
17702
17702
|
:rtype: :class:`~oci.response.Response`
|
17703
17703
|
|
17704
17704
|
:example:
|
17705
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17705
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_bulk_problem_status.py.html>`__ to see an example of how to use update_bulk_problem_status API.
|
17706
17706
|
"""
|
17707
17707
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17708
17708
|
required_arguments = []
|
@@ -17804,7 +17804,7 @@ class CloudGuardClient(object):
|
|
17804
17804
|
:rtype: :class:`~oci.response.Response`
|
17805
17805
|
|
17806
17806
|
:example:
|
17807
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17807
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_configuration.py.html>`__ to see an example of how to use update_configuration API.
|
17808
17808
|
"""
|
17809
17809
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17810
17810
|
required_arguments = ['compartmentId']
|
@@ -17912,7 +17912,7 @@ class CloudGuardClient(object):
|
|
17912
17912
|
:rtype: :class:`~oci.response.Response`
|
17913
17913
|
|
17914
17914
|
:example:
|
17915
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17915
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_data_mask_rule.py.html>`__ to see an example of how to use update_data_mask_rule API.
|
17916
17916
|
"""
|
17917
17917
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17918
17918
|
required_arguments = ['dataMaskRuleId']
|
@@ -18030,7 +18030,7 @@ class CloudGuardClient(object):
|
|
18030
18030
|
:rtype: :class:`~oci.response.Response`
|
18031
18031
|
|
18032
18032
|
:example:
|
18033
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18033
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_data_source.py.html>`__ to see an example of how to use update_data_source API.
|
18034
18034
|
"""
|
18035
18035
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18036
18036
|
required_arguments = ['dataSourceId']
|
@@ -18148,7 +18148,7 @@ class CloudGuardClient(object):
|
|
18148
18148
|
:rtype: :class:`~oci.response.Response`
|
18149
18149
|
|
18150
18150
|
:example:
|
18151
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18151
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_detector_recipe.py.html>`__ to see an example of how to use update_detector_recipe API.
|
18152
18152
|
"""
|
18153
18153
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18154
18154
|
required_arguments = ['detectorRecipeId']
|
@@ -18264,7 +18264,7 @@ class CloudGuardClient(object):
|
|
18264
18264
|
:rtype: :class:`~oci.response.Response`
|
18265
18265
|
|
18266
18266
|
:example:
|
18267
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18267
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_detector_recipe_detector_rule API.
|
18268
18268
|
"""
|
18269
18269
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18270
18270
|
required_arguments = ['detectorRecipeId', 'detectorRuleId']
|
@@ -18382,7 +18382,7 @@ class CloudGuardClient(object):
|
|
18382
18382
|
:rtype: :class:`~oci.response.Response`
|
18383
18383
|
|
18384
18384
|
:example:
|
18385
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18385
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_managed_list.py.html>`__ to see an example of how to use update_managed_list API.
|
18386
18386
|
"""
|
18387
18387
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18388
18388
|
required_arguments = ['managedListId']
|
@@ -18502,7 +18502,7 @@ class CloudGuardClient(object):
|
|
18502
18502
|
:rtype: :class:`~oci.response.Response`
|
18503
18503
|
|
18504
18504
|
:example:
|
18505
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18505
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_problem_status.py.html>`__ to see an example of how to use update_problem_status API.
|
18506
18506
|
"""
|
18507
18507
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18508
18508
|
required_arguments = ['problemId']
|
@@ -18616,7 +18616,7 @@ class CloudGuardClient(object):
|
|
18616
18616
|
:rtype: :class:`~oci.response.Response`
|
18617
18617
|
|
18618
18618
|
:example:
|
18619
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18619
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_responder_recipe.py.html>`__ to see an example of how to use update_responder_recipe API.
|
18620
18620
|
"""
|
18621
18621
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18622
18622
|
required_arguments = ['responderRecipeId']
|
@@ -18730,7 +18730,7 @@ class CloudGuardClient(object):
|
|
18730
18730
|
:rtype: :class:`~oci.response.Response`
|
18731
18731
|
|
18732
18732
|
:example:
|
18733
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18733
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_responder_recipe_responder_rule API.
|
18734
18734
|
"""
|
18735
18735
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18736
18736
|
required_arguments = ['responderRecipeId', 'responderRuleId']
|
@@ -18848,7 +18848,7 @@ class CloudGuardClient(object):
|
|
18848
18848
|
:rtype: :class:`~oci.response.Response`
|
18849
18849
|
|
18850
18850
|
:example:
|
18851
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18851
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_saved_query.py.html>`__ to see an example of how to use update_saved_query API.
|
18852
18852
|
"""
|
18853
18853
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18854
18854
|
required_arguments = ['savedQueryId']
|
@@ -18962,7 +18962,7 @@ class CloudGuardClient(object):
|
|
18962
18962
|
:rtype: :class:`~oci.response.Response`
|
18963
18963
|
|
18964
18964
|
:example:
|
18965
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18965
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_security_recipe.py.html>`__ to see an example of how to use update_security_recipe API.
|
18966
18966
|
"""
|
18967
18967
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18968
18968
|
required_arguments = ['securityRecipeId']
|
@@ -19073,7 +19073,7 @@ class CloudGuardClient(object):
|
|
19073
19073
|
:rtype: :class:`~oci.response.Response`
|
19074
19074
|
|
19075
19075
|
:example:
|
19076
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19076
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_security_zone.py.html>`__ to see an example of how to use update_security_zone API.
|
19077
19077
|
"""
|
19078
19078
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19079
19079
|
required_arguments = ['securityZoneId']
|
@@ -19184,7 +19184,7 @@ class CloudGuardClient(object):
|
|
19184
19184
|
:rtype: :class:`~oci.response.Response`
|
19185
19185
|
|
19186
19186
|
:example:
|
19187
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19187
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_target.py.html>`__ to see an example of how to use update_target API.
|
19188
19188
|
"""
|
19189
19189
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19190
19190
|
required_arguments = ['targetId']
|
@@ -19298,7 +19298,7 @@ class CloudGuardClient(object):
|
|
19298
19298
|
:rtype: :class:`~oci.response.Response`
|
19299
19299
|
|
19300
19300
|
:example:
|
19301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_target_detector_recipe.py.html>`__ to see an example of how to use update_target_detector_recipe API.
|
19302
19302
|
"""
|
19303
19303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19304
19304
|
required_arguments = ['targetId', 'targetDetectorRecipeId']
|
@@ -19415,7 +19415,7 @@ class CloudGuardClient(object):
|
|
19415
19415
|
:rtype: :class:`~oci.response.Response`
|
19416
19416
|
|
19417
19417
|
:example:
|
19418
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19418
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19419
19419
|
"""
|
19420
19420
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19421
19421
|
required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
|
@@ -19533,7 +19533,7 @@ class CloudGuardClient(object):
|
|
19533
19533
|
:rtype: :class:`~oci.response.Response`
|
19534
19534
|
|
19535
19535
|
:example:
|
19536
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19536
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_target_responder_recipe.py.html>`__ to see an example of how to use update_target_responder_recipe API.
|
19537
19537
|
"""
|
19538
19538
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19539
19539
|
required_arguments = ['targetId', 'targetResponderRecipeId']
|
@@ -19654,7 +19654,7 @@ class CloudGuardClient(object):
|
|
19654
19654
|
:rtype: :class:`~oci.response.Response`
|
19655
19655
|
|
19656
19656
|
:example:
|
19657
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19657
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
|
19658
19658
|
"""
|
19659
19659
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19660
19660
|
required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']
|
@@ -19773,7 +19773,7 @@ class CloudGuardClient(object):
|
|
19773
19773
|
:rtype: :class:`~oci.response.Response`
|
19774
19774
|
|
19775
19775
|
:example:
|
19776
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19776
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/cloudguard/update_wlp_agent.py.html>`__ to see an example of how to use update_wlp_agent API.
|
19777
19777
|
"""
|
19778
19778
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19779
19779
|
required_arguments = ['wlpAgentId']
|