oci 2.154.2__py3-none-any.whl → 2.155.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oci/__init__.py +2 -2
- oci/access_governance_cp/access_governance_cp_client.py +8 -8
- oci/addons/adk/agent.py +82 -32
- oci/addons/adk/mcp/__init__.py +11 -0
- oci/addons/adk/mcp/mcp_client.py +420 -0
- oci/addons/adk/tool/function_tool.py +7 -3
- oci/addons/adk/tool/tool.py +11 -1
- oci/addons/adk/tool/toolkit.py +11 -2
- oci/adm/application_dependency_management_client.py +36 -36
- oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
- oci/ai_document/ai_service_document_client.py +26 -26
- oci/ai_language/ai_service_language_client.py +44 -44
- oci/ai_speech/ai_service_speech_client.py +19 -19
- oci/ai_vision/ai_service_vision_client.py +28 -28
- oci/analytics/analytics_client.py +24 -24
- oci/announcements_service/announcement_client.py +5 -5
- oci/announcements_service/announcement_subscription_client.py +9 -9
- oci/announcements_service/announcements_preferences_client.py +4 -4
- oci/announcements_service/service_client.py +1 -1
- oci/apiaccesscontrol/api_metadata_client.py +6 -6
- oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
- oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
- oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
- oci/apigateway/api_gateway_client.py +21 -21
- oci/apigateway/deployment_client.py +6 -6
- oci/apigateway/gateway_client.py +6 -6
- oci/apigateway/subscribers_client.py +6 -6
- oci/apigateway/usage_plans_client.py +6 -6
- oci/apigateway/work_requests_client.py +5 -5
- oci/apm_config/config_client.py +12 -12
- oci/apm_control_plane/apm_domain_client.py +14 -14
- oci/apm_synthetics/apm_synthetic_client.py +28 -28
- oci/apm_traces/__init__.py +3 -1
- oci/apm_traces/attributes_client.py +12 -12
- oci/apm_traces/models/__init__.py +25 -1
- oci/apm_traces/models/attribute.py +101 -0
- oci/apm_traces/models/attribute_metadata.py +149 -0
- oci/apm_traces/models/attribute_response.py +2 -2
- oci/apm_traces/models/attribute_update_response.py +2 -2
- oci/apm_traces/models/auto_activate_status.py +16 -0
- oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
- oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
- oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
- oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
- oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
- oci/apm_traces/models/create_scheduled_query_details.py +471 -0
- oci/apm_traces/models/custom_metric.py +295 -0
- oci/apm_traces/models/log.py +475 -0
- oci/apm_traces/models/object_storage.py +132 -0
- oci/apm_traces/models/scheduled_query.py +666 -0
- oci/apm_traces/models/scheduled_query_collection.py +70 -0
- oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
- oci/apm_traces/models/scheduled_query_summary.py +573 -0
- oci/apm_traces/models/streaming.py +70 -0
- oci/apm_traces/models/tag_metadata.py +2 -2
- oci/apm_traces/models/update_scheduled_query_details.py +471 -0
- oci/apm_traces/query_client.py +8 -6
- oci/apm_traces/scheduled_query_client.py +755 -0
- oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
- oci/apm_traces/trace_client.py +131 -6
- oci/appmgmt_control/appmgmt_control_client.py +8 -8
- oci/artifacts/artifacts_client.py +32 -32
- oci/audit/audit_client.py +3 -3
- oci/autoscaling/auto_scaling_client.py +11 -11
- oci/base_client.py +3 -0
- oci/bastion/bastion_client.py +15 -15
- oci/bds/bds_client.py +88 -88
- oci/blockchain/blockchain_platform_client.py +27 -27
- oci/budget/budget_client.py +10 -10
- oci/capacity_management/capacity_management_client.py +32 -32
- oci/capacity_management/demand_signal_client.py +13 -13
- oci/capacity_management/internal_demand_signal_client.py +12 -12
- oci/certificates/certificates_client.py +5 -5
- oci/certificates_management/certificates_management_client.py +32 -32
- oci/cims/incident_client.py +6 -6
- oci/cloud_bridge/common_client.py +5 -5
- oci/cloud_bridge/discovery_client.py +15 -15
- oci/cloud_bridge/inventory_client.py +16 -16
- oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
- oci/cloud_guard/cloud_guard_client.py +155 -155
- oci/cloud_migrations/migration_client.py +43 -43
- oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
- oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
- oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
- oci/compute_instance_agent/plugin_client.py +2 -2
- oci/compute_instance_agent/pluginconfig_client.py +1 -1
- oci/container_engine/container_engine_client.py +46 -46
- oci/container_instances/container_instance_client.py +18 -18
- oci/core/blockstorage_client.py +60 -60
- oci/core/compute_client.py +125 -125
- oci/core/compute_management_client.py +32 -32
- oci/core/virtual_network_client.py +258 -258
- oci/dashboard_service/dashboard_client.py +6 -6
- oci/dashboard_service/dashboard_group_client.py +6 -6
- oci/data_catalog/data_catalog_client.py +149 -149
- oci/data_flow/data_flow_client.py +45 -45
- oci/data_integration/data_integration_client.py +163 -163
- oci/data_labeling_service/data_labeling_management_client.py +17 -17
- oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
- oci/data_safe/data_safe_client.py +317 -317
- oci/data_science/data_science_client.py +145 -145
- oci/database/database_client.py +901 -421
- oci/database/database_client_composite_operations.py +123 -0
- oci/database/models/__init__.py +14 -0
- oci/database/models/autonomous_container_database.py +37 -0
- oci/database/models/autonomous_container_database_summary.py +37 -0
- oci/database/models/autonomous_database_software_image.py +37 -0
- oci/database/models/autonomous_database_software_image_summary.py +37 -0
- oci/database/models/autonomous_vm_cluster.py +37 -0
- oci/database/models/autonomous_vm_cluster_summary.py +37 -0
- oci/database/models/azure_encryption_key_details.py +80 -0
- oci/database/models/backup.py +7 -3
- oci/database/models/backup_destination.py +37 -0
- oci/database/models/backup_destination_configuration_summary.py +7 -3
- oci/database/models/backup_destination_details.py +7 -3
- oci/database/models/backup_destination_details_summary.py +7 -3
- oci/database/models/backup_destination_summary.py +37 -0
- oci/database/models/backup_summary.py +7 -3
- oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
- oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
- oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
- oci/database/models/cloud_vm_cluster.py +80 -2
- oci/database/models/cloud_vm_cluster_summary.py +80 -2
- oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
- oci/database/models/create_cloud_vm_cluster_details.py +17 -17
- oci/database/models/create_database_base.py +1 -1
- oci/database/models/create_vm_cluster_details.py +2 -2
- oci/database/models/database.py +37 -0
- oci/database/models/database_software_image.py +37 -0
- oci/database/models/database_software_image_summary.py +37 -0
- oci/database/models/database_summary.py +37 -0
- oci/database/models/db_home.py +37 -0
- oci/database/models/db_home_from_agent_resource_id.py +37 -0
- oci/database/models/db_home_summary.py +37 -0
- oci/database/models/db_node.py +37 -0
- oci/database/models/db_node_summary.py +37 -0
- oci/database/models/db_server.py +37 -0
- oci/database/models/db_server_summary.py +37 -0
- oci/database/models/db_system.py +37 -0
- oci/database/models/db_system_summary.py +37 -0
- oci/database/models/encryption_key_location_details.py +15 -5
- oci/database/models/exadata_infrastructure.py +37 -0
- oci/database/models/exadata_infrastructure_summary.py +37 -0
- oci/database/models/execution_action.py +39 -2
- oci/database/models/execution_action_summary.py +39 -2
- oci/database/models/execution_window.py +39 -2
- oci/database/models/execution_window_summary.py +39 -2
- oci/database/models/external_container_database.py +37 -0
- oci/database/models/external_container_database_summary.py +37 -0
- oci/database/models/external_database_base.py +37 -0
- oci/database/models/external_database_connector.py +37 -0
- oci/database/models/external_database_connector_summary.py +37 -0
- oci/database/models/external_hsm_encryption_details.py +1 -1
- oci/database/models/external_macs_connector.py +7 -0
- oci/database/models/external_macs_connector_summary.py +7 -0
- oci/database/models/external_non_container_database.py +37 -0
- oci/database/models/external_non_container_database_summary.py +37 -0
- oci/database/models/external_pluggable_database.py +37 -0
- oci/database/models/external_pluggable_database_summary.py +37 -0
- oci/database/models/identity_connector_details.py +113 -0
- oci/database/models/key_store.py +39 -2
- oci/database/models/key_store_summary.py +39 -2
- oci/database/models/maintenance_run.py +37 -0
- oci/database/models/maintenance_run_history.py +39 -2
- oci/database/models/maintenance_run_history_summary.py +39 -2
- oci/database/models/maintenance_run_summary.py +37 -0
- oci/database/models/oneoff_patch.py +39 -2
- oci/database/models/oneoff_patch_summary.py +39 -2
- oci/database/models/pluggable_database.py +37 -0
- oci/database/models/pluggable_database_summary.py +37 -0
- oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/resource_pool_member_collection.py +70 -0
- oci/database/models/resource_pool_member_summary.py +74 -0
- oci/database/models/scheduling_policy.py +39 -2
- oci/database/models/scheduling_policy_summary.py +39 -2
- oci/database/models/scheduling_window.py +39 -2
- oci/database/models/scheduling_window_summary.py +39 -2
- oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
- oci/database/models/vm_cluster.py +37 -0
- oci/database/models/vm_cluster_network.py +39 -2
- oci/database/models/vm_cluster_network_summary.py +39 -2
- oci/database/models/vm_cluster_summary.py +37 -0
- oci/database_management/db_management_client.py +229 -229
- oci/database_management/diagnosability_client.py +4 -4
- oci/database_management/managed_my_sql_databases_client.py +15 -15
- oci/database_management/perfhub_client.py +1 -1
- oci/database_management/sql_tuning_client.py +17 -17
- oci/database_migration/database_migration_client.py +155 -42
- oci/database_migration/database_migration_client_composite_operations.py +42 -0
- oci/database_migration/models/__init__.py +4 -0
- oci/database_migration/models/collect_traces_data.py +183 -0
- oci/database_migration/models/collect_traces_details.py +132 -0
- oci/database_migration/models/job.py +27 -0
- oci/database_tools/database_tools_client.py +23 -23
- oci/dblm/db_life_cycle_management_client.py +14 -14
- oci/dbmulticloud/__init__.py +28 -0
- oci/dbmulticloud/models/__init__.py +112 -0
- oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
- oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
- oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
- oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
- oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
- oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
- oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
- oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
- oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
- oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
- oci/dbmulticloud/models/resources.py +229 -0
- oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
- oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
- oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
- oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
- oci/dbmulticloud/models/work_request.py +496 -0
- oci/dbmulticloud/models/work_request_error.py +134 -0
- oci/dbmulticloud/models/work_request_error_collection.py +70 -0
- oci/dbmulticloud/models/work_request_log_entry.py +101 -0
- oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
- oci/dbmulticloud/models/work_request_resource.py +232 -0
- oci/dbmulticloud/models/work_request_summary.py +496 -0
- oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
- oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
- oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
- oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
- oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
- oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
- oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
- oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
- oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
- oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
- oci/dbmulticloud/work_request_client.py +770 -0
- oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
- oci/delegate_access_control/delegate_access_control_client.py +26 -26
- oci/delegate_access_control/work_request_client.py +4 -4
- oci/demand_signal/occ_demand_signal_client.py +7 -7
- oci/desktops/desktop_service_client.py +21 -21
- oci/devops/devops_client.py +141 -141
- oci/disaster_recovery/disaster_recovery_client.py +31 -31
- oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
- oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
- oci/distributed_database/distributed_db_service_client.py +19 -19
- oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
- oci/dns/dns_client.py +54 -54
- oci/dts/appliance_export_job_client.py +6 -6
- oci/dts/shipping_vendors_client.py +1 -1
- oci/dts/transfer_appliance_client.py +8 -8
- oci/dts/transfer_appliance_entitlement_client.py +3 -3
- oci/dts/transfer_device_client.py +5 -5
- oci/dts/transfer_job_client.py +6 -6
- oci/dts/transfer_package_client.py +7 -7
- oci/em_warehouse/em_warehouse_client.py +13 -13
- oci/email/email_client.py +31 -31
- oci/email_data_plane/email_dp_client.py +1 -1
- oci/events/events_client.py +6 -6
- oci/file_storage/file_storage_client.py +74 -74
- oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
- oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
- oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
- oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
- oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
- oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
- oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
- oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
- oci/fleet_software_update/fleet_software_update_client.py +46 -46
- oci/fleet_software_update/models/__init__.py +12 -0
- oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
- oci/fleet_software_update/models/fsu_cycle.py +11 -3
- oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
- oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
- oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
- oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
- oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
- oci/fleet_software_update/models/upgrade_details.py +107 -0
- oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
- oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
- oci/functions/functions_invoke_client.py +1 -1
- oci/functions/functions_management_client.py +16 -16
- oci/fusion_apps/fusion_applications_client.py +41 -41
- oci/generative_ai/generative_ai_client.py +22 -22
- oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
- oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
- oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
- oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
- oci/globally_distributed_database/sharded_database_service_client.py +30 -30
- oci/golden_gate/golden_gate_client.py +89 -89
- oci/governance_rules_control_plane/governance_rule_client.py +15 -15
- oci/governance_rules_control_plane/work_request_client.py +5 -5
- oci/healthchecks/health_checks_client.py +17 -17
- oci/identity/identity_client.py +145 -145
- oci/identity_data_plane/dataplane_client.py +2 -2
- oci/identity_domains/identity_domains_client.py +311 -311
- oci/integration/integration_instance_client.py +19 -19
- oci/jms/java_management_service_client.py +79 -79
- oci/jms_java_downloads/java_download_client.py +25 -25
- oci/key_management/ekm_client.py +5 -5
- oci/key_management/kms_crypto_client.py +6 -6
- oci/key_management/kms_hsm_cluster_client.py +12 -12
- oci/key_management/kms_management_client.py +21 -21
- oci/key_management/kms_vault_client.py +14 -14
- oci/license_manager/license_manager_client.py +18 -18
- oci/limits/limits_client.py +4 -4
- oci/limits/quotas_client.py +7 -7
- oci/load_balancer/load_balancer_client.py +61 -61
- oci/load_balancer/models/backend.py +4 -4
- oci/load_balancer/models/backend_details.py +10 -4
- oci/load_balancer/models/backend_set.py +6 -4
- oci/load_balancer/models/backend_set_details.py +12 -4
- oci/load_balancer/models/create_backend_details.py +10 -4
- oci/load_balancer/models/create_backend_set_details.py +12 -4
- oci/load_balancer/models/create_listener_details.py +6 -4
- oci/load_balancer/models/create_load_balancer_details.py +39 -0
- oci/load_balancer/models/listener.py +6 -4
- oci/load_balancer/models/listener_details.py +6 -4
- oci/load_balancer/models/load_balancer.py +61 -2
- oci/load_balancer/models/reserved_ip.py +4 -0
- oci/load_balancer/models/update_backend_details.py +10 -4
- oci/load_balancer/models/update_backend_set_details.py +12 -4
- oci/load_balancer/models/update_listener_details.py +6 -4
- oci/load_balancer/models/update_load_balancer_details.py +59 -0
- oci/lockbox/lockbox_client.py +24 -24
- oci/log_analytics/log_analytics_client.py +200 -200
- oci/logging/logging_management_client.py +30 -30
- oci/loggingingestion/logging_client.py +1 -1
- oci/loggingsearch/log_search_client.py +1 -1
- oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
- oci/management_agent/management_agent_client.py +28 -28
- oci/management_dashboard/dashx_apis_client.py +18 -18
- oci/marketplace/account_client.py +2 -2
- oci/marketplace/marketplace_client.py +30 -30
- oci/marketplace_private_offer/attachment_client.py +5 -5
- oci/marketplace_private_offer/offer_client.py +6 -6
- oci/marketplace_publisher/attachment_client.py +5 -5
- oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
- oci/marketplace_publisher/offer_client.py +6 -6
- oci/media_services/media_services_client.py +60 -60
- oci/media_services/media_stream_client.py +2 -2
- oci/mngdmac/mac_device_client.py +3 -3
- oci/mngdmac/mac_order_client.py +11 -11
- oci/model_deployment/model_deployment_client.py +2 -2
- oci/monitoring/monitoring_client.py +18 -18
- oci/mysql/channels_client.py +7 -7
- oci/mysql/db_backups_client.py +8 -8
- oci/mysql/db_system_client.py +17 -17
- oci/mysql/models/__init__.py +2 -0
- oci/mysql/models/backup.py +29 -2
- oci/mysql/models/backup_summary.py +29 -2
- oci/mysql/models/copy_backup_details.py +29 -2
- oci/mysql/models/create_db_system_details.py +27 -0
- oci/mysql/models/db_system.py +27 -0
- oci/mysql/models/db_system_snapshot.py +27 -0
- oci/mysql/models/encrypt_data_details.py +117 -0
- oci/mysql/models/replica.py +27 -0
- oci/mysql/models/update_db_system_details.py +27 -0
- oci/mysql/mysqlaas_client.py +7 -7
- oci/mysql/replicas_client.py +5 -5
- oci/mysql/work_requests_client.py +4 -4
- oci/network_firewall/network_firewall_client.py +92 -92
- oci/network_load_balancer/network_load_balancer_client.py +35 -35
- oci/nosql/models/__init__.py +14 -0
- oci/nosql/models/configuration.py +109 -0
- oci/nosql/models/hosted_configuration.py +78 -0
- oci/nosql/models/kms_key.py +244 -0
- oci/nosql/models/multi_tenancy_configuration.py +49 -0
- oci/nosql/models/update_configuration_details.py +109 -0
- oci/nosql/models/update_hosted_configuration_details.py +78 -0
- oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
- oci/nosql/models/work_request.py +7 -3
- oci/nosql/models/work_request_summary.py +7 -3
- oci/nosql/nosql_client.py +340 -25
- oci/nosql/nosql_client_composite_operations.py +81 -0
- oci/object_storage/object_storage_client.py +55 -55
- oci/oce/oce_instance_client.py +10 -10
- oci/oci_control_center/occ_metrics_client.py +3 -3
- oci/ocvp/cluster_client.py +5 -5
- oci/ocvp/esxi_host_client.py +8 -8
- oci/ocvp/sddc_client.py +14 -14
- oci/ocvp/work_request_client.py +4 -4
- oci/oda/management_client.py +59 -59
- oci/oda/oda_client.py +17 -17
- oci/oda/odapackage_client.py +7 -7
- oci/onesubscription/billing_schedule_client.py +1 -1
- oci/onesubscription/commitment_client.py +2 -2
- oci/onesubscription/computed_usage_client.py +3 -3
- oci/onesubscription/invoice_summary_client.py +2 -2
- oci/onesubscription/organization_subscription_client.py +1 -1
- oci/onesubscription/ratecard_client.py +1 -1
- oci/onesubscription/subscribed_service_client.py +2 -2
- oci/onesubscription/subscription_client.py +1 -1
- oci/ons/notification_control_plane_client.py +6 -6
- oci/ons/notification_data_plane_client.py +10 -10
- oci/opa/opa_instance_client.py +13 -13
- oci/opensearch/opensearch_cluster_backup_client.py +4 -4
- oci/opensearch/opensearch_cluster_client.py +17 -17
- oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
- oci/operator_access_control/access_requests_client.py +10 -10
- oci/operator_access_control/operator_actions_client.py +2 -2
- oci/operator_access_control/operator_control_assignment_client.py +8 -8
- oci/operator_access_control/operator_control_client.py +6 -6
- oci/opsi/operations_insights_client.py +181 -181
- oci/optimizer/optimizer_client.py +26 -26
- oci/os_management/event_client.py +8 -8
- oci/os_management/os_management_client.py +69 -69
- oci/os_management_hub/event_client.py +8 -8
- oci/os_management_hub/lifecycle_environment_client.py +13 -13
- oci/os_management_hub/managed_instance_client.py +33 -33
- oci/os_management_hub/managed_instance_group_client.py +26 -26
- oci/os_management_hub/management_station_client.py +10 -10
- oci/os_management_hub/onboarding_client.py +13 -13
- oci/os_management_hub/reporting_managed_instance_client.py +3 -3
- oci/os_management_hub/scheduled_job_client.py +7 -7
- oci/os_management_hub/software_source_client.py +33 -33
- oci/os_management_hub/work_request_client.py +5 -5
- oci/osp_gateway/address_rule_service_client.py +1 -1
- oci/osp_gateway/address_service_client.py +2 -2
- oci/osp_gateway/invoice_service_client.py +5 -5
- oci/osp_gateway/subscription_service_client.py +5 -5
- oci/osub_billing_schedule/billing_schedule_client.py +1 -1
- oci/osub_organization_subscription/organization_subscription_client.py +1 -1
- oci/osub_subscription/commitment_client.py +2 -2
- oci/osub_subscription/ratecard_client.py +1 -1
- oci/osub_subscription/subscription_client.py +1 -1
- oci/osub_usage/computed_usage_client.py +3 -3
- oci/psql/postgresql_client.py +34 -34
- oci/queue/queue_admin_client.py +11 -11
- oci/queue/queue_client.py +8 -8
- oci/recovery/database_recovery_client.py +26 -26
- oci/redis/oci_cache_user_client.py +7 -7
- oci/redis/redis_cluster_client.py +15 -15
- oci/redis/redis_identity_client.py +1 -1
- oci/resource_manager/resource_manager_client.py +52 -52
- oci/resource_scheduler/schedule_client.py +14 -14
- oci/resource_search/resource_search_client.py +3 -3
- oci/rover/rover_bundle_client.py +8 -8
- oci/rover/rover_cluster_client.py +8 -8
- oci/rover/rover_entitlement_client.py +6 -6
- oci/rover/rover_node_client.py +15 -15
- oci/rover/shape_client.py +1 -1
- oci/rover/work_requests_client.py +5 -5
- oci/sch/connector_plugins_client.py +2 -2
- oci/sch/service_connector_client.py +12 -12
- oci/secrets/secrets_client.py +3 -3
- oci/security_attribute/security_attribute_client.py +18 -18
- oci/service_catalog/service_catalog_client.py +26 -26
- oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
- oci/service_mesh/service_mesh_client.py +96 -96
- oci/stack_monitoring/stack_monitoring_client.py +87 -87
- oci/streaming/stream_admin_client.py +18 -18
- oci/streaming/stream_client.py +8 -8
- oci/tenant_manager_control_plane/domain_client.py +5 -5
- oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
- oci/tenant_manager_control_plane/governance_client.py +2 -2
- oci/tenant_manager_control_plane/link_client.py +3 -3
- oci/tenant_manager_control_plane/orders_client.py +2 -2
- oci/tenant_manager_control_plane/organization_client.py +10 -10
- oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
- oci/tenant_manager_control_plane/subscription_client.py +11 -11
- oci/tenant_manager_control_plane/work_request_client.py +4 -4
- oci/threat_intelligence/threatintel_client.py +5 -5
- oci/usage/resources_client.py +2 -2
- oci/usage/rewards_client.py +6 -6
- oci/usage/usagelimits_client.py +1 -1
- oci/usage_api/usageapi_client.py +33 -33
- oci/vault/vaults_client.py +13 -13
- oci/vbs_inst/vbs_instance_client.py +10 -10
- oci/version.py +1 -1
- oci/visual_builder/vb_instance_client.py +14 -14
- oci/vn_monitoring/vn_monitoring_client.py +12 -12
- oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
- oci/waa/waa_client.py +13 -13
- oci/waa/work_request_client.py +4 -4
- oci/waas/redirect_client.py +6 -6
- oci/waas/waas_client.py +66 -66
- oci/waf/waf_client.py +24 -24
- oci/wlms/weblogic_management_service_client.py +41 -41
- oci/wlms/weblogic_management_service_configuration_client.py +2 -2
- oci/work_requests/work_request_client.py +4 -4
- oci/zpr/zpr_client.py +15 -15
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
- {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
oci/devops/devops_client.py
CHANGED
@@ -153,7 +153,7 @@ class DevopsClient(object):
|
|
153
153
|
:rtype: :class:`~oci.response.Response`
|
154
154
|
|
155
155
|
:example:
|
156
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
156
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/approve_deployment.py.html>`__ to see an example of how to use approve_deployment API.
|
157
157
|
"""
|
158
158
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
159
159
|
required_arguments = ['deploymentId']
|
@@ -267,7 +267,7 @@ class DevopsClient(object):
|
|
267
267
|
:rtype: :class:`~oci.response.Response`
|
268
268
|
|
269
269
|
:example:
|
270
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
270
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/cancel_build_run.py.html>`__ to see an example of how to use cancel_build_run API.
|
271
271
|
"""
|
272
272
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
273
273
|
required_arguments = ['buildRunId']
|
@@ -381,7 +381,7 @@ class DevopsClient(object):
|
|
381
381
|
:rtype: :class:`~oci.response.Response`
|
382
382
|
|
383
383
|
:example:
|
384
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
384
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/cancel_deployment.py.html>`__ to see an example of how to use cancel_deployment API.
|
385
385
|
"""
|
386
386
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
387
387
|
required_arguments = ['deploymentId']
|
@@ -492,7 +492,7 @@ class DevopsClient(object):
|
|
492
492
|
:rtype: :class:`~oci.response.Response`
|
493
493
|
|
494
494
|
:example:
|
495
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
495
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/cancel_scheduled_cascading_project_deletion.py.html>`__ to see an example of how to use cancel_scheduled_cascading_project_deletion API.
|
496
496
|
"""
|
497
497
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
498
498
|
required_arguments = ['projectId']
|
@@ -602,7 +602,7 @@ class DevopsClient(object):
|
|
602
602
|
:rtype: :class:`~oci.response.Response`
|
603
603
|
|
604
604
|
:example:
|
605
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
605
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/change_project_compartment.py.html>`__ to see an example of how to use change_project_compartment API.
|
606
606
|
"""
|
607
607
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
608
608
|
required_arguments = ['projectId']
|
@@ -708,7 +708,7 @@ class DevopsClient(object):
|
|
708
708
|
:rtype: :class:`~oci.response.Response`
|
709
709
|
|
710
710
|
:example:
|
711
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
711
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_build_pipeline.py.html>`__ to see an example of how to use create_build_pipeline API.
|
712
712
|
"""
|
713
713
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
714
714
|
required_arguments = []
|
@@ -802,7 +802,7 @@ class DevopsClient(object):
|
|
802
802
|
:rtype: :class:`~oci.response.Response`
|
803
803
|
|
804
804
|
:example:
|
805
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
805
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_build_pipeline_stage.py.html>`__ to see an example of how to use create_build_pipeline_stage API.
|
806
806
|
"""
|
807
807
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
808
808
|
required_arguments = []
|
@@ -899,7 +899,7 @@ class DevopsClient(object):
|
|
899
899
|
:rtype: :class:`~oci.response.Response`
|
900
900
|
|
901
901
|
:example:
|
902
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
902
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_build_run.py.html>`__ to see an example of how to use create_build_run API.
|
903
903
|
"""
|
904
904
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
905
905
|
required_arguments = []
|
@@ -995,7 +995,7 @@ class DevopsClient(object):
|
|
995
995
|
:rtype: :class:`~oci.response.Response`
|
996
996
|
|
997
997
|
:example:
|
998
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
998
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_connection.py.html>`__ to see an example of how to use create_connection API.
|
999
999
|
"""
|
1000
1000
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1001
1001
|
required_arguments = []
|
@@ -1089,7 +1089,7 @@ class DevopsClient(object):
|
|
1089
1089
|
:rtype: :class:`~oci.response.Response`
|
1090
1090
|
|
1091
1091
|
:example:
|
1092
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1092
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_deploy_artifact.py.html>`__ to see an example of how to use create_deploy_artifact API.
|
1093
1093
|
"""
|
1094
1094
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1095
1095
|
required_arguments = []
|
@@ -1183,7 +1183,7 @@ class DevopsClient(object):
|
|
1183
1183
|
:rtype: :class:`~oci.response.Response`
|
1184
1184
|
|
1185
1185
|
:example:
|
1186
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1186
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_deploy_environment.py.html>`__ to see an example of how to use create_deploy_environment API.
|
1187
1187
|
"""
|
1188
1188
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1189
1189
|
required_arguments = []
|
@@ -1277,7 +1277,7 @@ class DevopsClient(object):
|
|
1277
1277
|
:rtype: :class:`~oci.response.Response`
|
1278
1278
|
|
1279
1279
|
:example:
|
1280
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1280
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_deploy_pipeline.py.html>`__ to see an example of how to use create_deploy_pipeline API.
|
1281
1281
|
"""
|
1282
1282
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1283
1283
|
required_arguments = []
|
@@ -1371,7 +1371,7 @@ class DevopsClient(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/devops/create_deploy_stage.py.html>`__ to see an example of how to use create_deploy_stage API.
|
1375
1375
|
"""
|
1376
1376
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1377
1377
|
required_arguments = []
|
@@ -1465,7 +1465,7 @@ class DevopsClient(object):
|
|
1465
1465
|
:rtype: :class:`~oci.response.Response`
|
1466
1466
|
|
1467
1467
|
:example:
|
1468
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1468
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_deployment.py.html>`__ to see an example of how to use create_deployment API.
|
1469
1469
|
"""
|
1470
1470
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1471
1471
|
required_arguments = []
|
@@ -1565,7 +1565,7 @@ class DevopsClient(object):
|
|
1565
1565
|
:rtype: :class:`~oci.response.Response`
|
1566
1566
|
|
1567
1567
|
:example:
|
1568
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1568
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_or_update_git_ref.py.html>`__ to see an example of how to use create_or_update_git_ref API.
|
1569
1569
|
"""
|
1570
1570
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1571
1571
|
required_arguments = ['repositoryId']
|
@@ -1679,7 +1679,7 @@ class DevopsClient(object):
|
|
1679
1679
|
:rtype: :class:`~oci.response.Response`
|
1680
1680
|
|
1681
1681
|
:example:
|
1682
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1682
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_or_update_protected_branch.py.html>`__ to see an example of how to use create_or_update_protected_branch API.
|
1683
1683
|
"""
|
1684
1684
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1685
1685
|
required_arguments = ['repositoryId']
|
@@ -1787,7 +1787,7 @@ class DevopsClient(object):
|
|
1787
1787
|
:rtype: :class:`~oci.response.Response`
|
1788
1788
|
|
1789
1789
|
:example:
|
1790
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1790
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_project.py.html>`__ to see an example of how to use create_project API.
|
1791
1791
|
"""
|
1792
1792
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1793
1793
|
required_arguments = []
|
@@ -1881,7 +1881,7 @@ class DevopsClient(object):
|
|
1881
1881
|
:rtype: :class:`~oci.response.Response`
|
1882
1882
|
|
1883
1883
|
:example:
|
1884
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1884
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_pull_request.py.html>`__ to see an example of how to use create_pull_request API.
|
1885
1885
|
"""
|
1886
1886
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1887
1887
|
required_arguments = []
|
@@ -1988,7 +1988,7 @@ class DevopsClient(object):
|
|
1988
1988
|
:rtype: :class:`~oci.response.Response`
|
1989
1989
|
|
1990
1990
|
:example:
|
1991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
1991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_pull_request_attachment.py.html>`__ to see an example of how to use create_pull_request_attachment API.
|
1992
1992
|
"""
|
1993
1993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
1994
1994
|
required_arguments = ['pullRequestId']
|
@@ -2119,7 +2119,7 @@ class DevopsClient(object):
|
|
2119
2119
|
:rtype: :class:`~oci.response.Response`
|
2120
2120
|
|
2121
2121
|
:example:
|
2122
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2122
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_pull_request_comment.py.html>`__ to see an example of how to use create_pull_request_comment API.
|
2123
2123
|
"""
|
2124
2124
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2125
2125
|
required_arguments = ['pullRequestId']
|
@@ -2225,7 +2225,7 @@ class DevopsClient(object):
|
|
2225
2225
|
:rtype: :class:`~oci.response.Response`
|
2226
2226
|
|
2227
2227
|
:example:
|
2228
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2228
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_repository.py.html>`__ to see an example of how to use create_repository API.
|
2229
2229
|
"""
|
2230
2230
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2231
2231
|
required_arguments = []
|
@@ -2319,7 +2319,7 @@ class DevopsClient(object):
|
|
2319
2319
|
:rtype: :class:`~oci.response.Response`
|
2320
2320
|
|
2321
2321
|
:example:
|
2322
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2322
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/create_trigger.py.html>`__ to see an example of how to use create_trigger API.
|
2323
2323
|
"""
|
2324
2324
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2325
2325
|
required_arguments = []
|
@@ -2413,7 +2413,7 @@ class DevopsClient(object):
|
|
2413
2413
|
:rtype: :class:`~oci.response.Response`
|
2414
2414
|
|
2415
2415
|
:example:
|
2416
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2416
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/decline_pull_request.py.html>`__ to see an example of how to use decline_pull_request API.
|
2417
2417
|
"""
|
2418
2418
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2419
2419
|
required_arguments = ['pullRequestId']
|
@@ -2516,7 +2516,7 @@ class DevopsClient(object):
|
|
2516
2516
|
:rtype: :class:`~oci.response.Response`
|
2517
2517
|
|
2518
2518
|
:example:
|
2519
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2519
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_build_pipeline.py.html>`__ to see an example of how to use delete_build_pipeline API.
|
2520
2520
|
"""
|
2521
2521
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2522
2522
|
required_arguments = ['buildPipelineId']
|
@@ -2617,7 +2617,7 @@ class DevopsClient(object):
|
|
2617
2617
|
:rtype: :class:`~oci.response.Response`
|
2618
2618
|
|
2619
2619
|
:example:
|
2620
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2620
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_build_pipeline_stage.py.html>`__ to see an example of how to use delete_build_pipeline_stage API.
|
2621
2621
|
"""
|
2622
2622
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2623
2623
|
required_arguments = ['buildPipelineStageId']
|
@@ -2718,7 +2718,7 @@ class DevopsClient(object):
|
|
2718
2718
|
:rtype: :class:`~oci.response.Response`
|
2719
2719
|
|
2720
2720
|
:example:
|
2721
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2721
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_connection.py.html>`__ to see an example of how to use delete_connection API.
|
2722
2722
|
"""
|
2723
2723
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2724
2724
|
required_arguments = ['connectionId']
|
@@ -2819,7 +2819,7 @@ class DevopsClient(object):
|
|
2819
2819
|
:rtype: :class:`~oci.response.Response`
|
2820
2820
|
|
2821
2821
|
:example:
|
2822
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2822
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_deploy_artifact.py.html>`__ to see an example of how to use delete_deploy_artifact API.
|
2823
2823
|
"""
|
2824
2824
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2825
2825
|
required_arguments = ['deployArtifactId']
|
@@ -2920,7 +2920,7 @@ class DevopsClient(object):
|
|
2920
2920
|
:rtype: :class:`~oci.response.Response`
|
2921
2921
|
|
2922
2922
|
:example:
|
2923
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
2923
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_deploy_environment.py.html>`__ to see an example of how to use delete_deploy_environment API.
|
2924
2924
|
"""
|
2925
2925
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
2926
2926
|
required_arguments = ['deployEnvironmentId']
|
@@ -3021,7 +3021,7 @@ class DevopsClient(object):
|
|
3021
3021
|
:rtype: :class:`~oci.response.Response`
|
3022
3022
|
|
3023
3023
|
:example:
|
3024
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3024
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_deploy_pipeline.py.html>`__ to see an example of how to use delete_deploy_pipeline API.
|
3025
3025
|
"""
|
3026
3026
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3027
3027
|
required_arguments = ['deployPipelineId']
|
@@ -3122,7 +3122,7 @@ class DevopsClient(object):
|
|
3122
3122
|
:rtype: :class:`~oci.response.Response`
|
3123
3123
|
|
3124
3124
|
:example:
|
3125
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3125
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_deploy_stage.py.html>`__ to see an example of how to use delete_deploy_stage API.
|
3126
3126
|
"""
|
3127
3127
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3128
3128
|
required_arguments = ['deployStageId']
|
@@ -3229,7 +3229,7 @@ class DevopsClient(object):
|
|
3229
3229
|
:rtype: :class:`~oci.response.Response`
|
3230
3230
|
|
3231
3231
|
:example:
|
3232
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3232
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_git_ref.py.html>`__ to see an example of how to use delete_git_ref API.
|
3233
3233
|
"""
|
3234
3234
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3235
3235
|
required_arguments = ['repositoryId']
|
@@ -3335,7 +3335,7 @@ class DevopsClient(object):
|
|
3335
3335
|
:rtype: :class:`~oci.response.Response`
|
3336
3336
|
|
3337
3337
|
:example:
|
3338
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3338
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_project.py.html>`__ to see an example of how to use delete_project API.
|
3339
3339
|
"""
|
3340
3340
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3341
3341
|
required_arguments = ['projectId']
|
@@ -3439,7 +3439,7 @@ class DevopsClient(object):
|
|
3439
3439
|
:rtype: :class:`~oci.response.Response`
|
3440
3440
|
|
3441
3441
|
:example:
|
3442
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3442
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_project_repository_settings.py.html>`__ to see an example of how to use delete_project_repository_settings API.
|
3443
3443
|
"""
|
3444
3444
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3445
3445
|
required_arguments = ['projectId']
|
@@ -3549,7 +3549,7 @@ class DevopsClient(object):
|
|
3549
3549
|
:rtype: :class:`~oci.response.Response`
|
3550
3550
|
|
3551
3551
|
:example:
|
3552
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3552
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_protected_branch.py.html>`__ to see an example of how to use delete_protected_branch API.
|
3553
3553
|
"""
|
3554
3554
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3555
3555
|
required_arguments = ['repositoryId']
|
@@ -3655,7 +3655,7 @@ class DevopsClient(object):
|
|
3655
3655
|
:rtype: :class:`~oci.response.Response`
|
3656
3656
|
|
3657
3657
|
:example:
|
3658
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3658
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_pull_request.py.html>`__ to see an example of how to use delete_pull_request API.
|
3659
3659
|
"""
|
3660
3660
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3661
3661
|
required_arguments = ['pullRequestId']
|
@@ -3759,7 +3759,7 @@ class DevopsClient(object):
|
|
3759
3759
|
:rtype: :class:`~oci.response.Response`
|
3760
3760
|
|
3761
3761
|
:example:
|
3762
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3762
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_pull_request_attachment.py.html>`__ to see an example of how to use delete_pull_request_attachment API.
|
3763
3763
|
"""
|
3764
3764
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3765
3765
|
required_arguments = ['pullRequestId', 'attachmentId']
|
@@ -3864,7 +3864,7 @@ class DevopsClient(object):
|
|
3864
3864
|
:rtype: :class:`~oci.response.Response`
|
3865
3865
|
|
3866
3866
|
:example:
|
3867
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3867
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_pull_request_comment.py.html>`__ to see an example of how to use delete_pull_request_comment API.
|
3868
3868
|
"""
|
3869
3869
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3870
3870
|
required_arguments = ['pullRequestId', 'commentId']
|
@@ -3972,7 +3972,7 @@ class DevopsClient(object):
|
|
3972
3972
|
:rtype: :class:`~oci.response.Response`
|
3973
3973
|
|
3974
3974
|
:example:
|
3975
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
3975
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_ref.py.html>`__ to see an example of how to use delete_ref API.
|
3976
3976
|
"""
|
3977
3977
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
3978
3978
|
required_arguments = ['repositoryId', 'refName']
|
@@ -4077,7 +4077,7 @@ class DevopsClient(object):
|
|
4077
4077
|
:rtype: :class:`~oci.response.Response`
|
4078
4078
|
|
4079
4079
|
:example:
|
4080
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4080
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_repository.py.html>`__ to see an example of how to use delete_repository API.
|
4081
4081
|
"""
|
4082
4082
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4083
4083
|
required_arguments = ['repositoryId']
|
@@ -4181,7 +4181,7 @@ class DevopsClient(object):
|
|
4181
4181
|
:rtype: :class:`~oci.response.Response`
|
4182
4182
|
|
4183
4183
|
:example:
|
4184
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4184
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_repository_settings.py.html>`__ to see an example of how to use delete_repository_settings API.
|
4185
4185
|
"""
|
4186
4186
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4187
4187
|
required_arguments = ['repositoryId']
|
@@ -4285,7 +4285,7 @@ class DevopsClient(object):
|
|
4285
4285
|
:rtype: :class:`~oci.response.Response`
|
4286
4286
|
|
4287
4287
|
:example:
|
4288
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4288
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/delete_trigger.py.html>`__ to see an example of how to use delete_trigger API.
|
4289
4289
|
"""
|
4290
4290
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4291
4291
|
required_arguments = ['triggerId']
|
@@ -4383,7 +4383,7 @@ class DevopsClient(object):
|
|
4383
4383
|
:rtype: :class:`~oci.response.Response`
|
4384
4384
|
|
4385
4385
|
:example:
|
4386
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4386
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_build_pipeline.py.html>`__ to see an example of how to use get_build_pipeline API.
|
4387
4387
|
"""
|
4388
4388
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4389
4389
|
required_arguments = ['buildPipelineId']
|
@@ -4481,7 +4481,7 @@ class DevopsClient(object):
|
|
4481
4481
|
:rtype: :class:`~oci.response.Response`
|
4482
4482
|
|
4483
4483
|
:example:
|
4484
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4484
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_build_pipeline_stage.py.html>`__ to see an example of how to use get_build_pipeline_stage API.
|
4485
4485
|
"""
|
4486
4486
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4487
4487
|
required_arguments = ['buildPipelineStageId']
|
@@ -4579,7 +4579,7 @@ class DevopsClient(object):
|
|
4579
4579
|
:rtype: :class:`~oci.response.Response`
|
4580
4580
|
|
4581
4581
|
:example:
|
4582
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4582
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_build_run.py.html>`__ to see an example of how to use get_build_run API.
|
4583
4583
|
"""
|
4584
4584
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4585
4585
|
required_arguments = ['buildRunId']
|
@@ -4680,7 +4680,7 @@ class DevopsClient(object):
|
|
4680
4680
|
:rtype: :class:`~oci.response.Response`
|
4681
4681
|
|
4682
4682
|
:example:
|
4683
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4683
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_commit.py.html>`__ to see an example of how to use get_commit API.
|
4684
4684
|
"""
|
4685
4685
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4686
4686
|
required_arguments = ['repositoryId', 'commitId']
|
@@ -4791,7 +4791,7 @@ class DevopsClient(object):
|
|
4791
4791
|
:rtype: :class:`~oci.response.Response`
|
4792
4792
|
|
4793
4793
|
:example:
|
4794
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4794
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_commit_diff.py.html>`__ to see an example of how to use get_commit_diff API.
|
4795
4795
|
"""
|
4796
4796
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4797
4797
|
required_arguments = ['repositoryId', 'targetVersion']
|
@@ -4902,7 +4902,7 @@ class DevopsClient(object):
|
|
4902
4902
|
:rtype: :class:`~oci.response.Response`
|
4903
4903
|
|
4904
4904
|
:example:
|
4905
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
4905
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_connection.py.html>`__ to see an example of how to use get_connection API.
|
4906
4906
|
"""
|
4907
4907
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
4908
4908
|
required_arguments = ['connectionId']
|
@@ -5000,7 +5000,7 @@ class DevopsClient(object):
|
|
5000
5000
|
:rtype: :class:`~oci.response.Response`
|
5001
5001
|
|
5002
5002
|
:example:
|
5003
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5003
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_deploy_artifact.py.html>`__ to see an example of how to use get_deploy_artifact API.
|
5004
5004
|
"""
|
5005
5005
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5006
5006
|
required_arguments = ['deployArtifactId']
|
@@ -5098,7 +5098,7 @@ class DevopsClient(object):
|
|
5098
5098
|
:rtype: :class:`~oci.response.Response`
|
5099
5099
|
|
5100
5100
|
:example:
|
5101
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5101
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_deploy_environment.py.html>`__ to see an example of how to use get_deploy_environment API.
|
5102
5102
|
"""
|
5103
5103
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5104
5104
|
required_arguments = ['deployEnvironmentId']
|
@@ -5196,7 +5196,7 @@ class DevopsClient(object):
|
|
5196
5196
|
:rtype: :class:`~oci.response.Response`
|
5197
5197
|
|
5198
5198
|
:example:
|
5199
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5199
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_deploy_pipeline.py.html>`__ to see an example of how to use get_deploy_pipeline API.
|
5200
5200
|
"""
|
5201
5201
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5202
5202
|
required_arguments = ['deployPipelineId']
|
@@ -5294,7 +5294,7 @@ class DevopsClient(object):
|
|
5294
5294
|
:rtype: :class:`~oci.response.Response`
|
5295
5295
|
|
5296
5296
|
:example:
|
5297
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5297
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_deploy_stage.py.html>`__ to see an example of how to use get_deploy_stage API.
|
5298
5298
|
"""
|
5299
5299
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5300
5300
|
required_arguments = ['deployStageId']
|
@@ -5392,7 +5392,7 @@ class DevopsClient(object):
|
|
5392
5392
|
:rtype: :class:`~oci.response.Response`
|
5393
5393
|
|
5394
5394
|
:example:
|
5395
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5395
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_deployment.py.html>`__ to see an example of how to use get_deployment API.
|
5396
5396
|
"""
|
5397
5397
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5398
5398
|
required_arguments = ['deploymentId']
|
@@ -5502,7 +5502,7 @@ class DevopsClient(object):
|
|
5502
5502
|
:rtype: :class:`~oci.response.Response`
|
5503
5503
|
|
5504
5504
|
:example:
|
5505
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5505
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_file_diff.py.html>`__ to see an example of how to use get_file_diff API.
|
5506
5506
|
"""
|
5507
5507
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5508
5508
|
required_arguments = ['repositoryId', 'filePath', 'baseVersion', 'targetVersion']
|
@@ -5618,7 +5618,7 @@ class DevopsClient(object):
|
|
5618
5618
|
:rtype: :class:`~oci.response.Response`
|
5619
5619
|
|
5620
5620
|
:example:
|
5621
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5621
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_mirror_record.py.html>`__ to see an example of how to use get_mirror_record API.
|
5622
5622
|
"""
|
5623
5623
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5624
5624
|
required_arguments = ['repositoryId', 'mirrorRecordType']
|
@@ -5723,7 +5723,7 @@ class DevopsClient(object):
|
|
5723
5723
|
:rtype: :class:`~oci.response.Response`
|
5724
5724
|
|
5725
5725
|
:example:
|
5726
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5726
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_object.py.html>`__ to see an example of how to use get_object API.
|
5727
5727
|
"""
|
5728
5728
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5729
5729
|
required_arguments = ['repositoryId']
|
@@ -5837,7 +5837,7 @@ class DevopsClient(object):
|
|
5837
5837
|
:rtype: :class:`~oci.response.Response`
|
5838
5838
|
|
5839
5839
|
:example:
|
5840
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5840
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_object_content.py.html>`__ to see an example of how to use get_object_content API.
|
5841
5841
|
"""
|
5842
5842
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5843
5843
|
required_arguments = ['repositoryId', 'sha']
|
@@ -5944,7 +5944,7 @@ class DevopsClient(object):
|
|
5944
5944
|
:rtype: :class:`~oci.response.Response`
|
5945
5945
|
|
5946
5946
|
:example:
|
5947
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
5947
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_project.py.html>`__ to see an example of how to use get_project API.
|
5948
5948
|
"""
|
5949
5949
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
5950
5950
|
required_arguments = ['projectId']
|
@@ -6045,7 +6045,7 @@ class DevopsClient(object):
|
|
6045
6045
|
:rtype: :class:`~oci.response.Response`
|
6046
6046
|
|
6047
6047
|
:example:
|
6048
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6048
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_project_notification_preference.py.html>`__ to see an example of how to use get_project_notification_preference API.
|
6049
6049
|
"""
|
6050
6050
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6051
6051
|
required_arguments = ['projectId', 'principalId']
|
@@ -6144,7 +6144,7 @@ class DevopsClient(object):
|
|
6144
6144
|
:rtype: :class:`~oci.response.Response`
|
6145
6145
|
|
6146
6146
|
:example:
|
6147
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6147
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_project_repository_settings.py.html>`__ to see an example of how to use get_project_repository_settings API.
|
6148
6148
|
"""
|
6149
6149
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6150
6150
|
required_arguments = ['projectId']
|
@@ -6242,7 +6242,7 @@ class DevopsClient(object):
|
|
6242
6242
|
:rtype: :class:`~oci.response.Response`
|
6243
6243
|
|
6244
6244
|
:example:
|
6245
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6245
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request.py.html>`__ to see an example of how to use get_pull_request API.
|
6246
6246
|
"""
|
6247
6247
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6248
6248
|
required_arguments = ['pullRequestId']
|
@@ -6343,7 +6343,7 @@ class DevopsClient(object):
|
|
6343
6343
|
:rtype: :class:`~oci.response.Response`
|
6344
6344
|
|
6345
6345
|
:example:
|
6346
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6346
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request_attachment.py.html>`__ to see an example of how to use get_pull_request_attachment API.
|
6347
6347
|
"""
|
6348
6348
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6349
6349
|
required_arguments = ['pullRequestId', 'attachmentId']
|
@@ -6445,7 +6445,7 @@ class DevopsClient(object):
|
|
6445
6445
|
:rtype: :class:`~oci.response.Response`
|
6446
6446
|
|
6447
6447
|
:example:
|
6448
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6448
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request_attachment_content.py.html>`__ to see an example of how to use get_pull_request_attachment_content API.
|
6449
6449
|
"""
|
6450
6450
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6451
6451
|
required_arguments = ['pullRequestId', 'attachmentId']
|
@@ -6544,7 +6544,7 @@ class DevopsClient(object):
|
|
6544
6544
|
:rtype: :class:`~oci.response.Response`
|
6545
6545
|
|
6546
6546
|
:example:
|
6547
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6547
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request_change_summary_metrics.py.html>`__ to see an example of how to use get_pull_request_change_summary_metrics API.
|
6548
6548
|
"""
|
6549
6549
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6550
6550
|
required_arguments = ['pullRequestId']
|
@@ -6645,7 +6645,7 @@ class DevopsClient(object):
|
|
6645
6645
|
:rtype: :class:`~oci.response.Response`
|
6646
6646
|
|
6647
6647
|
:example:
|
6648
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6648
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request_comment.py.html>`__ to see an example of how to use get_pull_request_comment API.
|
6649
6649
|
"""
|
6650
6650
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6651
6651
|
required_arguments = ['pullRequestId', 'commentId']
|
@@ -6747,7 +6747,7 @@ class DevopsClient(object):
|
|
6747
6747
|
:rtype: :class:`~oci.response.Response`
|
6748
6748
|
|
6749
6749
|
:example:
|
6750
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6750
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_pull_request_notification_preference.py.html>`__ to see an example of how to use get_pull_request_notification_preference API.
|
6751
6751
|
"""
|
6752
6752
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6753
6753
|
required_arguments = ['pullRequestId', 'principalId']
|
@@ -6849,7 +6849,7 @@ class DevopsClient(object):
|
|
6849
6849
|
:rtype: :class:`~oci.response.Response`
|
6850
6850
|
|
6851
6851
|
:example:
|
6852
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6852
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_ref.py.html>`__ to see an example of how to use get_ref API.
|
6853
6853
|
"""
|
6854
6854
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6855
6855
|
required_arguments = ['repositoryId', 'refName']
|
@@ -6960,7 +6960,7 @@ class DevopsClient(object):
|
|
6960
6960
|
:rtype: :class:`~oci.response.Response`
|
6961
6961
|
|
6962
6962
|
:example:
|
6963
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
6963
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repo_file_diff.py.html>`__ to see an example of how to use get_repo_file_diff API.
|
6964
6964
|
"""
|
6965
6965
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
6966
6966
|
required_arguments = ['repositoryId', 'baseVersion', 'targetVersion']
|
@@ -7082,7 +7082,7 @@ class DevopsClient(object):
|
|
7082
7082
|
:rtype: :class:`~oci.response.Response`
|
7083
7083
|
|
7084
7084
|
:example:
|
7085
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7085
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repo_file_lines.py.html>`__ to see an example of how to use get_repo_file_lines API.
|
7086
7086
|
"""
|
7087
7087
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7088
7088
|
required_arguments = ['repositoryId', 'revision']
|
@@ -7198,7 +7198,7 @@ class DevopsClient(object):
|
|
7198
7198
|
:rtype: :class:`~oci.response.Response`
|
7199
7199
|
|
7200
7200
|
:example:
|
7201
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7201
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repository.py.html>`__ to see an example of how to use get_repository API.
|
7202
7202
|
"""
|
7203
7203
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7204
7204
|
required_arguments = ['repositoryId']
|
@@ -7318,7 +7318,7 @@ class DevopsClient(object):
|
|
7318
7318
|
:rtype: :class:`~oci.response.Response`
|
7319
7319
|
|
7320
7320
|
:example:
|
7321
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7321
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repository_archive_content.py.html>`__ to see an example of how to use get_repository_archive_content API.
|
7322
7322
|
"""
|
7323
7323
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7324
7324
|
required_arguments = ['repositoryId']
|
@@ -7438,7 +7438,7 @@ class DevopsClient(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/devops/get_repository_file_lines.py.html>`__ to see an example of how to use get_repository_file_lines API.
|
7442
7442
|
"""
|
7443
7443
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7444
7444
|
required_arguments = ['repositoryId', 'filePath', 'revision']
|
@@ -7551,7 +7551,7 @@ class DevopsClient(object):
|
|
7551
7551
|
:rtype: :class:`~oci.response.Response`
|
7552
7552
|
|
7553
7553
|
:example:
|
7554
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7554
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repository_notification_preference.py.html>`__ to see an example of how to use get_repository_notification_preference API.
|
7555
7555
|
"""
|
7556
7556
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7557
7557
|
required_arguments = ['repositoryId', 'principalId']
|
@@ -7650,7 +7650,7 @@ class DevopsClient(object):
|
|
7650
7650
|
:rtype: :class:`~oci.response.Response`
|
7651
7651
|
|
7652
7652
|
:example:
|
7653
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7653
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_repository_settings.py.html>`__ to see an example of how to use get_repository_settings API.
|
7654
7654
|
"""
|
7655
7655
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7656
7656
|
required_arguments = ['repositoryId']
|
@@ -7748,7 +7748,7 @@ class DevopsClient(object):
|
|
7748
7748
|
:rtype: :class:`~oci.response.Response`
|
7749
7749
|
|
7750
7750
|
:example:
|
7751
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7751
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_trigger.py.html>`__ to see an example of how to use get_trigger API.
|
7752
7752
|
"""
|
7753
7753
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7754
7754
|
required_arguments = ['triggerId']
|
@@ -7846,7 +7846,7 @@ class DevopsClient(object):
|
|
7846
7846
|
:rtype: :class:`~oci.response.Response`
|
7847
7847
|
|
7848
7848
|
:example:
|
7849
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7849
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
|
7850
7850
|
"""
|
7851
7851
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7852
7852
|
required_arguments = ['workRequestId']
|
@@ -7950,7 +7950,7 @@ class DevopsClient(object):
|
|
7950
7950
|
:rtype: :class:`~oci.response.Response`
|
7951
7951
|
|
7952
7952
|
:example:
|
7953
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
7953
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/like_pull_request_comment.py.html>`__ to see an example of how to use like_pull_request_comment API.
|
7954
7954
|
"""
|
7955
7955
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
7956
7956
|
required_arguments = ['pullRequestId', 'commentId']
|
@@ -8065,7 +8065,7 @@ class DevopsClient(object):
|
|
8065
8065
|
:rtype: :class:`~oci.response.Response`
|
8066
8066
|
|
8067
8067
|
:example:
|
8068
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8068
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_authors.py.html>`__ to see an example of how to use list_authors API.
|
8069
8069
|
"""
|
8070
8070
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8071
8071
|
required_arguments = ['repositoryId']
|
@@ -8214,7 +8214,7 @@ class DevopsClient(object):
|
|
8214
8214
|
:rtype: :class:`~oci.response.Response`
|
8215
8215
|
|
8216
8216
|
:example:
|
8217
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8217
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_build_pipeline_stages.py.html>`__ to see an example of how to use list_build_pipeline_stages API.
|
8218
8218
|
"""
|
8219
8219
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8220
8220
|
required_arguments = []
|
@@ -8375,7 +8375,7 @@ class DevopsClient(object):
|
|
8375
8375
|
:rtype: :class:`~oci.response.Response`
|
8376
8376
|
|
8377
8377
|
:example:
|
8378
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8378
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_build_pipelines.py.html>`__ to see an example of how to use list_build_pipelines API.
|
8379
8379
|
"""
|
8380
8380
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8381
8381
|
required_arguments = []
|
@@ -8531,7 +8531,7 @@ class DevopsClient(object):
|
|
8531
8531
|
:rtype: :class:`~oci.response.Response`
|
8532
8532
|
|
8533
8533
|
:example:
|
8534
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8534
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_build_run_snapshots.py.html>`__ to see an example of how to use list_build_run_snapshots API.
|
8535
8535
|
"""
|
8536
8536
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8537
8537
|
required_arguments = ['pullRequestId']
|
@@ -8696,7 +8696,7 @@ class DevopsClient(object):
|
|
8696
8696
|
:rtype: :class:`~oci.response.Response`
|
8697
8697
|
|
8698
8698
|
:example:
|
8699
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8699
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_build_runs.py.html>`__ to see an example of how to use list_build_runs API.
|
8700
8700
|
"""
|
8701
8701
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8702
8702
|
required_arguments = []
|
@@ -8847,7 +8847,7 @@ class DevopsClient(object):
|
|
8847
8847
|
:rtype: :class:`~oci.response.Response`
|
8848
8848
|
|
8849
8849
|
:example:
|
8850
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8850
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_commit_diffs.py.html>`__ to see an example of how to use list_commit_diffs API.
|
8851
8851
|
"""
|
8852
8852
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8853
8853
|
required_arguments = ['repositoryId', 'baseVersion', 'targetVersion']
|
@@ -8988,7 +8988,7 @@ class DevopsClient(object):
|
|
8988
8988
|
:rtype: :class:`~oci.response.Response`
|
8989
8989
|
|
8990
8990
|
:example:
|
8991
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
8991
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_commits.py.html>`__ to see an example of how to use list_commits API.
|
8992
8992
|
"""
|
8993
8993
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
8994
8994
|
required_arguments = ['repositoryId']
|
@@ -9145,7 +9145,7 @@ class DevopsClient(object):
|
|
9145
9145
|
:rtype: :class:`~oci.response.Response`
|
9146
9146
|
|
9147
9147
|
:example:
|
9148
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9148
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_connections.py.html>`__ to see an example of how to use list_connections API.
|
9149
9149
|
"""
|
9150
9150
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9151
9151
|
required_arguments = []
|
@@ -9315,7 +9315,7 @@ class DevopsClient(object):
|
|
9315
9315
|
:rtype: :class:`~oci.response.Response`
|
9316
9316
|
|
9317
9317
|
:example:
|
9318
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9318
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_deploy_artifacts.py.html>`__ to see an example of how to use list_deploy_artifacts API.
|
9319
9319
|
"""
|
9320
9320
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9321
9321
|
required_arguments = []
|
@@ -9476,7 +9476,7 @@ class DevopsClient(object):
|
|
9476
9476
|
:rtype: :class:`~oci.response.Response`
|
9477
9477
|
|
9478
9478
|
:example:
|
9479
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9479
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_deploy_environments.py.html>`__ to see an example of how to use list_deploy_environments API.
|
9480
9480
|
"""
|
9481
9481
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9482
9482
|
required_arguments = []
|
@@ -9637,7 +9637,7 @@ class DevopsClient(object):
|
|
9637
9637
|
:rtype: :class:`~oci.response.Response`
|
9638
9638
|
|
9639
9639
|
:example:
|
9640
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9640
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_deploy_pipelines.py.html>`__ to see an example of how to use list_deploy_pipelines API.
|
9641
9641
|
"""
|
9642
9642
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9643
9643
|
required_arguments = []
|
@@ -9798,7 +9798,7 @@ class DevopsClient(object):
|
|
9798
9798
|
:rtype: :class:`~oci.response.Response`
|
9799
9799
|
|
9800
9800
|
:example:
|
9801
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9801
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_deploy_stages.py.html>`__ to see an example of how to use list_deploy_stages API.
|
9802
9802
|
"""
|
9803
9803
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9804
9804
|
required_arguments = []
|
@@ -9972,7 +9972,7 @@ class DevopsClient(object):
|
|
9972
9972
|
:rtype: :class:`~oci.response.Response`
|
9973
9973
|
|
9974
9974
|
:example:
|
9975
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
9975
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_deployments.py.html>`__ to see an example of how to use list_deployments API.
|
9976
9976
|
"""
|
9977
9977
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
9978
9978
|
required_arguments = []
|
@@ -10115,7 +10115,7 @@ class DevopsClient(object):
|
|
10115
10115
|
:rtype: :class:`~oci.response.Response`
|
10116
10116
|
|
10117
10117
|
:example:
|
10118
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10118
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_fork_sync_statuses.py.html>`__ to see an example of how to use list_fork_sync_statuses API.
|
10119
10119
|
"""
|
10120
10120
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10121
10121
|
required_arguments = ['repositoryId', 'branchNameQueryParam']
|
@@ -10233,7 +10233,7 @@ class DevopsClient(object):
|
|
10233
10233
|
:rtype: :class:`~oci.response.Response`
|
10234
10234
|
|
10235
10235
|
:example:
|
10236
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10236
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_mirror_records.py.html>`__ to see an example of how to use list_mirror_records API.
|
10237
10237
|
"""
|
10238
10238
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10239
10239
|
required_arguments = ['repositoryId']
|
@@ -10379,7 +10379,7 @@ class DevopsClient(object):
|
|
10379
10379
|
:rtype: :class:`~oci.response.Response`
|
10380
10380
|
|
10381
10381
|
:example:
|
10382
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10382
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_paths.py.html>`__ to see an example of how to use list_paths API.
|
10383
10383
|
"""
|
10384
10384
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10385
10385
|
required_arguments = ['repositoryId']
|
@@ -10529,7 +10529,7 @@ class DevopsClient(object):
|
|
10529
10529
|
:rtype: :class:`~oci.response.Response`
|
10530
10530
|
|
10531
10531
|
:example:
|
10532
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10532
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_project_commit_analytics_authors.py.html>`__ to see an example of how to use list_project_commit_analytics_authors API.
|
10533
10533
|
"""
|
10534
10534
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10535
10535
|
required_arguments = ['projectId']
|
@@ -10682,7 +10682,7 @@ class DevopsClient(object):
|
|
10682
10682
|
:rtype: :class:`~oci.response.Response`
|
10683
10683
|
|
10684
10684
|
:example:
|
10685
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10685
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_projects.py.html>`__ to see an example of how to use list_projects API.
|
10686
10686
|
"""
|
10687
10687
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10688
10688
|
required_arguments = ['compartmentId']
|
@@ -10829,7 +10829,7 @@ class DevopsClient(object):
|
|
10829
10829
|
:rtype: :class:`~oci.response.Response`
|
10830
10830
|
|
10831
10831
|
:example:
|
10832
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10832
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_protected_branches.py.html>`__ to see an example of how to use list_protected_branches API.
|
10833
10833
|
"""
|
10834
10834
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10835
10835
|
required_arguments = ['repositoryId']
|
@@ -10973,7 +10973,7 @@ class DevopsClient(object):
|
|
10973
10973
|
:rtype: :class:`~oci.response.Response`
|
10974
10974
|
|
10975
10975
|
:example:
|
10976
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
10976
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_activities.py.html>`__ to see an example of how to use list_pull_request_activities API.
|
10977
10977
|
"""
|
10978
10978
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
10979
10979
|
required_arguments = ['pullRequestId']
|
@@ -11121,7 +11121,7 @@ class DevopsClient(object):
|
|
11121
11121
|
:rtype: :class:`~oci.response.Response`
|
11122
11122
|
|
11123
11123
|
:example:
|
11124
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11124
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_attachments.py.html>`__ to see an example of how to use list_pull_request_attachments API.
|
11125
11125
|
"""
|
11126
11126
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11127
11127
|
required_arguments = ['pullRequestId']
|
@@ -11262,7 +11262,7 @@ class DevopsClient(object):
|
|
11262
11262
|
:rtype: :class:`~oci.response.Response`
|
11263
11263
|
|
11264
11264
|
:example:
|
11265
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11265
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_authors.py.html>`__ to see an example of how to use list_pull_request_authors API.
|
11266
11266
|
"""
|
11267
11267
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11268
11268
|
required_arguments = ['repositoryId']
|
@@ -11407,7 +11407,7 @@ class DevopsClient(object):
|
|
11407
11407
|
:rtype: :class:`~oci.response.Response`
|
11408
11408
|
|
11409
11409
|
:example:
|
11410
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11410
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_comments.py.html>`__ to see an example of how to use list_pull_request_comments API.
|
11411
11411
|
"""
|
11412
11412
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11413
11413
|
required_arguments = ['pullRequestId']
|
@@ -11547,7 +11547,7 @@ class DevopsClient(object):
|
|
11547
11547
|
:rtype: :class:`~oci.response.Response`
|
11548
11548
|
|
11549
11549
|
:example:
|
11550
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11550
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_commits.py.html>`__ to see an example of how to use list_pull_request_commits API.
|
11551
11551
|
"""
|
11552
11552
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11553
11553
|
required_arguments = ['pullRequestId']
|
@@ -11664,7 +11664,7 @@ class DevopsClient(object):
|
|
11664
11664
|
:rtype: :class:`~oci.response.Response`
|
11665
11665
|
|
11666
11666
|
:example:
|
11667
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11667
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_request_file_changes.py.html>`__ to see an example of how to use list_pull_request_file_changes API.
|
11668
11668
|
"""
|
11669
11669
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11670
11670
|
required_arguments = ['pullRequestId']
|
@@ -11824,7 +11824,7 @@ class DevopsClient(object):
|
|
11824
11824
|
:rtype: :class:`~oci.response.Response`
|
11825
11825
|
|
11826
11826
|
:example:
|
11827
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
11827
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_pull_requests.py.html>`__ to see an example of how to use list_pull_requests API.
|
11828
11828
|
"""
|
11829
11829
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
11830
11830
|
required_arguments = []
|
@@ -12001,7 +12001,7 @@ class DevopsClient(object):
|
|
12001
12001
|
:rtype: :class:`~oci.response.Response`
|
12002
12002
|
|
12003
12003
|
:example:
|
12004
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12004
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_refs.py.html>`__ to see an example of how to use list_refs API.
|
12005
12005
|
"""
|
12006
12006
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12007
12007
|
required_arguments = ['repositoryId']
|
@@ -12170,7 +12170,7 @@ class DevopsClient(object):
|
|
12170
12170
|
:rtype: :class:`~oci.response.Response`
|
12171
12171
|
|
12172
12172
|
:example:
|
12173
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12173
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_repositories.py.html>`__ to see an example of how to use list_repositories API.
|
12174
12174
|
"""
|
12175
12175
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12176
12176
|
required_arguments = []
|
@@ -12317,7 +12317,7 @@ class DevopsClient(object):
|
|
12317
12317
|
:rtype: :class:`~oci.response.Response`
|
12318
12318
|
|
12319
12319
|
:example:
|
12320
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12320
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_repository_commit_analytics_authors.py.html>`__ to see an example of how to use list_repository_commit_analytics_authors API.
|
12321
12321
|
"""
|
12322
12322
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12323
12323
|
required_arguments = ['repositoryId']
|
@@ -12473,7 +12473,7 @@ class DevopsClient(object):
|
|
12473
12473
|
:rtype: :class:`~oci.response.Response`
|
12474
12474
|
|
12475
12475
|
:example:
|
12476
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12476
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_triggers.py.html>`__ to see an example of how to use list_triggers API.
|
12477
12477
|
"""
|
12478
12478
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12479
12479
|
required_arguments = []
|
@@ -12620,7 +12620,7 @@ class DevopsClient(object):
|
|
12620
12620
|
:rtype: :class:`~oci.response.Response`
|
12621
12621
|
|
12622
12622
|
:example:
|
12623
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12623
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
|
12624
12624
|
"""
|
12625
12625
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12626
12626
|
required_arguments = ['workRequestId']
|
@@ -12762,7 +12762,7 @@ class DevopsClient(object):
|
|
12762
12762
|
:rtype: :class:`~oci.response.Response`
|
12763
12763
|
|
12764
12764
|
:example:
|
12765
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12765
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
|
12766
12766
|
"""
|
12767
12767
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12768
12768
|
required_arguments = ['workRequestId']
|
@@ -12918,7 +12918,7 @@ class DevopsClient(object):
|
|
12918
12918
|
:rtype: :class:`~oci.response.Response`
|
12919
12919
|
|
12920
12920
|
:example:
|
12921
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
12921
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
|
12922
12922
|
"""
|
12923
12923
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
12924
12924
|
required_arguments = ['compartmentId']
|
@@ -13057,7 +13057,7 @@ class DevopsClient(object):
|
|
13057
13057
|
:rtype: :class:`~oci.response.Response`
|
13058
13058
|
|
13059
13059
|
:example:
|
13060
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13060
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/merge_pull_request.py.html>`__ to see an example of how to use merge_pull_request API.
|
13061
13061
|
"""
|
13062
13062
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13063
13063
|
required_arguments = ['pullRequestId']
|
@@ -13165,7 +13165,7 @@ class DevopsClient(object):
|
|
13165
13165
|
:rtype: :class:`~oci.response.Response`
|
13166
13166
|
|
13167
13167
|
:example:
|
13168
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13168
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/mirror_repository.py.html>`__ to see an example of how to use mirror_repository API.
|
13169
13169
|
"""
|
13170
13170
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13171
13171
|
required_arguments = ['repositoryId']
|
@@ -13269,7 +13269,7 @@ class DevopsClient(object):
|
|
13269
13269
|
:rtype: :class:`~oci.response.Response`
|
13270
13270
|
|
13271
13271
|
:example:
|
13272
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13272
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/patch_pull_request.py.html>`__ to see an example of how to use patch_pull_request API.
|
13273
13273
|
"""
|
13274
13274
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13275
13275
|
required_arguments = ['pullRequestId']
|
@@ -13383,7 +13383,7 @@ class DevopsClient(object):
|
|
13383
13383
|
:rtype: :class:`~oci.response.Response`
|
13384
13384
|
|
13385
13385
|
:example:
|
13386
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13386
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/put_repository_ref.py.html>`__ to see an example of how to use put_repository_ref API.
|
13387
13387
|
"""
|
13388
13388
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13389
13389
|
required_arguments = ['repositoryId', 'refName']
|
@@ -13492,7 +13492,7 @@ class DevopsClient(object):
|
|
13492
13492
|
:rtype: :class:`~oci.response.Response`
|
13493
13493
|
|
13494
13494
|
:example:
|
13495
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13495
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/reopen_pull_request.py.html>`__ to see an example of how to use reopen_pull_request API.
|
13496
13496
|
"""
|
13497
13497
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13498
13498
|
required_arguments = ['pullRequestId']
|
@@ -13601,7 +13601,7 @@ class DevopsClient(object):
|
|
13601
13601
|
:rtype: :class:`~oci.response.Response`
|
13602
13602
|
|
13603
13603
|
:example:
|
13604
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13604
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/review_pull_request.py.html>`__ to see an example of how to use review_pull_request API.
|
13605
13605
|
"""
|
13606
13606
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13607
13607
|
required_arguments = ['pullRequestId']
|
@@ -13712,7 +13712,7 @@ class DevopsClient(object):
|
|
13712
13712
|
:rtype: :class:`~oci.response.Response`
|
13713
13713
|
|
13714
13714
|
:example:
|
13715
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13715
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/schedule_cascading_project_deletion.py.html>`__ to see an example of how to use schedule_cascading_project_deletion API.
|
13716
13716
|
"""
|
13717
13717
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13718
13718
|
required_arguments = ['projectId']
|
@@ -13822,7 +13822,7 @@ class DevopsClient(object):
|
|
13822
13822
|
:rtype: :class:`~oci.response.Response`
|
13823
13823
|
|
13824
13824
|
:example:
|
13825
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13825
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/summarize_project_repository_analytics.py.html>`__ to see an example of how to use summarize_project_repository_analytics API.
|
13826
13826
|
"""
|
13827
13827
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13828
13828
|
required_arguments = ['projectId']
|
@@ -13941,7 +13941,7 @@ class DevopsClient(object):
|
|
13941
13941
|
:rtype: :class:`~oci.response.Response`
|
13942
13942
|
|
13943
13943
|
:example:
|
13944
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
13944
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/summarize_repository_analytics.py.html>`__ to see an example of how to use summarize_repository_analytics API.
|
13945
13945
|
"""
|
13946
13946
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
13947
13947
|
required_arguments = ['repositoryId']
|
@@ -14066,7 +14066,7 @@ class DevopsClient(object):
|
|
14066
14066
|
:rtype: :class:`~oci.response.Response`
|
14067
14067
|
|
14068
14068
|
:example:
|
14069
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14069
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/sync_repository.py.html>`__ to see an example of how to use sync_repository API.
|
14070
14070
|
"""
|
14071
14071
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14072
14072
|
required_arguments = ['repositoryId', 'syncMergeStrategy']
|
@@ -14188,7 +14188,7 @@ class DevopsClient(object):
|
|
14188
14188
|
:rtype: :class:`~oci.response.Response`
|
14189
14189
|
|
14190
14190
|
:example:
|
14191
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14191
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/unlike_pull_request_comment.py.html>`__ to see an example of how to use unlike_pull_request_comment API.
|
14192
14192
|
"""
|
14193
14193
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14194
14194
|
required_arguments = ['pullRequestId', 'commentId']
|
@@ -14295,7 +14295,7 @@ class DevopsClient(object):
|
|
14295
14295
|
:rtype: :class:`~oci.response.Response`
|
14296
14296
|
|
14297
14297
|
:example:
|
14298
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14298
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/unsubscribe_pull_request.py.html>`__ to see an example of how to use unsubscribe_pull_request API.
|
14299
14299
|
"""
|
14300
14300
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14301
14301
|
required_arguments = ['pullRequestId', 'token']
|
@@ -14408,7 +14408,7 @@ class DevopsClient(object):
|
|
14408
14408
|
:rtype: :class:`~oci.response.Response`
|
14409
14409
|
|
14410
14410
|
:example:
|
14411
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14411
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_build_pipeline.py.html>`__ to see an example of how to use update_build_pipeline API.
|
14412
14412
|
"""
|
14413
14413
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14414
14414
|
required_arguments = ['buildPipelineId']
|
@@ -14516,7 +14516,7 @@ class DevopsClient(object):
|
|
14516
14516
|
:rtype: :class:`~oci.response.Response`
|
14517
14517
|
|
14518
14518
|
:example:
|
14519
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14519
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_build_pipeline_stage.py.html>`__ to see an example of how to use update_build_pipeline_stage API.
|
14520
14520
|
"""
|
14521
14521
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14522
14522
|
required_arguments = ['buildPipelineStageId']
|
@@ -14624,7 +14624,7 @@ class DevopsClient(object):
|
|
14624
14624
|
:rtype: :class:`~oci.response.Response`
|
14625
14625
|
|
14626
14626
|
:example:
|
14627
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14627
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_build_run.py.html>`__ to see an example of how to use update_build_run API.
|
14628
14628
|
"""
|
14629
14629
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14630
14630
|
required_arguments = ['buildRunId']
|
@@ -14732,7 +14732,7 @@ class DevopsClient(object):
|
|
14732
14732
|
:rtype: :class:`~oci.response.Response`
|
14733
14733
|
|
14734
14734
|
:example:
|
14735
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14735
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_connection.py.html>`__ to see an example of how to use update_connection API.
|
14736
14736
|
"""
|
14737
14737
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14738
14738
|
required_arguments = ['connectionId']
|
@@ -14840,7 +14840,7 @@ class DevopsClient(object):
|
|
14840
14840
|
:rtype: :class:`~oci.response.Response`
|
14841
14841
|
|
14842
14842
|
:example:
|
14843
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14843
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_deploy_artifact.py.html>`__ to see an example of how to use update_deploy_artifact API.
|
14844
14844
|
"""
|
14845
14845
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14846
14846
|
required_arguments = ['deployArtifactId']
|
@@ -14948,7 +14948,7 @@ class DevopsClient(object):
|
|
14948
14948
|
:rtype: :class:`~oci.response.Response`
|
14949
14949
|
|
14950
14950
|
:example:
|
14951
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
14951
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_deploy_environment.py.html>`__ to see an example of how to use update_deploy_environment API.
|
14952
14952
|
"""
|
14953
14953
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
14954
14954
|
required_arguments = ['deployEnvironmentId']
|
@@ -15056,7 +15056,7 @@ class DevopsClient(object):
|
|
15056
15056
|
:rtype: :class:`~oci.response.Response`
|
15057
15057
|
|
15058
15058
|
:example:
|
15059
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15059
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_deploy_pipeline.py.html>`__ to see an example of how to use update_deploy_pipeline API.
|
15060
15060
|
"""
|
15061
15061
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15062
15062
|
required_arguments = ['deployPipelineId']
|
@@ -15164,7 +15164,7 @@ class DevopsClient(object):
|
|
15164
15164
|
:rtype: :class:`~oci.response.Response`
|
15165
15165
|
|
15166
15166
|
:example:
|
15167
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15167
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_deploy_stage.py.html>`__ to see an example of how to use update_deploy_stage API.
|
15168
15168
|
"""
|
15169
15169
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15170
15170
|
required_arguments = ['deployStageId']
|
@@ -15272,7 +15272,7 @@ class DevopsClient(object):
|
|
15272
15272
|
:rtype: :class:`~oci.response.Response`
|
15273
15273
|
|
15274
15274
|
:example:
|
15275
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15275
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_deployment.py.html>`__ to see an example of how to use update_deployment API.
|
15276
15276
|
"""
|
15277
15277
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15278
15278
|
required_arguments = ['deploymentId']
|
@@ -15380,7 +15380,7 @@ class DevopsClient(object):
|
|
15380
15380
|
:rtype: :class:`~oci.response.Response`
|
15381
15381
|
|
15382
15382
|
:example:
|
15383
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15383
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_project.py.html>`__ to see an example of how to use update_project API.
|
15384
15384
|
"""
|
15385
15385
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15386
15386
|
required_arguments = ['projectId']
|
@@ -15491,7 +15491,7 @@ class DevopsClient(object):
|
|
15491
15491
|
:rtype: :class:`~oci.response.Response`
|
15492
15492
|
|
15493
15493
|
:example:
|
15494
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15494
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_project_notification_preference.py.html>`__ to see an example of how to use update_project_notification_preference API.
|
15495
15495
|
"""
|
15496
15496
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15497
15497
|
required_arguments = ['projectId', 'principalId']
|
@@ -15603,7 +15603,7 @@ class DevopsClient(object):
|
|
15603
15603
|
:rtype: :class:`~oci.response.Response`
|
15604
15604
|
|
15605
15605
|
:example:
|
15606
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15606
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_project_repository_settings.py.html>`__ to see an example of how to use update_project_repository_settings API.
|
15607
15607
|
"""
|
15608
15608
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15609
15609
|
required_arguments = ['projectId']
|
@@ -15714,7 +15714,7 @@ class DevopsClient(object):
|
|
15714
15714
|
:rtype: :class:`~oci.response.Response`
|
15715
15715
|
|
15716
15716
|
:example:
|
15717
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15717
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_pull_request.py.html>`__ to see an example of how to use update_pull_request API.
|
15718
15718
|
"""
|
15719
15719
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15720
15720
|
required_arguments = ['pullRequestId']
|
@@ -15825,7 +15825,7 @@ class DevopsClient(object):
|
|
15825
15825
|
:rtype: :class:`~oci.response.Response`
|
15826
15826
|
|
15827
15827
|
:example:
|
15828
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15828
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_pull_request_comment.py.html>`__ to see an example of how to use update_pull_request_comment API.
|
15829
15829
|
"""
|
15830
15830
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15831
15831
|
required_arguments = ['pullRequestId', 'commentId']
|
@@ -15937,7 +15937,7 @@ class DevopsClient(object):
|
|
15937
15937
|
:rtype: :class:`~oci.response.Response`
|
15938
15938
|
|
15939
15939
|
:example:
|
15940
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
15940
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_pull_request_notification_preference.py.html>`__ to see an example of how to use update_pull_request_notification_preference API.
|
15941
15941
|
"""
|
15942
15942
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
15943
15943
|
required_arguments = ['pullRequestId', 'principalId']
|
@@ -16046,7 +16046,7 @@ class DevopsClient(object):
|
|
16046
16046
|
:rtype: :class:`~oci.response.Response`
|
16047
16047
|
|
16048
16048
|
:example:
|
16049
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16049
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_repository.py.html>`__ to see an example of how to use update_repository API.
|
16050
16050
|
"""
|
16051
16051
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16052
16052
|
required_arguments = ['repositoryId']
|
@@ -16157,7 +16157,7 @@ class DevopsClient(object):
|
|
16157
16157
|
:rtype: :class:`~oci.response.Response`
|
16158
16158
|
|
16159
16159
|
:example:
|
16160
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16160
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_repository_notification_preference.py.html>`__ to see an example of how to use update_repository_notification_preference API.
|
16161
16161
|
"""
|
16162
16162
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16163
16163
|
required_arguments = ['repositoryId', 'principalId']
|
@@ -16269,7 +16269,7 @@ class DevopsClient(object):
|
|
16269
16269
|
:rtype: :class:`~oci.response.Response`
|
16270
16270
|
|
16271
16271
|
:example:
|
16272
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16272
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_repository_settings.py.html>`__ to see an example of how to use update_repository_settings API.
|
16273
16273
|
"""
|
16274
16274
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16275
16275
|
required_arguments = ['repositoryId']
|
@@ -16380,7 +16380,7 @@ class DevopsClient(object):
|
|
16380
16380
|
:rtype: :class:`~oci.response.Response`
|
16381
16381
|
|
16382
16382
|
:example:
|
16383
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16383
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/update_trigger.py.html>`__ to see an example of how to use update_trigger API.
|
16384
16384
|
"""
|
16385
16385
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16386
16386
|
required_arguments = ['triggerId']
|
@@ -16488,7 +16488,7 @@ class DevopsClient(object):
|
|
16488
16488
|
:rtype: :class:`~oci.response.Response`
|
16489
16489
|
|
16490
16490
|
:example:
|
16491
|
-
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.
|
16491
|
+
Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/devops/validate_connection.py.html>`__ to see an example of how to use validate_connection API.
|
16492
16492
|
"""
|
16493
16493
|
# Required path and query arguments. These are in camelCase to replace values in service endpoints.
|
16494
16494
|
required_arguments = ['connectionId']
|