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
@@ -156,7 +156,7 @@ class DataIntegrationClient(object):
|
|
156
156
|
:rtype: :class:`~oci.response.Response`
|
157
157
|
|
158
158
|
:example:
|
159
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
159
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/change_compartment.py.html>`__ to see an example of how to use change_compartment API.
|
160
160
|
"""
|
161
161
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
162
162
|
required_arguments = ['workspaceId']
|
@@ -273,7 +273,7 @@ class DataIntegrationClient(object):
|
|
273
273
|
:rtype: :class:`~oci.response.Response`
|
274
274
|
|
275
275
|
:example:
|
276
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
276
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/change_dis_application_compartment.py.html>`__ to see an example of how to use change_dis_application_compartment API.
|
277
277
|
"""
|
278
278
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
279
279
|
required_arguments = ['workspaceId', 'disApplicationId']
|
@@ -383,7 +383,7 @@ class DataIntegrationClient(object):
|
|
383
383
|
:rtype: :class:`~oci.response.Response`
|
384
384
|
|
385
385
|
:example:
|
386
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
386
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_application.py.html>`__ to see an example of how to use create_application API.
|
387
387
|
"""
|
388
388
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
389
389
|
required_arguments = ['workspaceId']
|
@@ -495,7 +495,7 @@ class DataIntegrationClient(object):
|
|
495
495
|
:rtype: :class:`~oci.response.Response`
|
496
496
|
|
497
497
|
:example:
|
498
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
498
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_application_detailed_description.py.html>`__ to see an example of how to use create_application_detailed_description API.
|
499
499
|
"""
|
500
500
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
501
501
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -605,7 +605,7 @@ class DataIntegrationClient(object):
|
|
605
605
|
:rtype: :class:`~oci.response.Response`
|
606
606
|
|
607
607
|
:example:
|
608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_connection.py.html>`__ to see an example of how to use create_connection API.
|
609
609
|
"""
|
610
610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
611
611
|
required_arguments = ['workspaceId']
|
@@ -714,7 +714,7 @@ class DataIntegrationClient(object):
|
|
714
714
|
:rtype: :class:`~oci.response.Response`
|
715
715
|
|
716
716
|
:example:
|
717
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
717
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_connection_validation.py.html>`__ to see an example of how to use create_connection_validation API.
|
718
718
|
"""
|
719
719
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
720
720
|
required_arguments = ['workspaceId']
|
@@ -823,7 +823,7 @@ class DataIntegrationClient(object):
|
|
823
823
|
:rtype: :class:`~oci.response.Response`
|
824
824
|
|
825
825
|
:example:
|
826
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
826
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_copy_object_request.py.html>`__ to see an example of how to use create_copy_object_request API.
|
827
827
|
"""
|
828
828
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
829
829
|
required_arguments = ['workspaceId']
|
@@ -932,7 +932,7 @@ class DataIntegrationClient(object):
|
|
932
932
|
:rtype: :class:`~oci.response.Response`
|
933
933
|
|
934
934
|
:example:
|
935
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
935
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_data_asset.py.html>`__ to see an example of how to use create_data_asset API.
|
936
936
|
"""
|
937
937
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
938
938
|
required_arguments = ['workspaceId']
|
@@ -1041,7 +1041,7 @@ class DataIntegrationClient(object):
|
|
1041
1041
|
:rtype: :class:`~oci.response.Response`
|
1042
1042
|
|
1043
1043
|
:example:
|
1044
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1044
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_data_flow.py.html>`__ to see an example of how to use create_data_flow API.
|
1045
1045
|
"""
|
1046
1046
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1047
1047
|
required_arguments = ['workspaceId']
|
@@ -1150,7 +1150,7 @@ class DataIntegrationClient(object):
|
|
1150
1150
|
:rtype: :class:`~oci.response.Response`
|
1151
1151
|
|
1152
1152
|
:example:
|
1153
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1153
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_data_flow_validation.py.html>`__ to see an example of how to use create_data_flow_validation API.
|
1154
1154
|
"""
|
1155
1155
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1156
1156
|
required_arguments = ['workspaceId']
|
@@ -1259,7 +1259,7 @@ class DataIntegrationClient(object):
|
|
1259
1259
|
:rtype: :class:`~oci.response.Response`
|
1260
1260
|
|
1261
1261
|
:example:
|
1262
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1262
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_dis_application.py.html>`__ to see an example of how to use create_dis_application API.
|
1263
1263
|
"""
|
1264
1264
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1265
1265
|
required_arguments = ['workspaceId']
|
@@ -1371,7 +1371,7 @@ class DataIntegrationClient(object):
|
|
1371
1371
|
:rtype: :class:`~oci.response.Response`
|
1372
1372
|
|
1373
1373
|
:example:
|
1374
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1374
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_dis_application_detailed_description.py.html>`__ to see an example of how to use create_dis_application_detailed_description API.
|
1375
1375
|
"""
|
1376
1376
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1377
1377
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -1492,7 +1492,7 @@ class DataIntegrationClient(object):
|
|
1492
1492
|
:rtype: :class:`~oci.response.Response`
|
1493
1493
|
|
1494
1494
|
:example:
|
1495
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1495
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_entity_shape.py.html>`__ to see an example of how to use create_entity_shape API.
|
1496
1496
|
"""
|
1497
1497
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1498
1498
|
required_arguments = ['workspaceId', 'connectionKey', 'schemaResourceName']
|
@@ -1605,7 +1605,7 @@ class DataIntegrationClient(object):
|
|
1605
1605
|
:rtype: :class:`~oci.response.Response`
|
1606
1606
|
|
1607
1607
|
:example:
|
1608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_export_request.py.html>`__ to see an example of how to use create_export_request API.
|
1609
1609
|
"""
|
1610
1610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1611
1611
|
required_arguments = ['workspaceId']
|
@@ -1717,7 +1717,7 @@ class DataIntegrationClient(object):
|
|
1717
1717
|
:rtype: :class:`~oci.response.Response`
|
1718
1718
|
|
1719
1719
|
:example:
|
1720
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1720
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_external_publication.py.html>`__ to see an example of how to use create_external_publication API.
|
1721
1721
|
"""
|
1722
1722
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1723
1723
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -1830,7 +1830,7 @@ class DataIntegrationClient(object):
|
|
1830
1830
|
:rtype: :class:`~oci.response.Response`
|
1831
1831
|
|
1832
1832
|
:example:
|
1833
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1833
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_external_publication_validation.py.html>`__ to see an example of how to use create_external_publication_validation API.
|
1834
1834
|
"""
|
1835
1835
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1836
1836
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -1941,7 +1941,7 @@ class DataIntegrationClient(object):
|
|
1941
1941
|
:rtype: :class:`~oci.response.Response`
|
1942
1942
|
|
1943
1943
|
:example:
|
1944
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_folder.py.html>`__ to see an example of how to use create_folder API.
|
1945
1945
|
"""
|
1946
1946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1947
1947
|
required_arguments = ['workspaceId']
|
@@ -2051,7 +2051,7 @@ class DataIntegrationClient(object):
|
|
2051
2051
|
:rtype: :class:`~oci.response.Response`
|
2052
2052
|
|
2053
2053
|
:example:
|
2054
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2054
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_function_library.py.html>`__ to see an example of how to use create_function_library API.
|
2055
2055
|
"""
|
2056
2056
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2057
2057
|
required_arguments = ['workspaceId']
|
@@ -2160,7 +2160,7 @@ class DataIntegrationClient(object):
|
|
2160
2160
|
:rtype: :class:`~oci.response.Response`
|
2161
2161
|
|
2162
2162
|
:example:
|
2163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_import_request.py.html>`__ to see an example of how to use create_import_request API.
|
2164
2164
|
"""
|
2165
2165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2166
2166
|
required_arguments = ['workspaceId']
|
@@ -2272,7 +2272,7 @@ class DataIntegrationClient(object):
|
|
2272
2272
|
:rtype: :class:`~oci.response.Response`
|
2273
2273
|
|
2274
2274
|
:example:
|
2275
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_patch.py.html>`__ to see an example of how to use create_patch API.
|
2276
2276
|
"""
|
2277
2277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2278
2278
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -2382,7 +2382,7 @@ class DataIntegrationClient(object):
|
|
2382
2382
|
:rtype: :class:`~oci.response.Response`
|
2383
2383
|
|
2384
2384
|
:example:
|
2385
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2385
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_pipeline.py.html>`__ to see an example of how to use create_pipeline API.
|
2386
2386
|
"""
|
2387
2387
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2388
2388
|
required_arguments = ['workspaceId']
|
@@ -2491,7 +2491,7 @@ class DataIntegrationClient(object):
|
|
2491
2491
|
:rtype: :class:`~oci.response.Response`
|
2492
2492
|
|
2493
2493
|
:example:
|
2494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_pipeline_validation.py.html>`__ to see an example of how to use create_pipeline_validation API.
|
2495
2495
|
"""
|
2496
2496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2497
2497
|
required_arguments = ['workspaceId']
|
@@ -2600,7 +2600,7 @@ class DataIntegrationClient(object):
|
|
2600
2600
|
:rtype: :class:`~oci.response.Response`
|
2601
2601
|
|
2602
2602
|
:example:
|
2603
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2603
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_project.py.html>`__ to see an example of how to use create_project API.
|
2604
2604
|
"""
|
2605
2605
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2606
2606
|
required_arguments = ['workspaceId']
|
@@ -2712,7 +2712,7 @@ class DataIntegrationClient(object):
|
|
2712
2712
|
:rtype: :class:`~oci.response.Response`
|
2713
2713
|
|
2714
2714
|
:example:
|
2715
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2715
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_schedule.py.html>`__ to see an example of how to use create_schedule API.
|
2716
2716
|
"""
|
2717
2717
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2718
2718
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -2822,7 +2822,7 @@ class DataIntegrationClient(object):
|
|
2822
2822
|
:rtype: :class:`~oci.response.Response`
|
2823
2823
|
|
2824
2824
|
:example:
|
2825
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2825
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_task.py.html>`__ to see an example of how to use create_task API.
|
2826
2826
|
"""
|
2827
2827
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2828
2828
|
required_arguments = ['workspaceId']
|
@@ -2934,7 +2934,7 @@ class DataIntegrationClient(object):
|
|
2934
2934
|
:rtype: :class:`~oci.response.Response`
|
2935
2935
|
|
2936
2936
|
:example:
|
2937
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2937
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_task_run.py.html>`__ to see an example of how to use create_task_run API.
|
2938
2938
|
"""
|
2939
2939
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2940
2940
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -3047,7 +3047,7 @@ class DataIntegrationClient(object):
|
|
3047
3047
|
:rtype: :class:`~oci.response.Response`
|
3048
3048
|
|
3049
3049
|
:example:
|
3050
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3050
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_task_schedule.py.html>`__ to see an example of how to use create_task_schedule API.
|
3051
3051
|
"""
|
3052
3052
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3053
3053
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -3157,7 +3157,7 @@ class DataIntegrationClient(object):
|
|
3157
3157
|
:rtype: :class:`~oci.response.Response`
|
3158
3158
|
|
3159
3159
|
:example:
|
3160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_task_validation.py.html>`__ to see an example of how to use create_task_validation API.
|
3161
3161
|
"""
|
3162
3162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3163
3163
|
required_arguments = ['workspaceId']
|
@@ -3266,7 +3266,7 @@ class DataIntegrationClient(object):
|
|
3266
3266
|
:rtype: :class:`~oci.response.Response`
|
3267
3267
|
|
3268
3268
|
:example:
|
3269
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3269
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_user_defined_function.py.html>`__ to see an example of how to use create_user_defined_function API.
|
3270
3270
|
"""
|
3271
3271
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3272
3272
|
required_arguments = ['workspaceId']
|
@@ -3375,7 +3375,7 @@ class DataIntegrationClient(object):
|
|
3375
3375
|
:rtype: :class:`~oci.response.Response`
|
3376
3376
|
|
3377
3377
|
:example:
|
3378
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_user_defined_function_validation.py.html>`__ to see an example of how to use create_user_defined_function_validation API.
|
3379
3379
|
"""
|
3380
3380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3381
3381
|
required_arguments = ['workspaceId']
|
@@ -3481,7 +3481,7 @@ class DataIntegrationClient(object):
|
|
3481
3481
|
:rtype: :class:`~oci.response.Response`
|
3482
3482
|
|
3483
3483
|
:example:
|
3484
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3484
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/create_workspace.py.html>`__ to see an example of how to use create_workspace API.
|
3485
3485
|
"""
|
3486
3486
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3487
3487
|
required_arguments = []
|
@@ -3578,7 +3578,7 @@ class DataIntegrationClient(object):
|
|
3578
3578
|
:rtype: :class:`~oci.response.Response`
|
3579
3579
|
|
3580
3580
|
:example:
|
3581
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3581
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_application.py.html>`__ to see an example of how to use delete_application API.
|
3582
3582
|
"""
|
3583
3583
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3584
3584
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -3685,7 +3685,7 @@ class DataIntegrationClient(object):
|
|
3685
3685
|
:rtype: :class:`~oci.response.Response`
|
3686
3686
|
|
3687
3687
|
:example:
|
3688
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3688
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_application_detailed_description.py.html>`__ to see an example of how to use delete_application_detailed_description API.
|
3689
3689
|
"""
|
3690
3690
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3691
3691
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -3792,7 +3792,7 @@ class DataIntegrationClient(object):
|
|
3792
3792
|
:rtype: :class:`~oci.response.Response`
|
3793
3793
|
|
3794
3794
|
:example:
|
3795
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3795
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_connection.py.html>`__ to see an example of how to use delete_connection API.
|
3796
3796
|
"""
|
3797
3797
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3798
3798
|
required_arguments = ['workspaceId', 'connectionKey']
|
@@ -3899,7 +3899,7 @@ class DataIntegrationClient(object):
|
|
3899
3899
|
:rtype: :class:`~oci.response.Response`
|
3900
3900
|
|
3901
3901
|
:example:
|
3902
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3902
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_connection_validation.py.html>`__ to see an example of how to use delete_connection_validation API.
|
3903
3903
|
"""
|
3904
3904
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3905
3905
|
required_arguments = ['workspaceId', 'connectionValidationKey']
|
@@ -4006,7 +4006,7 @@ class DataIntegrationClient(object):
|
|
4006
4006
|
:rtype: :class:`~oci.response.Response`
|
4007
4007
|
|
4008
4008
|
:example:
|
4009
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4009
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_copy_object_request.py.html>`__ to see an example of how to use delete_copy_object_request API.
|
4010
4010
|
"""
|
4011
4011
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4012
4012
|
required_arguments = ['workspaceId', 'copyObjectRequestKey']
|
@@ -4113,7 +4113,7 @@ class DataIntegrationClient(object):
|
|
4113
4113
|
:rtype: :class:`~oci.response.Response`
|
4114
4114
|
|
4115
4115
|
:example:
|
4116
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4116
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_data_asset.py.html>`__ to see an example of how to use delete_data_asset API.
|
4117
4117
|
"""
|
4118
4118
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4119
4119
|
required_arguments = ['workspaceId', 'dataAssetKey']
|
@@ -4220,7 +4220,7 @@ class DataIntegrationClient(object):
|
|
4220
4220
|
:rtype: :class:`~oci.response.Response`
|
4221
4221
|
|
4222
4222
|
:example:
|
4223
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4223
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_data_flow.py.html>`__ to see an example of how to use delete_data_flow API.
|
4224
4224
|
"""
|
4225
4225
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4226
4226
|
required_arguments = ['workspaceId', 'dataFlowKey']
|
@@ -4327,7 +4327,7 @@ class DataIntegrationClient(object):
|
|
4327
4327
|
:rtype: :class:`~oci.response.Response`
|
4328
4328
|
|
4329
4329
|
:example:
|
4330
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4330
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_data_flow_validation.py.html>`__ to see an example of how to use delete_data_flow_validation API.
|
4331
4331
|
"""
|
4332
4332
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4333
4333
|
required_arguments = ['workspaceId', 'dataFlowValidationKey']
|
@@ -4434,7 +4434,7 @@ class DataIntegrationClient(object):
|
|
4434
4434
|
:rtype: :class:`~oci.response.Response`
|
4435
4435
|
|
4436
4436
|
:example:
|
4437
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4437
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_dis_application.py.html>`__ to see an example of how to use delete_dis_application API.
|
4438
4438
|
"""
|
4439
4439
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4440
4440
|
required_arguments = ['workspaceId', 'disApplicationId']
|
@@ -4541,7 +4541,7 @@ class DataIntegrationClient(object):
|
|
4541
4541
|
:rtype: :class:`~oci.response.Response`
|
4542
4542
|
|
4543
4543
|
:example:
|
4544
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4544
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_dis_application_detailed_description.py.html>`__ to see an example of how to use delete_dis_application_detailed_description API.
|
4545
4545
|
"""
|
4546
4546
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4547
4547
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -4648,7 +4648,7 @@ class DataIntegrationClient(object):
|
|
4648
4648
|
:rtype: :class:`~oci.response.Response`
|
4649
4649
|
|
4650
4650
|
:example:
|
4651
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4651
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_export_request.py.html>`__ to see an example of how to use delete_export_request API.
|
4652
4652
|
"""
|
4653
4653
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4654
4654
|
required_arguments = ['workspaceId', 'exportRequestKey']
|
@@ -4758,7 +4758,7 @@ class DataIntegrationClient(object):
|
|
4758
4758
|
:rtype: :class:`~oci.response.Response`
|
4759
4759
|
|
4760
4760
|
:example:
|
4761
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4761
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_external_publication.py.html>`__ to see an example of how to use delete_external_publication API.
|
4762
4762
|
"""
|
4763
4763
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4764
4764
|
required_arguments = ['workspaceId', 'taskKey', 'externalPublicationsKey']
|
@@ -4869,7 +4869,7 @@ class DataIntegrationClient(object):
|
|
4869
4869
|
:rtype: :class:`~oci.response.Response`
|
4870
4870
|
|
4871
4871
|
:example:
|
4872
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4872
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_external_publication_validation.py.html>`__ to see an example of how to use delete_external_publication_validation API.
|
4873
4873
|
"""
|
4874
4874
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4875
4875
|
required_arguments = ['workspaceId', 'taskKey', 'externalPublicationValidationKey']
|
@@ -4977,7 +4977,7 @@ class DataIntegrationClient(object):
|
|
4977
4977
|
:rtype: :class:`~oci.response.Response`
|
4978
4978
|
|
4979
4979
|
:example:
|
4980
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4980
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_folder.py.html>`__ to see an example of how to use delete_folder API.
|
4981
4981
|
"""
|
4982
4982
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4983
4983
|
required_arguments = ['workspaceId', 'folderKey']
|
@@ -5084,7 +5084,7 @@ class DataIntegrationClient(object):
|
|
5084
5084
|
:rtype: :class:`~oci.response.Response`
|
5085
5085
|
|
5086
5086
|
:example:
|
5087
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5087
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_function_library.py.html>`__ to see an example of how to use delete_function_library API.
|
5088
5088
|
"""
|
5089
5089
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5090
5090
|
required_arguments = ['workspaceId', 'functionLibraryKey']
|
@@ -5191,7 +5191,7 @@ class DataIntegrationClient(object):
|
|
5191
5191
|
:rtype: :class:`~oci.response.Response`
|
5192
5192
|
|
5193
5193
|
:example:
|
5194
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5194
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_import_request.py.html>`__ to see an example of how to use delete_import_request API.
|
5195
5195
|
"""
|
5196
5196
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5197
5197
|
required_arguments = ['importRequestKey', 'workspaceId']
|
@@ -5301,7 +5301,7 @@ class DataIntegrationClient(object):
|
|
5301
5301
|
:rtype: :class:`~oci.response.Response`
|
5302
5302
|
|
5303
5303
|
:example:
|
5304
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5304
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_patch.py.html>`__ to see an example of how to use delete_patch API.
|
5305
5305
|
"""
|
5306
5306
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5307
5307
|
required_arguments = ['workspaceId', 'applicationKey', 'patchKey']
|
@@ -5409,7 +5409,7 @@ class DataIntegrationClient(object):
|
|
5409
5409
|
:rtype: :class:`~oci.response.Response`
|
5410
5410
|
|
5411
5411
|
:example:
|
5412
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5412
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_pipeline.py.html>`__ to see an example of how to use delete_pipeline API.
|
5413
5413
|
"""
|
5414
5414
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5415
5415
|
required_arguments = ['workspaceId', 'pipelineKey']
|
@@ -5516,7 +5516,7 @@ class DataIntegrationClient(object):
|
|
5516
5516
|
:rtype: :class:`~oci.response.Response`
|
5517
5517
|
|
5518
5518
|
:example:
|
5519
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5519
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_pipeline_validation.py.html>`__ to see an example of how to use delete_pipeline_validation API.
|
5520
5520
|
"""
|
5521
5521
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5522
5522
|
required_arguments = ['workspaceId', 'pipelineValidationKey']
|
@@ -5623,7 +5623,7 @@ class DataIntegrationClient(object):
|
|
5623
5623
|
:rtype: :class:`~oci.response.Response`
|
5624
5624
|
|
5625
5625
|
:example:
|
5626
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5626
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_project.py.html>`__ to see an example of how to use delete_project API.
|
5627
5627
|
"""
|
5628
5628
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5629
5629
|
required_arguments = ['workspaceId', 'projectKey']
|
@@ -5733,7 +5733,7 @@ class DataIntegrationClient(object):
|
|
5733
5733
|
:rtype: :class:`~oci.response.Response`
|
5734
5734
|
|
5735
5735
|
:example:
|
5736
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5736
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_schedule.py.html>`__ to see an example of how to use delete_schedule API.
|
5737
5737
|
"""
|
5738
5738
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5739
5739
|
required_arguments = ['workspaceId', 'applicationKey', 'scheduleKey']
|
@@ -5841,7 +5841,7 @@ class DataIntegrationClient(object):
|
|
5841
5841
|
:rtype: :class:`~oci.response.Response`
|
5842
5842
|
|
5843
5843
|
:example:
|
5844
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5844
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_task.py.html>`__ to see an example of how to use delete_task API.
|
5845
5845
|
"""
|
5846
5846
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5847
5847
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -5951,7 +5951,7 @@ class DataIntegrationClient(object):
|
|
5951
5951
|
:rtype: :class:`~oci.response.Response`
|
5952
5952
|
|
5953
5953
|
:example:
|
5954
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5954
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_task_run.py.html>`__ to see an example of how to use delete_task_run API.
|
5955
5955
|
"""
|
5956
5956
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5957
5957
|
required_arguments = ['workspaceId', 'applicationKey', 'taskRunKey']
|
@@ -6062,7 +6062,7 @@ class DataIntegrationClient(object):
|
|
6062
6062
|
:rtype: :class:`~oci.response.Response`
|
6063
6063
|
|
6064
6064
|
:example:
|
6065
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6065
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_task_schedule.py.html>`__ to see an example of how to use delete_task_schedule API.
|
6066
6066
|
"""
|
6067
6067
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6068
6068
|
required_arguments = ['workspaceId', 'applicationKey', 'taskScheduleKey']
|
@@ -6170,7 +6170,7 @@ class DataIntegrationClient(object):
|
|
6170
6170
|
:rtype: :class:`~oci.response.Response`
|
6171
6171
|
|
6172
6172
|
:example:
|
6173
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6173
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_task_validation.py.html>`__ to see an example of how to use delete_task_validation API.
|
6174
6174
|
"""
|
6175
6175
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6176
6176
|
required_arguments = ['workspaceId', 'taskValidationKey']
|
@@ -6277,7 +6277,7 @@ class DataIntegrationClient(object):
|
|
6277
6277
|
:rtype: :class:`~oci.response.Response`
|
6278
6278
|
|
6279
6279
|
:example:
|
6280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_user_defined_function.py.html>`__ to see an example of how to use delete_user_defined_function API.
|
6281
6281
|
"""
|
6282
6282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6283
6283
|
required_arguments = ['workspaceId', 'userDefinedFunctionKey']
|
@@ -6384,7 +6384,7 @@ class DataIntegrationClient(object):
|
|
6384
6384
|
:rtype: :class:`~oci.response.Response`
|
6385
6385
|
|
6386
6386
|
:example:
|
6387
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6387
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_user_defined_function_validation.py.html>`__ to see an example of how to use delete_user_defined_function_validation API.
|
6388
6388
|
"""
|
6389
6389
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6390
6390
|
required_arguments = ['workspaceId', 'userDefinedFunctionValidationKey']
|
@@ -6494,7 +6494,7 @@ class DataIntegrationClient(object):
|
|
6494
6494
|
:rtype: :class:`~oci.response.Response`
|
6495
6495
|
|
6496
6496
|
:example:
|
6497
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6497
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/delete_workspace.py.html>`__ to see an example of how to use delete_workspace API.
|
6498
6498
|
"""
|
6499
6499
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6500
6500
|
required_arguments = ['workspaceId']
|
@@ -6605,7 +6605,7 @@ class DataIntegrationClient(object):
|
|
6605
6605
|
:rtype: :class:`~oci.response.Response`
|
6606
6606
|
|
6607
6607
|
:example:
|
6608
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6608
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_application.py.html>`__ to see an example of how to use get_application API.
|
6609
6609
|
"""
|
6610
6610
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6611
6611
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -6707,7 +6707,7 @@ class DataIntegrationClient(object):
|
|
6707
6707
|
:rtype: :class:`~oci.response.Response`
|
6708
6708
|
|
6709
6709
|
:example:
|
6710
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6710
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_application_detailed_description.py.html>`__ to see an example of how to use get_application_detailed_description API.
|
6711
6711
|
"""
|
6712
6712
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6713
6713
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -6812,7 +6812,7 @@ class DataIntegrationClient(object):
|
|
6812
6812
|
:rtype: :class:`~oci.response.Response`
|
6813
6813
|
|
6814
6814
|
:example:
|
6815
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6815
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_composite_state.py.html>`__ to see an example of how to use get_composite_state API.
|
6816
6816
|
"""
|
6817
6817
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6818
6818
|
required_arguments = ['workspaceId', 'applicationKey', 'aggregatorKey']
|
@@ -6921,7 +6921,7 @@ class DataIntegrationClient(object):
|
|
6921
6921
|
:rtype: :class:`~oci.response.Response`
|
6922
6922
|
|
6923
6923
|
:example:
|
6924
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6924
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_connection.py.html>`__ to see an example of how to use get_connection API.
|
6925
6925
|
"""
|
6926
6926
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6927
6927
|
required_arguments = ['workspaceId', 'connectionKey']
|
@@ -7023,7 +7023,7 @@ class DataIntegrationClient(object):
|
|
7023
7023
|
:rtype: :class:`~oci.response.Response`
|
7024
7024
|
|
7025
7025
|
:example:
|
7026
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7026
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_connection_validation.py.html>`__ to see an example of how to use get_connection_validation API.
|
7027
7027
|
"""
|
7028
7028
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7029
7029
|
required_arguments = ['workspaceId', 'connectionValidationKey']
|
@@ -7125,7 +7125,7 @@ class DataIntegrationClient(object):
|
|
7125
7125
|
:rtype: :class:`~oci.response.Response`
|
7126
7126
|
|
7127
7127
|
:example:
|
7128
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7128
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_copy_object_request.py.html>`__ to see an example of how to use get_copy_object_request API.
|
7129
7129
|
"""
|
7130
7130
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7131
7131
|
required_arguments = ['workspaceId', 'copyObjectRequestKey']
|
@@ -7228,7 +7228,7 @@ class DataIntegrationClient(object):
|
|
7228
7228
|
:rtype: :class:`~oci.response.Response`
|
7229
7229
|
|
7230
7230
|
:example:
|
7231
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7231
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_count_statistic.py.html>`__ to see an example of how to use get_count_statistic API.
|
7232
7232
|
"""
|
7233
7233
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7234
7234
|
required_arguments = ['workspaceId', 'countStatisticKey']
|
@@ -7330,7 +7330,7 @@ class DataIntegrationClient(object):
|
|
7330
7330
|
:rtype: :class:`~oci.response.Response`
|
7331
7331
|
|
7332
7332
|
:example:
|
7333
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7333
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_data_asset.py.html>`__ to see an example of how to use get_data_asset API.
|
7334
7334
|
"""
|
7335
7335
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7336
7336
|
required_arguments = ['workspaceId', 'dataAssetKey']
|
@@ -7438,7 +7438,7 @@ class DataIntegrationClient(object):
|
|
7438
7438
|
:rtype: :class:`~oci.response.Response`
|
7439
7439
|
|
7440
7440
|
:example:
|
7441
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7441
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_data_entity.py.html>`__ to see an example of how to use get_data_entity API.
|
7442
7442
|
"""
|
7443
7443
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7444
7444
|
required_arguments = ['workspaceId', 'connectionKey', 'schemaResourceName', 'dataEntityKey']
|
@@ -7545,7 +7545,7 @@ class DataIntegrationClient(object):
|
|
7545
7545
|
:rtype: :class:`~oci.response.Response`
|
7546
7546
|
|
7547
7547
|
:example:
|
7548
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7548
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_data_flow.py.html>`__ to see an example of how to use get_data_flow API.
|
7549
7549
|
"""
|
7550
7550
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7551
7551
|
required_arguments = ['workspaceId', 'dataFlowKey']
|
@@ -7655,7 +7655,7 @@ class DataIntegrationClient(object):
|
|
7655
7655
|
:rtype: :class:`~oci.response.Response`
|
7656
7656
|
|
7657
7657
|
:example:
|
7658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_data_flow_validation.py.html>`__ to see an example of how to use get_data_flow_validation API.
|
7659
7659
|
"""
|
7660
7660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7661
7661
|
required_arguments = ['workspaceId', 'dataFlowValidationKey']
|
@@ -7760,7 +7760,7 @@ class DataIntegrationClient(object):
|
|
7760
7760
|
:rtype: :class:`~oci.response.Response`
|
7761
7761
|
|
7762
7762
|
:example:
|
7763
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7763
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_dependent_object.py.html>`__ to see an example of how to use get_dependent_object API.
|
7764
7764
|
"""
|
7765
7765
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7766
7766
|
required_arguments = ['workspaceId', 'applicationKey', 'dependentObjectKey']
|
@@ -7863,7 +7863,7 @@ class DataIntegrationClient(object):
|
|
7863
7863
|
:rtype: :class:`~oci.response.Response`
|
7864
7864
|
|
7865
7865
|
:example:
|
7866
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7866
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_dis_application.py.html>`__ to see an example of how to use get_dis_application API.
|
7867
7867
|
"""
|
7868
7868
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7869
7869
|
required_arguments = ['workspaceId', 'disApplicationId']
|
@@ -7965,7 +7965,7 @@ class DataIntegrationClient(object):
|
|
7965
7965
|
:rtype: :class:`~oci.response.Response`
|
7966
7966
|
|
7967
7967
|
:example:
|
7968
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7968
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_dis_application_detailed_description.py.html>`__ to see an example of how to use get_dis_application_detailed_description API.
|
7969
7969
|
"""
|
7970
7970
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7971
7971
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -8067,7 +8067,7 @@ class DataIntegrationClient(object):
|
|
8067
8067
|
:rtype: :class:`~oci.response.Response`
|
8068
8068
|
|
8069
8069
|
:example:
|
8070
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8070
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_export_request.py.html>`__ to see an example of how to use get_export_request API.
|
8071
8071
|
"""
|
8072
8072
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8073
8073
|
required_arguments = ['workspaceId', 'exportRequestKey']
|
@@ -8172,7 +8172,7 @@ class DataIntegrationClient(object):
|
|
8172
8172
|
:rtype: :class:`~oci.response.Response`
|
8173
8173
|
|
8174
8174
|
:example:
|
8175
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8175
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_external_publication.py.html>`__ to see an example of how to use get_external_publication API.
|
8176
8176
|
"""
|
8177
8177
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8178
8178
|
required_arguments = ['workspaceId', 'taskKey', 'externalPublicationsKey']
|
@@ -8278,7 +8278,7 @@ class DataIntegrationClient(object):
|
|
8278
8278
|
:rtype: :class:`~oci.response.Response`
|
8279
8279
|
|
8280
8280
|
:example:
|
8281
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8281
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_external_publication_validation.py.html>`__ to see an example of how to use get_external_publication_validation API.
|
8282
8282
|
"""
|
8283
8283
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8284
8284
|
required_arguments = ['workspaceId', 'taskKey', 'externalPublicationValidationKey']
|
@@ -8386,7 +8386,7 @@ class DataIntegrationClient(object):
|
|
8386
8386
|
:rtype: :class:`~oci.response.Response`
|
8387
8387
|
|
8388
8388
|
:example:
|
8389
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8389
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_folder.py.html>`__ to see an example of how to use get_folder API.
|
8390
8390
|
"""
|
8391
8391
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8392
8392
|
required_arguments = ['workspaceId', 'folderKey']
|
@@ -8509,7 +8509,7 @@ class DataIntegrationClient(object):
|
|
8509
8509
|
:rtype: :class:`~oci.response.Response`
|
8510
8510
|
|
8511
8511
|
:example:
|
8512
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8512
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_function_library.py.html>`__ to see an example of how to use get_function_library API.
|
8513
8513
|
"""
|
8514
8514
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8515
8515
|
required_arguments = ['workspaceId', 'functionLibraryKey']
|
@@ -8637,7 +8637,7 @@ class DataIntegrationClient(object):
|
|
8637
8637
|
:rtype: :class:`~oci.response.Response`
|
8638
8638
|
|
8639
8639
|
:example:
|
8640
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8640
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_import_request.py.html>`__ to see an example of how to use get_import_request API.
|
8641
8641
|
"""
|
8642
8642
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8643
8643
|
required_arguments = ['workspaceId', 'importRequestKey']
|
@@ -8752,7 +8752,7 @@ class DataIntegrationClient(object):
|
|
8752
8752
|
:rtype: :class:`~oci.response.Response`
|
8753
8753
|
|
8754
8754
|
:example:
|
8755
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8755
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_patch.py.html>`__ to see an example of how to use get_patch API.
|
8756
8756
|
"""
|
8757
8757
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8758
8758
|
required_arguments = ['workspaceId', 'applicationKey', 'patchKey']
|
@@ -8858,7 +8858,7 @@ class DataIntegrationClient(object):
|
|
8858
8858
|
:rtype: :class:`~oci.response.Response`
|
8859
8859
|
|
8860
8860
|
:example:
|
8861
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8861
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_pipeline.py.html>`__ to see an example of how to use get_pipeline API.
|
8862
8862
|
"""
|
8863
8863
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8864
8864
|
required_arguments = ['workspaceId', 'pipelineKey']
|
@@ -8968,7 +8968,7 @@ class DataIntegrationClient(object):
|
|
8968
8968
|
:rtype: :class:`~oci.response.Response`
|
8969
8969
|
|
8970
8970
|
:example:
|
8971
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8971
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_pipeline_validation.py.html>`__ to see an example of how to use get_pipeline_validation API.
|
8972
8972
|
"""
|
8973
8973
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8974
8974
|
required_arguments = ['workspaceId', 'pipelineValidationKey']
|
@@ -9075,7 +9075,7 @@ class DataIntegrationClient(object):
|
|
9075
9075
|
:rtype: :class:`~oci.response.Response`
|
9076
9076
|
|
9077
9077
|
:example:
|
9078
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9078
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_project.py.html>`__ to see an example of how to use get_project API.
|
9079
9079
|
"""
|
9080
9080
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9081
9081
|
required_arguments = ['workspaceId', 'projectKey']
|
@@ -9199,7 +9199,7 @@ class DataIntegrationClient(object):
|
|
9199
9199
|
:rtype: :class:`~oci.response.Response`
|
9200
9200
|
|
9201
9201
|
:example:
|
9202
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9202
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_published_object.py.html>`__ to see an example of how to use get_published_object API.
|
9203
9203
|
"""
|
9204
9204
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9205
9205
|
required_arguments = ['workspaceId', 'applicationKey', 'publishedObjectKey']
|
@@ -9313,7 +9313,7 @@ class DataIntegrationClient(object):
|
|
9313
9313
|
:rtype: :class:`~oci.response.Response`
|
9314
9314
|
|
9315
9315
|
:example:
|
9316
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9316
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_reference.py.html>`__ to see an example of how to use get_reference API.
|
9317
9317
|
"""
|
9318
9318
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9319
9319
|
required_arguments = ['workspaceId', 'applicationKey', 'referenceKey']
|
@@ -9422,7 +9422,7 @@ class DataIntegrationClient(object):
|
|
9422
9422
|
:rtype: :class:`~oci.response.Response`
|
9423
9423
|
|
9424
9424
|
:example:
|
9425
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9425
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_runtime_operator.py.html>`__ to see an example of how to use get_runtime_operator API.
|
9426
9426
|
"""
|
9427
9427
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9428
9428
|
required_arguments = ['workspaceId', 'applicationKey', 'runtimePipelineKey', 'runtimeOperatorKey']
|
@@ -9532,7 +9532,7 @@ class DataIntegrationClient(object):
|
|
9532
9532
|
:rtype: :class:`~oci.response.Response`
|
9533
9533
|
|
9534
9534
|
:example:
|
9535
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9535
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_runtime_pipeline.py.html>`__ to see an example of how to use get_runtime_pipeline API.
|
9536
9536
|
"""
|
9537
9537
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9538
9538
|
required_arguments = ['workspaceId', 'applicationKey', 'runtimePipelineKey']
|
@@ -9646,7 +9646,7 @@ class DataIntegrationClient(object):
|
|
9646
9646
|
:rtype: :class:`~oci.response.Response`
|
9647
9647
|
|
9648
9648
|
:example:
|
9649
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9649
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_schedule.py.html>`__ to see an example of how to use get_schedule API.
|
9650
9650
|
"""
|
9651
9651
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9652
9652
|
required_arguments = ['workspaceId', 'applicationKey', 'scheduleKey']
|
@@ -9752,7 +9752,7 @@ class DataIntegrationClient(object):
|
|
9752
9752
|
:rtype: :class:`~oci.response.Response`
|
9753
9753
|
|
9754
9754
|
:example:
|
9755
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9755
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_schema.py.html>`__ to see an example of how to use get_schema API.
|
9756
9756
|
"""
|
9757
9757
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9758
9758
|
required_arguments = ['workspaceId', 'connectionKey', 'schemaResourceName']
|
@@ -9858,7 +9858,7 @@ class DataIntegrationClient(object):
|
|
9858
9858
|
:rtype: :class:`~oci.response.Response`
|
9859
9859
|
|
9860
9860
|
:example:
|
9861
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9861
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_task.py.html>`__ to see an example of how to use get_task API.
|
9862
9862
|
"""
|
9863
9863
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9864
9864
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -9971,7 +9971,7 @@ class DataIntegrationClient(object):
|
|
9971
9971
|
:rtype: :class:`~oci.response.Response`
|
9972
9972
|
|
9973
9973
|
:example:
|
9974
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9974
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_task_run.py.html>`__ to see an example of how to use get_task_run API.
|
9975
9975
|
"""
|
9976
9976
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9977
9977
|
required_arguments = ['workspaceId', 'applicationKey', 'taskRunKey']
|
@@ -10077,7 +10077,7 @@ class DataIntegrationClient(object):
|
|
10077
10077
|
:rtype: :class:`~oci.response.Response`
|
10078
10078
|
|
10079
10079
|
:example:
|
10080
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10080
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_task_schedule.py.html>`__ to see an example of how to use get_task_schedule API.
|
10081
10081
|
"""
|
10082
10082
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10083
10083
|
required_arguments = ['workspaceId', 'applicationKey', 'taskScheduleKey']
|
@@ -10180,7 +10180,7 @@ class DataIntegrationClient(object):
|
|
10180
10180
|
:rtype: :class:`~oci.response.Response`
|
10181
10181
|
|
10182
10182
|
:example:
|
10183
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10183
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_task_validation.py.html>`__ to see an example of how to use get_task_validation API.
|
10184
10184
|
"""
|
10185
10185
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10186
10186
|
required_arguments = ['workspaceId', 'taskValidationKey']
|
@@ -10282,7 +10282,7 @@ class DataIntegrationClient(object):
|
|
10282
10282
|
:rtype: :class:`~oci.response.Response`
|
10283
10283
|
|
10284
10284
|
:example:
|
10285
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10285
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_template.py.html>`__ to see an example of how to use get_template API.
|
10286
10286
|
"""
|
10287
10287
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10288
10288
|
required_arguments = ['workspaceId', 'templateId']
|
@@ -10384,7 +10384,7 @@ class DataIntegrationClient(object):
|
|
10384
10384
|
:rtype: :class:`~oci.response.Response`
|
10385
10385
|
|
10386
10386
|
:example:
|
10387
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10387
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_user_defined_function.py.html>`__ to see an example of how to use get_user_defined_function API.
|
10388
10388
|
"""
|
10389
10389
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10390
10390
|
required_arguments = ['workspaceId', 'userDefinedFunctionKey']
|
@@ -10486,7 +10486,7 @@ class DataIntegrationClient(object):
|
|
10486
10486
|
:rtype: :class:`~oci.response.Response`
|
10487
10487
|
|
10488
10488
|
:example:
|
10489
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10489
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_user_defined_function_validation.py.html>`__ to see an example of how to use get_user_defined_function_validation API.
|
10490
10490
|
"""
|
10491
10491
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10492
10492
|
required_arguments = ['workspaceId', 'userDefinedFunctionValidationKey']
|
@@ -10585,7 +10585,7 @@ class DataIntegrationClient(object):
|
|
10585
10585
|
:rtype: :class:`~oci.response.Response`
|
10586
10586
|
|
10587
10587
|
:example:
|
10588
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10588
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
10589
10589
|
"""
|
10590
10590
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10591
10591
|
required_arguments = ['workRequestId']
|
@@ -10683,7 +10683,7 @@ class DataIntegrationClient(object):
|
|
10683
10683
|
:rtype: :class:`~oci.response.Response`
|
10684
10684
|
|
10685
10685
|
:example:
|
10686
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10686
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/get_workspace.py.html>`__ to see an example of how to use get_workspace API.
|
10687
10687
|
"""
|
10688
10688
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10689
10689
|
required_arguments = ['workspaceId']
|
@@ -10813,7 +10813,7 @@ class DataIntegrationClient(object):
|
|
10813
10813
|
:rtype: :class:`~oci.response.Response`
|
10814
10814
|
|
10815
10815
|
:example:
|
10816
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10816
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_applications.py.html>`__ to see an example of how to use list_applications API.
|
10817
10817
|
"""
|
10818
10818
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10819
10819
|
required_arguments = ['workspaceId']
|
@@ -10979,7 +10979,7 @@ class DataIntegrationClient(object):
|
|
10979
10979
|
:rtype: :class:`~oci.response.Response`
|
10980
10980
|
|
10981
10981
|
:example:
|
10982
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10982
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_connection_validations.py.html>`__ to see an example of how to use list_connection_validations API.
|
10983
10983
|
"""
|
10984
10984
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10985
10985
|
required_arguments = ['workspaceId']
|
@@ -11145,7 +11145,7 @@ class DataIntegrationClient(object):
|
|
11145
11145
|
:rtype: :class:`~oci.response.Response`
|
11146
11146
|
|
11147
11147
|
:example:
|
11148
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11148
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_connections.py.html>`__ to see an example of how to use list_connections API.
|
11149
11149
|
"""
|
11150
11150
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11151
11151
|
required_arguments = ['workspaceId', 'dataAssetKey']
|
@@ -11317,7 +11317,7 @@ class DataIntegrationClient(object):
|
|
11317
11317
|
:rtype: :class:`~oci.response.Response`
|
11318
11318
|
|
11319
11319
|
:example:
|
11320
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11320
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_copy_object_requests.py.html>`__ to see an example of how to use list_copy_object_requests API.
|
11321
11321
|
"""
|
11322
11322
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11323
11323
|
required_arguments = ['workspaceId']
|
@@ -11496,7 +11496,7 @@ class DataIntegrationClient(object):
|
|
11496
11496
|
:rtype: :class:`~oci.response.Response`
|
11497
11497
|
|
11498
11498
|
:example:
|
11499
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11499
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_data_assets.py.html>`__ to see an example of how to use list_data_assets API.
|
11500
11500
|
"""
|
11501
11501
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11502
11502
|
required_arguments = ['workspaceId']
|
@@ -11672,7 +11672,7 @@ class DataIntegrationClient(object):
|
|
11672
11672
|
:rtype: :class:`~oci.response.Response`
|
11673
11673
|
|
11674
11674
|
:example:
|
11675
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11675
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_data_entities.py.html>`__ to see an example of how to use list_data_entities API.
|
11676
11676
|
"""
|
11677
11677
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11678
11678
|
required_arguments = ['workspaceId', 'connectionKey', 'schemaResourceName']
|
@@ -11844,7 +11844,7 @@ class DataIntegrationClient(object):
|
|
11844
11844
|
:rtype: :class:`~oci.response.Response`
|
11845
11845
|
|
11846
11846
|
:example:
|
11847
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11847
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_data_flow_validations.py.html>`__ to see an example of how to use list_data_flow_validations API.
|
11848
11848
|
"""
|
11849
11849
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11850
11850
|
required_arguments = ['workspaceId']
|
@@ -12010,7 +12010,7 @@ class DataIntegrationClient(object):
|
|
12010
12010
|
:rtype: :class:`~oci.response.Response`
|
12011
12011
|
|
12012
12012
|
:example:
|
12013
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12013
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_data_flows.py.html>`__ to see an example of how to use list_data_flows API.
|
12014
12014
|
"""
|
12015
12015
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12016
12016
|
required_arguments = ['workspaceId']
|
@@ -12189,7 +12189,7 @@ class DataIntegrationClient(object):
|
|
12189
12189
|
:rtype: :class:`~oci.response.Response`
|
12190
12190
|
|
12191
12191
|
:example:
|
12192
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12192
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_dependent_objects.py.html>`__ to see an example of how to use list_dependent_objects API.
|
12193
12193
|
"""
|
12194
12194
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12195
12195
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -12369,7 +12369,7 @@ class DataIntegrationClient(object):
|
|
12369
12369
|
:rtype: :class:`~oci.response.Response`
|
12370
12370
|
|
12371
12371
|
:example:
|
12372
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12372
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_dis_application_task_run_lineages.py.html>`__ to see an example of how to use list_dis_application_task_run_lineages API.
|
12373
12373
|
"""
|
12374
12374
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12375
12375
|
required_arguments = ['workspaceId', 'disApplicationId']
|
@@ -12543,7 +12543,7 @@ class DataIntegrationClient(object):
|
|
12543
12543
|
:rtype: :class:`~oci.response.Response`
|
12544
12544
|
|
12545
12545
|
:example:
|
12546
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12546
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_dis_applications.py.html>`__ to see an example of how to use list_dis_applications API.
|
12547
12547
|
"""
|
12548
12548
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12549
12549
|
required_arguments = ['workspaceId', 'compartmentId']
|
@@ -12717,7 +12717,7 @@ class DataIntegrationClient(object):
|
|
12717
12717
|
:rtype: :class:`~oci.response.Response`
|
12718
12718
|
|
12719
12719
|
:example:
|
12720
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12720
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_export_requests.py.html>`__ to see an example of how to use list_export_requests API.
|
12721
12721
|
"""
|
12722
12722
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12723
12723
|
required_arguments = ['workspaceId']
|
@@ -12899,7 +12899,7 @@ class DataIntegrationClient(object):
|
|
12899
12899
|
:rtype: :class:`~oci.response.Response`
|
12900
12900
|
|
12901
12901
|
:example:
|
12902
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12902
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_external_publication_validations.py.html>`__ to see an example of how to use list_external_publication_validations API.
|
12903
12903
|
"""
|
12904
12904
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12905
12905
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -13061,7 +13061,7 @@ class DataIntegrationClient(object):
|
|
13061
13061
|
:rtype: :class:`~oci.response.Response`
|
13062
13062
|
|
13063
13063
|
:example:
|
13064
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13064
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_external_publications.py.html>`__ to see an example of how to use list_external_publications API.
|
13065
13065
|
"""
|
13066
13066
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13067
13067
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -13227,7 +13227,7 @@ class DataIntegrationClient(object):
|
|
13227
13227
|
:rtype: :class:`~oci.response.Response`
|
13228
13228
|
|
13229
13229
|
:example:
|
13230
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13230
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_folders.py.html>`__ to see an example of how to use list_folders API.
|
13231
13231
|
"""
|
13232
13232
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13233
13233
|
required_arguments = ['workspaceId']
|
@@ -13395,7 +13395,7 @@ class DataIntegrationClient(object):
|
|
13395
13395
|
:rtype: :class:`~oci.response.Response`
|
13396
13396
|
|
13397
13397
|
:example:
|
13398
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13398
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_function_libraries.py.html>`__ to see an example of how to use list_function_libraries API.
|
13399
13399
|
"""
|
13400
13400
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13401
13401
|
required_arguments = ['workspaceId']
|
@@ -13568,7 +13568,7 @@ class DataIntegrationClient(object):
|
|
13568
13568
|
:rtype: :class:`~oci.response.Response`
|
13569
13569
|
|
13570
13570
|
:example:
|
13571
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13571
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_import_requests.py.html>`__ to see an example of how to use list_import_requests API.
|
13572
13572
|
"""
|
13573
13573
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13574
13574
|
required_arguments = ['workspaceId']
|
@@ -13750,7 +13750,7 @@ class DataIntegrationClient(object):
|
|
13750
13750
|
:rtype: :class:`~oci.response.Response`
|
13751
13751
|
|
13752
13752
|
:example:
|
13753
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13753
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_patch_changes.py.html>`__ to see an example of how to use list_patch_changes API.
|
13754
13754
|
"""
|
13755
13755
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13756
13756
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -13915,7 +13915,7 @@ class DataIntegrationClient(object):
|
|
13915
13915
|
:rtype: :class:`~oci.response.Response`
|
13916
13916
|
|
13917
13917
|
:example:
|
13918
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13918
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_patches.py.html>`__ to see an example of how to use list_patches API.
|
13919
13919
|
"""
|
13920
13920
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13921
13921
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -14080,7 +14080,7 @@ class DataIntegrationClient(object):
|
|
14080
14080
|
:rtype: :class:`~oci.response.Response`
|
14081
14081
|
|
14082
14082
|
:example:
|
14083
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14083
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_pipeline_validations.py.html>`__ to see an example of how to use list_pipeline_validations API.
|
14084
14084
|
"""
|
14085
14085
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14086
14086
|
required_arguments = ['workspaceId']
|
@@ -14246,7 +14246,7 @@ class DataIntegrationClient(object):
|
|
14246
14246
|
:rtype: :class:`~oci.response.Response`
|
14247
14247
|
|
14248
14248
|
:example:
|
14249
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14249
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_pipelines.py.html>`__ to see an example of how to use list_pipelines API.
|
14250
14250
|
"""
|
14251
14251
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14252
14252
|
required_arguments = ['workspaceId']
|
@@ -14412,7 +14412,7 @@ class DataIntegrationClient(object):
|
|
14412
14412
|
:rtype: :class:`~oci.response.Response`
|
14413
14413
|
|
14414
14414
|
:example:
|
14415
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14415
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_projects.py.html>`__ to see an example of how to use list_projects API.
|
14416
14416
|
"""
|
14417
14417
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14418
14418
|
required_arguments = ['workspaceId']
|
@@ -14594,7 +14594,7 @@ class DataIntegrationClient(object):
|
|
14594
14594
|
:rtype: :class:`~oci.response.Response`
|
14595
14595
|
|
14596
14596
|
:example:
|
14597
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14597
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_published_objects.py.html>`__ to see an example of how to use list_published_objects API.
|
14598
14598
|
"""
|
14599
14599
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14600
14600
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -14761,7 +14761,7 @@ class DataIntegrationClient(object):
|
|
14761
14761
|
:rtype: :class:`~oci.response.Response`
|
14762
14762
|
|
14763
14763
|
:example:
|
14764
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14764
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_references.py.html>`__ to see an example of how to use list_references API.
|
14765
14765
|
"""
|
14766
14766
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14767
14767
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -14931,7 +14931,7 @@ class DataIntegrationClient(object):
|
|
14931
14931
|
:rtype: :class:`~oci.response.Response`
|
14932
14932
|
|
14933
14933
|
:example:
|
14934
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14934
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_runtime_operators.py.html>`__ to see an example of how to use list_runtime_operators API.
|
14935
14935
|
"""
|
14936
14936
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14937
14937
|
required_arguments = ['workspaceId', 'applicationKey', 'runtimePipelineKey']
|
@@ -15113,7 +15113,7 @@ class DataIntegrationClient(object):
|
|
15113
15113
|
:rtype: :class:`~oci.response.Response`
|
15114
15114
|
|
15115
15115
|
:example:
|
15116
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15116
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_runtime_pipelines.py.html>`__ to see an example of how to use list_runtime_pipelines API.
|
15117
15117
|
"""
|
15118
15118
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15119
15119
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -15289,7 +15289,7 @@ class DataIntegrationClient(object):
|
|
15289
15289
|
:rtype: :class:`~oci.response.Response`
|
15290
15290
|
|
15291
15291
|
:example:
|
15292
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15292
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_schedules.py.html>`__ to see an example of how to use list_schedules API.
|
15293
15293
|
"""
|
15294
15294
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15295
15295
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -15462,7 +15462,7 @@ class DataIntegrationClient(object):
|
|
15462
15462
|
:rtype: :class:`~oci.response.Response`
|
15463
15463
|
|
15464
15464
|
:example:
|
15465
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15465
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_schemas.py.html>`__ to see an example of how to use list_schemas API.
|
15466
15466
|
"""
|
15467
15467
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15468
15468
|
required_arguments = ['workspaceId', 'connectionKey', 'schemaResourceName']
|
@@ -15639,7 +15639,7 @@ class DataIntegrationClient(object):
|
|
15639
15639
|
:rtype: :class:`~oci.response.Response`
|
15640
15640
|
|
15641
15641
|
:example:
|
15642
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15642
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_task_run_lineages.py.html>`__ to see an example of how to use list_task_run_lineages API.
|
15643
15643
|
"""
|
15644
15644
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15645
15645
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -15804,7 +15804,7 @@ class DataIntegrationClient(object):
|
|
15804
15804
|
:rtype: :class:`~oci.response.Response`
|
15805
15805
|
|
15806
15806
|
:example:
|
15807
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15807
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_task_run_logs.py.html>`__ to see an example of how to use list_task_run_logs API.
|
15808
15808
|
"""
|
15809
15809
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15810
15810
|
required_arguments = ['workspaceId', 'applicationKey', 'taskRunKey']
|
@@ -15979,7 +15979,7 @@ class DataIntegrationClient(object):
|
|
15979
15979
|
:rtype: :class:`~oci.response.Response`
|
15980
15980
|
|
15981
15981
|
:example:
|
15982
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15982
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_task_runs.py.html>`__ to see an example of how to use list_task_runs API.
|
15983
15983
|
"""
|
15984
15984
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15985
15985
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -16160,7 +16160,7 @@ class DataIntegrationClient(object):
|
|
16160
16160
|
:rtype: :class:`~oci.response.Response`
|
16161
16161
|
|
16162
16162
|
:example:
|
16163
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16163
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_task_schedules.py.html>`__ to see an example of how to use list_task_schedules API.
|
16164
16164
|
"""
|
16165
16165
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16166
16166
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -16329,7 +16329,7 @@ class DataIntegrationClient(object):
|
|
16329
16329
|
:rtype: :class:`~oci.response.Response`
|
16330
16330
|
|
16331
16331
|
:example:
|
16332
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16332
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_task_validations.py.html>`__ to see an example of how to use list_task_validations API.
|
16333
16333
|
"""
|
16334
16334
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16335
16335
|
required_arguments = ['workspaceId']
|
@@ -16501,7 +16501,7 @@ class DataIntegrationClient(object):
|
|
16501
16501
|
:rtype: :class:`~oci.response.Response`
|
16502
16502
|
|
16503
16503
|
:example:
|
16504
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16504
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_tasks.py.html>`__ to see an example of how to use list_tasks API.
|
16505
16505
|
"""
|
16506
16506
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16507
16507
|
required_arguments = ['workspaceId']
|
@@ -16668,7 +16668,7 @@ class DataIntegrationClient(object):
|
|
16668
16668
|
:rtype: :class:`~oci.response.Response`
|
16669
16669
|
|
16670
16670
|
:example:
|
16671
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16671
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_templates.py.html>`__ to see an example of how to use list_templates API.
|
16672
16672
|
"""
|
16673
16673
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16674
16674
|
required_arguments = ['workspaceId']
|
@@ -16832,7 +16832,7 @@ class DataIntegrationClient(object):
|
|
16832
16832
|
:rtype: :class:`~oci.response.Response`
|
16833
16833
|
|
16834
16834
|
:example:
|
16835
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16835
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_user_defined_function_validations.py.html>`__ to see an example of how to use list_user_defined_function_validations API.
|
16836
16836
|
"""
|
16837
16837
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16838
16838
|
required_arguments = ['workspaceId']
|
@@ -16998,7 +16998,7 @@ class DataIntegrationClient(object):
|
|
16998
16998
|
:rtype: :class:`~oci.response.Response`
|
16999
16999
|
|
17000
17000
|
:example:
|
17001
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17001
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_user_defined_functions.py.html>`__ to see an example of how to use list_user_defined_functions API.
|
17002
17002
|
"""
|
17003
17003
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17004
17004
|
required_arguments = ['workspaceId']
|
@@ -17152,7 +17152,7 @@ class DataIntegrationClient(object):
|
|
17152
17152
|
:rtype: :class:`~oci.response.Response`
|
17153
17153
|
|
17154
17154
|
:example:
|
17155
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17155
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
17156
17156
|
"""
|
17157
17157
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17158
17158
|
required_arguments = ['workRequestId']
|
@@ -17298,7 +17298,7 @@ class DataIntegrationClient(object):
|
|
17298
17298
|
:rtype: :class:`~oci.response.Response`
|
17299
17299
|
|
17300
17300
|
:example:
|
17301
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17301
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
17302
17302
|
"""
|
17303
17303
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17304
17304
|
required_arguments = ['workRequestId']
|
@@ -17452,7 +17452,7 @@ class DataIntegrationClient(object):
|
|
17452
17452
|
:rtype: :class:`~oci.response.Response`
|
17453
17453
|
|
17454
17454
|
:example:
|
17455
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17455
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
17456
17456
|
"""
|
17457
17457
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17458
17458
|
required_arguments = ['compartmentId']
|
@@ -17606,7 +17606,7 @@ class DataIntegrationClient(object):
|
|
17606
17606
|
:rtype: :class:`~oci.response.Response`
|
17607
17607
|
|
17608
17608
|
:example:
|
17609
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17609
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/list_workspaces.py.html>`__ to see an example of how to use list_workspaces API.
|
17610
17610
|
"""
|
17611
17611
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17612
17612
|
required_arguments = ['compartmentId']
|
@@ -17740,7 +17740,7 @@ class DataIntegrationClient(object):
|
|
17740
17740
|
:rtype: :class:`~oci.response.Response`
|
17741
17741
|
|
17742
17742
|
:example:
|
17743
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17743
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/start_workspace.py.html>`__ to see an example of how to use start_workspace API.
|
17744
17744
|
"""
|
17745
17745
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17746
17746
|
required_arguments = ['workspaceId']
|
@@ -17855,7 +17855,7 @@ class DataIntegrationClient(object):
|
|
17855
17855
|
:rtype: :class:`~oci.response.Response`
|
17856
17856
|
|
17857
17857
|
:example:
|
17858
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17858
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/stop_workspace.py.html>`__ to see an example of how to use stop_workspace API.
|
17859
17859
|
"""
|
17860
17860
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17861
17861
|
required_arguments = ['workspaceId']
|
@@ -17977,7 +17977,7 @@ class DataIntegrationClient(object):
|
|
17977
17977
|
:rtype: :class:`~oci.response.Response`
|
17978
17978
|
|
17979
17979
|
:example:
|
17980
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
17980
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_application.py.html>`__ to see an example of how to use update_application API.
|
17981
17981
|
"""
|
17982
17982
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
17983
17983
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -18091,7 +18091,7 @@ class DataIntegrationClient(object):
|
|
18091
18091
|
:rtype: :class:`~oci.response.Response`
|
18092
18092
|
|
18093
18093
|
:example:
|
18094
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18094
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_application_detailed_description.py.html>`__ to see an example of how to use update_application_detailed_description API.
|
18095
18095
|
"""
|
18096
18096
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18097
18097
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -18205,7 +18205,7 @@ class DataIntegrationClient(object):
|
|
18205
18205
|
:rtype: :class:`~oci.response.Response`
|
18206
18206
|
|
18207
18207
|
:example:
|
18208
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18208
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_connection.py.html>`__ to see an example of how to use update_connection API.
|
18209
18209
|
"""
|
18210
18210
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18211
18211
|
required_arguments = ['workspaceId', 'connectionKey']
|
@@ -18319,7 +18319,7 @@ class DataIntegrationClient(object):
|
|
18319
18319
|
:rtype: :class:`~oci.response.Response`
|
18320
18320
|
|
18321
18321
|
:example:
|
18322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_copy_object_request.py.html>`__ to see an example of how to use update_copy_object_request API.
|
18323
18323
|
"""
|
18324
18324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18325
18325
|
required_arguments = ['workspaceId', 'copyObjectRequestKey']
|
@@ -18433,7 +18433,7 @@ class DataIntegrationClient(object):
|
|
18433
18433
|
:rtype: :class:`~oci.response.Response`
|
18434
18434
|
|
18435
18435
|
:example:
|
18436
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18436
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_data_asset.py.html>`__ to see an example of how to use update_data_asset API.
|
18437
18437
|
"""
|
18438
18438
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18439
18439
|
required_arguments = ['workspaceId', 'dataAssetKey']
|
@@ -18547,7 +18547,7 @@ class DataIntegrationClient(object):
|
|
18547
18547
|
:rtype: :class:`~oci.response.Response`
|
18548
18548
|
|
18549
18549
|
:example:
|
18550
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18550
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_data_flow.py.html>`__ to see an example of how to use update_data_flow API.
|
18551
18551
|
"""
|
18552
18552
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18553
18553
|
required_arguments = ['workspaceId', 'dataFlowKey']
|
@@ -18661,7 +18661,7 @@ class DataIntegrationClient(object):
|
|
18661
18661
|
:rtype: :class:`~oci.response.Response`
|
18662
18662
|
|
18663
18663
|
:example:
|
18664
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18664
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_dis_application.py.html>`__ to see an example of how to use update_dis_application API.
|
18665
18665
|
"""
|
18666
18666
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18667
18667
|
required_arguments = ['workspaceId', 'disApplicationId']
|
@@ -18775,7 +18775,7 @@ class DataIntegrationClient(object):
|
|
18775
18775
|
:rtype: :class:`~oci.response.Response`
|
18776
18776
|
|
18777
18777
|
:example:
|
18778
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18778
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_dis_application_detailed_description.py.html>`__ to see an example of how to use update_dis_application_detailed_description API.
|
18779
18779
|
"""
|
18780
18780
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18781
18781
|
required_arguments = ['workspaceId', 'applicationKey']
|
@@ -18889,7 +18889,7 @@ class DataIntegrationClient(object):
|
|
18889
18889
|
:rtype: :class:`~oci.response.Response`
|
18890
18890
|
|
18891
18891
|
:example:
|
18892
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
18892
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_export_request.py.html>`__ to see an example of how to use update_export_request API.
|
18893
18893
|
"""
|
18894
18894
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
18895
18895
|
required_arguments = ['workspaceId', 'exportRequestKey']
|
@@ -19006,7 +19006,7 @@ class DataIntegrationClient(object):
|
|
19006
19006
|
:rtype: :class:`~oci.response.Response`
|
19007
19007
|
|
19008
19008
|
:example:
|
19009
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19009
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_external_publication.py.html>`__ to see an example of how to use update_external_publication API.
|
19010
19010
|
"""
|
19011
19011
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19012
19012
|
required_arguments = ['workspaceId', 'taskKey', 'externalPublicationsKey']
|
@@ -19121,7 +19121,7 @@ class DataIntegrationClient(object):
|
|
19121
19121
|
:rtype: :class:`~oci.response.Response`
|
19122
19122
|
|
19123
19123
|
:example:
|
19124
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19124
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_folder.py.html>`__ to see an example of how to use update_folder API.
|
19125
19125
|
"""
|
19126
19126
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19127
19127
|
required_arguments = ['workspaceId', 'folderKey']
|
@@ -19235,7 +19235,7 @@ class DataIntegrationClient(object):
|
|
19235
19235
|
:rtype: :class:`~oci.response.Response`
|
19236
19236
|
|
19237
19237
|
:example:
|
19238
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19238
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_function_library.py.html>`__ to see an example of how to use update_function_library API.
|
19239
19239
|
"""
|
19240
19240
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19241
19241
|
required_arguments = ['workspaceId', 'functionLibraryKey']
|
@@ -19349,7 +19349,7 @@ class DataIntegrationClient(object):
|
|
19349
19349
|
:rtype: :class:`~oci.response.Response`
|
19350
19350
|
|
19351
19351
|
:example:
|
19352
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19352
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_import_request.py.html>`__ to see an example of how to use update_import_request API.
|
19353
19353
|
"""
|
19354
19354
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19355
19355
|
required_arguments = ['workspaceId', 'importRequestKey']
|
@@ -19463,7 +19463,7 @@ class DataIntegrationClient(object):
|
|
19463
19463
|
:rtype: :class:`~oci.response.Response`
|
19464
19464
|
|
19465
19465
|
:example:
|
19466
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19466
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_pipeline.py.html>`__ to see an example of how to use update_pipeline API.
|
19467
19467
|
"""
|
19468
19468
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19469
19469
|
required_arguments = ['workspaceId', 'pipelineKey']
|
@@ -19577,7 +19577,7 @@ class DataIntegrationClient(object):
|
|
19577
19577
|
:rtype: :class:`~oci.response.Response`
|
19578
19578
|
|
19579
19579
|
:example:
|
19580
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19580
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_project.py.html>`__ to see an example of how to use update_project API.
|
19581
19581
|
"""
|
19582
19582
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19583
19583
|
required_arguments = ['workspaceId', 'projectKey']
|
@@ -19697,7 +19697,7 @@ class DataIntegrationClient(object):
|
|
19697
19697
|
:rtype: :class:`~oci.response.Response`
|
19698
19698
|
|
19699
19699
|
:example:
|
19700
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19700
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_reference.py.html>`__ to see an example of how to use update_reference API.
|
19701
19701
|
"""
|
19702
19702
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19703
19703
|
required_arguments = ['workspaceId', 'applicationKey', 'referenceKey']
|
@@ -19818,7 +19818,7 @@ class DataIntegrationClient(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/dataintegration/update_schedule.py.html>`__ to see an example of how to use update_schedule API.
|
19822
19822
|
"""
|
19823
19823
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19824
19824
|
required_arguments = ['workspaceId', 'applicationKey', 'scheduleKey']
|
@@ -19933,7 +19933,7 @@ class DataIntegrationClient(object):
|
|
19933
19933
|
:rtype: :class:`~oci.response.Response`
|
19934
19934
|
|
19935
19935
|
:example:
|
19936
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
19936
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_task.py.html>`__ to see an example of how to use update_task API.
|
19937
19937
|
"""
|
19938
19938
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
19939
19939
|
required_arguments = ['workspaceId', 'taskKey']
|
@@ -20050,7 +20050,7 @@ class DataIntegrationClient(object):
|
|
20050
20050
|
:rtype: :class:`~oci.response.Response`
|
20051
20051
|
|
20052
20052
|
:example:
|
20053
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20053
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_task_run.py.html>`__ to see an example of how to use update_task_run API.
|
20054
20054
|
"""
|
20055
20055
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20056
20056
|
required_arguments = ['workspaceId', 'applicationKey', 'taskRunKey']
|
@@ -20168,7 +20168,7 @@ class DataIntegrationClient(object):
|
|
20168
20168
|
:rtype: :class:`~oci.response.Response`
|
20169
20169
|
|
20170
20170
|
:example:
|
20171
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20171
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_task_schedule.py.html>`__ to see an example of how to use update_task_schedule API.
|
20172
20172
|
"""
|
20173
20173
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20174
20174
|
required_arguments = ['workspaceId', 'applicationKey', 'taskScheduleKey']
|
@@ -20283,7 +20283,7 @@ class DataIntegrationClient(object):
|
|
20283
20283
|
:rtype: :class:`~oci.response.Response`
|
20284
20284
|
|
20285
20285
|
:example:
|
20286
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20286
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_user_defined_function.py.html>`__ to see an example of how to use update_user_defined_function API.
|
20287
20287
|
"""
|
20288
20288
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20289
20289
|
required_arguments = ['workspaceId', 'userDefinedFunctionKey']
|
@@ -20394,7 +20394,7 @@ class DataIntegrationClient(object):
|
|
20394
20394
|
:rtype: :class:`~oci.response.Response`
|
20395
20395
|
|
20396
20396
|
:example:
|
20397
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
20397
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/dataintegration/update_workspace.py.html>`__ to see an example of how to use update_workspace API.
|
20398
20398
|
"""
|
20399
20399
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
20400
20400
|
required_arguments = ['workspaceId']
|