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
oci/identity/identity_client.py
CHANGED
@@ -162,7 +162,7 @@ class IdentityClient(object):
|
|
162
162
|
:rtype: :class:`~oci.response.Response`
|
163
163
|
|
164
164
|
:example:
|
165
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
165
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/activate_domain.py.html>`__ to see an example of how to use activate_domain API.
|
166
166
|
"""
|
167
167
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
168
168
|
required_arguments = ['domainId']
|
@@ -278,7 +278,7 @@ class IdentityClient(object):
|
|
278
278
|
:rtype: :class:`~oci.response.Response`
|
279
279
|
|
280
280
|
:example:
|
281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/activate_mfa_totp_device.py.html>`__ to see an example of how to use activate_mfa_totp_device API.
|
282
282
|
"""
|
283
283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
284
284
|
required_arguments = ['userId', 'mfaTotpDeviceId']
|
@@ -398,7 +398,7 @@ class IdentityClient(object):
|
|
398
398
|
:rtype: :class:`~oci.response.Response`
|
399
399
|
|
400
400
|
:example:
|
401
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
401
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/add_tag_default_lock.py.html>`__ to see an example of how to use add_tag_default_lock API.
|
402
402
|
"""
|
403
403
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
404
404
|
required_arguments = ['tagDefaultId']
|
@@ -519,7 +519,7 @@ class IdentityClient(object):
|
|
519
519
|
:rtype: :class:`~oci.response.Response`
|
520
520
|
|
521
521
|
:example:
|
522
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
522
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/add_tag_namespace_lock.py.html>`__ to see an example of how to use add_tag_namespace_lock API.
|
523
523
|
"""
|
524
524
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
525
525
|
required_arguments = ['tagNamespaceId']
|
@@ -631,7 +631,7 @@ class IdentityClient(object):
|
|
631
631
|
:rtype: :class:`~oci.response.Response`
|
632
632
|
|
633
633
|
:example:
|
634
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
634
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/add_user_to_group.py.html>`__ to see an example of how to use add_user_to_group API.
|
635
635
|
"""
|
636
636
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
637
637
|
required_arguments = []
|
@@ -725,7 +725,7 @@ class IdentityClient(object):
|
|
725
725
|
:rtype: :class:`~oci.response.Response`
|
726
726
|
|
727
727
|
:example:
|
728
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
728
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/assemble_effective_tag_set.py.html>`__ to see an example of how to use assemble_effective_tag_set API.
|
729
729
|
"""
|
730
730
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
731
731
|
required_arguments = ['compartmentId']
|
@@ -841,7 +841,7 @@ class IdentityClient(object):
|
|
841
841
|
:rtype: :class:`~oci.response.Response`
|
842
842
|
|
843
843
|
:example:
|
844
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
844
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/bulk_delete_resources.py.html>`__ to see an example of how to use bulk_delete_resources API.
|
845
845
|
"""
|
846
846
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
847
847
|
required_arguments = ['compartmentId']
|
@@ -973,7 +973,7 @@ class IdentityClient(object):
|
|
973
973
|
:rtype: :class:`~oci.response.Response`
|
974
974
|
|
975
975
|
:example:
|
976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
976
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/bulk_delete_tags.py.html>`__ to see an example of how to use bulk_delete_tags API.
|
977
977
|
"""
|
978
978
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
979
979
|
required_arguments = []
|
@@ -1091,7 +1091,7 @@ class IdentityClient(object):
|
|
1091
1091
|
:rtype: :class:`~oci.response.Response`
|
1092
1092
|
|
1093
1093
|
:example:
|
1094
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1094
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/bulk_edit_tags.py.html>`__ to see an example of how to use bulk_edit_tags API.
|
1095
1095
|
"""
|
1096
1096
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1097
1097
|
required_arguments = []
|
@@ -1198,7 +1198,7 @@ class IdentityClient(object):
|
|
1198
1198
|
:rtype: :class:`~oci.response.Response`
|
1199
1199
|
|
1200
1200
|
:example:
|
1201
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1201
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/bulk_move_resources.py.html>`__ to see an example of how to use bulk_move_resources API.
|
1202
1202
|
"""
|
1203
1203
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1204
1204
|
required_arguments = ['compartmentId']
|
@@ -1333,7 +1333,7 @@ class IdentityClient(object):
|
|
1333
1333
|
:rtype: :class:`~oci.response.Response`
|
1334
1334
|
|
1335
1335
|
:example:
|
1336
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1336
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/cascade_delete_tag_namespace.py.html>`__ to see an example of how to use cascade_delete_tag_namespace API.
|
1337
1337
|
"""
|
1338
1338
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1339
1339
|
required_arguments = ['tagNamespaceId']
|
@@ -1461,7 +1461,7 @@ class IdentityClient(object):
|
|
1461
1461
|
:rtype: :class:`~oci.response.Response`
|
1462
1462
|
|
1463
1463
|
:example:
|
1464
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/change_domain_compartment.py.html>`__ to see an example of how to use change_domain_compartment API.
|
1465
1465
|
"""
|
1466
1466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1467
1467
|
required_arguments = ['domainId']
|
@@ -1588,7 +1588,7 @@ class IdentityClient(object):
|
|
1588
1588
|
:rtype: :class:`~oci.response.Response`
|
1589
1589
|
|
1590
1590
|
:example:
|
1591
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1591
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/change_domain_license_type.py.html>`__ to see an example of how to use change_domain_license_type API.
|
1592
1592
|
"""
|
1593
1593
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1594
1594
|
required_arguments = ['domainId']
|
@@ -1708,7 +1708,7 @@ class IdentityClient(object):
|
|
1708
1708
|
:rtype: :class:`~oci.response.Response`
|
1709
1709
|
|
1710
1710
|
:example:
|
1711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/change_tag_namespace_compartment.py.html>`__ to see an example of how to use change_tag_namespace_compartment API.
|
1712
1712
|
"""
|
1713
1713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1714
1714
|
required_arguments = ['tagNamespaceId']
|
@@ -1833,7 +1833,7 @@ class IdentityClient(object):
|
|
1833
1833
|
:rtype: :class:`~oci.response.Response`
|
1834
1834
|
|
1835
1835
|
:example:
|
1836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1836
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_auth_token.py.html>`__ to see an example of how to use create_auth_token API.
|
1837
1837
|
"""
|
1838
1838
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1839
1839
|
required_arguments = ['userId']
|
@@ -1957,7 +1957,7 @@ class IdentityClient(object):
|
|
1957
1957
|
:rtype: :class:`~oci.response.Response`
|
1958
1958
|
|
1959
1959
|
:example:
|
1960
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1960
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_compartment.py.html>`__ to see an example of how to use create_compartment API.
|
1961
1961
|
"""
|
1962
1962
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1963
1963
|
required_arguments = []
|
@@ -2065,7 +2065,7 @@ class IdentityClient(object):
|
|
2065
2065
|
:rtype: :class:`~oci.response.Response`
|
2066
2066
|
|
2067
2067
|
:example:
|
2068
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2068
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_customer_secret_key.py.html>`__ to see an example of how to use create_customer_secret_key API.
|
2069
2069
|
"""
|
2070
2070
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2071
2071
|
required_arguments = ['userId']
|
@@ -2177,7 +2177,7 @@ class IdentityClient(object):
|
|
2177
2177
|
:rtype: :class:`~oci.response.Response`
|
2178
2178
|
|
2179
2179
|
:example:
|
2180
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2180
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_db_credential.py.html>`__ to see an example of how to use create_db_credential API.
|
2181
2181
|
"""
|
2182
2182
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2183
2183
|
required_arguments = ['userId']
|
@@ -2295,7 +2295,7 @@ class IdentityClient(object):
|
|
2295
2295
|
:rtype: :class:`~oci.response.Response`
|
2296
2296
|
|
2297
2297
|
:example:
|
2298
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2298
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_domain.py.html>`__ to see an example of how to use create_domain API.
|
2299
2299
|
"""
|
2300
2300
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2301
2301
|
required_arguments = []
|
@@ -2408,7 +2408,7 @@ class IdentityClient(object):
|
|
2408
2408
|
:rtype: :class:`~oci.response.Response`
|
2409
2409
|
|
2410
2410
|
:example:
|
2411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_dynamic_group.py.html>`__ to see an example of how to use create_dynamic_group API.
|
2412
2412
|
"""
|
2413
2413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2414
2414
|
required_arguments = []
|
@@ -2524,7 +2524,7 @@ class IdentityClient(object):
|
|
2524
2524
|
:rtype: :class:`~oci.response.Response`
|
2525
2525
|
|
2526
2526
|
:example:
|
2527
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2527
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_group.py.html>`__ to see an example of how to use create_group API.
|
2528
2528
|
"""
|
2529
2529
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2530
2530
|
required_arguments = []
|
@@ -2640,7 +2640,7 @@ class IdentityClient(object):
|
|
2640
2640
|
:rtype: :class:`~oci.response.Response`
|
2641
2641
|
|
2642
2642
|
:example:
|
2643
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2643
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_identity_provider.py.html>`__ to see an example of how to use create_identity_provider API.
|
2644
2644
|
"""
|
2645
2645
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2646
2646
|
required_arguments = []
|
@@ -2741,7 +2741,7 @@ class IdentityClient(object):
|
|
2741
2741
|
:rtype: :class:`~oci.response.Response`
|
2742
2742
|
|
2743
2743
|
:example:
|
2744
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2744
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_idp_group_mapping.py.html>`__ to see an example of how to use create_idp_group_mapping API.
|
2745
2745
|
"""
|
2746
2746
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2747
2747
|
required_arguments = ['identityProviderId']
|
@@ -2846,7 +2846,7 @@ class IdentityClient(object):
|
|
2846
2846
|
:rtype: :class:`~oci.response.Response`
|
2847
2847
|
|
2848
2848
|
:example:
|
2849
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2849
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_mfa_totp_device.py.html>`__ to see an example of how to use create_mfa_totp_device API.
|
2850
2850
|
"""
|
2851
2851
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2852
2852
|
required_arguments = ['userId']
|
@@ -2973,7 +2973,7 @@ class IdentityClient(object):
|
|
2973
2973
|
:rtype: :class:`~oci.response.Response`
|
2974
2974
|
|
2975
2975
|
:example:
|
2976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2976
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_network_source.py.html>`__ to see an example of how to use create_network_source API.
|
2977
2977
|
"""
|
2978
2978
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2979
2979
|
required_arguments = []
|
@@ -3069,7 +3069,7 @@ class IdentityClient(object):
|
|
3069
3069
|
:rtype: :class:`~oci.response.Response`
|
3070
3070
|
|
3071
3071
|
:example:
|
3072
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3072
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_o_auth_client_credential.py.html>`__ to see an example of how to use create_o_auth_client_credential API.
|
3073
3073
|
"""
|
3074
3074
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3075
3075
|
required_arguments = ['userId']
|
@@ -3190,7 +3190,7 @@ class IdentityClient(object):
|
|
3190
3190
|
:rtype: :class:`~oci.response.Response`
|
3191
3191
|
|
3192
3192
|
:example:
|
3193
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3193
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_or_reset_ui_password.py.html>`__ to see an example of how to use create_or_reset_ui_password API.
|
3194
3194
|
"""
|
3195
3195
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3196
3196
|
required_arguments = ['userId']
|
@@ -3313,7 +3313,7 @@ class IdentityClient(object):
|
|
3313
3313
|
:rtype: :class:`~oci.response.Response`
|
3314
3314
|
|
3315
3315
|
:example:
|
3316
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3316
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_policy.py.html>`__ to see an example of how to use create_policy API.
|
3317
3317
|
"""
|
3318
3318
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3319
3319
|
required_arguments = []
|
@@ -3409,7 +3409,7 @@ class IdentityClient(object):
|
|
3409
3409
|
:rtype: :class:`~oci.response.Response`
|
3410
3410
|
|
3411
3411
|
:example:
|
3412
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3412
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_region_subscription.py.html>`__ to see an example of how to use create_region_subscription API.
|
3413
3413
|
"""
|
3414
3414
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3415
3415
|
required_arguments = ['tenancyId']
|
@@ -3520,7 +3520,7 @@ class IdentityClient(object):
|
|
3520
3520
|
:rtype: :class:`~oci.response.Response`
|
3521
3521
|
|
3522
3522
|
:example:
|
3523
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3523
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_smtp_credential.py.html>`__ to see an example of how to use create_smtp_credential API.
|
3524
3524
|
"""
|
3525
3525
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3526
3526
|
required_arguments = ['userId']
|
@@ -3641,7 +3641,7 @@ class IdentityClient(object):
|
|
3641
3641
|
:rtype: :class:`~oci.response.Response`
|
3642
3642
|
|
3643
3643
|
:example:
|
3644
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3644
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_swift_password.py.html>`__ to see an example of how to use create_swift_password API.
|
3645
3645
|
"""
|
3646
3646
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3647
3647
|
required_arguments = ['userId']
|
@@ -3773,7 +3773,7 @@ class IdentityClient(object):
|
|
3773
3773
|
:rtype: :class:`~oci.response.Response`
|
3774
3774
|
|
3775
3775
|
:example:
|
3776
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3776
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_tag.py.html>`__ to see an example of how to use create_tag API.
|
3777
3777
|
"""
|
3778
3778
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3779
3779
|
required_arguments = ['tagNamespaceId']
|
@@ -3897,7 +3897,7 @@ class IdentityClient(object):
|
|
3897
3897
|
:rtype: :class:`~oci.response.Response`
|
3898
3898
|
|
3899
3899
|
:example:
|
3900
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3900
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_tag_default.py.html>`__ to see an example of how to use create_tag_default API.
|
3901
3901
|
"""
|
3902
3902
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3903
3903
|
required_arguments = []
|
@@ -4005,7 +4005,7 @@ class IdentityClient(object):
|
|
4005
4005
|
:rtype: :class:`~oci.response.Response`
|
4006
4006
|
|
4007
4007
|
:example:
|
4008
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4008
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_tag_namespace.py.html>`__ to see an example of how to use create_tag_namespace API.
|
4009
4009
|
"""
|
4010
4010
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4011
4011
|
required_arguments = []
|
@@ -4136,7 +4136,7 @@ class IdentityClient(object):
|
|
4136
4136
|
:rtype: :class:`~oci.response.Response`
|
4137
4137
|
|
4138
4138
|
:example:
|
4139
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4139
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/create_user.py.html>`__ to see an example of how to use create_user API.
|
4140
4140
|
"""
|
4141
4141
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4142
4142
|
required_arguments = []
|
@@ -4246,7 +4246,7 @@ class IdentityClient(object):
|
|
4246
4246
|
:rtype: :class:`~oci.response.Response`
|
4247
4247
|
|
4248
4248
|
:example:
|
4249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/deactivate_domain.py.html>`__ to see an example of how to use deactivate_domain API.
|
4250
4250
|
"""
|
4251
4251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4252
4252
|
required_arguments = ['domainId']
|
@@ -4357,7 +4357,7 @@ class IdentityClient(object):
|
|
4357
4357
|
:rtype: :class:`~oci.response.Response`
|
4358
4358
|
|
4359
4359
|
:example:
|
4360
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4360
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_api_key.py.html>`__ to see an example of how to use delete_api_key API.
|
4361
4361
|
"""
|
4362
4362
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4363
4363
|
required_arguments = ['userId', 'fingerprint']
|
@@ -4459,7 +4459,7 @@ class IdentityClient(object):
|
|
4459
4459
|
:rtype: :class:`~oci.response.Response`
|
4460
4460
|
|
4461
4461
|
:example:
|
4462
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4462
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_auth_token.py.html>`__ to see an example of how to use delete_auth_token API.
|
4463
4463
|
"""
|
4464
4464
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4465
4465
|
required_arguments = ['userId', 'authTokenId']
|
@@ -4558,7 +4558,7 @@ class IdentityClient(object):
|
|
4558
4558
|
:rtype: :class:`~oci.response.Response`
|
4559
4559
|
|
4560
4560
|
:example:
|
4561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_compartment.py.html>`__ to see an example of how to use delete_compartment API.
|
4562
4562
|
"""
|
4563
4563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4564
4564
|
required_arguments = ['compartmentId']
|
@@ -4659,7 +4659,7 @@ class IdentityClient(object):
|
|
4659
4659
|
:rtype: :class:`~oci.response.Response`
|
4660
4660
|
|
4661
4661
|
:example:
|
4662
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4662
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_customer_secret_key.py.html>`__ to see an example of how to use delete_customer_secret_key API.
|
4663
4663
|
"""
|
4664
4664
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4665
4665
|
required_arguments = ['userId', 'customerSecretKeyId']
|
@@ -4765,7 +4765,7 @@ class IdentityClient(object):
|
|
4765
4765
|
:rtype: :class:`~oci.response.Response`
|
4766
4766
|
|
4767
4767
|
:example:
|
4768
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4768
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_db_credential.py.html>`__ to see an example of how to use delete_db_credential API.
|
4769
4769
|
"""
|
4770
4770
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4771
4771
|
required_arguments = ['userId', 'dbCredentialId']
|
@@ -4876,7 +4876,7 @@ class IdentityClient(object):
|
|
4876
4876
|
:rtype: :class:`~oci.response.Response`
|
4877
4877
|
|
4878
4878
|
:example:
|
4879
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4879
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_domain.py.html>`__ to see an example of how to use delete_domain API.
|
4880
4880
|
"""
|
4881
4881
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4882
4882
|
required_arguments = ['domainId']
|
@@ -4976,7 +4976,7 @@ class IdentityClient(object):
|
|
4976
4976
|
:rtype: :class:`~oci.response.Response`
|
4977
4977
|
|
4978
4978
|
:example:
|
4979
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4979
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_dynamic_group.py.html>`__ to see an example of how to use delete_dynamic_group API.
|
4980
4980
|
"""
|
4981
4981
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4982
4982
|
required_arguments = ['dynamicGroupId']
|
@@ -5074,7 +5074,7 @@ class IdentityClient(object):
|
|
5074
5074
|
:rtype: :class:`~oci.response.Response`
|
5075
5075
|
|
5076
5076
|
:example:
|
5077
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5077
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_group.py.html>`__ to see an example of how to use delete_group API.
|
5078
5078
|
"""
|
5079
5079
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5080
5080
|
required_arguments = ['groupId']
|
@@ -5177,7 +5177,7 @@ class IdentityClient(object):
|
|
5177
5177
|
:rtype: :class:`~oci.response.Response`
|
5178
5178
|
|
5179
5179
|
:example:
|
5180
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5180
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_identity_provider.py.html>`__ to see an example of how to use delete_identity_provider API.
|
5181
5181
|
"""
|
5182
5182
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5183
5183
|
required_arguments = ['identityProviderId']
|
@@ -5282,7 +5282,7 @@ class IdentityClient(object):
|
|
5282
5282
|
:rtype: :class:`~oci.response.Response`
|
5283
5283
|
|
5284
5284
|
:example:
|
5285
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5285
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_idp_group_mapping.py.html>`__ to see an example of how to use delete_idp_group_mapping API.
|
5286
5286
|
"""
|
5287
5287
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5288
5288
|
required_arguments = ['identityProviderId', 'mappingId']
|
@@ -5384,7 +5384,7 @@ class IdentityClient(object):
|
|
5384
5384
|
:rtype: :class:`~oci.response.Response`
|
5385
5385
|
|
5386
5386
|
:example:
|
5387
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5387
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_mfa_totp_device.py.html>`__ to see an example of how to use delete_mfa_totp_device API.
|
5388
5388
|
"""
|
5389
5389
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5390
5390
|
required_arguments = ['userId', 'mfaTotpDeviceId']
|
@@ -5483,7 +5483,7 @@ class IdentityClient(object):
|
|
5483
5483
|
:rtype: :class:`~oci.response.Response`
|
5484
5484
|
|
5485
5485
|
:example:
|
5486
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5486
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_network_source.py.html>`__ to see an example of how to use delete_network_source API.
|
5487
5487
|
"""
|
5488
5488
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5489
5489
|
required_arguments = ['networkSourceId']
|
@@ -5584,7 +5584,7 @@ class IdentityClient(object):
|
|
5584
5584
|
:rtype: :class:`~oci.response.Response`
|
5585
5585
|
|
5586
5586
|
:example:
|
5587
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5587
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_o_auth_client_credential.py.html>`__ to see an example of how to use delete_o_auth_client_credential API.
|
5588
5588
|
"""
|
5589
5589
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5590
5590
|
required_arguments = ['userId', 'oauth2ClientCredentialId']
|
@@ -5683,7 +5683,7 @@ class IdentityClient(object):
|
|
5683
5683
|
:rtype: :class:`~oci.response.Response`
|
5684
5684
|
|
5685
5685
|
:example:
|
5686
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5686
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_policy.py.html>`__ to see an example of how to use delete_policy API.
|
5687
5687
|
"""
|
5688
5688
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5689
5689
|
required_arguments = ['policyId']
|
@@ -5784,7 +5784,7 @@ class IdentityClient(object):
|
|
5784
5784
|
:rtype: :class:`~oci.response.Response`
|
5785
5785
|
|
5786
5786
|
:example:
|
5787
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5787
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_smtp_credential.py.html>`__ to see an example of how to use delete_smtp_credential API.
|
5788
5788
|
"""
|
5789
5789
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5790
5790
|
required_arguments = ['userId', 'smtpCredentialId']
|
@@ -5888,7 +5888,7 @@ class IdentityClient(object):
|
|
5888
5888
|
:rtype: :class:`~oci.response.Response`
|
5889
5889
|
|
5890
5890
|
:example:
|
5891
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5891
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_swift_password.py.html>`__ to see an example of how to use delete_swift_password API.
|
5892
5892
|
"""
|
5893
5893
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5894
5894
|
required_arguments = ['userId', 'swiftPasswordId']
|
@@ -6012,7 +6012,7 @@ class IdentityClient(object):
|
|
6012
6012
|
:rtype: :class:`~oci.response.Response`
|
6013
6013
|
|
6014
6014
|
:example:
|
6015
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6015
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_tag.py.html>`__ to see an example of how to use delete_tag API.
|
6016
6016
|
"""
|
6017
6017
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6018
6018
|
required_arguments = ['tagNamespaceId', 'tagName']
|
@@ -6126,7 +6126,7 @@ class IdentityClient(object):
|
|
6126
6126
|
:rtype: :class:`~oci.response.Response`
|
6127
6127
|
|
6128
6128
|
:example:
|
6129
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6129
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_tag_default.py.html>`__ to see an example of how to use delete_tag_default API.
|
6130
6130
|
"""
|
6131
6131
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6132
6132
|
required_arguments = ['tagDefaultId']
|
@@ -6247,7 +6247,7 @@ class IdentityClient(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/identity/delete_tag_namespace.py.html>`__ to see an example of how to use delete_tag_namespace API.
|
6251
6251
|
"""
|
6252
6252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6253
6253
|
required_arguments = ['tagNamespaceId']
|
@@ -6355,7 +6355,7 @@ class IdentityClient(object):
|
|
6355
6355
|
:rtype: :class:`~oci.response.Response`
|
6356
6356
|
|
6357
6357
|
:example:
|
6358
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6358
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/delete_user.py.html>`__ to see an example of how to use delete_user API.
|
6359
6359
|
"""
|
6360
6360
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6361
6361
|
required_arguments = ['userId']
|
@@ -6476,7 +6476,7 @@ class IdentityClient(object):
|
|
6476
6476
|
:rtype: :class:`~oci.response.Response`
|
6477
6477
|
|
6478
6478
|
:example:
|
6479
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6479
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/enable_replication_to_region.py.html>`__ to see an example of how to use enable_replication_to_region API.
|
6480
6480
|
"""
|
6481
6481
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6482
6482
|
required_arguments = ['domainId']
|
@@ -6584,7 +6584,7 @@ class IdentityClient(object):
|
|
6584
6584
|
:rtype: :class:`~oci.response.Response`
|
6585
6585
|
|
6586
6586
|
:example:
|
6587
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6587
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/generate_totp_seed.py.html>`__ to see an example of how to use generate_totp_seed API.
|
6588
6588
|
"""
|
6589
6589
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6590
6590
|
required_arguments = ['userId', 'mfaTotpDeviceId']
|
@@ -6681,7 +6681,7 @@ class IdentityClient(object):
|
|
6681
6681
|
:rtype: :class:`~oci.response.Response`
|
6682
6682
|
|
6683
6683
|
:example:
|
6684
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6684
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_authentication_policy.py.html>`__ to see an example of how to use get_authentication_policy API.
|
6685
6685
|
"""
|
6686
6686
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6687
6687
|
required_arguments = ['compartmentId']
|
@@ -6776,7 +6776,7 @@ class IdentityClient(object):
|
|
6776
6776
|
:rtype: :class:`~oci.response.Response`
|
6777
6777
|
|
6778
6778
|
:example:
|
6779
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6779
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_compartment.py.html>`__ to see an example of how to use get_compartment API.
|
6780
6780
|
"""
|
6781
6781
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6782
6782
|
required_arguments = ['compartmentId']
|
@@ -6868,7 +6868,7 @@ class IdentityClient(object):
|
|
6868
6868
|
:rtype: :class:`~oci.response.Response`
|
6869
6869
|
|
6870
6870
|
:example:
|
6871
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6871
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_domain.py.html>`__ to see an example of how to use get_domain API.
|
6872
6872
|
"""
|
6873
6873
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6874
6874
|
required_arguments = ['domainId']
|
@@ -6963,7 +6963,7 @@ class IdentityClient(object):
|
|
6963
6963
|
:rtype: :class:`~oci.response.Response`
|
6964
6964
|
|
6965
6965
|
:example:
|
6966
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6966
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_dynamic_group.py.html>`__ to see an example of how to use get_dynamic_group API.
|
6967
6967
|
"""
|
6968
6968
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6969
6969
|
required_arguments = ['dynamicGroupId']
|
@@ -7055,7 +7055,7 @@ class IdentityClient(object):
|
|
7055
7055
|
:rtype: :class:`~oci.response.Response`
|
7056
7056
|
|
7057
7057
|
:example:
|
7058
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_group.py.html>`__ to see an example of how to use get_group API.
|
7059
7059
|
"""
|
7060
7060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7061
7061
|
required_arguments = ['groupId']
|
@@ -7147,7 +7147,7 @@ class IdentityClient(object):
|
|
7147
7147
|
:rtype: :class:`~oci.response.Response`
|
7148
7148
|
|
7149
7149
|
:example:
|
7150
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7150
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_iam_work_request.py.html>`__ to see an example of how to use get_iam_work_request API.
|
7151
7151
|
"""
|
7152
7152
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7153
7153
|
required_arguments = ['iamWorkRequestId']
|
@@ -7246,7 +7246,7 @@ class IdentityClient(object):
|
|
7246
7246
|
:rtype: :class:`~oci.response.Response`
|
7247
7247
|
|
7248
7248
|
:example:
|
7249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_identity_provider.py.html>`__ to see an example of how to use get_identity_provider API.
|
7250
7250
|
"""
|
7251
7251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7252
7252
|
required_arguments = ['identityProviderId']
|
@@ -7341,7 +7341,7 @@ class IdentityClient(object):
|
|
7341
7341
|
:rtype: :class:`~oci.response.Response`
|
7342
7342
|
|
7343
7343
|
:example:
|
7344
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7344
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_idp_group_mapping.py.html>`__ to see an example of how to use get_idp_group_mapping API.
|
7345
7345
|
"""
|
7346
7346
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7347
7347
|
required_arguments = ['identityProviderId', 'mappingId']
|
@@ -7433,7 +7433,7 @@ class IdentityClient(object):
|
|
7433
7433
|
:rtype: :class:`~oci.response.Response`
|
7434
7434
|
|
7435
7435
|
:example:
|
7436
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7436
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_mfa_totp_device.py.html>`__ to see an example of how to use get_mfa_totp_device API.
|
7437
7437
|
"""
|
7438
7438
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7439
7439
|
required_arguments = ['userId', 'mfaTotpDeviceId']
|
@@ -7522,7 +7522,7 @@ class IdentityClient(object):
|
|
7522
7522
|
:rtype: :class:`~oci.response.Response`
|
7523
7523
|
|
7524
7524
|
:example:
|
7525
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7525
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_network_source.py.html>`__ to see an example of how to use get_network_source API.
|
7526
7526
|
"""
|
7527
7527
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7528
7528
|
required_arguments = ['networkSourceId']
|
@@ -7610,7 +7610,7 @@ class IdentityClient(object):
|
|
7610
7610
|
:rtype: :class:`~oci.response.Response`
|
7611
7611
|
|
7612
7612
|
:example:
|
7613
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7613
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_policy.py.html>`__ to see an example of how to use get_policy API.
|
7614
7614
|
"""
|
7615
7615
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7616
7616
|
required_arguments = ['policyId']
|
@@ -7701,7 +7701,7 @@ class IdentityClient(object):
|
|
7701
7701
|
:rtype: :class:`~oci.response.Response`
|
7702
7702
|
|
7703
7703
|
:example:
|
7704
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7704
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_standard_tag_template.py.html>`__ to see an example of how to use get_standard_tag_template API.
|
7705
7705
|
"""
|
7706
7706
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7707
7707
|
required_arguments = ['standardTagNamespaceName', 'compartmentId']
|
@@ -7799,7 +7799,7 @@ class IdentityClient(object):
|
|
7799
7799
|
:rtype: :class:`~oci.response.Response`
|
7800
7800
|
|
7801
7801
|
:example:
|
7802
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7802
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_tag.py.html>`__ to see an example of how to use get_tag API.
|
7803
7803
|
"""
|
7804
7804
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7805
7805
|
required_arguments = ['tagNamespaceId', 'tagName']
|
@@ -7888,7 +7888,7 @@ class IdentityClient(object):
|
|
7888
7888
|
:rtype: :class:`~oci.response.Response`
|
7889
7889
|
|
7890
7890
|
:example:
|
7891
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7891
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_tag_default.py.html>`__ to see an example of how to use get_tag_default API.
|
7892
7892
|
"""
|
7893
7893
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7894
7894
|
required_arguments = ['tagDefaultId']
|
@@ -7976,7 +7976,7 @@ class IdentityClient(object):
|
|
7976
7976
|
:rtype: :class:`~oci.response.Response`
|
7977
7977
|
|
7978
7978
|
:example:
|
7979
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7979
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_tag_namespace.py.html>`__ to see an example of how to use get_tag_namespace API.
|
7980
7980
|
"""
|
7981
7981
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7982
7982
|
required_arguments = ['tagNamespaceId']
|
@@ -8065,7 +8065,7 @@ class IdentityClient(object):
|
|
8065
8065
|
:rtype: :class:`~oci.response.Response`
|
8066
8066
|
|
8067
8067
|
:example:
|
8068
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8068
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_tagging_work_request.py.html>`__ to see an example of how to use get_tagging_work_request API.
|
8069
8069
|
"""
|
8070
8070
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8071
8071
|
required_arguments = ['workRequestId']
|
@@ -8153,7 +8153,7 @@ class IdentityClient(object):
|
|
8153
8153
|
:rtype: :class:`~oci.response.Response`
|
8154
8154
|
|
8155
8155
|
:example:
|
8156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8156
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_tenancy.py.html>`__ to see an example of how to use get_tenancy API.
|
8157
8157
|
"""
|
8158
8158
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8159
8159
|
required_arguments = ['tenancyId']
|
@@ -8241,7 +8241,7 @@ class IdentityClient(object):
|
|
8241
8241
|
:rtype: :class:`~oci.response.Response`
|
8242
8242
|
|
8243
8243
|
:example:
|
8244
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8244
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_user.py.html>`__ to see an example of how to use get_user API.
|
8245
8245
|
"""
|
8246
8246
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8247
8247
|
required_arguments = ['userId']
|
@@ -8329,7 +8329,7 @@ class IdentityClient(object):
|
|
8329
8329
|
:rtype: :class:`~oci.response.Response`
|
8330
8330
|
|
8331
8331
|
:example:
|
8332
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8332
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_user_group_membership.py.html>`__ to see an example of how to use get_user_group_membership API.
|
8333
8333
|
"""
|
8334
8334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8335
8335
|
required_arguments = ['userGroupMembershipId']
|
@@ -8418,7 +8418,7 @@ class IdentityClient(object):
|
|
8418
8418
|
:rtype: :class:`~oci.response.Response`
|
8419
8419
|
|
8420
8420
|
:example:
|
8421
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8421
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_user_ui_password_information.py.html>`__ to see an example of how to use get_user_ui_password_information API.
|
8422
8422
|
"""
|
8423
8423
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8424
8424
|
required_arguments = ['userId']
|
@@ -8507,7 +8507,7 @@ class IdentityClient(object):
|
|
8507
8507
|
:rtype: :class:`~oci.response.Response`
|
8508
8508
|
|
8509
8509
|
:example:
|
8510
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8510
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
8511
8511
|
"""
|
8512
8512
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8513
8513
|
required_arguments = ['workRequestId']
|
@@ -8607,7 +8607,7 @@ class IdentityClient(object):
|
|
8607
8607
|
:rtype: :class:`~oci.response.Response`
|
8608
8608
|
|
8609
8609
|
:example:
|
8610
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8610
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/import_standard_tags.py.html>`__ to see an example of how to use import_standard_tags API.
|
8611
8611
|
"""
|
8612
8612
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8613
8613
|
required_arguments = []
|
@@ -8702,7 +8702,7 @@ class IdentityClient(object):
|
|
8702
8702
|
:rtype: :class:`~oci.response.Response`
|
8703
8703
|
|
8704
8704
|
:example:
|
8705
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8705
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_allowed_domain_license_types.py.html>`__ to see an example of how to use list_allowed_domain_license_types API.
|
8706
8706
|
"""
|
8707
8707
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8708
8708
|
required_arguments = []
|
@@ -8796,7 +8796,7 @@ class IdentityClient(object):
|
|
8796
8796
|
:rtype: :class:`~oci.response.Response`
|
8797
8797
|
|
8798
8798
|
:example:
|
8799
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8799
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_api_keys.py.html>`__ to see an example of how to use list_api_keys API.
|
8800
8800
|
"""
|
8801
8801
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8802
8802
|
required_arguments = ['userId']
|
@@ -8885,7 +8885,7 @@ class IdentityClient(object):
|
|
8885
8885
|
:rtype: :class:`~oci.response.Response`
|
8886
8886
|
|
8887
8887
|
:example:
|
8888
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8888
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_auth_tokens.py.html>`__ to see an example of how to use list_auth_tokens API.
|
8889
8889
|
"""
|
8890
8890
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8891
8891
|
required_arguments = ['userId']
|
@@ -8979,7 +8979,7 @@ class IdentityClient(object):
|
|
8979
8979
|
:rtype: :class:`~oci.response.Response`
|
8980
8980
|
|
8981
8981
|
:example:
|
8982
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8982
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_availability_domains.py.html>`__ to see an example of how to use list_availability_domains API.
|
8983
8983
|
"""
|
8984
8984
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8985
8985
|
required_arguments = ['compartmentId']
|
@@ -9078,7 +9078,7 @@ class IdentityClient(object):
|
|
9078
9078
|
:rtype: :class:`~oci.response.Response`
|
9079
9079
|
|
9080
9080
|
:example:
|
9081
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9081
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_bulk_action_resource_types.py.html>`__ to see an example of how to use list_bulk_action_resource_types API.
|
9082
9082
|
"""
|
9083
9083
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9084
9084
|
required_arguments = ['bulkActionType']
|
@@ -9178,7 +9178,7 @@ class IdentityClient(object):
|
|
9178
9178
|
:rtype: :class:`~oci.response.Response`
|
9179
9179
|
|
9180
9180
|
:example:
|
9181
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_bulk_edit_tags_resource_types.py.html>`__ to see an example of how to use list_bulk_edit_tags_resource_types API.
|
9182
9182
|
"""
|
9183
9183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9184
9184
|
required_arguments = []
|
@@ -9337,7 +9337,7 @@ class IdentityClient(object):
|
|
9337
9337
|
:rtype: :class:`~oci.response.Response`
|
9338
9338
|
|
9339
9339
|
:example:
|
9340
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9340
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_compartments.py.html>`__ to see an example of how to use list_compartments API.
|
9341
9341
|
"""
|
9342
9342
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9343
9343
|
required_arguments = ['compartmentId']
|
@@ -9477,7 +9477,7 @@ class IdentityClient(object):
|
|
9477
9477
|
:rtype: :class:`~oci.response.Response`
|
9478
9478
|
|
9479
9479
|
:example:
|
9480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9480
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_cost_tracking_tags.py.html>`__ to see an example of how to use list_cost_tracking_tags API.
|
9481
9481
|
"""
|
9482
9482
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9483
9483
|
required_arguments = ['compartmentId']
|
@@ -9569,7 +9569,7 @@ class IdentityClient(object):
|
|
9569
9569
|
:rtype: :class:`~oci.response.Response`
|
9570
9570
|
|
9571
9571
|
:example:
|
9572
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9572
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_customer_secret_keys.py.html>`__ to see an example of how to use list_customer_secret_keys API.
|
9573
9573
|
"""
|
9574
9574
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9575
9575
|
required_arguments = ['userId']
|
@@ -9693,7 +9693,7 @@ class IdentityClient(object):
|
|
9693
9693
|
:rtype: :class:`~oci.response.Response`
|
9694
9694
|
|
9695
9695
|
:example:
|
9696
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9696
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_db_credentials.py.html>`__ to see an example of how to use list_db_credentials API.
|
9697
9697
|
"""
|
9698
9698
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9699
9699
|
required_arguments = ['userId']
|
@@ -9881,7 +9881,7 @@ class IdentityClient(object):
|
|
9881
9881
|
:rtype: :class:`~oci.response.Response`
|
9882
9882
|
|
9883
9883
|
:example:
|
9884
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9884
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_domains.py.html>`__ to see an example of how to use list_domains API.
|
9885
9885
|
"""
|
9886
9886
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9887
9887
|
required_arguments = ['compartmentId']
|
@@ -10052,7 +10052,7 @@ class IdentityClient(object):
|
|
10052
10052
|
:rtype: :class:`~oci.response.Response`
|
10053
10053
|
|
10054
10054
|
:example:
|
10055
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10055
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_dynamic_groups.py.html>`__ to see an example of how to use list_dynamic_groups API.
|
10056
10056
|
"""
|
10057
10057
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10058
10058
|
required_arguments = ['compartmentId']
|
@@ -10179,7 +10179,7 @@ class IdentityClient(object):
|
|
10179
10179
|
:rtype: :class:`~oci.response.Response`
|
10180
10180
|
|
10181
10181
|
:example:
|
10182
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10182
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_fault_domains.py.html>`__ to see an example of how to use list_fault_domains API.
|
10183
10183
|
"""
|
10184
10184
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10185
10185
|
required_arguments = ['compartmentId', 'availabilityDomain']
|
@@ -10299,7 +10299,7 @@ class IdentityClient(object):
|
|
10299
10299
|
:rtype: :class:`~oci.response.Response`
|
10300
10300
|
|
10301
10301
|
:example:
|
10302
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10302
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_groups.py.html>`__ to see an example of how to use list_groups API.
|
10303
10303
|
"""
|
10304
10304
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10305
10305
|
required_arguments = ['compartmentId']
|
@@ -10435,7 +10435,7 @@ class IdentityClient(object):
|
|
10435
10435
|
:rtype: :class:`~oci.response.Response`
|
10436
10436
|
|
10437
10437
|
:example:
|
10438
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10438
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_iam_work_request_errors.py.html>`__ to see an example of how to use list_iam_work_request_errors API.
|
10439
10439
|
"""
|
10440
10440
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10441
10441
|
required_arguments = ['iamWorkRequestId']
|
@@ -10565,7 +10565,7 @@ class IdentityClient(object):
|
|
10565
10565
|
:rtype: :class:`~oci.response.Response`
|
10566
10566
|
|
10567
10567
|
:example:
|
10568
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10568
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_iam_work_request_logs.py.html>`__ to see an example of how to use list_iam_work_request_logs API.
|
10569
10569
|
"""
|
10570
10570
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10571
10571
|
required_arguments = ['iamWorkRequestId']
|
@@ -10692,7 +10692,7 @@ class IdentityClient(object):
|
|
10692
10692
|
:rtype: :class:`~oci.response.Response`
|
10693
10693
|
|
10694
10694
|
:example:
|
10695
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10695
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_iam_work_requests.py.html>`__ to see an example of how to use list_iam_work_requests API.
|
10696
10696
|
"""
|
10697
10697
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10698
10698
|
required_arguments = ['compartmentId']
|
@@ -10806,7 +10806,7 @@ class IdentityClient(object):
|
|
10806
10806
|
:rtype: :class:`~oci.response.Response`
|
10807
10807
|
|
10808
10808
|
:example:
|
10809
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10809
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_identity_provider_groups.py.html>`__ to see an example of how to use list_identity_provider_groups API.
|
10810
10810
|
"""
|
10811
10811
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10812
10812
|
required_arguments = ['identityProviderId']
|
@@ -10964,7 +10964,7 @@ class IdentityClient(object):
|
|
10964
10964
|
:rtype: :class:`~oci.response.Response`
|
10965
10965
|
|
10966
10966
|
:example:
|
10967
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10967
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_identity_providers.py.html>`__ to see an example of how to use list_identity_providers API.
|
10968
10968
|
"""
|
10969
10969
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10970
10970
|
required_arguments = ['protocol', 'compartmentId']
|
@@ -11095,7 +11095,7 @@ class IdentityClient(object):
|
|
11095
11095
|
:rtype: :class:`~oci.response.Response`
|
11096
11096
|
|
11097
11097
|
:example:
|
11098
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11098
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_idp_group_mappings.py.html>`__ to see an example of how to use list_idp_group_mappings API.
|
11099
11099
|
"""
|
11100
11100
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11101
11101
|
required_arguments = ['identityProviderId']
|
@@ -11222,7 +11222,7 @@ class IdentityClient(object):
|
|
11222
11222
|
:rtype: :class:`~oci.response.Response`
|
11223
11223
|
|
11224
11224
|
:example:
|
11225
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11225
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_mfa_totp_devices.py.html>`__ to see an example of how to use list_mfa_totp_devices API.
|
11226
11226
|
"""
|
11227
11227
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11228
11228
|
required_arguments = ['userId']
|
@@ -11378,7 +11378,7 @@ class IdentityClient(object):
|
|
11378
11378
|
:rtype: :class:`~oci.response.Response`
|
11379
11379
|
|
11380
11380
|
:example:
|
11381
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11381
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_network_sources.py.html>`__ to see an example of how to use list_network_sources API.
|
11382
11382
|
"""
|
11383
11383
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11384
11384
|
required_arguments = ['compartmentId']
|
@@ -11509,7 +11509,7 @@ class IdentityClient(object):
|
|
11509
11509
|
:rtype: :class:`~oci.response.Response`
|
11510
11510
|
|
11511
11511
|
:example:
|
11512
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11512
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_o_auth_client_credentials.py.html>`__ to see an example of how to use list_o_auth_client_credentials API.
|
11513
11513
|
"""
|
11514
11514
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11515
11515
|
required_arguments = ['userId']
|
@@ -11658,7 +11658,7 @@ class IdentityClient(object):
|
|
11658
11658
|
:rtype: :class:`~oci.response.Response`
|
11659
11659
|
|
11660
11660
|
:example:
|
11661
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11661
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_policies.py.html>`__ to see an example of how to use list_policies API.
|
11662
11662
|
"""
|
11663
11663
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11664
11664
|
required_arguments = ['compartmentId']
|
@@ -11778,7 +11778,7 @@ class IdentityClient(object):
|
|
11778
11778
|
:rtype: :class:`~oci.response.Response`
|
11779
11779
|
|
11780
11780
|
:example:
|
11781
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11781
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_region_subscriptions.py.html>`__ to see an example of how to use list_region_subscriptions API.
|
11782
11782
|
"""
|
11783
11783
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11784
11784
|
required_arguments = ['tenancyId']
|
@@ -11863,7 +11863,7 @@ class IdentityClient(object):
|
|
11863
11863
|
:rtype: :class:`~oci.response.Response`
|
11864
11864
|
|
11865
11865
|
:example:
|
11866
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11866
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_regions.py.html>`__ to see an example of how to use list_regions API.
|
11867
11867
|
"""
|
11868
11868
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11869
11869
|
required_arguments = []
|
@@ -11940,7 +11940,7 @@ class IdentityClient(object):
|
|
11940
11940
|
:rtype: :class:`~oci.response.Response`
|
11941
11941
|
|
11942
11942
|
:example:
|
11943
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11943
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_smtp_credentials.py.html>`__ to see an example of how to use list_smtp_credentials API.
|
11944
11944
|
"""
|
11945
11945
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11946
11946
|
required_arguments = ['userId']
|
@@ -12034,7 +12034,7 @@ class IdentityClient(object):
|
|
12034
12034
|
:rtype: :class:`~oci.response.Response`
|
12035
12035
|
|
12036
12036
|
:example:
|
12037
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12037
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_standard_tag_namespaces.py.html>`__ to see an example of how to use list_standard_tag_namespaces API.
|
12038
12038
|
"""
|
12039
12039
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12040
12040
|
required_arguments = ['compartmentId']
|
@@ -12128,7 +12128,7 @@ class IdentityClient(object):
|
|
12128
12128
|
:rtype: :class:`~oci.response.Response`
|
12129
12129
|
|
12130
12130
|
:example:
|
12131
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12131
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_swift_passwords.py.html>`__ to see an example of how to use list_swift_passwords API.
|
12132
12132
|
"""
|
12133
12133
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12134
12134
|
required_arguments = ['userId']
|
@@ -12233,7 +12233,7 @@ class IdentityClient(object):
|
|
12233
12233
|
:rtype: :class:`~oci.response.Response`
|
12234
12234
|
|
12235
12235
|
:example:
|
12236
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12236
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tag_defaults.py.html>`__ to see an example of how to use list_tag_defaults API.
|
12237
12237
|
"""
|
12238
12238
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12239
12239
|
required_arguments = []
|
@@ -12353,7 +12353,7 @@ class IdentityClient(object):
|
|
12353
12353
|
:rtype: :class:`~oci.response.Response`
|
12354
12354
|
|
12355
12355
|
:example:
|
12356
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12356
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tag_namespaces.py.html>`__ to see an example of how to use list_tag_namespaces API.
|
12357
12357
|
"""
|
12358
12358
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12359
12359
|
required_arguments = ['compartmentId']
|
@@ -12461,7 +12461,7 @@ class IdentityClient(object):
|
|
12461
12461
|
:rtype: :class:`~oci.response.Response`
|
12462
12462
|
|
12463
12463
|
:example:
|
12464
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12464
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tagging_work_request_errors.py.html>`__ to see an example of how to use list_tagging_work_request_errors API.
|
12465
12465
|
"""
|
12466
12466
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12467
12467
|
required_arguments = ['workRequestId']
|
@@ -12569,7 +12569,7 @@ class IdentityClient(object):
|
|
12569
12569
|
:rtype: :class:`~oci.response.Response`
|
12570
12570
|
|
12571
12571
|
:example:
|
12572
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12572
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tagging_work_request_logs.py.html>`__ to see an example of how to use list_tagging_work_request_logs API.
|
12573
12573
|
"""
|
12574
12574
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12575
12575
|
required_arguments = ['workRequestId']
|
@@ -12680,7 +12680,7 @@ class IdentityClient(object):
|
|
12680
12680
|
:rtype: :class:`~oci.response.Response`
|
12681
12681
|
|
12682
12682
|
:example:
|
12683
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12683
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tagging_work_requests.py.html>`__ to see an example of how to use list_tagging_work_requests API.
|
12684
12684
|
"""
|
12685
12685
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12686
12686
|
required_arguments = ['compartmentId']
|
@@ -12784,7 +12784,7 @@ class IdentityClient(object):
|
|
12784
12784
|
:rtype: :class:`~oci.response.Response`
|
12785
12785
|
|
12786
12786
|
:example:
|
12787
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12787
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_tags.py.html>`__ to see an example of how to use list_tags API.
|
12788
12788
|
"""
|
12789
12789
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12790
12790
|
required_arguments = ['tagNamespaceId']
|
@@ -12918,7 +12918,7 @@ class IdentityClient(object):
|
|
12918
12918
|
:rtype: :class:`~oci.response.Response`
|
12919
12919
|
|
12920
12920
|
:example:
|
12921
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12921
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_user_group_memberships.py.html>`__ to see an example of how to use list_user_group_memberships API.
|
12922
12922
|
"""
|
12923
12923
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12924
12924
|
required_arguments = ['compartmentId']
|
@@ -13055,7 +13055,7 @@ class IdentityClient(object):
|
|
13055
13055
|
:rtype: :class:`~oci.response.Response`
|
13056
13056
|
|
13057
13057
|
:example:
|
13058
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13058
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_users.py.html>`__ to see an example of how to use list_users API.
|
13059
13059
|
"""
|
13060
13060
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13061
13061
|
required_arguments = ['compartmentId']
|
@@ -13188,7 +13188,7 @@ class IdentityClient(object):
|
|
13188
13188
|
:rtype: :class:`~oci.response.Response`
|
13189
13189
|
|
13190
13190
|
:example:
|
13191
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13191
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
13192
13192
|
"""
|
13193
13193
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13194
13194
|
required_arguments = ['compartmentId']
|
@@ -13309,7 +13309,7 @@ class IdentityClient(object):
|
|
13309
13309
|
:rtype: :class:`~oci.response.Response`
|
13310
13310
|
|
13311
13311
|
:example:
|
13312
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13312
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/move_compartment.py.html>`__ to see an example of how to use move_compartment API.
|
13313
13313
|
"""
|
13314
13314
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13315
13315
|
required_arguments = ['compartmentId']
|
@@ -13418,7 +13418,7 @@ class IdentityClient(object):
|
|
13418
13418
|
:rtype: :class:`~oci.response.Response`
|
13419
13419
|
|
13420
13420
|
:example:
|
13421
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13421
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/recover_compartment.py.html>`__ to see an example of how to use recover_compartment API.
|
13422
13422
|
"""
|
13423
13423
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13424
13424
|
required_arguments = ['compartmentId']
|
@@ -13534,7 +13534,7 @@ class IdentityClient(object):
|
|
13534
13534
|
:rtype: :class:`~oci.response.Response`
|
13535
13535
|
|
13536
13536
|
:example:
|
13537
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13537
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/remove_tag_default_lock.py.html>`__ to see an example of how to use remove_tag_default_lock API.
|
13538
13538
|
"""
|
13539
13539
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13540
13540
|
required_arguments = ['tagDefaultId']
|
@@ -13655,7 +13655,7 @@ class IdentityClient(object):
|
|
13655
13655
|
:rtype: :class:`~oci.response.Response`
|
13656
13656
|
|
13657
13657
|
:example:
|
13658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/remove_tag_namespace_lock.py.html>`__ to see an example of how to use remove_tag_namespace_lock API.
|
13659
13659
|
"""
|
13660
13660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13661
13661
|
required_arguments = ['tagNamespaceId']
|
@@ -13762,7 +13762,7 @@ class IdentityClient(object):
|
|
13762
13762
|
:rtype: :class:`~oci.response.Response`
|
13763
13763
|
|
13764
13764
|
:example:
|
13765
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13765
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/remove_user_from_group.py.html>`__ to see an example of how to use remove_user_from_group API.
|
13766
13766
|
"""
|
13767
13767
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13768
13768
|
required_arguments = ['userGroupMembershipId']
|
@@ -13855,7 +13855,7 @@ class IdentityClient(object):
|
|
13855
13855
|
:rtype: :class:`~oci.response.Response`
|
13856
13856
|
|
13857
13857
|
:example:
|
13858
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13858
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/reset_idp_scim_client.py.html>`__ to see an example of how to use reset_idp_scim_client API.
|
13859
13859
|
"""
|
13860
13860
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13861
13861
|
required_arguments = ['identityProviderId']
|
@@ -13954,7 +13954,7 @@ class IdentityClient(object):
|
|
13954
13954
|
:rtype: :class:`~oci.response.Response`
|
13955
13955
|
|
13956
13956
|
:example:
|
13957
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13957
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_auth_token.py.html>`__ to see an example of how to use update_auth_token API.
|
13958
13958
|
"""
|
13959
13959
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13960
13960
|
required_arguments = ['userId', 'authTokenId']
|
@@ -14060,7 +14060,7 @@ class IdentityClient(object):
|
|
14060
14060
|
:rtype: :class:`~oci.response.Response`
|
14061
14061
|
|
14062
14062
|
:example:
|
14063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_authentication_policy.py.html>`__ to see an example of how to use update_authentication_policy API.
|
14064
14064
|
"""
|
14065
14065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14066
14066
|
required_arguments = ['compartmentId']
|
@@ -14165,7 +14165,7 @@ class IdentityClient(object):
|
|
14165
14165
|
:rtype: :class:`~oci.response.Response`
|
14166
14166
|
|
14167
14167
|
:example:
|
14168
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14168
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_compartment.py.html>`__ to see an example of how to use update_compartment API.
|
14169
14169
|
"""
|
14170
14170
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14171
14171
|
required_arguments = ['compartmentId']
|
@@ -14273,7 +14273,7 @@ class IdentityClient(object):
|
|
14273
14273
|
:rtype: :class:`~oci.response.Response`
|
14274
14274
|
|
14275
14275
|
:example:
|
14276
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_customer_secret_key.py.html>`__ to see an example of how to use update_customer_secret_key API.
|
14277
14277
|
"""
|
14278
14278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14279
14279
|
required_arguments = ['userId', 'customerSecretKeyId']
|
@@ -14386,7 +14386,7 @@ class IdentityClient(object):
|
|
14386
14386
|
:rtype: :class:`~oci.response.Response`
|
14387
14387
|
|
14388
14388
|
:example:
|
14389
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14389
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_domain.py.html>`__ to see an example of how to use update_domain API.
|
14390
14390
|
"""
|
14391
14391
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14392
14392
|
required_arguments = ['domainId']
|
@@ -14491,7 +14491,7 @@ class IdentityClient(object):
|
|
14491
14491
|
:rtype: :class:`~oci.response.Response`
|
14492
14492
|
|
14493
14493
|
:example:
|
14494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_dynamic_group.py.html>`__ to see an example of how to use update_dynamic_group API.
|
14495
14495
|
"""
|
14496
14496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14497
14497
|
required_arguments = ['dynamicGroupId']
|
@@ -14596,7 +14596,7 @@ class IdentityClient(object):
|
|
14596
14596
|
:rtype: :class:`~oci.response.Response`
|
14597
14597
|
|
14598
14598
|
:example:
|
14599
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14599
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_group.py.html>`__ to see an example of how to use update_group API.
|
14600
14600
|
"""
|
14601
14601
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14602
14602
|
required_arguments = ['groupId']
|
@@ -14705,7 +14705,7 @@ class IdentityClient(object):
|
|
14705
14705
|
:rtype: :class:`~oci.response.Response`
|
14706
14706
|
|
14707
14707
|
:example:
|
14708
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14708
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_identity_provider.py.html>`__ to see an example of how to use update_identity_provider API.
|
14709
14709
|
"""
|
14710
14710
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14711
14711
|
required_arguments = ['identityProviderId']
|
@@ -14817,7 +14817,7 @@ class IdentityClient(object):
|
|
14817
14817
|
:rtype: :class:`~oci.response.Response`
|
14818
14818
|
|
14819
14819
|
:example:
|
14820
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14820
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_idp_group_mapping.py.html>`__ to see an example of how to use update_idp_group_mapping API.
|
14821
14821
|
"""
|
14822
14822
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14823
14823
|
required_arguments = ['identityProviderId', 'mappingId']
|
@@ -14923,7 +14923,7 @@ class IdentityClient(object):
|
|
14923
14923
|
:rtype: :class:`~oci.response.Response`
|
14924
14924
|
|
14925
14925
|
:example:
|
14926
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14926
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_network_source.py.html>`__ to see an example of how to use update_network_source API.
|
14927
14927
|
"""
|
14928
14928
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14929
14929
|
required_arguments = ['networkSourceId']
|
@@ -15031,7 +15031,7 @@ class IdentityClient(object):
|
|
15031
15031
|
:rtype: :class:`~oci.response.Response`
|
15032
15032
|
|
15033
15033
|
:example:
|
15034
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15034
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_o_auth_client_credential.py.html>`__ to see an example of how to use update_o_auth_client_credential API.
|
15035
15035
|
"""
|
15036
15036
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15037
15037
|
required_arguments = ['userId', 'oauth2ClientCredentialId']
|
@@ -15139,7 +15139,7 @@ class IdentityClient(object):
|
|
15139
15139
|
:rtype: :class:`~oci.response.Response`
|
15140
15140
|
|
15141
15141
|
:example:
|
15142
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15142
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_policy.py.html>`__ to see an example of how to use update_policy API.
|
15143
15143
|
"""
|
15144
15144
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15145
15145
|
required_arguments = ['policyId']
|
@@ -15247,7 +15247,7 @@ class IdentityClient(object):
|
|
15247
15247
|
:rtype: :class:`~oci.response.Response`
|
15248
15248
|
|
15249
15249
|
:example:
|
15250
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15250
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_smtp_credential.py.html>`__ to see an example of how to use update_smtp_credential API.
|
15251
15251
|
"""
|
15252
15252
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15253
15253
|
required_arguments = ['userId', 'smtpCredentialId']
|
@@ -15358,7 +15358,7 @@ class IdentityClient(object):
|
|
15358
15358
|
:rtype: :class:`~oci.response.Response`
|
15359
15359
|
|
15360
15360
|
:example:
|
15361
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15361
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_swift_password.py.html>`__ to see an example of how to use update_swift_password API.
|
15362
15362
|
"""
|
15363
15363
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15364
15364
|
required_arguments = ['userId', 'swiftPasswordId']
|
@@ -15479,7 +15479,7 @@ class IdentityClient(object):
|
|
15479
15479
|
:rtype: :class:`~oci.response.Response`
|
15480
15480
|
|
15481
15481
|
:example:
|
15482
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15482
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_tag.py.html>`__ to see an example of how to use update_tag API.
|
15483
15483
|
"""
|
15484
15484
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15485
15485
|
required_arguments = ['tagNamespaceId', 'tagName']
|
@@ -15605,7 +15605,7 @@ class IdentityClient(object):
|
|
15605
15605
|
:rtype: :class:`~oci.response.Response`
|
15606
15606
|
|
15607
15607
|
:example:
|
15608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_tag_default.py.html>`__ to see an example of how to use update_tag_default API.
|
15609
15609
|
"""
|
15610
15610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15611
15611
|
required_arguments = ['tagDefaultId']
|
@@ -15728,7 +15728,7 @@ class IdentityClient(object):
|
|
15728
15728
|
:rtype: :class:`~oci.response.Response`
|
15729
15729
|
|
15730
15730
|
:example:
|
15731
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15731
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_tag_namespace.py.html>`__ to see an example of how to use update_tag_namespace API.
|
15732
15732
|
"""
|
15733
15733
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15734
15734
|
required_arguments = ['tagNamespaceId']
|
@@ -15838,7 +15838,7 @@ class IdentityClient(object):
|
|
15838
15838
|
:rtype: :class:`~oci.response.Response`
|
15839
15839
|
|
15840
15840
|
:example:
|
15841
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15841
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_user.py.html>`__ to see an example of how to use update_user API.
|
15842
15842
|
"""
|
15843
15843
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15844
15844
|
required_arguments = ['userId']
|
@@ -15943,7 +15943,7 @@ class IdentityClient(object):
|
|
15943
15943
|
:rtype: :class:`~oci.response.Response`
|
15944
15944
|
|
15945
15945
|
:example:
|
15946
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15946
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_user_capabilities.py.html>`__ to see an example of how to use update_user_capabilities API.
|
15947
15947
|
"""
|
15948
15948
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15949
15949
|
required_arguments = ['userId']
|
@@ -16048,7 +16048,7 @@ class IdentityClient(object):
|
|
16048
16048
|
:rtype: :class:`~oci.response.Response`
|
16049
16049
|
|
16050
16050
|
:example:
|
16051
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16051
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/update_user_state.py.html>`__ to see an example of how to use update_user_state API.
|
16052
16052
|
"""
|
16053
16053
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16054
16054
|
required_arguments = ['userId']
|
@@ -16169,7 +16169,7 @@ class IdentityClient(object):
|
|
16169
16169
|
:rtype: :class:`~oci.response.Response`
|
16170
16170
|
|
16171
16171
|
:example:
|
16172
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16172
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identity/upload_api_key.py.html>`__ to see an example of how to use upload_api_key API.
|
16173
16173
|
"""
|
16174
16174
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16175
16175
|
required_arguments = ['userId']
|