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
@@ -169,7 +169,7 @@ class IdentityDomainsClient(object):
|
|
169
169
|
:rtype: :class:`~oci.response.Response`
|
170
170
|
|
171
171
|
:example:
|
172
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
172
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_api_key.py.html>`__ to see an example of how to use create_api_key API.
|
173
173
|
"""
|
174
174
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
175
175
|
required_arguments = []
|
@@ -305,7 +305,7 @@ class IdentityDomainsClient(object):
|
|
305
305
|
:rtype: :class:`~oci.response.Response`
|
306
306
|
|
307
307
|
:example:
|
308
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
308
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_app.py.html>`__ to see an example of how to use create_app API.
|
309
309
|
"""
|
310
310
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
311
311
|
required_arguments = []
|
@@ -441,7 +441,7 @@ class IdentityDomainsClient(object):
|
|
441
441
|
:rtype: :class:`~oci.response.Response`
|
442
442
|
|
443
443
|
:example:
|
444
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
444
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_app_role.py.html>`__ to see an example of how to use create_app_role API.
|
445
445
|
"""
|
446
446
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
447
447
|
required_arguments = []
|
@@ -577,7 +577,7 @@ class IdentityDomainsClient(object):
|
|
577
577
|
:rtype: :class:`~oci.response.Response`
|
578
578
|
|
579
579
|
:example:
|
580
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
580
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_approval_workflow.py.html>`__ to see an example of how to use create_approval_workflow API.
|
581
581
|
"""
|
582
582
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
583
583
|
required_arguments = []
|
@@ -713,7 +713,7 @@ class IdentityDomainsClient(object):
|
|
713
713
|
:rtype: :class:`~oci.response.Response`
|
714
714
|
|
715
715
|
:example:
|
716
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
716
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_approval_workflow_assignment.py.html>`__ to see an example of how to use create_approval_workflow_assignment API.
|
717
717
|
"""
|
718
718
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
719
719
|
required_arguments = []
|
@@ -849,7 +849,7 @@ class IdentityDomainsClient(object):
|
|
849
849
|
:rtype: :class:`~oci.response.Response`
|
850
850
|
|
851
851
|
:example:
|
852
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
852
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_approval_workflow_step.py.html>`__ to see an example of how to use create_approval_workflow_step API.
|
853
853
|
"""
|
854
854
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
855
855
|
required_arguments = []
|
@@ -985,7 +985,7 @@ class IdentityDomainsClient(object):
|
|
985
985
|
:rtype: :class:`~oci.response.Response`
|
986
986
|
|
987
987
|
:example:
|
988
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
988
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_auth_token.py.html>`__ to see an example of how to use create_auth_token API.
|
989
989
|
"""
|
990
990
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
991
991
|
required_arguments = []
|
@@ -1113,7 +1113,7 @@ class IdentityDomainsClient(object):
|
|
1113
1113
|
:rtype: :class:`~oci.response.Response`
|
1114
1114
|
|
1115
1115
|
:example:
|
1116
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1116
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_authentication_factors_remover.py.html>`__ to see an example of how to use create_authentication_factors_remover API.
|
1117
1117
|
"""
|
1118
1118
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1119
1119
|
required_arguments = []
|
@@ -1231,7 +1231,7 @@ class IdentityDomainsClient(object):
|
|
1231
1231
|
:rtype: :class:`~oci.response.Response`
|
1232
1232
|
|
1233
1233
|
:example:
|
1234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1234
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_cloud_gate.py.html>`__ to see an example of how to use create_cloud_gate API.
|
1235
1235
|
"""
|
1236
1236
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1237
1237
|
required_arguments = []
|
@@ -1367,7 +1367,7 @@ class IdentityDomainsClient(object):
|
|
1367
1367
|
:rtype: :class:`~oci.response.Response`
|
1368
1368
|
|
1369
1369
|
:example:
|
1370
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1370
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_cloud_gate_mapping.py.html>`__ to see an example of how to use create_cloud_gate_mapping API.
|
1371
1371
|
"""
|
1372
1372
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1373
1373
|
required_arguments = []
|
@@ -1503,7 +1503,7 @@ class IdentityDomainsClient(object):
|
|
1503
1503
|
:rtype: :class:`~oci.response.Response`
|
1504
1504
|
|
1505
1505
|
:example:
|
1506
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_cloud_gate_server.py.html>`__ to see an example of how to use create_cloud_gate_server API.
|
1507
1507
|
"""
|
1508
1508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1509
1509
|
required_arguments = []
|
@@ -1641,7 +1641,7 @@ class IdentityDomainsClient(object):
|
|
1641
1641
|
:rtype: :class:`~oci.response.Response`
|
1642
1642
|
|
1643
1643
|
:example:
|
1644
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1644
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_condition.py.html>`__ to see an example of how to use create_condition API.
|
1645
1645
|
"""
|
1646
1646
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1647
1647
|
required_arguments = []
|
@@ -1777,7 +1777,7 @@ class IdentityDomainsClient(object):
|
|
1777
1777
|
:rtype: :class:`~oci.response.Response`
|
1778
1778
|
|
1779
1779
|
:example:
|
1780
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1780
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_customer_secret_key.py.html>`__ to see an example of how to use create_customer_secret_key API.
|
1781
1781
|
"""
|
1782
1782
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1783
1783
|
required_arguments = []
|
@@ -1913,7 +1913,7 @@ class IdentityDomainsClient(object):
|
|
1913
1913
|
:rtype: :class:`~oci.response.Response`
|
1914
1914
|
|
1915
1915
|
:example:
|
1916
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1916
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_dynamic_resource_group.py.html>`__ to see an example of how to use create_dynamic_resource_group API.
|
1917
1917
|
"""
|
1918
1918
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1919
1919
|
required_arguments = []
|
@@ -2049,7 +2049,7 @@ class IdentityDomainsClient(object):
|
|
2049
2049
|
:rtype: :class:`~oci.response.Response`
|
2050
2050
|
|
2051
2051
|
:example:
|
2052
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2052
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_grant.py.html>`__ to see an example of how to use create_grant API.
|
2053
2053
|
"""
|
2054
2054
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2055
2055
|
required_arguments = []
|
@@ -2185,7 +2185,7 @@ class IdentityDomainsClient(object):
|
|
2185
2185
|
:rtype: :class:`~oci.response.Response`
|
2186
2186
|
|
2187
2187
|
:example:
|
2188
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2188
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_group.py.html>`__ to see an example of how to use create_group API.
|
2189
2189
|
"""
|
2190
2190
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2191
2191
|
required_arguments = []
|
@@ -2323,7 +2323,7 @@ class IdentityDomainsClient(object):
|
|
2323
2323
|
:rtype: :class:`~oci.response.Response`
|
2324
2324
|
|
2325
2325
|
:example:
|
2326
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2326
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_identity_propagation_trust.py.html>`__ to see an example of how to use create_identity_propagation_trust API.
|
2327
2327
|
"""
|
2328
2328
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2329
2329
|
required_arguments = []
|
@@ -2459,7 +2459,7 @@ class IdentityDomainsClient(object):
|
|
2459
2459
|
:rtype: :class:`~oci.response.Response`
|
2460
2460
|
|
2461
2461
|
:example:
|
2462
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2462
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_identity_provider.py.html>`__ to see an example of how to use create_identity_provider API.
|
2463
2463
|
"""
|
2464
2464
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2465
2465
|
required_arguments = []
|
@@ -2595,7 +2595,7 @@ class IdentityDomainsClient(object):
|
|
2595
2595
|
:rtype: :class:`~oci.response.Response`
|
2596
2596
|
|
2597
2597
|
:example:
|
2598
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2598
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_me.py.html>`__ to see an example of how to use create_me API.
|
2599
2599
|
"""
|
2600
2600
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2601
2601
|
required_arguments = []
|
@@ -2723,7 +2723,7 @@ class IdentityDomainsClient(object):
|
|
2723
2723
|
:rtype: :class:`~oci.response.Response`
|
2724
2724
|
|
2725
2725
|
:example:
|
2726
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2726
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_api_key.py.html>`__ to see an example of how to use create_my_api_key API.
|
2727
2727
|
"""
|
2728
2728
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2729
2729
|
required_arguments = []
|
@@ -2833,7 +2833,7 @@ class IdentityDomainsClient(object):
|
|
2833
2833
|
:rtype: :class:`~oci.response.Response`
|
2834
2834
|
|
2835
2835
|
:example:
|
2836
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2836
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_auth_token.py.html>`__ to see an example of how to use create_my_auth_token API.
|
2837
2837
|
"""
|
2838
2838
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2839
2839
|
required_arguments = []
|
@@ -2943,7 +2943,7 @@ class IdentityDomainsClient(object):
|
|
2943
2943
|
:rtype: :class:`~oci.response.Response`
|
2944
2944
|
|
2945
2945
|
:example:
|
2946
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2946
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_authentication_factor_initiator.py.html>`__ to see an example of how to use create_my_authentication_factor_initiator API.
|
2947
2947
|
"""
|
2948
2948
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2949
2949
|
required_arguments = []
|
@@ -3053,7 +3053,7 @@ class IdentityDomainsClient(object):
|
|
3053
3053
|
:rtype: :class:`~oci.response.Response`
|
3054
3054
|
|
3055
3055
|
:example:
|
3056
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3056
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_authentication_factor_validator.py.html>`__ to see an example of how to use create_my_authentication_factor_validator API.
|
3057
3057
|
"""
|
3058
3058
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3059
3059
|
required_arguments = []
|
@@ -3163,7 +3163,7 @@ class IdentityDomainsClient(object):
|
|
3163
3163
|
:rtype: :class:`~oci.response.Response`
|
3164
3164
|
|
3165
3165
|
:example:
|
3166
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3166
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_authentication_factors_remover.py.html>`__ to see an example of how to use create_my_authentication_factors_remover API.
|
3167
3167
|
"""
|
3168
3168
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3169
3169
|
required_arguments = []
|
@@ -3273,7 +3273,7 @@ class IdentityDomainsClient(object):
|
|
3273
3273
|
:rtype: :class:`~oci.response.Response`
|
3274
3274
|
|
3275
3275
|
:example:
|
3276
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_customer_secret_key.py.html>`__ to see an example of how to use create_my_customer_secret_key API.
|
3277
3277
|
"""
|
3278
3278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3279
3279
|
required_arguments = []
|
@@ -3383,7 +3383,7 @@ class IdentityDomainsClient(object):
|
|
3383
3383
|
:rtype: :class:`~oci.response.Response`
|
3384
3384
|
|
3385
3385
|
:example:
|
3386
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3386
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_o_auth2_client_credential.py.html>`__ to see an example of how to use create_my_o_auth2_client_credential API.
|
3387
3387
|
"""
|
3388
3388
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3389
3389
|
required_arguments = []
|
@@ -3501,7 +3501,7 @@ class IdentityDomainsClient(object):
|
|
3501
3501
|
:rtype: :class:`~oci.response.Response`
|
3502
3502
|
|
3503
3503
|
:example:
|
3504
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3504
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_request.py.html>`__ to see an example of how to use create_my_request API.
|
3505
3505
|
"""
|
3506
3506
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3507
3507
|
required_arguments = []
|
@@ -3629,7 +3629,7 @@ class IdentityDomainsClient(object):
|
|
3629
3629
|
:rtype: :class:`~oci.response.Response`
|
3630
3630
|
|
3631
3631
|
:example:
|
3632
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3632
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_smtp_credential.py.html>`__ to see an example of how to use create_my_smtp_credential API.
|
3633
3633
|
"""
|
3634
3634
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3635
3635
|
required_arguments = []
|
@@ -3739,7 +3739,7 @@ class IdentityDomainsClient(object):
|
|
3739
3739
|
:rtype: :class:`~oci.response.Response`
|
3740
3740
|
|
3741
3741
|
:example:
|
3742
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3742
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_support_account.py.html>`__ to see an example of how to use create_my_support_account API.
|
3743
3743
|
"""
|
3744
3744
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3745
3745
|
required_arguments = []
|
@@ -3849,7 +3849,7 @@ class IdentityDomainsClient(object):
|
|
3849
3849
|
:rtype: :class:`~oci.response.Response`
|
3850
3850
|
|
3851
3851
|
:example:
|
3852
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3852
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_my_user_db_credential.py.html>`__ to see an example of how to use create_my_user_db_credential API.
|
3853
3853
|
"""
|
3854
3854
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3855
3855
|
required_arguments = []
|
@@ -3967,7 +3967,7 @@ class IdentityDomainsClient(object):
|
|
3967
3967
|
:rtype: :class:`~oci.response.Response`
|
3968
3968
|
|
3969
3969
|
:example:
|
3970
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3970
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_network_perimeter.py.html>`__ to see an example of how to use create_network_perimeter API.
|
3971
3971
|
"""
|
3972
3972
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3973
3973
|
required_arguments = []
|
@@ -4103,7 +4103,7 @@ class IdentityDomainsClient(object):
|
|
4103
4103
|
:rtype: :class:`~oci.response.Response`
|
4104
4104
|
|
4105
4105
|
:example:
|
4106
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4106
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_o_auth2_client_credential.py.html>`__ to see an example of how to use create_o_auth2_client_credential API.
|
4107
4107
|
"""
|
4108
4108
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4109
4109
|
required_arguments = []
|
@@ -4231,7 +4231,7 @@ class IdentityDomainsClient(object):
|
|
4231
4231
|
:rtype: :class:`~oci.response.Response`
|
4232
4232
|
|
4233
4233
|
:example:
|
4234
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4234
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_o_auth_client_certificate.py.html>`__ to see an example of how to use create_o_auth_client_certificate API.
|
4235
4235
|
"""
|
4236
4236
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4237
4237
|
required_arguments = []
|
@@ -4341,7 +4341,7 @@ class IdentityDomainsClient(object):
|
|
4341
4341
|
:rtype: :class:`~oci.response.Response`
|
4342
4342
|
|
4343
4343
|
:example:
|
4344
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4344
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_o_auth_partner_certificate.py.html>`__ to see an example of how to use create_o_auth_partner_certificate API.
|
4345
4345
|
"""
|
4346
4346
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4347
4347
|
required_arguments = []
|
@@ -4459,7 +4459,7 @@ class IdentityDomainsClient(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/identitydomains/create_password_policy.py.html>`__ to see an example of how to use create_password_policy API.
|
4463
4463
|
"""
|
4464
4464
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4465
4465
|
required_arguments = []
|
@@ -4597,7 +4597,7 @@ class IdentityDomainsClient(object):
|
|
4597
4597
|
:rtype: :class:`~oci.response.Response`
|
4598
4598
|
|
4599
4599
|
:example:
|
4600
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4600
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_policy.py.html>`__ to see an example of how to use create_policy API.
|
4601
4601
|
"""
|
4602
4602
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4603
4603
|
required_arguments = []
|
@@ -4727,7 +4727,7 @@ class IdentityDomainsClient(object):
|
|
4727
4727
|
:rtype: :class:`~oci.response.Response`
|
4728
4728
|
|
4729
4729
|
:example:
|
4730
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4730
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_restore_oci_console_policy.py.html>`__ to see an example of how to use create_restore_oci_console_policy API.
|
4731
4731
|
"""
|
4732
4732
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4733
4733
|
required_arguments = []
|
@@ -4847,7 +4847,7 @@ class IdentityDomainsClient(object):
|
|
4847
4847
|
:rtype: :class:`~oci.response.Response`
|
4848
4848
|
|
4849
4849
|
:example:
|
4850
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4850
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_rule.py.html>`__ to see an example of how to use create_rule API.
|
4851
4851
|
"""
|
4852
4852
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4853
4853
|
required_arguments = []
|
@@ -4983,7 +4983,7 @@ class IdentityDomainsClient(object):
|
|
4983
4983
|
:rtype: :class:`~oci.response.Response`
|
4984
4984
|
|
4985
4985
|
:example:
|
4986
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4986
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_security_question.py.html>`__ to see an example of how to use create_security_question API.
|
4987
4987
|
"""
|
4988
4988
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4989
4989
|
required_arguments = []
|
@@ -5119,7 +5119,7 @@ class IdentityDomainsClient(object):
|
|
5119
5119
|
:rtype: :class:`~oci.response.Response`
|
5120
5120
|
|
5121
5121
|
:example:
|
5122
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5122
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_self_registration_profile.py.html>`__ to see an example of how to use create_self_registration_profile API.
|
5123
5123
|
"""
|
5124
5124
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5125
5125
|
required_arguments = []
|
@@ -5255,7 +5255,7 @@ class IdentityDomainsClient(object):
|
|
5255
5255
|
:rtype: :class:`~oci.response.Response`
|
5256
5256
|
|
5257
5257
|
:example:
|
5258
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5258
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_smtp_credential.py.html>`__ to see an example of how to use create_smtp_credential API.
|
5259
5259
|
"""
|
5260
5260
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5261
5261
|
required_arguments = []
|
@@ -5385,7 +5385,7 @@ class IdentityDomainsClient(object):
|
|
5385
5385
|
:rtype: :class:`~oci.response.Response`
|
5386
5386
|
|
5387
5387
|
:example:
|
5388
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5388
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_social_identity_provider.py.html>`__ to see an example of how to use create_social_identity_provider API.
|
5389
5389
|
"""
|
5390
5390
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5391
5391
|
required_arguments = []
|
@@ -5503,7 +5503,7 @@ class IdentityDomainsClient(object):
|
|
5503
5503
|
:rtype: :class:`~oci.response.Response`
|
5504
5504
|
|
5505
5505
|
:example:
|
5506
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5506
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_user.py.html>`__ to see an example of how to use create_user API.
|
5507
5507
|
"""
|
5508
5508
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5509
5509
|
required_arguments = []
|
@@ -5639,7 +5639,7 @@ class IdentityDomainsClient(object):
|
|
5639
5639
|
:rtype: :class:`~oci.response.Response`
|
5640
5640
|
|
5641
5641
|
:example:
|
5642
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/create_user_db_credential.py.html>`__ to see an example of how to use create_user_db_credential API.
|
5643
5643
|
"""
|
5644
5644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5645
5645
|
required_arguments = []
|
@@ -5761,7 +5761,7 @@ class IdentityDomainsClient(object):
|
|
5761
5761
|
:rtype: :class:`~oci.response.Response`
|
5762
5762
|
|
5763
5763
|
:example:
|
5764
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5764
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_api_key.py.html>`__ to see an example of how to use delete_api_key API.
|
5765
5765
|
"""
|
5766
5766
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5767
5767
|
required_arguments = ['apiKeyId']
|
@@ -5882,7 +5882,7 @@ class IdentityDomainsClient(object):
|
|
5882
5882
|
:rtype: :class:`~oci.response.Response`
|
5883
5883
|
|
5884
5884
|
:example:
|
5885
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5885
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_app.py.html>`__ to see an example of how to use delete_app API.
|
5886
5886
|
"""
|
5887
5887
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5888
5888
|
required_arguments = ['appId']
|
@@ -6003,7 +6003,7 @@ class IdentityDomainsClient(object):
|
|
6003
6003
|
:rtype: :class:`~oci.response.Response`
|
6004
6004
|
|
6005
6005
|
:example:
|
6006
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6006
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_app_role.py.html>`__ to see an example of how to use delete_app_role API.
|
6007
6007
|
"""
|
6008
6008
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6009
6009
|
required_arguments = ['appRoleId']
|
@@ -6124,7 +6124,7 @@ class IdentityDomainsClient(object):
|
|
6124
6124
|
:rtype: :class:`~oci.response.Response`
|
6125
6125
|
|
6126
6126
|
:example:
|
6127
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6127
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_approval_workflow.py.html>`__ to see an example of how to use delete_approval_workflow API.
|
6128
6128
|
"""
|
6129
6129
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6130
6130
|
required_arguments = ['approvalWorkflowId']
|
@@ -6245,7 +6245,7 @@ class IdentityDomainsClient(object):
|
|
6245
6245
|
:rtype: :class:`~oci.response.Response`
|
6246
6246
|
|
6247
6247
|
:example:
|
6248
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6248
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_approval_workflow_assignment.py.html>`__ to see an example of how to use delete_approval_workflow_assignment API.
|
6249
6249
|
"""
|
6250
6250
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6251
6251
|
required_arguments = ['approvalWorkflowAssignmentId']
|
@@ -6366,7 +6366,7 @@ class IdentityDomainsClient(object):
|
|
6366
6366
|
:rtype: :class:`~oci.response.Response`
|
6367
6367
|
|
6368
6368
|
:example:
|
6369
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6369
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_approval_workflow_step.py.html>`__ to see an example of how to use delete_approval_workflow_step API.
|
6370
6370
|
"""
|
6371
6371
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6372
6372
|
required_arguments = ['approvalWorkflowStepId']
|
@@ -6487,7 +6487,7 @@ class IdentityDomainsClient(object):
|
|
6487
6487
|
:rtype: :class:`~oci.response.Response`
|
6488
6488
|
|
6489
6489
|
:example:
|
6490
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6490
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_auth_token.py.html>`__ to see an example of how to use delete_auth_token API.
|
6491
6491
|
"""
|
6492
6492
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6493
6493
|
required_arguments = ['authTokenId']
|
@@ -6608,7 +6608,7 @@ class IdentityDomainsClient(object):
|
|
6608
6608
|
:rtype: :class:`~oci.response.Response`
|
6609
6609
|
|
6610
6610
|
:example:
|
6611
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6611
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_cloud_gate.py.html>`__ to see an example of how to use delete_cloud_gate API.
|
6612
6612
|
"""
|
6613
6613
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6614
6614
|
required_arguments = ['cloudGateId']
|
@@ -6729,7 +6729,7 @@ class IdentityDomainsClient(object):
|
|
6729
6729
|
:rtype: :class:`~oci.response.Response`
|
6730
6730
|
|
6731
6731
|
:example:
|
6732
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6732
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_cloud_gate_mapping.py.html>`__ to see an example of how to use delete_cloud_gate_mapping API.
|
6733
6733
|
"""
|
6734
6734
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6735
6735
|
required_arguments = ['cloudGateMappingId']
|
@@ -6850,7 +6850,7 @@ class IdentityDomainsClient(object):
|
|
6850
6850
|
:rtype: :class:`~oci.response.Response`
|
6851
6851
|
|
6852
6852
|
:example:
|
6853
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6853
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_cloud_gate_server.py.html>`__ to see an example of how to use delete_cloud_gate_server API.
|
6854
6854
|
"""
|
6855
6855
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6856
6856
|
required_arguments = ['cloudGateServerId']
|
@@ -6971,7 +6971,7 @@ class IdentityDomainsClient(object):
|
|
6971
6971
|
:rtype: :class:`~oci.response.Response`
|
6972
6972
|
|
6973
6973
|
:example:
|
6974
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6974
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_condition.py.html>`__ to see an example of how to use delete_condition API.
|
6975
6975
|
"""
|
6976
6976
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6977
6977
|
required_arguments = ['conditionId']
|
@@ -7092,7 +7092,7 @@ class IdentityDomainsClient(object):
|
|
7092
7092
|
:rtype: :class:`~oci.response.Response`
|
7093
7093
|
|
7094
7094
|
:example:
|
7095
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7095
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_customer_secret_key.py.html>`__ to see an example of how to use delete_customer_secret_key API.
|
7096
7096
|
"""
|
7097
7097
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7098
7098
|
required_arguments = ['customerSecretKeyId']
|
@@ -7213,7 +7213,7 @@ class IdentityDomainsClient(object):
|
|
7213
7213
|
:rtype: :class:`~oci.response.Response`
|
7214
7214
|
|
7215
7215
|
:example:
|
7216
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7216
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_dynamic_resource_group.py.html>`__ to see an example of how to use delete_dynamic_resource_group API.
|
7217
7217
|
"""
|
7218
7218
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7219
7219
|
required_arguments = ['dynamicResourceGroupId']
|
@@ -7334,7 +7334,7 @@ class IdentityDomainsClient(object):
|
|
7334
7334
|
:rtype: :class:`~oci.response.Response`
|
7335
7335
|
|
7336
7336
|
:example:
|
7337
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7337
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_grant.py.html>`__ to see an example of how to use delete_grant API.
|
7338
7338
|
"""
|
7339
7339
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7340
7340
|
required_arguments = ['grantId']
|
@@ -7455,7 +7455,7 @@ class IdentityDomainsClient(object):
|
|
7455
7455
|
:rtype: :class:`~oci.response.Response`
|
7456
7456
|
|
7457
7457
|
:example:
|
7458
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7458
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_group.py.html>`__ to see an example of how to use delete_group API.
|
7459
7459
|
"""
|
7460
7460
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7461
7461
|
required_arguments = ['groupId']
|
@@ -7576,7 +7576,7 @@ class IdentityDomainsClient(object):
|
|
7576
7576
|
:rtype: :class:`~oci.response.Response`
|
7577
7577
|
|
7578
7578
|
:example:
|
7579
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7579
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_identity_propagation_trust.py.html>`__ to see an example of how to use delete_identity_propagation_trust API.
|
7580
7580
|
"""
|
7581
7581
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7582
7582
|
required_arguments = ['identityPropagationTrustId']
|
@@ -7697,7 +7697,7 @@ class IdentityDomainsClient(object):
|
|
7697
7697
|
:rtype: :class:`~oci.response.Response`
|
7698
7698
|
|
7699
7699
|
:example:
|
7700
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7700
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_identity_provider.py.html>`__ to see an example of how to use delete_identity_provider API.
|
7701
7701
|
"""
|
7702
7702
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7703
7703
|
required_arguments = ['identityProviderId']
|
@@ -7818,7 +7818,7 @@ class IdentityDomainsClient(object):
|
|
7818
7818
|
:rtype: :class:`~oci.response.Response`
|
7819
7819
|
|
7820
7820
|
:example:
|
7821
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7821
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_api_key.py.html>`__ to see an example of how to use delete_my_api_key API.
|
7822
7822
|
"""
|
7823
7823
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7824
7824
|
required_arguments = ['myApiKeyId']
|
@@ -7939,7 +7939,7 @@ class IdentityDomainsClient(object):
|
|
7939
7939
|
:rtype: :class:`~oci.response.Response`
|
7940
7940
|
|
7941
7941
|
:example:
|
7942
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7942
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_auth_token.py.html>`__ to see an example of how to use delete_my_auth_token API.
|
7943
7943
|
"""
|
7944
7944
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7945
7945
|
required_arguments = ['myAuthTokenId']
|
@@ -8060,7 +8060,7 @@ class IdentityDomainsClient(object):
|
|
8060
8060
|
:rtype: :class:`~oci.response.Response`
|
8061
8061
|
|
8062
8062
|
:example:
|
8063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_customer_secret_key.py.html>`__ to see an example of how to use delete_my_customer_secret_key API.
|
8064
8064
|
"""
|
8065
8065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8066
8066
|
required_arguments = ['myCustomerSecretKeyId']
|
@@ -8181,7 +8181,7 @@ class IdentityDomainsClient(object):
|
|
8181
8181
|
:rtype: :class:`~oci.response.Response`
|
8182
8182
|
|
8183
8183
|
:example:
|
8184
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8184
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_device.py.html>`__ to see an example of how to use delete_my_device API.
|
8185
8185
|
"""
|
8186
8186
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8187
8187
|
required_arguments = ['myDeviceId']
|
@@ -8302,7 +8302,7 @@ class IdentityDomainsClient(object):
|
|
8302
8302
|
:rtype: :class:`~oci.response.Response`
|
8303
8303
|
|
8304
8304
|
:example:
|
8305
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8305
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_o_auth2_client_credential.py.html>`__ to see an example of how to use delete_my_o_auth2_client_credential API.
|
8306
8306
|
"""
|
8307
8307
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8308
8308
|
required_arguments = ['myOAuth2ClientCredentialId']
|
@@ -8423,7 +8423,7 @@ class IdentityDomainsClient(object):
|
|
8423
8423
|
:rtype: :class:`~oci.response.Response`
|
8424
8424
|
|
8425
8425
|
:example:
|
8426
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8426
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_smtp_credential.py.html>`__ to see an example of how to use delete_my_smtp_credential API.
|
8427
8427
|
"""
|
8428
8428
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8429
8429
|
required_arguments = ['mySmtpCredentialId']
|
@@ -8544,7 +8544,7 @@ class IdentityDomainsClient(object):
|
|
8544
8544
|
:rtype: :class:`~oci.response.Response`
|
8545
8545
|
|
8546
8546
|
:example:
|
8547
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8547
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_support_account.py.html>`__ to see an example of how to use delete_my_support_account API.
|
8548
8548
|
"""
|
8549
8549
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8550
8550
|
required_arguments = ['mySupportAccountId']
|
@@ -8665,7 +8665,7 @@ class IdentityDomainsClient(object):
|
|
8665
8665
|
:rtype: :class:`~oci.response.Response`
|
8666
8666
|
|
8667
8667
|
:example:
|
8668
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8668
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_trusted_user_agent.py.html>`__ to see an example of how to use delete_my_trusted_user_agent API.
|
8669
8669
|
"""
|
8670
8670
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8671
8671
|
required_arguments = ['myTrustedUserAgentId']
|
@@ -8786,7 +8786,7 @@ class IdentityDomainsClient(object):
|
|
8786
8786
|
:rtype: :class:`~oci.response.Response`
|
8787
8787
|
|
8788
8788
|
:example:
|
8789
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8789
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_my_user_db_credential.py.html>`__ to see an example of how to use delete_my_user_db_credential API.
|
8790
8790
|
"""
|
8791
8791
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8792
8792
|
required_arguments = ['myUserDbCredentialId']
|
@@ -8907,7 +8907,7 @@ class IdentityDomainsClient(object):
|
|
8907
8907
|
:rtype: :class:`~oci.response.Response`
|
8908
8908
|
|
8909
8909
|
:example:
|
8910
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8910
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_network_perimeter.py.html>`__ to see an example of how to use delete_network_perimeter API.
|
8911
8911
|
"""
|
8912
8912
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8913
8913
|
required_arguments = ['networkPerimeterId']
|
@@ -9028,7 +9028,7 @@ class IdentityDomainsClient(object):
|
|
9028
9028
|
:rtype: :class:`~oci.response.Response`
|
9029
9029
|
|
9030
9030
|
:example:
|
9031
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9031
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_o_auth2_client_credential.py.html>`__ to see an example of how to use delete_o_auth2_client_credential API.
|
9032
9032
|
"""
|
9033
9033
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9034
9034
|
required_arguments = ['oAuth2ClientCredentialId']
|
@@ -9149,7 +9149,7 @@ class IdentityDomainsClient(object):
|
|
9149
9149
|
:rtype: :class:`~oci.response.Response`
|
9150
9150
|
|
9151
9151
|
:example:
|
9152
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9152
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_o_auth_client_certificate.py.html>`__ to see an example of how to use delete_o_auth_client_certificate API.
|
9153
9153
|
"""
|
9154
9154
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9155
9155
|
required_arguments = ['oAuthClientCertificateId']
|
@@ -9270,7 +9270,7 @@ class IdentityDomainsClient(object):
|
|
9270
9270
|
:rtype: :class:`~oci.response.Response`
|
9271
9271
|
|
9272
9272
|
:example:
|
9273
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9273
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_o_auth_partner_certificate.py.html>`__ to see an example of how to use delete_o_auth_partner_certificate API.
|
9274
9274
|
"""
|
9275
9275
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9276
9276
|
required_arguments = ['oAuthPartnerCertificateId']
|
@@ -9391,7 +9391,7 @@ class IdentityDomainsClient(object):
|
|
9391
9391
|
:rtype: :class:`~oci.response.Response`
|
9392
9392
|
|
9393
9393
|
:example:
|
9394
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9394
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_password_policy.py.html>`__ to see an example of how to use delete_password_policy API.
|
9395
9395
|
"""
|
9396
9396
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9397
9397
|
required_arguments = ['passwordPolicyId']
|
@@ -9512,7 +9512,7 @@ class IdentityDomainsClient(object):
|
|
9512
9512
|
:rtype: :class:`~oci.response.Response`
|
9513
9513
|
|
9514
9514
|
:example:
|
9515
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9515
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_policy.py.html>`__ to see an example of how to use delete_policy API.
|
9516
9516
|
"""
|
9517
9517
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9518
9518
|
required_arguments = ['policyId']
|
@@ -9633,7 +9633,7 @@ class IdentityDomainsClient(object):
|
|
9633
9633
|
:rtype: :class:`~oci.response.Response`
|
9634
9634
|
|
9635
9635
|
:example:
|
9636
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9636
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_rule.py.html>`__ to see an example of how to use delete_rule API.
|
9637
9637
|
"""
|
9638
9638
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9639
9639
|
required_arguments = ['ruleId']
|
@@ -9754,7 +9754,7 @@ class IdentityDomainsClient(object):
|
|
9754
9754
|
:rtype: :class:`~oci.response.Response`
|
9755
9755
|
|
9756
9756
|
:example:
|
9757
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9757
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_security_question.py.html>`__ to see an example of how to use delete_security_question API.
|
9758
9758
|
"""
|
9759
9759
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9760
9760
|
required_arguments = ['securityQuestionId']
|
@@ -9875,7 +9875,7 @@ class IdentityDomainsClient(object):
|
|
9875
9875
|
:rtype: :class:`~oci.response.Response`
|
9876
9876
|
|
9877
9877
|
:example:
|
9878
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9878
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_self_registration_profile.py.html>`__ to see an example of how to use delete_self_registration_profile API.
|
9879
9879
|
"""
|
9880
9880
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9881
9881
|
required_arguments = ['selfRegistrationProfileId']
|
@@ -9996,7 +9996,7 @@ class IdentityDomainsClient(object):
|
|
9996
9996
|
:rtype: :class:`~oci.response.Response`
|
9997
9997
|
|
9998
9998
|
:example:
|
9999
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9999
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_smtp_credential.py.html>`__ to see an example of how to use delete_smtp_credential API.
|
10000
10000
|
"""
|
10001
10001
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10002
10002
|
required_arguments = ['smtpCredentialId']
|
@@ -10117,7 +10117,7 @@ class IdentityDomainsClient(object):
|
|
10117
10117
|
:rtype: :class:`~oci.response.Response`
|
10118
10118
|
|
10119
10119
|
:example:
|
10120
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10120
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_social_identity_provider.py.html>`__ to see an example of how to use delete_social_identity_provider API.
|
10121
10121
|
"""
|
10122
10122
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10123
10123
|
required_arguments = ['socialIdentityProviderId']
|
@@ -10238,7 +10238,7 @@ class IdentityDomainsClient(object):
|
|
10238
10238
|
:rtype: :class:`~oci.response.Response`
|
10239
10239
|
|
10240
10240
|
:example:
|
10241
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10241
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_user.py.html>`__ to see an example of how to use delete_user API.
|
10242
10242
|
"""
|
10243
10243
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10244
10244
|
required_arguments = ['userId']
|
@@ -10359,7 +10359,7 @@ class IdentityDomainsClient(object):
|
|
10359
10359
|
:rtype: :class:`~oci.response.Response`
|
10360
10360
|
|
10361
10361
|
:example:
|
10362
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10362
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/delete_user_db_credential.py.html>`__ to see an example of how to use delete_user_db_credential API.
|
10363
10363
|
"""
|
10364
10364
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10365
10365
|
required_arguments = ['userDbCredentialId']
|
@@ -10482,7 +10482,7 @@ class IdentityDomainsClient(object):
|
|
10482
10482
|
:rtype: :class:`~oci.response.Response`
|
10483
10483
|
|
10484
10484
|
:example:
|
10485
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_account_mgmt_info.py.html>`__ to see an example of how to use get_account_mgmt_info API.
|
10486
10486
|
"""
|
10487
10487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10488
10488
|
required_arguments = ['accountMgmtInfoId']
|
@@ -10615,7 +10615,7 @@ class IdentityDomainsClient(object):
|
|
10615
10615
|
:rtype: :class:`~oci.response.Response`
|
10616
10616
|
|
10617
10617
|
:example:
|
10618
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10618
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_account_recovery_setting.py.html>`__ to see an example of how to use get_account_recovery_setting API.
|
10619
10619
|
"""
|
10620
10620
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10621
10621
|
required_arguments = ['accountRecoverySettingId']
|
@@ -10748,7 +10748,7 @@ class IdentityDomainsClient(object):
|
|
10748
10748
|
:rtype: :class:`~oci.response.Response`
|
10749
10749
|
|
10750
10750
|
:example:
|
10751
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10751
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_api_key.py.html>`__ to see an example of how to use get_api_key API.
|
10752
10752
|
"""
|
10753
10753
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10754
10754
|
required_arguments = ['apiKeyId']
|
@@ -10881,7 +10881,7 @@ class IdentityDomainsClient(object):
|
|
10881
10881
|
:rtype: :class:`~oci.response.Response`
|
10882
10882
|
|
10883
10883
|
:example:
|
10884
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10884
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_app.py.html>`__ to see an example of how to use get_app API.
|
10885
10885
|
"""
|
10886
10886
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10887
10887
|
required_arguments = ['appId']
|
@@ -11014,7 +11014,7 @@ class IdentityDomainsClient(object):
|
|
11014
11014
|
:rtype: :class:`~oci.response.Response`
|
11015
11015
|
|
11016
11016
|
:example:
|
11017
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_app_role.py.html>`__ to see an example of how to use get_app_role API.
|
11018
11018
|
"""
|
11019
11019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11020
11020
|
required_arguments = ['appRoleId']
|
@@ -11147,7 +11147,7 @@ class IdentityDomainsClient(object):
|
|
11147
11147
|
:rtype: :class:`~oci.response.Response`
|
11148
11148
|
|
11149
11149
|
:example:
|
11150
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11150
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_approval_workflow.py.html>`__ to see an example of how to use get_approval_workflow API.
|
11151
11151
|
"""
|
11152
11152
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11153
11153
|
required_arguments = ['approvalWorkflowId']
|
@@ -11280,7 +11280,7 @@ class IdentityDomainsClient(object):
|
|
11280
11280
|
:rtype: :class:`~oci.response.Response`
|
11281
11281
|
|
11282
11282
|
:example:
|
11283
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11283
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_approval_workflow_assignment.py.html>`__ to see an example of how to use get_approval_workflow_assignment API.
|
11284
11284
|
"""
|
11285
11285
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11286
11286
|
required_arguments = ['approvalWorkflowAssignmentId']
|
@@ -11413,7 +11413,7 @@ class IdentityDomainsClient(object):
|
|
11413
11413
|
:rtype: :class:`~oci.response.Response`
|
11414
11414
|
|
11415
11415
|
:example:
|
11416
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11416
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_approval_workflow_step.py.html>`__ to see an example of how to use get_approval_workflow_step API.
|
11417
11417
|
"""
|
11418
11418
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11419
11419
|
required_arguments = ['approvalWorkflowStepId']
|
@@ -11546,7 +11546,7 @@ class IdentityDomainsClient(object):
|
|
11546
11546
|
:rtype: :class:`~oci.response.Response`
|
11547
11547
|
|
11548
11548
|
:example:
|
11549
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11549
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_auth_token.py.html>`__ to see an example of how to use get_auth_token API.
|
11550
11550
|
"""
|
11551
11551
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11552
11552
|
required_arguments = ['authTokenId']
|
@@ -11679,7 +11679,7 @@ class IdentityDomainsClient(object):
|
|
11679
11679
|
:rtype: :class:`~oci.response.Response`
|
11680
11680
|
|
11681
11681
|
:example:
|
11682
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_authentication_factor_setting.py.html>`__ to see an example of how to use get_authentication_factor_setting API.
|
11683
11683
|
"""
|
11684
11684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11685
11685
|
required_arguments = ['authenticationFactorSettingId']
|
@@ -11812,7 +11812,7 @@ class IdentityDomainsClient(object):
|
|
11812
11812
|
:rtype: :class:`~oci.response.Response`
|
11813
11813
|
|
11814
11814
|
:example:
|
11815
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11815
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_branding_setting.py.html>`__ to see an example of how to use get_branding_setting API.
|
11816
11816
|
"""
|
11817
11817
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11818
11818
|
required_arguments = ['brandingSettingId']
|
@@ -11945,7 +11945,7 @@ class IdentityDomainsClient(object):
|
|
11945
11945
|
:rtype: :class:`~oci.response.Response`
|
11946
11946
|
|
11947
11947
|
:example:
|
11948
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11948
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_cloud_gate.py.html>`__ to see an example of how to use get_cloud_gate API.
|
11949
11949
|
"""
|
11950
11950
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11951
11951
|
required_arguments = ['cloudGateId']
|
@@ -12078,7 +12078,7 @@ class IdentityDomainsClient(object):
|
|
12078
12078
|
:rtype: :class:`~oci.response.Response`
|
12079
12079
|
|
12080
12080
|
:example:
|
12081
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12081
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_cloud_gate_mapping.py.html>`__ to see an example of how to use get_cloud_gate_mapping API.
|
12082
12082
|
"""
|
12083
12083
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12084
12084
|
required_arguments = ['cloudGateMappingId']
|
@@ -12211,7 +12211,7 @@ class IdentityDomainsClient(object):
|
|
12211
12211
|
:rtype: :class:`~oci.response.Response`
|
12212
12212
|
|
12213
12213
|
:example:
|
12214
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12214
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_cloud_gate_server.py.html>`__ to see an example of how to use get_cloud_gate_server API.
|
12215
12215
|
"""
|
12216
12216
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12217
12217
|
required_arguments = ['cloudGateServerId']
|
@@ -12344,7 +12344,7 @@ class IdentityDomainsClient(object):
|
|
12344
12344
|
:rtype: :class:`~oci.response.Response`
|
12345
12345
|
|
12346
12346
|
:example:
|
12347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12347
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_condition.py.html>`__ to see an example of how to use get_condition API.
|
12348
12348
|
"""
|
12349
12349
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12350
12350
|
required_arguments = ['conditionId']
|
@@ -12477,7 +12477,7 @@ class IdentityDomainsClient(object):
|
|
12477
12477
|
:rtype: :class:`~oci.response.Response`
|
12478
12478
|
|
12479
12479
|
:example:
|
12480
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12480
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_customer_secret_key.py.html>`__ to see an example of how to use get_customer_secret_key API.
|
12481
12481
|
"""
|
12482
12482
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12483
12483
|
required_arguments = ['customerSecretKeyId']
|
@@ -12610,7 +12610,7 @@ class IdentityDomainsClient(object):
|
|
12610
12610
|
:rtype: :class:`~oci.response.Response`
|
12611
12611
|
|
12612
12612
|
:example:
|
12613
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12613
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_dynamic_resource_group.py.html>`__ to see an example of how to use get_dynamic_resource_group API.
|
12614
12614
|
"""
|
12615
12615
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12616
12616
|
required_arguments = ['dynamicResourceGroupId']
|
@@ -12743,7 +12743,7 @@ class IdentityDomainsClient(object):
|
|
12743
12743
|
:rtype: :class:`~oci.response.Response`
|
12744
12744
|
|
12745
12745
|
:example:
|
12746
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12746
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_grant.py.html>`__ to see an example of how to use get_grant API.
|
12747
12747
|
"""
|
12748
12748
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12749
12749
|
required_arguments = ['grantId']
|
@@ -12876,7 +12876,7 @@ class IdentityDomainsClient(object):
|
|
12876
12876
|
:rtype: :class:`~oci.response.Response`
|
12877
12877
|
|
12878
12878
|
:example:
|
12879
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12879
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_group.py.html>`__ to see an example of how to use get_group API.
|
12880
12880
|
"""
|
12881
12881
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12882
12882
|
required_arguments = ['groupId']
|
@@ -13009,7 +13009,7 @@ class IdentityDomainsClient(object):
|
|
13009
13009
|
:rtype: :class:`~oci.response.Response`
|
13010
13010
|
|
13011
13011
|
:example:
|
13012
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13012
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_identity_propagation_trust.py.html>`__ to see an example of how to use get_identity_propagation_trust API.
|
13013
13013
|
"""
|
13014
13014
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13015
13015
|
required_arguments = ['identityPropagationTrustId']
|
@@ -13142,7 +13142,7 @@ class IdentityDomainsClient(object):
|
|
13142
13142
|
:rtype: :class:`~oci.response.Response`
|
13143
13143
|
|
13144
13144
|
:example:
|
13145
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13145
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_identity_provider.py.html>`__ to see an example of how to use get_identity_provider API.
|
13146
13146
|
"""
|
13147
13147
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13148
13148
|
required_arguments = ['identityProviderId']
|
@@ -13275,7 +13275,7 @@ class IdentityDomainsClient(object):
|
|
13275
13275
|
:rtype: :class:`~oci.response.Response`
|
13276
13276
|
|
13277
13277
|
:example:
|
13278
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13278
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_identity_setting.py.html>`__ to see an example of how to use get_identity_setting API.
|
13279
13279
|
"""
|
13280
13280
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13281
13281
|
required_arguments = ['identitySettingId']
|
@@ -13408,7 +13408,7 @@ class IdentityDomainsClient(object):
|
|
13408
13408
|
:rtype: :class:`~oci.response.Response`
|
13409
13409
|
|
13410
13410
|
:example:
|
13411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_kmsi_setting.py.html>`__ to see an example of how to use get_kmsi_setting API.
|
13412
13412
|
"""
|
13413
13413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13414
13414
|
required_arguments = ['kmsiSettingId']
|
@@ -13538,7 +13538,7 @@ class IdentityDomainsClient(object):
|
|
13538
13538
|
:rtype: :class:`~oci.response.Response`
|
13539
13539
|
|
13540
13540
|
:example:
|
13541
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13541
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_me.py.html>`__ to see an example of how to use get_me API.
|
13542
13542
|
"""
|
13543
13543
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13544
13544
|
required_arguments = []
|
@@ -13651,7 +13651,7 @@ class IdentityDomainsClient(object):
|
|
13651
13651
|
:rtype: :class:`~oci.response.Response`
|
13652
13652
|
|
13653
13653
|
:example:
|
13654
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13654
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_api_key.py.html>`__ to see an example of how to use get_my_api_key API.
|
13655
13655
|
"""
|
13656
13656
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13657
13657
|
required_arguments = ['myApiKeyId']
|
@@ -13758,7 +13758,7 @@ class IdentityDomainsClient(object):
|
|
13758
13758
|
:rtype: :class:`~oci.response.Response`
|
13759
13759
|
|
13760
13760
|
:example:
|
13761
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13761
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_auth_token.py.html>`__ to see an example of how to use get_my_auth_token API.
|
13762
13762
|
"""
|
13763
13763
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13764
13764
|
required_arguments = ['myAuthTokenId']
|
@@ -13865,7 +13865,7 @@ class IdentityDomainsClient(object):
|
|
13865
13865
|
:rtype: :class:`~oci.response.Response`
|
13866
13866
|
|
13867
13867
|
:example:
|
13868
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13868
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_completed_approval.py.html>`__ to see an example of how to use get_my_completed_approval API.
|
13869
13869
|
"""
|
13870
13870
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13871
13871
|
required_arguments = ['myCompletedApprovalId']
|
@@ -13972,7 +13972,7 @@ class IdentityDomainsClient(object):
|
|
13972
13972
|
:rtype: :class:`~oci.response.Response`
|
13973
13973
|
|
13974
13974
|
:example:
|
13975
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13975
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_customer_secret_key.py.html>`__ to see an example of how to use get_my_customer_secret_key API.
|
13976
13976
|
"""
|
13977
13977
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13978
13978
|
required_arguments = ['myCustomerSecretKeyId']
|
@@ -14087,7 +14087,7 @@ class IdentityDomainsClient(object):
|
|
14087
14087
|
:rtype: :class:`~oci.response.Response`
|
14088
14088
|
|
14089
14089
|
:example:
|
14090
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14090
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_device.py.html>`__ to see an example of how to use get_my_device API.
|
14091
14091
|
"""
|
14092
14092
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14093
14093
|
required_arguments = ['myDeviceId']
|
@@ -14212,7 +14212,7 @@ class IdentityDomainsClient(object):
|
|
14212
14212
|
:rtype: :class:`~oci.response.Response`
|
14213
14213
|
|
14214
14214
|
:example:
|
14215
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14215
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_o_auth2_client_credential.py.html>`__ to see an example of how to use get_my_o_auth2_client_credential API.
|
14216
14216
|
"""
|
14217
14217
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14218
14218
|
required_arguments = ['myOAuth2ClientCredentialId']
|
@@ -14319,7 +14319,7 @@ class IdentityDomainsClient(object):
|
|
14319
14319
|
:rtype: :class:`~oci.response.Response`
|
14320
14320
|
|
14321
14321
|
:example:
|
14322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_pending_approval.py.html>`__ to see an example of how to use get_my_pending_approval API.
|
14323
14323
|
"""
|
14324
14324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14325
14325
|
required_arguments = ['myPendingApprovalId']
|
@@ -14434,7 +14434,7 @@ class IdentityDomainsClient(object):
|
|
14434
14434
|
:rtype: :class:`~oci.response.Response`
|
14435
14435
|
|
14436
14436
|
:example:
|
14437
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_request.py.html>`__ to see an example of how to use get_my_request API.
|
14438
14438
|
"""
|
14439
14439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14440
14440
|
required_arguments = ['myRequestId']
|
@@ -14559,7 +14559,7 @@ class IdentityDomainsClient(object):
|
|
14559
14559
|
:rtype: :class:`~oci.response.Response`
|
14560
14560
|
|
14561
14561
|
:example:
|
14562
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14562
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_smtp_credential.py.html>`__ to see an example of how to use get_my_smtp_credential API.
|
14563
14563
|
"""
|
14564
14564
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14565
14565
|
required_arguments = ['mySmtpCredentialId']
|
@@ -14666,7 +14666,7 @@ class IdentityDomainsClient(object):
|
|
14666
14666
|
:rtype: :class:`~oci.response.Response`
|
14667
14667
|
|
14668
14668
|
:example:
|
14669
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14669
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_support_account.py.html>`__ to see an example of how to use get_my_support_account API.
|
14670
14670
|
"""
|
14671
14671
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14672
14672
|
required_arguments = ['mySupportAccountId']
|
@@ -14781,7 +14781,7 @@ class IdentityDomainsClient(object):
|
|
14781
14781
|
:rtype: :class:`~oci.response.Response`
|
14782
14782
|
|
14783
14783
|
:example:
|
14784
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14784
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_trusted_user_agent.py.html>`__ to see an example of how to use get_my_trusted_user_agent API.
|
14785
14785
|
"""
|
14786
14786
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14787
14787
|
required_arguments = ['myTrustedUserAgentId']
|
@@ -14906,7 +14906,7 @@ class IdentityDomainsClient(object):
|
|
14906
14906
|
:rtype: :class:`~oci.response.Response`
|
14907
14907
|
|
14908
14908
|
:example:
|
14909
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14909
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_my_user_db_credential.py.html>`__ to see an example of how to use get_my_user_db_credential API.
|
14910
14910
|
"""
|
14911
14911
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14912
14912
|
required_arguments = ['myUserDbCredentialId']
|
@@ -15021,7 +15021,7 @@ class IdentityDomainsClient(object):
|
|
15021
15021
|
:rtype: :class:`~oci.response.Response`
|
15022
15022
|
|
15023
15023
|
:example:
|
15024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_network_perimeter.py.html>`__ to see an example of how to use get_network_perimeter API.
|
15025
15025
|
"""
|
15026
15026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15027
15027
|
required_arguments = ['networkPerimeterId']
|
@@ -15154,7 +15154,7 @@ class IdentityDomainsClient(object):
|
|
15154
15154
|
:rtype: :class:`~oci.response.Response`
|
15155
15155
|
|
15156
15156
|
:example:
|
15157
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15157
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_notification_setting.py.html>`__ to see an example of how to use get_notification_setting API.
|
15158
15158
|
"""
|
15159
15159
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15160
15160
|
required_arguments = ['notificationSettingId']
|
@@ -15287,7 +15287,7 @@ class IdentityDomainsClient(object):
|
|
15287
15287
|
:rtype: :class:`~oci.response.Response`
|
15288
15288
|
|
15289
15289
|
:example:
|
15290
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15290
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_o_auth2_client_credential.py.html>`__ to see an example of how to use get_o_auth2_client_credential API.
|
15291
15291
|
"""
|
15292
15292
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15293
15293
|
required_arguments = ['oAuth2ClientCredentialId']
|
@@ -15412,7 +15412,7 @@ class IdentityDomainsClient(object):
|
|
15412
15412
|
:rtype: :class:`~oci.response.Response`
|
15413
15413
|
|
15414
15414
|
:example:
|
15415
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15415
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_o_auth_client_certificate.py.html>`__ to see an example of how to use get_o_auth_client_certificate API.
|
15416
15416
|
"""
|
15417
15417
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15418
15418
|
required_arguments = ['oAuthClientCertificateId']
|
@@ -15519,7 +15519,7 @@ class IdentityDomainsClient(object):
|
|
15519
15519
|
:rtype: :class:`~oci.response.Response`
|
15520
15520
|
|
15521
15521
|
:example:
|
15522
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15522
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_o_auth_partner_certificate.py.html>`__ to see an example of how to use get_o_auth_partner_certificate API.
|
15523
15523
|
"""
|
15524
15524
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15525
15525
|
required_arguments = ['oAuthPartnerCertificateId']
|
@@ -15634,7 +15634,7 @@ class IdentityDomainsClient(object):
|
|
15634
15634
|
:rtype: :class:`~oci.response.Response`
|
15635
15635
|
|
15636
15636
|
:example:
|
15637
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15637
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_oci_console_sign_on_policy_consent.py.html>`__ to see an example of how to use get_oci_console_sign_on_policy_consent API.
|
15638
15638
|
"""
|
15639
15639
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15640
15640
|
required_arguments = ['ociConsoleSignOnPolicyConsentId']
|
@@ -15767,7 +15767,7 @@ class IdentityDomainsClient(object):
|
|
15767
15767
|
:rtype: :class:`~oci.response.Response`
|
15768
15768
|
|
15769
15769
|
:example:
|
15770
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15770
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_password_policy.py.html>`__ to see an example of how to use get_password_policy API.
|
15771
15771
|
"""
|
15772
15772
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15773
15773
|
required_arguments = ['passwordPolicyId']
|
@@ -15900,7 +15900,7 @@ class IdentityDomainsClient(object):
|
|
15900
15900
|
:rtype: :class:`~oci.response.Response`
|
15901
15901
|
|
15902
15902
|
:example:
|
15903
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15903
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_policy.py.html>`__ to see an example of how to use get_policy API.
|
15904
15904
|
"""
|
15905
15905
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15906
15906
|
required_arguments = ['policyId']
|
@@ -16033,7 +16033,7 @@ class IdentityDomainsClient(object):
|
|
16033
16033
|
:rtype: :class:`~oci.response.Response`
|
16034
16034
|
|
16035
16035
|
:example:
|
16036
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16036
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_rule.py.html>`__ to see an example of how to use get_rule API.
|
16037
16037
|
"""
|
16038
16038
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16039
16039
|
required_arguments = ['ruleId']
|
@@ -16158,7 +16158,7 @@ class IdentityDomainsClient(object):
|
|
16158
16158
|
:rtype: :class:`~oci.response.Response`
|
16159
16159
|
|
16160
16160
|
:example:
|
16161
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16161
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_schema.py.html>`__ to see an example of how to use get_schema API.
|
16162
16162
|
"""
|
16163
16163
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16164
16164
|
required_arguments = ['schemaId']
|
@@ -16273,7 +16273,7 @@ class IdentityDomainsClient(object):
|
|
16273
16273
|
:rtype: :class:`~oci.response.Response`
|
16274
16274
|
|
16275
16275
|
:example:
|
16276
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_security_question.py.html>`__ to see an example of how to use get_security_question API.
|
16277
16277
|
"""
|
16278
16278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16279
16279
|
required_arguments = ['securityQuestionId']
|
@@ -16406,7 +16406,7 @@ class IdentityDomainsClient(object):
|
|
16406
16406
|
:rtype: :class:`~oci.response.Response`
|
16407
16407
|
|
16408
16408
|
:example:
|
16409
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16409
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_security_question_setting.py.html>`__ to see an example of how to use get_security_question_setting API.
|
16410
16410
|
"""
|
16411
16411
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16412
16412
|
required_arguments = ['securityQuestionSettingId']
|
@@ -16539,7 +16539,7 @@ class IdentityDomainsClient(object):
|
|
16539
16539
|
:rtype: :class:`~oci.response.Response`
|
16540
16540
|
|
16541
16541
|
:example:
|
16542
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16542
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_self_registration_profile.py.html>`__ to see an example of how to use get_self_registration_profile API.
|
16543
16543
|
"""
|
16544
16544
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16545
16545
|
required_arguments = ['selfRegistrationProfileId']
|
@@ -16672,7 +16672,7 @@ class IdentityDomainsClient(object):
|
|
16672
16672
|
:rtype: :class:`~oci.response.Response`
|
16673
16673
|
|
16674
16674
|
:example:
|
16675
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16675
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_setting.py.html>`__ to see an example of how to use get_setting API.
|
16676
16676
|
"""
|
16677
16677
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16678
16678
|
required_arguments = ['settingId']
|
@@ -16805,7 +16805,7 @@ class IdentityDomainsClient(object):
|
|
16805
16805
|
:rtype: :class:`~oci.response.Response`
|
16806
16806
|
|
16807
16807
|
:example:
|
16808
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16808
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_smtp_credential.py.html>`__ to see an example of how to use get_smtp_credential API.
|
16809
16809
|
"""
|
16810
16810
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16811
16811
|
required_arguments = ['smtpCredentialId']
|
@@ -16930,7 +16930,7 @@ class IdentityDomainsClient(object):
|
|
16930
16930
|
:rtype: :class:`~oci.response.Response`
|
16931
16931
|
|
16932
16932
|
:example:
|
16933
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16933
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_social_identity_provider.py.html>`__ to see an example of how to use get_social_identity_provider API.
|
16934
16934
|
"""
|
16935
16935
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16936
16936
|
required_arguments = ['socialIdentityProviderId']
|
@@ -17045,7 +17045,7 @@ class IdentityDomainsClient(object):
|
|
17045
17045
|
:rtype: :class:`~oci.response.Response`
|
17046
17046
|
|
17047
17047
|
:example:
|
17048
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17048
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_user.py.html>`__ to see an example of how to use get_user API.
|
17049
17049
|
"""
|
17050
17050
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17051
17051
|
required_arguments = ['userId']
|
@@ -17178,7 +17178,7 @@ class IdentityDomainsClient(object):
|
|
17178
17178
|
:rtype: :class:`~oci.response.Response`
|
17179
17179
|
|
17180
17180
|
:example:
|
17181
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17181
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_user_attributes_setting.py.html>`__ to see an example of how to use get_user_attributes_setting API.
|
17182
17182
|
"""
|
17183
17183
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17184
17184
|
required_arguments = ['userAttributesSettingId']
|
@@ -17311,7 +17311,7 @@ class IdentityDomainsClient(object):
|
|
17311
17311
|
:rtype: :class:`~oci.response.Response`
|
17312
17312
|
|
17313
17313
|
:example:
|
17314
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17314
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/get_user_db_credential.py.html>`__ to see an example of how to use get_user_db_credential API.
|
17315
17315
|
"""
|
17316
17316
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17317
17317
|
required_arguments = ['userDbCredentialId']
|
@@ -17466,7 +17466,7 @@ class IdentityDomainsClient(object):
|
|
17466
17466
|
:rtype: :class:`~oci.response.Response`
|
17467
17467
|
|
17468
17468
|
:example:
|
17469
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17469
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_account_mgmt_infos.py.html>`__ to see an example of how to use list_account_mgmt_infos API.
|
17470
17470
|
"""
|
17471
17471
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17472
17472
|
required_arguments = []
|
@@ -17611,7 +17611,7 @@ class IdentityDomainsClient(object):
|
|
17611
17611
|
:rtype: :class:`~oci.response.Response`
|
17612
17612
|
|
17613
17613
|
:example:
|
17614
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17614
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_account_recovery_settings.py.html>`__ to see an example of how to use list_account_recovery_settings API.
|
17615
17615
|
"""
|
17616
17616
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17617
17617
|
required_arguments = []
|
@@ -17758,7 +17758,7 @@ class IdentityDomainsClient(object):
|
|
17758
17758
|
:rtype: :class:`~oci.response.Response`
|
17759
17759
|
|
17760
17760
|
:example:
|
17761
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17761
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_api_keys.py.html>`__ to see an example of how to use list_api_keys API.
|
17762
17762
|
"""
|
17763
17763
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17764
17764
|
required_arguments = []
|
@@ -17922,7 +17922,7 @@ class IdentityDomainsClient(object):
|
|
17922
17922
|
:rtype: :class:`~oci.response.Response`
|
17923
17923
|
|
17924
17924
|
:example:
|
17925
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17925
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_app_roles.py.html>`__ to see an example of how to use list_app_roles API.
|
17926
17926
|
"""
|
17927
17927
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17928
17928
|
required_arguments = []
|
@@ -18086,7 +18086,7 @@ class IdentityDomainsClient(object):
|
|
18086
18086
|
:rtype: :class:`~oci.response.Response`
|
18087
18087
|
|
18088
18088
|
:example:
|
18089
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18089
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_approval_workflow_assignments.py.html>`__ to see an example of how to use list_approval_workflow_assignments API.
|
18090
18090
|
"""
|
18091
18091
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18092
18092
|
required_arguments = []
|
@@ -18250,7 +18250,7 @@ class IdentityDomainsClient(object):
|
|
18250
18250
|
:rtype: :class:`~oci.response.Response`
|
18251
18251
|
|
18252
18252
|
:example:
|
18253
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18253
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_approval_workflow_steps.py.html>`__ to see an example of how to use list_approval_workflow_steps API.
|
18254
18254
|
"""
|
18255
18255
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18256
18256
|
required_arguments = []
|
@@ -18414,7 +18414,7 @@ class IdentityDomainsClient(object):
|
|
18414
18414
|
:rtype: :class:`~oci.response.Response`
|
18415
18415
|
|
18416
18416
|
:example:
|
18417
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18417
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_approval_workflows.py.html>`__ to see an example of how to use list_approval_workflows API.
|
18418
18418
|
"""
|
18419
18419
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18420
18420
|
required_arguments = []
|
@@ -18578,7 +18578,7 @@ class IdentityDomainsClient(object):
|
|
18578
18578
|
:rtype: :class:`~oci.response.Response`
|
18579
18579
|
|
18580
18580
|
:example:
|
18581
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18581
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_apps.py.html>`__ to see an example of how to use list_apps API.
|
18582
18582
|
"""
|
18583
18583
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18584
18584
|
required_arguments = []
|
@@ -18742,7 +18742,7 @@ class IdentityDomainsClient(object):
|
|
18742
18742
|
:rtype: :class:`~oci.response.Response`
|
18743
18743
|
|
18744
18744
|
:example:
|
18745
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18745
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_auth_tokens.py.html>`__ to see an example of how to use list_auth_tokens API.
|
18746
18746
|
"""
|
18747
18747
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18748
18748
|
required_arguments = []
|
@@ -18887,7 +18887,7 @@ class IdentityDomainsClient(object):
|
|
18887
18887
|
:rtype: :class:`~oci.response.Response`
|
18888
18888
|
|
18889
18889
|
:example:
|
18890
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18890
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_authentication_factor_settings.py.html>`__ to see an example of how to use list_authentication_factor_settings API.
|
18891
18891
|
"""
|
18892
18892
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18893
18893
|
required_arguments = []
|
@@ -19015,7 +19015,7 @@ class IdentityDomainsClient(object):
|
|
19015
19015
|
:rtype: :class:`~oci.response.Response`
|
19016
19016
|
|
19017
19017
|
:example:
|
19018
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19018
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_branding_settings.py.html>`__ to see an example of how to use list_branding_settings API.
|
19019
19019
|
"""
|
19020
19020
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19021
19021
|
required_arguments = []
|
@@ -19162,7 +19162,7 @@ class IdentityDomainsClient(object):
|
|
19162
19162
|
:rtype: :class:`~oci.response.Response`
|
19163
19163
|
|
19164
19164
|
:example:
|
19165
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19165
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_cloud_gate_mappings.py.html>`__ to see an example of how to use list_cloud_gate_mappings API.
|
19166
19166
|
"""
|
19167
19167
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19168
19168
|
required_arguments = []
|
@@ -19326,7 +19326,7 @@ class IdentityDomainsClient(object):
|
|
19326
19326
|
:rtype: :class:`~oci.response.Response`
|
19327
19327
|
|
19328
19328
|
:example:
|
19329
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19329
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_cloud_gate_servers.py.html>`__ to see an example of how to use list_cloud_gate_servers API.
|
19330
19330
|
"""
|
19331
19331
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19332
19332
|
required_arguments = []
|
@@ -19490,7 +19490,7 @@ class IdentityDomainsClient(object):
|
|
19490
19490
|
:rtype: :class:`~oci.response.Response`
|
19491
19491
|
|
19492
19492
|
:example:
|
19493
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19493
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_cloud_gates.py.html>`__ to see an example of how to use list_cloud_gates API.
|
19494
19494
|
"""
|
19495
19495
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19496
19496
|
required_arguments = []
|
@@ -19654,7 +19654,7 @@ class IdentityDomainsClient(object):
|
|
19654
19654
|
:rtype: :class:`~oci.response.Response`
|
19655
19655
|
|
19656
19656
|
:example:
|
19657
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19657
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_conditions.py.html>`__ to see an example of how to use list_conditions API.
|
19658
19658
|
"""
|
19659
19659
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19660
19660
|
required_arguments = []
|
@@ -19818,7 +19818,7 @@ class IdentityDomainsClient(object):
|
|
19818
19818
|
:rtype: :class:`~oci.response.Response`
|
19819
19819
|
|
19820
19820
|
:example:
|
19821
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19821
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_customer_secret_keys.py.html>`__ to see an example of how to use list_customer_secret_keys API.
|
19822
19822
|
"""
|
19823
19823
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19824
19824
|
required_arguments = []
|
@@ -19982,7 +19982,7 @@ class IdentityDomainsClient(object):
|
|
19982
19982
|
:rtype: :class:`~oci.response.Response`
|
19983
19983
|
|
19984
19984
|
:example:
|
19985
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19985
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_dynamic_resource_groups.py.html>`__ to see an example of how to use list_dynamic_resource_groups API.
|
19986
19986
|
"""
|
19987
19987
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19988
19988
|
required_arguments = []
|
@@ -20146,7 +20146,7 @@ class IdentityDomainsClient(object):
|
|
20146
20146
|
:rtype: :class:`~oci.response.Response`
|
20147
20147
|
|
20148
20148
|
:example:
|
20149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_grants.py.html>`__ to see an example of how to use list_grants API.
|
20150
20150
|
"""
|
20151
20151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20152
20152
|
required_arguments = []
|
@@ -20310,7 +20310,7 @@ class IdentityDomainsClient(object):
|
|
20310
20310
|
:rtype: :class:`~oci.response.Response`
|
20311
20311
|
|
20312
20312
|
:example:
|
20313
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20313
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_groups.py.html>`__ to see an example of how to use list_groups API.
|
20314
20314
|
"""
|
20315
20315
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20316
20316
|
required_arguments = []
|
@@ -20474,7 +20474,7 @@ class IdentityDomainsClient(object):
|
|
20474
20474
|
:rtype: :class:`~oci.response.Response`
|
20475
20475
|
|
20476
20476
|
:example:
|
20477
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20477
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_identity_propagation_trusts.py.html>`__ to see an example of how to use list_identity_propagation_trusts API.
|
20478
20478
|
"""
|
20479
20479
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20480
20480
|
required_arguments = []
|
@@ -20638,7 +20638,7 @@ class IdentityDomainsClient(object):
|
|
20638
20638
|
:rtype: :class:`~oci.response.Response`
|
20639
20639
|
|
20640
20640
|
:example:
|
20641
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20641
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_identity_providers.py.html>`__ to see an example of how to use list_identity_providers API.
|
20642
20642
|
"""
|
20643
20643
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20644
20644
|
required_arguments = []
|
@@ -20783,7 +20783,7 @@ class IdentityDomainsClient(object):
|
|
20783
20783
|
:rtype: :class:`~oci.response.Response`
|
20784
20784
|
|
20785
20785
|
:example:
|
20786
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20786
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_identity_settings.py.html>`__ to see an example of how to use list_identity_settings API.
|
20787
20787
|
"""
|
20788
20788
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20789
20789
|
required_arguments = []
|
@@ -20911,7 +20911,7 @@ class IdentityDomainsClient(object):
|
|
20911
20911
|
:rtype: :class:`~oci.response.Response`
|
20912
20912
|
|
20913
20913
|
:example:
|
20914
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20914
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_kmsi_settings.py.html>`__ to see an example of how to use list_kmsi_settings API.
|
20915
20915
|
"""
|
20916
20916
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20917
20917
|
required_arguments = []
|
@@ -21050,7 +21050,7 @@ class IdentityDomainsClient(object):
|
|
21050
21050
|
:rtype: :class:`~oci.response.Response`
|
21051
21051
|
|
21052
21052
|
:example:
|
21053
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_api_keys.py.html>`__ to see an example of how to use list_my_api_keys API.
|
21054
21054
|
"""
|
21055
21055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21056
21056
|
required_arguments = []
|
@@ -21194,7 +21194,7 @@ class IdentityDomainsClient(object):
|
|
21194
21194
|
:rtype: :class:`~oci.response.Response`
|
21195
21195
|
|
21196
21196
|
:example:
|
21197
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21197
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_apps.py.html>`__ to see an example of how to use list_my_apps API.
|
21198
21198
|
"""
|
21199
21199
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21200
21200
|
required_arguments = []
|
@@ -21338,7 +21338,7 @@ class IdentityDomainsClient(object):
|
|
21338
21338
|
:rtype: :class:`~oci.response.Response`
|
21339
21339
|
|
21340
21340
|
:example:
|
21341
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21341
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_auth_tokens.py.html>`__ to see an example of how to use list_my_auth_tokens API.
|
21342
21342
|
"""
|
21343
21343
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21344
21344
|
required_arguments = []
|
@@ -21482,7 +21482,7 @@ class IdentityDomainsClient(object):
|
|
21482
21482
|
:rtype: :class:`~oci.response.Response`
|
21483
21483
|
|
21484
21484
|
:example:
|
21485
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21485
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_completed_approvals.py.html>`__ to see an example of how to use list_my_completed_approvals API.
|
21486
21486
|
"""
|
21487
21487
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21488
21488
|
required_arguments = []
|
@@ -21626,7 +21626,7 @@ class IdentityDomainsClient(object):
|
|
21626
21626
|
:rtype: :class:`~oci.response.Response`
|
21627
21627
|
|
21628
21628
|
:example:
|
21629
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21629
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_customer_secret_keys.py.html>`__ to see an example of how to use list_my_customer_secret_keys API.
|
21630
21630
|
"""
|
21631
21631
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21632
21632
|
required_arguments = []
|
@@ -21778,7 +21778,7 @@ class IdentityDomainsClient(object):
|
|
21778
21778
|
:rtype: :class:`~oci.response.Response`
|
21779
21779
|
|
21780
21780
|
:example:
|
21781
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21781
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_devices.py.html>`__ to see an example of how to use list_my_devices API.
|
21782
21782
|
"""
|
21783
21783
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21784
21784
|
required_arguments = []
|
@@ -21942,7 +21942,7 @@ class IdentityDomainsClient(object):
|
|
21942
21942
|
:rtype: :class:`~oci.response.Response`
|
21943
21943
|
|
21944
21944
|
:example:
|
21945
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
21945
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_groups.py.html>`__ to see an example of how to use list_my_groups API.
|
21946
21946
|
"""
|
21947
21947
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
21948
21948
|
required_arguments = []
|
@@ -22098,7 +22098,7 @@ class IdentityDomainsClient(object):
|
|
22098
22098
|
:rtype: :class:`~oci.response.Response`
|
22099
22099
|
|
22100
22100
|
:example:
|
22101
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22101
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_o_auth2_client_credentials.py.html>`__ to see an example of how to use list_my_o_auth2_client_credentials API.
|
22102
22102
|
"""
|
22103
22103
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22104
22104
|
required_arguments = []
|
@@ -22242,7 +22242,7 @@ class IdentityDomainsClient(object):
|
|
22242
22242
|
:rtype: :class:`~oci.response.Response`
|
22243
22243
|
|
22244
22244
|
:example:
|
22245
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_pending_approvals.py.html>`__ to see an example of how to use list_my_pending_approvals API.
|
22246
22246
|
"""
|
22247
22247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22248
22248
|
required_arguments = []
|
@@ -22386,7 +22386,7 @@ class IdentityDomainsClient(object):
|
|
22386
22386
|
:rtype: :class:`~oci.response.Response`
|
22387
22387
|
|
22388
22388
|
:example:
|
22389
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22389
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_requestable_groups.py.html>`__ to see an example of how to use list_my_requestable_groups API.
|
22390
22390
|
"""
|
22391
22391
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22392
22392
|
required_arguments = []
|
@@ -22538,7 +22538,7 @@ class IdentityDomainsClient(object):
|
|
22538
22538
|
:rtype: :class:`~oci.response.Response`
|
22539
22539
|
|
22540
22540
|
:example:
|
22541
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22541
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_requests.py.html>`__ to see an example of how to use list_my_requests API.
|
22542
22542
|
"""
|
22543
22543
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22544
22544
|
required_arguments = []
|
@@ -22694,7 +22694,7 @@ class IdentityDomainsClient(object):
|
|
22694
22694
|
:rtype: :class:`~oci.response.Response`
|
22695
22695
|
|
22696
22696
|
:example:
|
22697
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22697
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_smtp_credentials.py.html>`__ to see an example of how to use list_my_smtp_credentials API.
|
22698
22698
|
"""
|
22699
22699
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22700
22700
|
required_arguments = []
|
@@ -22838,7 +22838,7 @@ class IdentityDomainsClient(object):
|
|
22838
22838
|
:rtype: :class:`~oci.response.Response`
|
22839
22839
|
|
22840
22840
|
:example:
|
22841
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22841
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_support_accounts.py.html>`__ to see an example of how to use list_my_support_accounts API.
|
22842
22842
|
"""
|
22843
22843
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22844
22844
|
required_arguments = []
|
@@ -22990,7 +22990,7 @@ class IdentityDomainsClient(object):
|
|
22990
22990
|
:rtype: :class:`~oci.response.Response`
|
22991
22991
|
|
22992
22992
|
:example:
|
22993
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
22993
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_trusted_user_agents.py.html>`__ to see an example of how to use list_my_trusted_user_agents API.
|
22994
22994
|
"""
|
22995
22995
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
22996
22996
|
required_arguments = []
|
@@ -23146,7 +23146,7 @@ class IdentityDomainsClient(object):
|
|
23146
23146
|
:rtype: :class:`~oci.response.Response`
|
23147
23147
|
|
23148
23148
|
:example:
|
23149
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23149
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_my_user_db_credentials.py.html>`__ to see an example of how to use list_my_user_db_credentials API.
|
23150
23150
|
"""
|
23151
23151
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23152
23152
|
required_arguments = []
|
@@ -23298,7 +23298,7 @@ class IdentityDomainsClient(object):
|
|
23298
23298
|
:rtype: :class:`~oci.response.Response`
|
23299
23299
|
|
23300
23300
|
:example:
|
23301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_network_perimeters.py.html>`__ to see an example of how to use list_network_perimeters API.
|
23302
23302
|
"""
|
23303
23303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23304
23304
|
required_arguments = []
|
@@ -23443,7 +23443,7 @@ class IdentityDomainsClient(object):
|
|
23443
23443
|
:rtype: :class:`~oci.response.Response`
|
23444
23444
|
|
23445
23445
|
:example:
|
23446
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23446
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_notification_settings.py.html>`__ to see an example of how to use list_notification_settings API.
|
23447
23447
|
"""
|
23448
23448
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23449
23449
|
required_arguments = []
|
@@ -23590,7 +23590,7 @@ class IdentityDomainsClient(object):
|
|
23590
23590
|
:rtype: :class:`~oci.response.Response`
|
23591
23591
|
|
23592
23592
|
:example:
|
23593
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23593
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_o_auth2_client_credentials.py.html>`__ to see an example of how to use list_o_auth2_client_credentials API.
|
23594
23594
|
"""
|
23595
23595
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23596
23596
|
required_arguments = []
|
@@ -23746,7 +23746,7 @@ class IdentityDomainsClient(object):
|
|
23746
23746
|
:rtype: :class:`~oci.response.Response`
|
23747
23747
|
|
23748
23748
|
:example:
|
23749
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23749
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_o_auth_client_certificates.py.html>`__ to see an example of how to use list_o_auth_client_certificates API.
|
23750
23750
|
"""
|
23751
23751
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23752
23752
|
required_arguments = []
|
@@ -23890,7 +23890,7 @@ class IdentityDomainsClient(object):
|
|
23890
23890
|
:rtype: :class:`~oci.response.Response`
|
23891
23891
|
|
23892
23892
|
:example:
|
23893
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
23893
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_o_auth_partner_certificates.py.html>`__ to see an example of how to use list_o_auth_partner_certificates API.
|
23894
23894
|
"""
|
23895
23895
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
23896
23896
|
required_arguments = []
|
@@ -24042,7 +24042,7 @@ class IdentityDomainsClient(object):
|
|
24042
24042
|
:rtype: :class:`~oci.response.Response`
|
24043
24043
|
|
24044
24044
|
:example:
|
24045
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24045
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_oci_console_sign_on_policy_consents.py.html>`__ to see an example of how to use list_oci_console_sign_on_policy_consents API.
|
24046
24046
|
"""
|
24047
24047
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24048
24048
|
required_arguments = []
|
@@ -24206,7 +24206,7 @@ class IdentityDomainsClient(object):
|
|
24206
24206
|
:rtype: :class:`~oci.response.Response`
|
24207
24207
|
|
24208
24208
|
:example:
|
24209
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24209
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_password_policies.py.html>`__ to see an example of how to use list_password_policies API.
|
24210
24210
|
"""
|
24211
24211
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24212
24212
|
required_arguments = []
|
@@ -24370,7 +24370,7 @@ class IdentityDomainsClient(object):
|
|
24370
24370
|
:rtype: :class:`~oci.response.Response`
|
24371
24371
|
|
24372
24372
|
:example:
|
24373
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24373
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_policies.py.html>`__ to see an example of how to use list_policies API.
|
24374
24374
|
"""
|
24375
24375
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24376
24376
|
required_arguments = []
|
@@ -24534,7 +24534,7 @@ class IdentityDomainsClient(object):
|
|
24534
24534
|
:rtype: :class:`~oci.response.Response`
|
24535
24535
|
|
24536
24536
|
:example:
|
24537
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24537
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_resource_type_schema_attributes.py.html>`__ to see an example of how to use list_resource_type_schema_attributes API.
|
24538
24538
|
"""
|
24539
24539
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24540
24540
|
required_arguments = []
|
@@ -24698,7 +24698,7 @@ class IdentityDomainsClient(object):
|
|
24698
24698
|
:rtype: :class:`~oci.response.Response`
|
24699
24699
|
|
24700
24700
|
:example:
|
24701
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24701
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_rules.py.html>`__ to see an example of how to use list_rules API.
|
24702
24702
|
"""
|
24703
24703
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24704
24704
|
required_arguments = []
|
@@ -24851,7 +24851,7 @@ class IdentityDomainsClient(object):
|
|
24851
24851
|
:rtype: :class:`~oci.response.Response`
|
24852
24852
|
|
24853
24853
|
:example:
|
24854
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24854
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_schemas.py.html>`__ to see an example of how to use list_schemas API.
|
24855
24855
|
"""
|
24856
24856
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24857
24857
|
required_arguments = []
|
@@ -24982,7 +24982,7 @@ class IdentityDomainsClient(object):
|
|
24982
24982
|
:rtype: :class:`~oci.response.Response`
|
24983
24983
|
|
24984
24984
|
:example:
|
24985
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
24985
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_security_question_settings.py.html>`__ to see an example of how to use list_security_question_settings API.
|
24986
24986
|
"""
|
24987
24987
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
24988
24988
|
required_arguments = []
|
@@ -25129,7 +25129,7 @@ class IdentityDomainsClient(object):
|
|
25129
25129
|
:rtype: :class:`~oci.response.Response`
|
25130
25130
|
|
25131
25131
|
:example:
|
25132
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25132
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_security_questions.py.html>`__ to see an example of how to use list_security_questions API.
|
25133
25133
|
"""
|
25134
25134
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25135
25135
|
required_arguments = []
|
@@ -25293,7 +25293,7 @@ class IdentityDomainsClient(object):
|
|
25293
25293
|
:rtype: :class:`~oci.response.Response`
|
25294
25294
|
|
25295
25295
|
:example:
|
25296
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25296
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_self_registration_profiles.py.html>`__ to see an example of how to use list_self_registration_profiles API.
|
25297
25297
|
"""
|
25298
25298
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25299
25299
|
required_arguments = []
|
@@ -25438,7 +25438,7 @@ class IdentityDomainsClient(object):
|
|
25438
25438
|
:rtype: :class:`~oci.response.Response`
|
25439
25439
|
|
25440
25440
|
:example:
|
25441
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25441
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_settings.py.html>`__ to see an example of how to use list_settings API.
|
25442
25442
|
"""
|
25443
25443
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25444
25444
|
required_arguments = []
|
@@ -25585,7 +25585,7 @@ class IdentityDomainsClient(object):
|
|
25585
25585
|
:rtype: :class:`~oci.response.Response`
|
25586
25586
|
|
25587
25587
|
:example:
|
25588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25588
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_smtp_credentials.py.html>`__ to see an example of how to use list_smtp_credentials API.
|
25589
25589
|
"""
|
25590
25590
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25591
25591
|
required_arguments = []
|
@@ -25741,7 +25741,7 @@ class IdentityDomainsClient(object):
|
|
25741
25741
|
:rtype: :class:`~oci.response.Response`
|
25742
25742
|
|
25743
25743
|
:example:
|
25744
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25744
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_social_identity_providers.py.html>`__ to see an example of how to use list_social_identity_providers API.
|
25745
25745
|
"""
|
25746
25746
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25747
25747
|
required_arguments = []
|
@@ -25874,7 +25874,7 @@ class IdentityDomainsClient(object):
|
|
25874
25874
|
:rtype: :class:`~oci.response.Response`
|
25875
25875
|
|
25876
25876
|
:example:
|
25877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
25877
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_user_attributes_settings.py.html>`__ to see an example of how to use list_user_attributes_settings API.
|
25878
25878
|
"""
|
25879
25879
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
25880
25880
|
required_arguments = []
|
@@ -26021,7 +26021,7 @@ class IdentityDomainsClient(object):
|
|
26021
26021
|
:rtype: :class:`~oci.response.Response`
|
26022
26022
|
|
26023
26023
|
:example:
|
26024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_user_db_credentials.py.html>`__ to see an example of how to use list_user_db_credentials API.
|
26025
26025
|
"""
|
26026
26026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26027
26027
|
required_arguments = []
|
@@ -26185,7 +26185,7 @@ class IdentityDomainsClient(object):
|
|
26185
26185
|
:rtype: :class:`~oci.response.Response`
|
26186
26186
|
|
26187
26187
|
:example:
|
26188
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26188
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/list_users.py.html>`__ to see an example of how to use list_users API.
|
26189
26189
|
"""
|
26190
26190
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26191
26191
|
required_arguments = []
|
@@ -26345,7 +26345,7 @@ class IdentityDomainsClient(object):
|
|
26345
26345
|
:rtype: :class:`~oci.response.Response`
|
26346
26346
|
|
26347
26347
|
:example:
|
26348
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26348
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_account_recovery_setting.py.html>`__ to see an example of how to use patch_account_recovery_setting API.
|
26349
26349
|
"""
|
26350
26350
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26351
26351
|
required_arguments = ['accountRecoverySettingId']
|
@@ -26501,7 +26501,7 @@ class IdentityDomainsClient(object):
|
|
26501
26501
|
:rtype: :class:`~oci.response.Response`
|
26502
26502
|
|
26503
26503
|
:example:
|
26504
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26504
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_api_key.py.html>`__ to see an example of how to use patch_api_key API.
|
26505
26505
|
"""
|
26506
26506
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26507
26507
|
required_arguments = ['apiKeyId']
|
@@ -26657,7 +26657,7 @@ class IdentityDomainsClient(object):
|
|
26657
26657
|
:rtype: :class:`~oci.response.Response`
|
26658
26658
|
|
26659
26659
|
:example:
|
26660
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26660
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_app.py.html>`__ to see an example of how to use patch_app API.
|
26661
26661
|
"""
|
26662
26662
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26663
26663
|
required_arguments = ['appId']
|
@@ -26813,7 +26813,7 @@ class IdentityDomainsClient(object):
|
|
26813
26813
|
:rtype: :class:`~oci.response.Response`
|
26814
26814
|
|
26815
26815
|
:example:
|
26816
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26816
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_app_role.py.html>`__ to see an example of how to use patch_app_role API.
|
26817
26817
|
"""
|
26818
26818
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26819
26819
|
required_arguments = ['appRoleId']
|
@@ -26969,7 +26969,7 @@ class IdentityDomainsClient(object):
|
|
26969
26969
|
:rtype: :class:`~oci.response.Response`
|
26970
26970
|
|
26971
26971
|
:example:
|
26972
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
26972
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_approval_workflow.py.html>`__ to see an example of how to use patch_approval_workflow API.
|
26973
26973
|
"""
|
26974
26974
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
26975
26975
|
required_arguments = ['approvalWorkflowId']
|
@@ -27125,7 +27125,7 @@ class IdentityDomainsClient(object):
|
|
27125
27125
|
:rtype: :class:`~oci.response.Response`
|
27126
27126
|
|
27127
27127
|
:example:
|
27128
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27128
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_approval_workflow_step.py.html>`__ to see an example of how to use patch_approval_workflow_step API.
|
27129
27129
|
"""
|
27130
27130
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27131
27131
|
required_arguments = ['approvalWorkflowStepId']
|
@@ -27281,7 +27281,7 @@ class IdentityDomainsClient(object):
|
|
27281
27281
|
:rtype: :class:`~oci.response.Response`
|
27282
27282
|
|
27283
27283
|
:example:
|
27284
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27284
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_auth_token.py.html>`__ to see an example of how to use patch_auth_token API.
|
27285
27285
|
"""
|
27286
27286
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27287
27287
|
required_arguments = ['authTokenId']
|
@@ -27437,7 +27437,7 @@ class IdentityDomainsClient(object):
|
|
27437
27437
|
:rtype: :class:`~oci.response.Response`
|
27438
27438
|
|
27439
27439
|
:example:
|
27440
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27440
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_cloud_gate.py.html>`__ to see an example of how to use patch_cloud_gate API.
|
27441
27441
|
"""
|
27442
27442
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27443
27443
|
required_arguments = ['cloudGateId']
|
@@ -27593,7 +27593,7 @@ class IdentityDomainsClient(object):
|
|
27593
27593
|
:rtype: :class:`~oci.response.Response`
|
27594
27594
|
|
27595
27595
|
:example:
|
27596
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27596
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_cloud_gate_mapping.py.html>`__ to see an example of how to use patch_cloud_gate_mapping API.
|
27597
27597
|
"""
|
27598
27598
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27599
27599
|
required_arguments = ['cloudGateMappingId']
|
@@ -27749,7 +27749,7 @@ class IdentityDomainsClient(object):
|
|
27749
27749
|
:rtype: :class:`~oci.response.Response`
|
27750
27750
|
|
27751
27751
|
:example:
|
27752
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27752
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_cloud_gate_server.py.html>`__ to see an example of how to use patch_cloud_gate_server API.
|
27753
27753
|
"""
|
27754
27754
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27755
27755
|
required_arguments = ['cloudGateServerId']
|
@@ -27907,7 +27907,7 @@ class IdentityDomainsClient(object):
|
|
27907
27907
|
:rtype: :class:`~oci.response.Response`
|
27908
27908
|
|
27909
27909
|
:example:
|
27910
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
27910
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_condition.py.html>`__ to see an example of how to use patch_condition API.
|
27911
27911
|
"""
|
27912
27912
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
27913
27913
|
required_arguments = ['conditionId']
|
@@ -28063,7 +28063,7 @@ class IdentityDomainsClient(object):
|
|
28063
28063
|
:rtype: :class:`~oci.response.Response`
|
28064
28064
|
|
28065
28065
|
:example:
|
28066
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28066
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_customer_secret_key.py.html>`__ to see an example of how to use patch_customer_secret_key API.
|
28067
28067
|
"""
|
28068
28068
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28069
28069
|
required_arguments = ['customerSecretKeyId']
|
@@ -28219,7 +28219,7 @@ class IdentityDomainsClient(object):
|
|
28219
28219
|
:rtype: :class:`~oci.response.Response`
|
28220
28220
|
|
28221
28221
|
:example:
|
28222
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28222
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_dynamic_resource_group.py.html>`__ to see an example of how to use patch_dynamic_resource_group API.
|
28223
28223
|
"""
|
28224
28224
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28225
28225
|
required_arguments = ['dynamicResourceGroupId']
|
@@ -28375,7 +28375,7 @@ class IdentityDomainsClient(object):
|
|
28375
28375
|
:rtype: :class:`~oci.response.Response`
|
28376
28376
|
|
28377
28377
|
:example:
|
28378
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_grant.py.html>`__ to see an example of how to use patch_grant API.
|
28379
28379
|
"""
|
28380
28380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28381
28381
|
required_arguments = ['grantId']
|
@@ -28531,7 +28531,7 @@ class IdentityDomainsClient(object):
|
|
28531
28531
|
:rtype: :class:`~oci.response.Response`
|
28532
28532
|
|
28533
28533
|
:example:
|
28534
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28534
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_group.py.html>`__ to see an example of how to use patch_group API.
|
28535
28535
|
"""
|
28536
28536
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28537
28537
|
required_arguments = ['groupId']
|
@@ -28689,7 +28689,7 @@ class IdentityDomainsClient(object):
|
|
28689
28689
|
:rtype: :class:`~oci.response.Response`
|
28690
28690
|
|
28691
28691
|
:example:
|
28692
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28692
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_identity_propagation_trust.py.html>`__ to see an example of how to use patch_identity_propagation_trust API.
|
28693
28693
|
"""
|
28694
28694
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28695
28695
|
required_arguments = ['identityPropagationTrustId']
|
@@ -28845,7 +28845,7 @@ class IdentityDomainsClient(object):
|
|
28845
28845
|
:rtype: :class:`~oci.response.Response`
|
28846
28846
|
|
28847
28847
|
:example:
|
28848
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
28848
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_identity_provider.py.html>`__ to see an example of how to use patch_identity_provider API.
|
28849
28849
|
"""
|
28850
28850
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
28851
28851
|
required_arguments = ['identityProviderId']
|
@@ -29001,7 +29001,7 @@ class IdentityDomainsClient(object):
|
|
29001
29001
|
:rtype: :class:`~oci.response.Response`
|
29002
29002
|
|
29003
29003
|
:example:
|
29004
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29004
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_identity_setting.py.html>`__ to see an example of how to use patch_identity_setting API.
|
29005
29005
|
"""
|
29006
29006
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29007
29007
|
required_arguments = ['identitySettingId']
|
@@ -29157,7 +29157,7 @@ class IdentityDomainsClient(object):
|
|
29157
29157
|
:rtype: :class:`~oci.response.Response`
|
29158
29158
|
|
29159
29159
|
:example:
|
29160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_kmsi_setting.py.html>`__ to see an example of how to use patch_kmsi_setting API.
|
29161
29161
|
"""
|
29162
29162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29163
29163
|
required_arguments = ['kmsiSettingId']
|
@@ -29310,7 +29310,7 @@ class IdentityDomainsClient(object):
|
|
29310
29310
|
:rtype: :class:`~oci.response.Response`
|
29311
29311
|
|
29312
29312
|
:example:
|
29313
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29313
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_me.py.html>`__ to see an example of how to use patch_me API.
|
29314
29314
|
"""
|
29315
29315
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29316
29316
|
required_arguments = []
|
@@ -29446,7 +29446,7 @@ class IdentityDomainsClient(object):
|
|
29446
29446
|
:rtype: :class:`~oci.response.Response`
|
29447
29447
|
|
29448
29448
|
:example:
|
29449
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29449
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_api_key.py.html>`__ to see an example of how to use patch_my_api_key API.
|
29450
29450
|
"""
|
29451
29451
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29452
29452
|
required_arguments = ['myApiKeyId']
|
@@ -29576,7 +29576,7 @@ class IdentityDomainsClient(object):
|
|
29576
29576
|
:rtype: :class:`~oci.response.Response`
|
29577
29577
|
|
29578
29578
|
:example:
|
29579
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29579
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_auth_token.py.html>`__ to see an example of how to use patch_my_auth_token API.
|
29580
29580
|
"""
|
29581
29581
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29582
29582
|
required_arguments = ['myAuthTokenId']
|
@@ -29706,7 +29706,7 @@ class IdentityDomainsClient(object):
|
|
29706
29706
|
:rtype: :class:`~oci.response.Response`
|
29707
29707
|
|
29708
29708
|
:example:
|
29709
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29709
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_customer_secret_key.py.html>`__ to see an example of how to use patch_my_customer_secret_key API.
|
29710
29710
|
"""
|
29711
29711
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29712
29712
|
required_arguments = ['myCustomerSecretKeyId']
|
@@ -29844,7 +29844,7 @@ class IdentityDomainsClient(object):
|
|
29844
29844
|
:rtype: :class:`~oci.response.Response`
|
29845
29845
|
|
29846
29846
|
:example:
|
29847
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29847
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_device.py.html>`__ to see an example of how to use patch_my_device API.
|
29848
29848
|
"""
|
29849
29849
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29850
29850
|
required_arguments = ['myDeviceId']
|
@@ -29992,7 +29992,7 @@ class IdentityDomainsClient(object):
|
|
29992
29992
|
:rtype: :class:`~oci.response.Response`
|
29993
29993
|
|
29994
29994
|
:example:
|
29995
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
29995
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_o_auth2_client_credential.py.html>`__ to see an example of how to use patch_my_o_auth2_client_credential API.
|
29996
29996
|
"""
|
29997
29997
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
29998
29998
|
required_arguments = ['myOAuth2ClientCredentialId']
|
@@ -30122,7 +30122,7 @@ class IdentityDomainsClient(object):
|
|
30122
30122
|
:rtype: :class:`~oci.response.Response`
|
30123
30123
|
|
30124
30124
|
:example:
|
30125
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30125
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_pending_approval.py.html>`__ to see an example of how to use patch_my_pending_approval API.
|
30126
30126
|
"""
|
30127
30127
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30128
30128
|
required_arguments = ['myPendingApprovalId']
|
@@ -30260,7 +30260,7 @@ class IdentityDomainsClient(object):
|
|
30260
30260
|
:rtype: :class:`~oci.response.Response`
|
30261
30261
|
|
30262
30262
|
:example:
|
30263
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30263
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_request.py.html>`__ to see an example of how to use patch_my_request API.
|
30264
30264
|
"""
|
30265
30265
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30266
30266
|
required_arguments = ['myRequestId']
|
@@ -30408,7 +30408,7 @@ class IdentityDomainsClient(object):
|
|
30408
30408
|
:rtype: :class:`~oci.response.Response`
|
30409
30409
|
|
30410
30410
|
:example:
|
30411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_my_smtp_credential.py.html>`__ to see an example of how to use patch_my_smtp_credential API.
|
30412
30412
|
"""
|
30413
30413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30414
30414
|
required_arguments = ['mySmtpCredentialId']
|
@@ -30546,7 +30546,7 @@ class IdentityDomainsClient(object):
|
|
30546
30546
|
:rtype: :class:`~oci.response.Response`
|
30547
30547
|
|
30548
30548
|
:example:
|
30549
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30549
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_network_perimeter.py.html>`__ to see an example of how to use patch_network_perimeter API.
|
30550
30550
|
"""
|
30551
30551
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30552
30552
|
required_arguments = ['networkPerimeterId']
|
@@ -30702,7 +30702,7 @@ class IdentityDomainsClient(object):
|
|
30702
30702
|
:rtype: :class:`~oci.response.Response`
|
30703
30703
|
|
30704
30704
|
:example:
|
30705
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30705
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_o_auth2_client_credential.py.html>`__ to see an example of how to use patch_o_auth2_client_credential API.
|
30706
30706
|
"""
|
30707
30707
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30708
30708
|
required_arguments = ['oAuth2ClientCredentialId']
|
@@ -30858,7 +30858,7 @@ class IdentityDomainsClient(object):
|
|
30858
30858
|
:rtype: :class:`~oci.response.Response`
|
30859
30859
|
|
30860
30860
|
:example:
|
30861
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
30861
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_password_policy.py.html>`__ to see an example of how to use patch_password_policy API.
|
30862
30862
|
"""
|
30863
30863
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
30864
30864
|
required_arguments = ['passwordPolicyId']
|
@@ -31016,7 +31016,7 @@ class IdentityDomainsClient(object):
|
|
31016
31016
|
:rtype: :class:`~oci.response.Response`
|
31017
31017
|
|
31018
31018
|
:example:
|
31019
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31019
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_policy.py.html>`__ to see an example of how to use patch_policy API.
|
31020
31020
|
"""
|
31021
31021
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31022
31022
|
required_arguments = ['policyId']
|
@@ -31174,7 +31174,7 @@ class IdentityDomainsClient(object):
|
|
31174
31174
|
:rtype: :class:`~oci.response.Response`
|
31175
31175
|
|
31176
31176
|
:example:
|
31177
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31177
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_rule.py.html>`__ to see an example of how to use patch_rule API.
|
31178
31178
|
"""
|
31179
31179
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31180
31180
|
required_arguments = ['ruleId']
|
@@ -31322,7 +31322,7 @@ class IdentityDomainsClient(object):
|
|
31322
31322
|
:rtype: :class:`~oci.response.Response`
|
31323
31323
|
|
31324
31324
|
:example:
|
31325
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31325
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_schema.py.html>`__ to see an example of how to use patch_schema API.
|
31326
31326
|
"""
|
31327
31327
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31328
31328
|
required_arguments = ['schemaId']
|
@@ -31460,7 +31460,7 @@ class IdentityDomainsClient(object):
|
|
31460
31460
|
:rtype: :class:`~oci.response.Response`
|
31461
31461
|
|
31462
31462
|
:example:
|
31463
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31463
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_security_question.py.html>`__ to see an example of how to use patch_security_question API.
|
31464
31464
|
"""
|
31465
31465
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31466
31466
|
required_arguments = ['securityQuestionId']
|
@@ -31616,7 +31616,7 @@ class IdentityDomainsClient(object):
|
|
31616
31616
|
:rtype: :class:`~oci.response.Response`
|
31617
31617
|
|
31618
31618
|
:example:
|
31619
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31619
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_security_question_setting.py.html>`__ to see an example of how to use patch_security_question_setting API.
|
31620
31620
|
"""
|
31621
31621
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31622
31622
|
required_arguments = ['securityQuestionSettingId']
|
@@ -31772,7 +31772,7 @@ class IdentityDomainsClient(object):
|
|
31772
31772
|
:rtype: :class:`~oci.response.Response`
|
31773
31773
|
|
31774
31774
|
:example:
|
31775
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31775
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_self_registration_profile.py.html>`__ to see an example of how to use patch_self_registration_profile API.
|
31776
31776
|
"""
|
31777
31777
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31778
31778
|
required_arguments = ['selfRegistrationProfileId']
|
@@ -31928,7 +31928,7 @@ class IdentityDomainsClient(object):
|
|
31928
31928
|
:rtype: :class:`~oci.response.Response`
|
31929
31929
|
|
31930
31930
|
:example:
|
31931
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
31931
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_setting.py.html>`__ to see an example of how to use patch_setting API.
|
31932
31932
|
"""
|
31933
31933
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
31934
31934
|
required_arguments = ['settingId']
|
@@ -32084,7 +32084,7 @@ class IdentityDomainsClient(object):
|
|
32084
32084
|
:rtype: :class:`~oci.response.Response`
|
32085
32085
|
|
32086
32086
|
:example:
|
32087
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32087
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_smtp_credential.py.html>`__ to see an example of how to use patch_smtp_credential API.
|
32088
32088
|
"""
|
32089
32089
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32090
32090
|
required_arguments = ['smtpCredentialId']
|
@@ -32234,7 +32234,7 @@ class IdentityDomainsClient(object):
|
|
32234
32234
|
:rtype: :class:`~oci.response.Response`
|
32235
32235
|
|
32236
32236
|
:example:
|
32237
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32237
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_social_identity_provider.py.html>`__ to see an example of how to use patch_social_identity_provider API.
|
32238
32238
|
"""
|
32239
32239
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32240
32240
|
required_arguments = ['socialIdentityProviderId']
|
@@ -32372,7 +32372,7 @@ class IdentityDomainsClient(object):
|
|
32372
32372
|
:rtype: :class:`~oci.response.Response`
|
32373
32373
|
|
32374
32374
|
:example:
|
32375
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32375
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_user.py.html>`__ to see an example of how to use patch_user API.
|
32376
32376
|
"""
|
32377
32377
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32378
32378
|
required_arguments = ['userId']
|
@@ -32528,7 +32528,7 @@ class IdentityDomainsClient(object):
|
|
32528
32528
|
:rtype: :class:`~oci.response.Response`
|
32529
32529
|
|
32530
32530
|
:example:
|
32531
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32531
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/patch_user_attributes_setting.py.html>`__ to see an example of how to use patch_user_attributes_setting API.
|
32532
32532
|
"""
|
32533
32533
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32534
32534
|
required_arguments = ['userAttributesSettingId']
|
@@ -32684,7 +32684,7 @@ class IdentityDomainsClient(object):
|
|
32684
32684
|
:rtype: :class:`~oci.response.Response`
|
32685
32685
|
|
32686
32686
|
:example:
|
32687
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32687
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_account_recovery_setting.py.html>`__ to see an example of how to use put_account_recovery_setting API.
|
32688
32688
|
"""
|
32689
32689
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32690
32690
|
required_arguments = ['accountRecoverySettingId']
|
@@ -32840,7 +32840,7 @@ class IdentityDomainsClient(object):
|
|
32840
32840
|
:rtype: :class:`~oci.response.Response`
|
32841
32841
|
|
32842
32842
|
:example:
|
32843
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32843
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_app.py.html>`__ to see an example of how to use put_app API.
|
32844
32844
|
"""
|
32845
32845
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
32846
32846
|
required_arguments = ['appId']
|
@@ -32996,7 +32996,7 @@ class IdentityDomainsClient(object):
|
|
32996
32996
|
:rtype: :class:`~oci.response.Response`
|
32997
32997
|
|
32998
32998
|
:example:
|
32999
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
32999
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_app_status_changer.py.html>`__ to see an example of how to use put_app_status_changer API.
|
33000
33000
|
"""
|
33001
33001
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33002
33002
|
required_arguments = ['appStatusChangerId']
|
@@ -33152,7 +33152,7 @@ class IdentityDomainsClient(object):
|
|
33152
33152
|
:rtype: :class:`~oci.response.Response`
|
33153
33153
|
|
33154
33154
|
:example:
|
33155
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33155
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_approval_workflow.py.html>`__ to see an example of how to use put_approval_workflow API.
|
33156
33156
|
"""
|
33157
33157
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33158
33158
|
required_arguments = ['approvalWorkflowId']
|
@@ -33308,7 +33308,7 @@ class IdentityDomainsClient(object):
|
|
33308
33308
|
:rtype: :class:`~oci.response.Response`
|
33309
33309
|
|
33310
33310
|
:example:
|
33311
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33311
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_authentication_factor_setting.py.html>`__ to see an example of how to use put_authentication_factor_setting API.
|
33312
33312
|
"""
|
33313
33313
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33314
33314
|
required_arguments = ['authenticationFactorSettingId']
|
@@ -33464,7 +33464,7 @@ class IdentityDomainsClient(object):
|
|
33464
33464
|
:rtype: :class:`~oci.response.Response`
|
33465
33465
|
|
33466
33466
|
:example:
|
33467
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33467
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_cloud_gate.py.html>`__ to see an example of how to use put_cloud_gate API.
|
33468
33468
|
"""
|
33469
33469
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33470
33470
|
required_arguments = ['cloudGateId']
|
@@ -33620,7 +33620,7 @@ class IdentityDomainsClient(object):
|
|
33620
33620
|
:rtype: :class:`~oci.response.Response`
|
33621
33621
|
|
33622
33622
|
:example:
|
33623
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33623
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_cloud_gate_mapping.py.html>`__ to see an example of how to use put_cloud_gate_mapping API.
|
33624
33624
|
"""
|
33625
33625
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33626
33626
|
required_arguments = ['cloudGateMappingId']
|
@@ -33776,7 +33776,7 @@ class IdentityDomainsClient(object):
|
|
33776
33776
|
:rtype: :class:`~oci.response.Response`
|
33777
33777
|
|
33778
33778
|
:example:
|
33779
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33779
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_cloud_gate_server.py.html>`__ to see an example of how to use put_cloud_gate_server API.
|
33780
33780
|
"""
|
33781
33781
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33782
33782
|
required_arguments = ['cloudGateServerId']
|
@@ -33934,7 +33934,7 @@ class IdentityDomainsClient(object):
|
|
33934
33934
|
:rtype: :class:`~oci.response.Response`
|
33935
33935
|
|
33936
33936
|
:example:
|
33937
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
33937
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_condition.py.html>`__ to see an example of how to use put_condition API.
|
33938
33938
|
"""
|
33939
33939
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
33940
33940
|
required_arguments = ['conditionId']
|
@@ -34090,7 +34090,7 @@ class IdentityDomainsClient(object):
|
|
34090
34090
|
:rtype: :class:`~oci.response.Response`
|
34091
34091
|
|
34092
34092
|
:example:
|
34093
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34093
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_dynamic_resource_group.py.html>`__ to see an example of how to use put_dynamic_resource_group API.
|
34094
34094
|
"""
|
34095
34095
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34096
34096
|
required_arguments = ['dynamicResourceGroupId']
|
@@ -34246,7 +34246,7 @@ class IdentityDomainsClient(object):
|
|
34246
34246
|
:rtype: :class:`~oci.response.Response`
|
34247
34247
|
|
34248
34248
|
:example:
|
34249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_group.py.html>`__ to see an example of how to use put_group API.
|
34250
34250
|
"""
|
34251
34251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34252
34252
|
required_arguments = ['groupId']
|
@@ -34404,7 +34404,7 @@ class IdentityDomainsClient(object):
|
|
34404
34404
|
:rtype: :class:`~oci.response.Response`
|
34405
34405
|
|
34406
34406
|
:example:
|
34407
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34407
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_identity_propagation_trust.py.html>`__ to see an example of how to use put_identity_propagation_trust API.
|
34408
34408
|
"""
|
34409
34409
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34410
34410
|
required_arguments = ['identityPropagationTrustId']
|
@@ -34560,7 +34560,7 @@ class IdentityDomainsClient(object):
|
|
34560
34560
|
:rtype: :class:`~oci.response.Response`
|
34561
34561
|
|
34562
34562
|
:example:
|
34563
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34563
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_identity_provider.py.html>`__ to see an example of how to use put_identity_provider API.
|
34564
34564
|
"""
|
34565
34565
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34566
34566
|
required_arguments = ['identityProviderId']
|
@@ -34716,7 +34716,7 @@ class IdentityDomainsClient(object):
|
|
34716
34716
|
:rtype: :class:`~oci.response.Response`
|
34717
34717
|
|
34718
34718
|
:example:
|
34719
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34719
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_identity_setting.py.html>`__ to see an example of how to use put_identity_setting API.
|
34720
34720
|
"""
|
34721
34721
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34722
34722
|
required_arguments = ['identitySettingId']
|
@@ -34872,7 +34872,7 @@ class IdentityDomainsClient(object):
|
|
34872
34872
|
:rtype: :class:`~oci.response.Response`
|
34873
34873
|
|
34874
34874
|
:example:
|
34875
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
34875
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_kmsi_setting.py.html>`__ to see an example of how to use put_kmsi_setting API.
|
34876
34876
|
"""
|
34877
34877
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
34878
34878
|
required_arguments = ['kmsiSettingId']
|
@@ -35025,7 +35025,7 @@ class IdentityDomainsClient(object):
|
|
35025
35025
|
:rtype: :class:`~oci.response.Response`
|
35026
35026
|
|
35027
35027
|
:example:
|
35028
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35028
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_me.py.html>`__ to see an example of how to use put_me API.
|
35029
35029
|
"""
|
35030
35030
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35031
35031
|
required_arguments = []
|
@@ -35158,7 +35158,7 @@ class IdentityDomainsClient(object):
|
|
35158
35158
|
:rtype: :class:`~oci.response.Response`
|
35159
35159
|
|
35160
35160
|
:example:
|
35161
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35161
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_me_password_changer.py.html>`__ to see an example of how to use put_me_password_changer API.
|
35162
35162
|
"""
|
35163
35163
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35164
35164
|
required_arguments = []
|
@@ -35284,7 +35284,7 @@ class IdentityDomainsClient(object):
|
|
35284
35284
|
:rtype: :class:`~oci.response.Response`
|
35285
35285
|
|
35286
35286
|
:example:
|
35287
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35287
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_network_perimeter.py.html>`__ to see an example of how to use put_network_perimeter API.
|
35288
35288
|
"""
|
35289
35289
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35290
35290
|
required_arguments = ['networkPerimeterId']
|
@@ -35440,7 +35440,7 @@ class IdentityDomainsClient(object):
|
|
35440
35440
|
:rtype: :class:`~oci.response.Response`
|
35441
35441
|
|
35442
35442
|
:example:
|
35443
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35443
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_notification_setting.py.html>`__ to see an example of how to use put_notification_setting API.
|
35444
35444
|
"""
|
35445
35445
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35446
35446
|
required_arguments = ['notificationSettingId']
|
@@ -35596,7 +35596,7 @@ class IdentityDomainsClient(object):
|
|
35596
35596
|
:rtype: :class:`~oci.response.Response`
|
35597
35597
|
|
35598
35598
|
:example:
|
35599
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35599
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_password_policy.py.html>`__ to see an example of how to use put_password_policy API.
|
35600
35600
|
"""
|
35601
35601
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35602
35602
|
required_arguments = ['passwordPolicyId']
|
@@ -35754,7 +35754,7 @@ class IdentityDomainsClient(object):
|
|
35754
35754
|
:rtype: :class:`~oci.response.Response`
|
35755
35755
|
|
35756
35756
|
:example:
|
35757
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35757
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_policy.py.html>`__ to see an example of how to use put_policy API.
|
35758
35758
|
"""
|
35759
35759
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35760
35760
|
required_arguments = ['policyId']
|
@@ -35912,7 +35912,7 @@ class IdentityDomainsClient(object):
|
|
35912
35912
|
:rtype: :class:`~oci.response.Response`
|
35913
35913
|
|
35914
35914
|
:example:
|
35915
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
35915
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_rule.py.html>`__ to see an example of how to use put_rule API.
|
35916
35916
|
"""
|
35917
35917
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
35918
35918
|
required_arguments = ['ruleId']
|
@@ -36060,7 +36060,7 @@ class IdentityDomainsClient(object):
|
|
36060
36060
|
:rtype: :class:`~oci.response.Response`
|
36061
36061
|
|
36062
36062
|
:example:
|
36063
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36063
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_schema.py.html>`__ to see an example of how to use put_schema API.
|
36064
36064
|
"""
|
36065
36065
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36066
36066
|
required_arguments = ['schemaId']
|
@@ -36198,7 +36198,7 @@ class IdentityDomainsClient(object):
|
|
36198
36198
|
:rtype: :class:`~oci.response.Response`
|
36199
36199
|
|
36200
36200
|
:example:
|
36201
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36201
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_security_question_setting.py.html>`__ to see an example of how to use put_security_question_setting API.
|
36202
36202
|
"""
|
36203
36203
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36204
36204
|
required_arguments = ['securityQuestionSettingId']
|
@@ -36354,7 +36354,7 @@ class IdentityDomainsClient(object):
|
|
36354
36354
|
:rtype: :class:`~oci.response.Response`
|
36355
36355
|
|
36356
36356
|
:example:
|
36357
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36357
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_self_registration_profile.py.html>`__ to see an example of how to use put_self_registration_profile API.
|
36358
36358
|
"""
|
36359
36359
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36360
36360
|
required_arguments = ['selfRegistrationProfileId']
|
@@ -36510,7 +36510,7 @@ class IdentityDomainsClient(object):
|
|
36510
36510
|
:rtype: :class:`~oci.response.Response`
|
36511
36511
|
|
36512
36512
|
:example:
|
36513
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36513
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_setting.py.html>`__ to see an example of how to use put_setting API.
|
36514
36514
|
"""
|
36515
36515
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36516
36516
|
required_arguments = ['settingId']
|
@@ -36660,7 +36660,7 @@ class IdentityDomainsClient(object):
|
|
36660
36660
|
:rtype: :class:`~oci.response.Response`
|
36661
36661
|
|
36662
36662
|
:example:
|
36663
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36663
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_social_identity_provider.py.html>`__ to see an example of how to use put_social_identity_provider API.
|
36664
36664
|
"""
|
36665
36665
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36666
36666
|
required_arguments = ['socialIdentityProviderId']
|
@@ -36798,7 +36798,7 @@ class IdentityDomainsClient(object):
|
|
36798
36798
|
:rtype: :class:`~oci.response.Response`
|
36799
36799
|
|
36800
36800
|
:example:
|
36801
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36801
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_user.py.html>`__ to see an example of how to use put_user API.
|
36802
36802
|
"""
|
36803
36803
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36804
36804
|
required_arguments = ['userId']
|
@@ -36946,7 +36946,7 @@ class IdentityDomainsClient(object):
|
|
36946
36946
|
:rtype: :class:`~oci.response.Response`
|
36947
36947
|
|
36948
36948
|
:example:
|
36949
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
36949
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_user_capabilities_changer.py.html>`__ to see an example of how to use put_user_capabilities_changer API.
|
36950
36950
|
"""
|
36951
36951
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
36952
36952
|
required_arguments = ['userCapabilitiesChangerId']
|
@@ -37076,7 +37076,7 @@ class IdentityDomainsClient(object):
|
|
37076
37076
|
:rtype: :class:`~oci.response.Response`
|
37077
37077
|
|
37078
37078
|
:example:
|
37079
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37079
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_user_password_changer.py.html>`__ to see an example of how to use put_user_password_changer API.
|
37080
37080
|
"""
|
37081
37081
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37082
37082
|
required_arguments = ['userPasswordChangerId']
|
@@ -37206,7 +37206,7 @@ class IdentityDomainsClient(object):
|
|
37206
37206
|
:rtype: :class:`~oci.response.Response`
|
37207
37207
|
|
37208
37208
|
:example:
|
37209
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37209
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_user_password_resetter.py.html>`__ to see an example of how to use put_user_password_resetter API.
|
37210
37210
|
"""
|
37211
37211
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37212
37212
|
required_arguments = ['userPasswordResetterId']
|
@@ -37344,7 +37344,7 @@ class IdentityDomainsClient(object):
|
|
37344
37344
|
:rtype: :class:`~oci.response.Response`
|
37345
37345
|
|
37346
37346
|
:example:
|
37347
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37347
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/put_user_status_changer.py.html>`__ to see an example of how to use put_user_status_changer API.
|
37348
37348
|
"""
|
37349
37349
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37350
37350
|
required_arguments = ['userStatusChangerId']
|
@@ -37480,7 +37480,7 @@ class IdentityDomainsClient(object):
|
|
37480
37480
|
:rtype: :class:`~oci.response.Response`
|
37481
37481
|
|
37482
37482
|
:example:
|
37483
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37483
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_account_mgmt_infos.py.html>`__ to see an example of how to use search_account_mgmt_infos API.
|
37484
37484
|
"""
|
37485
37485
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37486
37486
|
required_arguments = []
|
@@ -37594,7 +37594,7 @@ class IdentityDomainsClient(object):
|
|
37594
37594
|
:rtype: :class:`~oci.response.Response`
|
37595
37595
|
|
37596
37596
|
:example:
|
37597
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37597
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_api_keys.py.html>`__ to see an example of how to use search_api_keys API.
|
37598
37598
|
"""
|
37599
37599
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37600
37600
|
required_arguments = []
|
@@ -37708,7 +37708,7 @@ class IdentityDomainsClient(object):
|
|
37708
37708
|
:rtype: :class:`~oci.response.Response`
|
37709
37709
|
|
37710
37710
|
:example:
|
37711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_app_roles.py.html>`__ to see an example of how to use search_app_roles API.
|
37712
37712
|
"""
|
37713
37713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37714
37714
|
required_arguments = []
|
@@ -37822,7 +37822,7 @@ class IdentityDomainsClient(object):
|
|
37822
37822
|
:rtype: :class:`~oci.response.Response`
|
37823
37823
|
|
37824
37824
|
:example:
|
37825
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37825
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_apps.py.html>`__ to see an example of how to use search_apps API.
|
37826
37826
|
"""
|
37827
37827
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37828
37828
|
required_arguments = []
|
@@ -37936,7 +37936,7 @@ class IdentityDomainsClient(object):
|
|
37936
37936
|
:rtype: :class:`~oci.response.Response`
|
37937
37937
|
|
37938
37938
|
:example:
|
37939
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
37939
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_auth_tokens.py.html>`__ to see an example of how to use search_auth_tokens API.
|
37940
37940
|
"""
|
37941
37941
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
37942
37942
|
required_arguments = []
|
@@ -38050,7 +38050,7 @@ class IdentityDomainsClient(object):
|
|
38050
38050
|
:rtype: :class:`~oci.response.Response`
|
38051
38051
|
|
38052
38052
|
:example:
|
38053
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_authentication_factor_settings.py.html>`__ to see an example of how to use search_authentication_factor_settings API.
|
38054
38054
|
"""
|
38055
38055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38056
38056
|
required_arguments = []
|
@@ -38164,7 +38164,7 @@ class IdentityDomainsClient(object):
|
|
38164
38164
|
:rtype: :class:`~oci.response.Response`
|
38165
38165
|
|
38166
38166
|
:example:
|
38167
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38167
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_cloud_gate_mappings.py.html>`__ to see an example of how to use search_cloud_gate_mappings API.
|
38168
38168
|
"""
|
38169
38169
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38170
38170
|
required_arguments = []
|
@@ -38278,7 +38278,7 @@ class IdentityDomainsClient(object):
|
|
38278
38278
|
:rtype: :class:`~oci.response.Response`
|
38279
38279
|
|
38280
38280
|
:example:
|
38281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_cloud_gate_servers.py.html>`__ to see an example of how to use search_cloud_gate_servers API.
|
38282
38282
|
"""
|
38283
38283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38284
38284
|
required_arguments = []
|
@@ -38392,7 +38392,7 @@ class IdentityDomainsClient(object):
|
|
38392
38392
|
:rtype: :class:`~oci.response.Response`
|
38393
38393
|
|
38394
38394
|
:example:
|
38395
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38395
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_cloud_gates.py.html>`__ to see an example of how to use search_cloud_gates API.
|
38396
38396
|
"""
|
38397
38397
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38398
38398
|
required_arguments = []
|
@@ -38506,7 +38506,7 @@ class IdentityDomainsClient(object):
|
|
38506
38506
|
:rtype: :class:`~oci.response.Response`
|
38507
38507
|
|
38508
38508
|
:example:
|
38509
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38509
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_conditions.py.html>`__ to see an example of how to use search_conditions API.
|
38510
38510
|
"""
|
38511
38511
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38512
38512
|
required_arguments = []
|
@@ -38620,7 +38620,7 @@ class IdentityDomainsClient(object):
|
|
38620
38620
|
:rtype: :class:`~oci.response.Response`
|
38621
38621
|
|
38622
38622
|
:example:
|
38623
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38623
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_customer_secret_keys.py.html>`__ to see an example of how to use search_customer_secret_keys API.
|
38624
38624
|
"""
|
38625
38625
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38626
38626
|
required_arguments = []
|
@@ -38734,7 +38734,7 @@ class IdentityDomainsClient(object):
|
|
38734
38734
|
:rtype: :class:`~oci.response.Response`
|
38735
38735
|
|
38736
38736
|
:example:
|
38737
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38737
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_dynamic_resource_groups.py.html>`__ to see an example of how to use search_dynamic_resource_groups API.
|
38738
38738
|
"""
|
38739
38739
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38740
38740
|
required_arguments = []
|
@@ -38848,7 +38848,7 @@ class IdentityDomainsClient(object):
|
|
38848
38848
|
:rtype: :class:`~oci.response.Response`
|
38849
38849
|
|
38850
38850
|
:example:
|
38851
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38851
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_grants.py.html>`__ to see an example of how to use search_grants API.
|
38852
38852
|
"""
|
38853
38853
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38854
38854
|
required_arguments = []
|
@@ -38962,7 +38962,7 @@ class IdentityDomainsClient(object):
|
|
38962
38962
|
:rtype: :class:`~oci.response.Response`
|
38963
38963
|
|
38964
38964
|
:example:
|
38965
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
38965
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_groups.py.html>`__ to see an example of how to use search_groups API.
|
38966
38966
|
"""
|
38967
38967
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
38968
38968
|
required_arguments = []
|
@@ -39076,7 +39076,7 @@ class IdentityDomainsClient(object):
|
|
39076
39076
|
:rtype: :class:`~oci.response.Response`
|
39077
39077
|
|
39078
39078
|
:example:
|
39079
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39079
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_identity_providers.py.html>`__ to see an example of how to use search_identity_providers API.
|
39080
39080
|
"""
|
39081
39081
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39082
39082
|
required_arguments = []
|
@@ -39190,7 +39190,7 @@ class IdentityDomainsClient(object):
|
|
39190
39190
|
:rtype: :class:`~oci.response.Response`
|
39191
39191
|
|
39192
39192
|
:example:
|
39193
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39193
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_identity_settings.py.html>`__ to see an example of how to use search_identity_settings API.
|
39194
39194
|
"""
|
39195
39195
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39196
39196
|
required_arguments = []
|
@@ -39304,7 +39304,7 @@ class IdentityDomainsClient(object):
|
|
39304
39304
|
:rtype: :class:`~oci.response.Response`
|
39305
39305
|
|
39306
39306
|
:example:
|
39307
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39307
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_kmsi_settings.py.html>`__ to see an example of how to use search_kmsi_settings API.
|
39308
39308
|
"""
|
39309
39309
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39310
39310
|
required_arguments = []
|
@@ -39418,7 +39418,7 @@ class IdentityDomainsClient(object):
|
|
39418
39418
|
:rtype: :class:`~oci.response.Response`
|
39419
39419
|
|
39420
39420
|
:example:
|
39421
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39421
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_my_apps.py.html>`__ to see an example of how to use search_my_apps API.
|
39422
39422
|
"""
|
39423
39423
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39424
39424
|
required_arguments = []
|
@@ -39532,7 +39532,7 @@ class IdentityDomainsClient(object):
|
|
39532
39532
|
:rtype: :class:`~oci.response.Response`
|
39533
39533
|
|
39534
39534
|
:example:
|
39535
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39535
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_my_groups.py.html>`__ to see an example of how to use search_my_groups API.
|
39536
39536
|
"""
|
39537
39537
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39538
39538
|
required_arguments = []
|
@@ -39646,7 +39646,7 @@ class IdentityDomainsClient(object):
|
|
39646
39646
|
:rtype: :class:`~oci.response.Response`
|
39647
39647
|
|
39648
39648
|
:example:
|
39649
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39649
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_my_requestable_groups.py.html>`__ to see an example of how to use search_my_requestable_groups API.
|
39650
39650
|
"""
|
39651
39651
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39652
39652
|
required_arguments = []
|
@@ -39760,7 +39760,7 @@ class IdentityDomainsClient(object):
|
|
39760
39760
|
:rtype: :class:`~oci.response.Response`
|
39761
39761
|
|
39762
39762
|
:example:
|
39763
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39763
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_my_requests.py.html>`__ to see an example of how to use search_my_requests API.
|
39764
39764
|
"""
|
39765
39765
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39766
39766
|
required_arguments = []
|
@@ -39874,7 +39874,7 @@ class IdentityDomainsClient(object):
|
|
39874
39874
|
:rtype: :class:`~oci.response.Response`
|
39875
39875
|
|
39876
39876
|
:example:
|
39877
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39877
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_network_perimeters.py.html>`__ to see an example of how to use search_network_perimeters API.
|
39878
39878
|
"""
|
39879
39879
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39880
39880
|
required_arguments = []
|
@@ -39988,7 +39988,7 @@ class IdentityDomainsClient(object):
|
|
39988
39988
|
:rtype: :class:`~oci.response.Response`
|
39989
39989
|
|
39990
39990
|
:example:
|
39991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
39991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_notification_settings.py.html>`__ to see an example of how to use search_notification_settings API.
|
39992
39992
|
"""
|
39993
39993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
39994
39994
|
required_arguments = []
|
@@ -40102,7 +40102,7 @@ class IdentityDomainsClient(object):
|
|
40102
40102
|
:rtype: :class:`~oci.response.Response`
|
40103
40103
|
|
40104
40104
|
:example:
|
40105
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40105
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_o_auth2_client_credentials.py.html>`__ to see an example of how to use search_o_auth2_client_credentials API.
|
40106
40106
|
"""
|
40107
40107
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40108
40108
|
required_arguments = []
|
@@ -40216,7 +40216,7 @@ class IdentityDomainsClient(object):
|
|
40216
40216
|
:rtype: :class:`~oci.response.Response`
|
40217
40217
|
|
40218
40218
|
:example:
|
40219
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40219
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_o_auth_client_certificates.py.html>`__ to see an example of how to use search_o_auth_client_certificates API.
|
40220
40220
|
"""
|
40221
40221
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40222
40222
|
required_arguments = []
|
@@ -40330,7 +40330,7 @@ class IdentityDomainsClient(object):
|
|
40330
40330
|
:rtype: :class:`~oci.response.Response`
|
40331
40331
|
|
40332
40332
|
:example:
|
40333
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40333
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_o_auth_partner_certificates.py.html>`__ to see an example of how to use search_o_auth_partner_certificates API.
|
40334
40334
|
"""
|
40335
40335
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40336
40336
|
required_arguments = []
|
@@ -40444,7 +40444,7 @@ class IdentityDomainsClient(object):
|
|
40444
40444
|
:rtype: :class:`~oci.response.Response`
|
40445
40445
|
|
40446
40446
|
:example:
|
40447
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40447
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_oci_console_sign_on_policy_consents.py.html>`__ to see an example of how to use search_oci_console_sign_on_policy_consents API.
|
40448
40448
|
"""
|
40449
40449
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40450
40450
|
required_arguments = []
|
@@ -40558,7 +40558,7 @@ class IdentityDomainsClient(object):
|
|
40558
40558
|
:rtype: :class:`~oci.response.Response`
|
40559
40559
|
|
40560
40560
|
:example:
|
40561
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40561
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_password_policies.py.html>`__ to see an example of how to use search_password_policies API.
|
40562
40562
|
"""
|
40563
40563
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40564
40564
|
required_arguments = []
|
@@ -40672,7 +40672,7 @@ class IdentityDomainsClient(object):
|
|
40672
40672
|
:rtype: :class:`~oci.response.Response`
|
40673
40673
|
|
40674
40674
|
:example:
|
40675
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40675
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_policies.py.html>`__ to see an example of how to use search_policies API.
|
40676
40676
|
"""
|
40677
40677
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40678
40678
|
required_arguments = []
|
@@ -40786,7 +40786,7 @@ class IdentityDomainsClient(object):
|
|
40786
40786
|
:rtype: :class:`~oci.response.Response`
|
40787
40787
|
|
40788
40788
|
:example:
|
40789
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40789
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_resource_type_schema_attributes.py.html>`__ to see an example of how to use search_resource_type_schema_attributes API.
|
40790
40790
|
"""
|
40791
40791
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40792
40792
|
required_arguments = []
|
@@ -40900,7 +40900,7 @@ class IdentityDomainsClient(object):
|
|
40900
40900
|
:rtype: :class:`~oci.response.Response`
|
40901
40901
|
|
40902
40902
|
:example:
|
40903
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
40903
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_rules.py.html>`__ to see an example of how to use search_rules API.
|
40904
40904
|
"""
|
40905
40905
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
40906
40906
|
required_arguments = []
|
@@ -41014,7 +41014,7 @@ class IdentityDomainsClient(object):
|
|
41014
41014
|
:rtype: :class:`~oci.response.Response`
|
41015
41015
|
|
41016
41016
|
:example:
|
41017
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41017
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_schemas.py.html>`__ to see an example of how to use search_schemas API.
|
41018
41018
|
"""
|
41019
41019
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41020
41020
|
required_arguments = []
|
@@ -41128,7 +41128,7 @@ class IdentityDomainsClient(object):
|
|
41128
41128
|
:rtype: :class:`~oci.response.Response`
|
41129
41129
|
|
41130
41130
|
:example:
|
41131
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41131
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_security_question_settings.py.html>`__ to see an example of how to use search_security_question_settings API.
|
41132
41132
|
"""
|
41133
41133
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41134
41134
|
required_arguments = []
|
@@ -41242,7 +41242,7 @@ class IdentityDomainsClient(object):
|
|
41242
41242
|
:rtype: :class:`~oci.response.Response`
|
41243
41243
|
|
41244
41244
|
:example:
|
41245
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_security_questions.py.html>`__ to see an example of how to use search_security_questions API.
|
41246
41246
|
"""
|
41247
41247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41248
41248
|
required_arguments = []
|
@@ -41356,7 +41356,7 @@ class IdentityDomainsClient(object):
|
|
41356
41356
|
:rtype: :class:`~oci.response.Response`
|
41357
41357
|
|
41358
41358
|
:example:
|
41359
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41359
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_self_registration_profiles.py.html>`__ to see an example of how to use search_self_registration_profiles API.
|
41360
41360
|
"""
|
41361
41361
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41362
41362
|
required_arguments = []
|
@@ -41470,7 +41470,7 @@ class IdentityDomainsClient(object):
|
|
41470
41470
|
:rtype: :class:`~oci.response.Response`
|
41471
41471
|
|
41472
41472
|
:example:
|
41473
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41473
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_settings.py.html>`__ to see an example of how to use search_settings API.
|
41474
41474
|
"""
|
41475
41475
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41476
41476
|
required_arguments = []
|
@@ -41584,7 +41584,7 @@ class IdentityDomainsClient(object):
|
|
41584
41584
|
:rtype: :class:`~oci.response.Response`
|
41585
41585
|
|
41586
41586
|
:example:
|
41587
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41587
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_smtp_credentials.py.html>`__ to see an example of how to use search_smtp_credentials API.
|
41588
41588
|
"""
|
41589
41589
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41590
41590
|
required_arguments = []
|
@@ -41698,7 +41698,7 @@ class IdentityDomainsClient(object):
|
|
41698
41698
|
:rtype: :class:`~oci.response.Response`
|
41699
41699
|
|
41700
41700
|
:example:
|
41701
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41701
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_social_identity_providers.py.html>`__ to see an example of how to use search_social_identity_providers API.
|
41702
41702
|
"""
|
41703
41703
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41704
41704
|
required_arguments = []
|
@@ -41812,7 +41812,7 @@ class IdentityDomainsClient(object):
|
|
41812
41812
|
:rtype: :class:`~oci.response.Response`
|
41813
41813
|
|
41814
41814
|
:example:
|
41815
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41815
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_user_attributes_settings.py.html>`__ to see an example of how to use search_user_attributes_settings API.
|
41816
41816
|
"""
|
41817
41817
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41818
41818
|
required_arguments = []
|
@@ -41926,7 +41926,7 @@ class IdentityDomainsClient(object):
|
|
41926
41926
|
:rtype: :class:`~oci.response.Response`
|
41927
41927
|
|
41928
41928
|
:example:
|
41929
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
41929
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_user_db_credentials.py.html>`__ to see an example of how to use search_user_db_credentials API.
|
41930
41930
|
"""
|
41931
41931
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
41932
41932
|
required_arguments = []
|
@@ -42040,7 +42040,7 @@ class IdentityDomainsClient(object):
|
|
42040
42040
|
:rtype: :class:`~oci.response.Response`
|
42041
42041
|
|
42042
42042
|
:example:
|
42043
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
42043
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/identitydomains/search_users.py.html>`__ to see an example of how to use search_users API.
|
42044
42044
|
"""
|
42045
42045
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
42046
42046
|
required_arguments = []
|