├── .github └── workflows │ ├── redoc-index.main.yml │ ├── redoc-index.pr.yml │ ├── spec.main.yml │ ├── spec.pr-comment-trigger.yml │ ├── spec.pr.yml │ ├── trigger-python-client-gen.yml │ ├── trigger-typescript-client-gen.yml │ └── validate-client-generation.yml ├── .gitignore ├── .spectral.yml ├── .vscode ├── extensions.json └── openapi.code-snippets ├── ADR.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yaml ├── docs-preview └── redoc-index.html ├── package.json ├── specification ├── DigitalOcean-public.v2.yaml ├── description.yml ├── resources │ ├── 1-clicks │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── oneClicks.yml │ │ │ │ └── oneClicks_create.yml │ │ │ └── python │ │ │ │ ├── oneClicks.yml │ │ │ │ └── oneClicks_create.yml │ │ ├── models │ │ │ ├── oneClicks.yml │ │ │ └── oneClicks_create.yml │ │ ├── oneClicks_install_kubernetes.yml │ │ ├── oneClicks_list.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── oneClicks_all.yml │ │ │ └── oneClicks_create.yml │ ├── account │ │ ├── account_get.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ └── account_get.yml │ │ │ └── python │ │ │ │ └── account_get.yml │ │ ├── models │ │ │ └── account.yml │ │ └── responses │ │ │ └── account.yml │ ├── actions │ │ ├── actions_get.yml │ │ ├── actions_list.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── actions_get.yml │ │ │ │ └── actions_list.yml │ │ │ ├── go │ │ │ │ ├── actions_get.yml │ │ │ │ └── actions_list.yml │ │ │ ├── python │ │ │ │ ├── actions_get.yml │ │ │ │ └── actions_list.yml │ │ │ └── ruby │ │ │ │ ├── actions_get.yml │ │ │ │ └── actions_list.yml │ │ ├── models │ │ │ └── action.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── action.yml │ │ │ └── actions.yml │ ├── addons │ │ ├── addons_create.yml │ │ ├── addons_delete.yml │ │ ├── addons_get.yml │ │ ├── addons_get_app.yml │ │ ├── addons_get_app_metadata.yml │ │ ├── addons_list.yml │ │ ├── addons_update.yml │ │ ├── addons_update_plan.yml │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── addons_create.yml │ │ │ │ ├── addons_delete.yml │ │ │ │ ├── addons_get.yml │ │ │ │ ├── addons_get_app.yml │ │ │ │ ├── addons_get_app_metadata.yml │ │ │ │ ├── addons_list.yml │ │ │ │ ├── addons_update.yml │ │ │ │ └── addons_update_plan.yml │ │ ├── models │ │ │ ├── addons_app_info.yml │ │ │ ├── addons_app_metadata.yml │ │ │ ├── addons_dimension_volume_with_price.yml │ │ │ ├── addons_dimension_with_price.yml │ │ │ ├── addons_feature.yml │ │ │ ├── addons_plan.yml │ │ │ ├── addons_resource.yml │ │ │ ├── addons_resource_metadata.yml │ │ │ └── addons_resource_new.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── addons_create.yml │ │ │ ├── addons_get.yml │ │ │ ├── addons_get_app.yml │ │ │ ├── addons_get_app_metadata.yml │ │ │ ├── addons_list.yml │ │ │ └── addons_update.yml │ ├── apps │ │ ├── apps_assign_alertDestinations.yml │ │ ├── apps_cancel_deployment.yml │ │ ├── apps_commit_rollback.yml │ │ ├── apps_create.yml │ │ ├── apps_create_deployment.yml │ │ ├── apps_create_rollback.yml │ │ ├── apps_delete.yml │ │ ├── apps_get.yml │ │ ├── apps_get_deployment.yml │ │ ├── apps_get_exec.yml │ │ ├── apps_get_exec_active_deployment.yml │ │ ├── apps_get_health.yml │ │ ├── apps_get_instanceSize.yml │ │ ├── apps_get_instances.yml │ │ ├── apps_get_job_invocation.yml │ │ ├── apps_get_job_invocation_logs.yml │ │ ├── apps_get_logs.yml │ │ ├── apps_get_logs_active_deployment.yml │ │ ├── apps_get_logs_active_deployment_aggregate.yml │ │ ├── apps_get_logs_aggregate.yml │ │ ├── apps_get_metrics_bandwidth_usage.yml │ │ ├── apps_list.yml │ │ ├── apps_list_alerts.yml │ │ ├── apps_list_deployments.yml │ │ ├── apps_list_instanceSizes.yml │ │ ├── apps_list_job_invocations.yml │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ ├── apps_list_regions.yml │ │ ├── apps_restart.yml │ │ ├── apps_revert_rollback.yml │ │ ├── apps_toggle_database_trusted_source.yml │ │ ├── apps_update.yml │ │ ├── apps_validate_appSpec.yml │ │ ├── apps_validate_rollback.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── apps_assign_alertDestinations.yml │ │ │ │ ├── apps_cancel_deployment.yml │ │ │ │ ├── apps_create.yml │ │ │ │ ├── apps_create_deployment.yml │ │ │ │ ├── apps_create_rollback.yml │ │ │ │ ├── apps_delete.yml │ │ │ │ ├── apps_get.yml │ │ │ │ ├── apps_get_deployment.yml │ │ │ │ ├── apps_get_exec.yml │ │ │ │ ├── apps_get_exec_active_deployment.yml │ │ │ │ ├── apps_get_health.yml │ │ │ │ ├── apps_get_instanceSize.yml │ │ │ │ ├── apps_get_job_invocation.yml │ │ │ │ ├── apps_get_job_invocation_logs.yml │ │ │ │ ├── apps_get_logs.yml │ │ │ │ ├── apps_get_logs_active_deployment.yml │ │ │ │ ├── apps_get_logs_active_deployment_aggregate.yml │ │ │ │ ├── apps_get_logs_aggregate.yml │ │ │ │ ├── apps_get_metrics_bandwidth_usage.yml │ │ │ │ ├── apps_list.yml │ │ │ │ ├── apps_list_alerts.yml │ │ │ │ ├── apps_list_deployments.yml │ │ │ │ ├── apps_list_instanceSizes.yml │ │ │ │ ├── apps_list_job_invocations.yml │ │ │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ │ │ ├── apps_list_regions.yml │ │ │ │ ├── apps_restart.yml │ │ │ │ ├── apps_toggle_database_trusted_source.yml │ │ │ │ ├── apps_update.yml │ │ │ │ ├── apps_validate_rollback.yml │ │ │ │ ├── commit_app_rollback.yml │ │ │ │ ├── get_app_instances.yml │ │ │ │ ├── revert_app_rollback.yml │ │ │ │ ├── rollback_app.yml │ │ │ │ └── validate_app_rollback.yml │ │ │ └── python │ │ │ │ ├── apps_assign_alertDestinations.yml │ │ │ │ ├── apps_cancel_deployment.yml │ │ │ │ ├── apps_create.yml │ │ │ │ ├── apps_create_deployment.yml │ │ │ │ ├── apps_create_rollback.yml │ │ │ │ ├── apps_delete.yml │ │ │ │ ├── apps_get.yml │ │ │ │ ├── apps_get_deployment.yml │ │ │ │ ├── apps_get_exec.yml │ │ │ │ ├── apps_get_exec_active_deployment.yml │ │ │ │ ├── apps_get_instanceSize.yml │ │ │ │ ├── apps_get_job_invocation.yml │ │ │ │ ├── apps_get_job_invocation_logs.yml │ │ │ │ ├── apps_get_logs.yml │ │ │ │ ├── apps_get_logs_active_deployment.yml │ │ │ │ ├── apps_get_logs_active_deployment_aggregate.yml │ │ │ │ ├── apps_get_logs_aggregate.yml │ │ │ │ ├── apps_get_metrics_bandwidth_usage.yml │ │ │ │ ├── apps_list.yml │ │ │ │ ├── apps_list_alerts.yml │ │ │ │ ├── apps_list_deployments.yml │ │ │ │ ├── apps_list_instanceSizes.yml │ │ │ │ ├── apps_list_job_invocations.yml │ │ │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ │ │ ├── apps_list_regions.yml │ │ │ │ ├── apps_restart.yml │ │ │ │ ├── apps_toggle_database_trusted_source.yml │ │ │ │ ├── apps_update.yml │ │ │ │ ├── apps_validate_rollback.yml │ │ │ │ ├── commit_app_rollback.yml │ │ │ │ ├── revert_app_rollback.yml │ │ │ │ ├── rollback_app.yml │ │ │ │ └── validate_app_rollback.yml │ │ ├── models │ │ │ ├── app.yml │ │ │ ├── app_alert.yml │ │ │ ├── app_alert_email.yml │ │ │ ├── app_alert_phase.yml │ │ │ ├── app_alert_progress.yml │ │ │ ├── app_alert_progress_step.yml │ │ │ ├── app_alert_progress_step_reason.yml │ │ │ ├── app_alert_progress_step_status.yml │ │ │ ├── app_alert_slack_webhook.yml │ │ │ ├── app_alert_spec.yml │ │ │ ├── app_alert_spec_operator.yml │ │ │ ├── app_alert_spec_rule.yml │ │ │ ├── app_alert_spec_window.yml │ │ │ ├── app_component_base.yml │ │ │ ├── app_component_health copy.yml │ │ │ ├── app_component_health.yml │ │ │ ├── app_component_instance_base.yml │ │ │ ├── app_database_spec.yml │ │ │ ├── app_domain_spec.yml │ │ │ ├── app_domain_validation.yml │ │ │ ├── app_egress_spec.yml │ │ │ ├── app_egress_type_spec.yml │ │ │ ├── app_functions_component_health.yml │ │ │ ├── app_functions_spec.yml │ │ │ ├── app_health.yml │ │ │ ├── app_health_check_spec.yml │ │ │ ├── app_health_response.yml │ │ │ ├── app_ingress_spec.yml │ │ │ ├── app_ingress_spec_rule.yml │ │ │ ├── app_ingress_spec_rule_match.yml │ │ │ ├── app_ingress_spec_rule_routing_component.yml │ │ │ ├── app_ingress_spec_rule_routing_redirect.yml │ │ │ ├── app_ingress_spec_rule_string_match_exact.yml │ │ │ ├── app_ingress_spec_rule_string_match_prefix.yml │ │ │ ├── app_instance.yml │ │ │ ├── app_instances.yml │ │ │ ├── app_instances_response.yml │ │ │ ├── app_job_invocation.yml │ │ │ ├── app_job_invocations.yml │ │ │ ├── app_job_spec.yml │ │ │ ├── app_job_spec_termination.yml │ │ │ ├── app_log_destination_datadog_spec.yml │ │ │ ├── app_log_destination_definition.yml │ │ │ ├── app_log_destination_logtail_spec.yml │ │ │ ├── app_log_destination_open_search_spec.yml │ │ │ ├── app_log_destination_open_search_spec_basic_auth.yml │ │ │ ├── app_log_destination_papertrail_spec.yml │ │ │ ├── app_maintenance_spec.yml │ │ │ ├── app_metrics_bandwidth_usage.yml │ │ │ ├── app_metrics_bandwidth_usage_details.yml │ │ │ ├── app_metrics_bandwidth_usage_request.yml │ │ │ ├── app_propose.yml │ │ │ ├── app_propose_response.yml │ │ │ ├── app_response.yml │ │ │ ├── app_rollback_validation_condition.yml │ │ │ ├── app_route_spec.yml │ │ │ ├── app_service_spec.yml │ │ │ ├── app_service_spec_health_check.yml │ │ │ ├── app_service_spec_termination.yml │ │ │ ├── app_spec.yml │ │ │ ├── app_static_site_spec.yml │ │ │ ├── app_variable_definition.yml │ │ │ ├── app_worker_spec.yml │ │ │ ├── app_worker_spec_termination.yml │ │ │ ├── apps_alert_response.yml │ │ │ ├── apps_assign_app_alert_destinations_request.yml │ │ │ ├── apps_bitbucket_source_spec.yml │ │ │ ├── apps_cors_policy.yml │ │ │ ├── apps_create_app_request.yml │ │ │ ├── apps_create_deployment_request.yml │ │ │ ├── apps_dedicated_egress_ip.yml │ │ │ ├── apps_dedicated_egress_ip_status.yml │ │ │ ├── apps_delete_app_response.yml │ │ │ ├── apps_deploy_template.yml │ │ │ ├── apps_deployment.yml │ │ │ ├── apps_deployment_functions.yml │ │ │ ├── apps_deployment_job.yml │ │ │ ├── apps_deployment_phase.yml │ │ │ ├── apps_deployment_progress.yml │ │ │ ├── apps_deployment_progress_step.yml │ │ │ ├── apps_deployment_progress_step_reason.yml │ │ │ ├── apps_deployment_progress_step_status.yml │ │ │ ├── apps_deployment_response.yml │ │ │ ├── apps_deployment_service.yml │ │ │ ├── apps_deployment_static_site.yml │ │ │ ├── apps_deployment_worker.yml │ │ │ ├── apps_deployments_response.yml │ │ │ ├── apps_domain.yml │ │ │ ├── apps_domain_phase.yml │ │ │ ├── apps_domain_progress.yml │ │ │ ├── apps_domain_progress_step.yml │ │ │ ├── apps_domain_progress_step_reason.yml │ │ │ ├── apps_domain_progress_step_status.yml │ │ │ ├── apps_get_exec_response.yml │ │ │ ├── apps_get_instance_size_response.yml │ │ │ ├── apps_get_logs_request_type.yml │ │ │ ├── apps_get_logs_response.yml │ │ │ ├── apps_get_tier_response.yml │ │ │ ├── apps_git_source_spec.yml │ │ │ ├── apps_github_source_spec.yml │ │ │ ├── apps_gitlab_source_spec.yml │ │ │ ├── apps_image_source_spec.yml │ │ │ ├── apps_instance_size.yml │ │ │ ├── apps_list_alerts_response.yml │ │ │ ├── apps_list_instance_sizes_response.yml │ │ │ ├── apps_list_regions_response.yml │ │ │ ├── apps_list_tiers_response.yml │ │ │ ├── apps_propose_app_response.yml │ │ │ ├── apps_propose_domain_response.yml │ │ │ ├── apps_region.yml │ │ │ ├── apps_response.yml │ │ │ ├── apps_restart_request.yml │ │ │ ├── apps_rollback_app_request.yml │ │ │ ├── apps_string_match.yml │ │ │ ├── apps_update_app_request.yml │ │ │ ├── apps_vpc.yml │ │ │ ├── apps_vpc_egress_ip.yml │ │ │ ├── instance_size_cpu_type.yml │ │ │ ├── propose_domain_response_app_domain.yml │ │ │ ├── propose_domain_response_do_domain_record.yml │ │ │ └── toggle_database_trusted_source_request.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── apps_get.yml │ │ │ ├── apps_get_logs.yml │ │ │ ├── apps_health.yml │ │ │ ├── apps_instances.yml │ │ │ ├── apps_validate_rollback.yml │ │ │ ├── assign_alert_destinations.yml │ │ │ ├── cancel_deployment.yml │ │ │ ├── delete_app.yml │ │ │ ├── examples.yml │ │ │ ├── existing_deployments.yml │ │ │ ├── get_exec.yml │ │ │ ├── get_instance.yml │ │ │ ├── get_job_invocation.yml │ │ │ ├── get_metrics_bandwidth_usage.yml │ │ │ ├── list_alerts.yml │ │ │ ├── list_apps.yml │ │ │ ├── list_deployment.yml │ │ │ ├── list_instance.yml │ │ │ ├── list_job_invocations.yml │ │ │ ├── list_logs.yml │ │ │ ├── list_metrics_bandwidth_usage.yml │ │ │ ├── list_regions.yml │ │ │ ├── new_app.yml │ │ │ ├── new_app_deployment.yml │ │ │ ├── propose_app.yml │ │ │ ├── toggle_database_trusted_source.yml │ │ │ └── update_app.yml │ ├── autoscale_pools │ │ ├── autoscale_pool_create.yml │ │ ├── autoscale_pool_delete.yml │ │ ├── autoscale_pool_delete_dangerous.yml │ │ ├── autoscale_pool_get.yml │ │ ├── autoscale_pool_list.yml │ │ ├── autoscale_pool_list_history.yml │ │ ├── autoscale_pool_list_members.yml │ │ ├── autoscale_pool_update.yml │ │ ├── examples.yml │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── autoscale_pool_create.yml │ │ │ │ ├── autoscale_pool_delete.yml │ │ │ │ ├── autoscale_pool_delete_dangerous.yml │ │ │ │ ├── autoscale_pool_get.yml │ │ │ │ ├── autoscale_pool_history_events.yml │ │ │ │ ├── autoscale_pool_members.yml │ │ │ │ ├── autoscale_pool_update.yml │ │ │ │ └── autoscale_pools_list.yml │ │ ├── models │ │ │ ├── autoscale_pool.yml │ │ │ ├── autoscale_pool_create.yml │ │ │ ├── autoscale_pool_droplet_template.yml │ │ │ ├── autoscale_pool_dynamic_config.yml │ │ │ ├── autoscale_pool_static_config.yml │ │ │ ├── current_utilization.yml │ │ │ ├── history.yml │ │ │ ├── member.yml │ │ │ └── member_current_utilization.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_autoscale_pools.yml │ │ │ ├── all_members.yml │ │ │ ├── autoscale_pool_create.yml │ │ │ ├── examples.yml │ │ │ ├── existing_autoscale_pool.yml │ │ │ └── history_events.yml │ ├── billing │ │ ├── balance_get.yml │ │ ├── billingHistory_list.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── balance_get.yml │ │ │ │ ├── billingHistory_list.yml │ │ │ │ ├── invoices_get_byUUID.yml │ │ │ │ ├── invoices_get_csvByUUID.yml │ │ │ │ ├── invoices_get_pdfByUUID.yml │ │ │ │ ├── invoices_get_summaryByUUID.yml │ │ │ │ └── invoices_list.yml │ │ │ └── python │ │ │ │ ├── balance_get.yml │ │ │ │ ├── billingHistory_list.yml │ │ │ │ ├── invoices_get_byUUID.yml │ │ │ │ ├── invoices_get_csvByUUID.yml │ │ │ │ ├── invoices_get_pdfByUUID.yml │ │ │ │ ├── invoices_get_summaryByUUID.yml │ │ │ │ └── invoices_list.yml │ │ ├── invoices_get_byUUID.yml │ │ ├── invoices_get_csvByUUID.yml │ │ ├── invoices_get_pdfByUUID.yml │ │ ├── invoices_get_summaryByUUID.yml │ │ ├── invoices_list.yml │ │ ├── models │ │ │ ├── balance.yml │ │ │ ├── billing_address.yml │ │ │ ├── billing_history.yml │ │ │ ├── invoice_item.yml │ │ │ ├── invoice_preview.yml │ │ │ ├── invoice_summary.yml │ │ │ ├── product_charge_item.yml │ │ │ ├── product_usage_charges.yml │ │ │ └── simple_charge.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── balance.yml │ │ │ ├── billing_history.yml │ │ │ ├── invoice.yml │ │ │ ├── invoice_csv.yml │ │ │ ├── invoice_pdf.yml │ │ │ ├── invoice_summary.yml │ │ │ └── invoices.yml │ ├── byoip_prefixes │ │ ├── byoip_prefix_list_resources.yml │ │ ├── byoip_prefixes_create.yml │ │ ├── byoip_prefixes_delete.yml │ │ ├── byoip_prefixes_get.yml │ │ ├── byoip_prefixes_list.yml │ │ ├── byoip_prefixes_update.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── byoip_prefix_list_resources.yml │ │ │ │ ├── create_byoip_prefix.yml │ │ │ │ ├── delete_byoip_prefix.yml │ │ │ │ ├── get_byoip_prefix.yml │ │ │ │ ├── list_byoip_prefixes.yml │ │ │ │ └── update_byoip_prefix.yml │ │ │ ├── go │ │ │ │ ├── byoip_prefix_list_resources.yml │ │ │ │ ├── create_byoip_prefix.yml │ │ │ │ ├── delete_byoip_prefix.yml │ │ │ │ ├── get_byoip_prefix.yml │ │ │ │ ├── list_byoip_prefixes.yml │ │ │ │ └── update_byoip_prefix.yml │ │ │ └── python │ │ │ │ ├── byoip_prefix_list_resources.yml │ │ │ │ ├── create_byoip_prefix.yml │ │ │ │ ├── delete_byoip_prefix.yml │ │ │ │ ├── get_byoip_prefix.yml │ │ │ │ ├── list_byoip_prefixes.yml │ │ │ │ └── update_byoip_prefix.yml │ │ ├── models │ │ │ ├── byoip_prefix.yml │ │ │ ├── byoip_prefix_create.yml │ │ │ ├── byoip_prefix_resource.yml │ │ │ └── byoip_prefix_update.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── byoip_prefix_create.yml │ │ │ ├── byoip_prefix_delete.yml │ │ │ ├── byoip_prefix_get.yml │ │ │ ├── byoip_prefix_list.yml │ │ │ ├── byoip_prefix_list_resources.yml │ │ │ ├── byoip_prefix_update.yml │ │ │ └── examples.yml │ ├── cdn │ │ ├── cdn_create_endpoint.yml │ │ ├── cdn_delete_endpoint.yml │ │ ├── cdn_get_endpoint.yml │ │ ├── cdn_list_endpoints.yml │ │ ├── cdn_purge_cache.yml │ │ ├── cdn_update_endpoint.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── endpoints_create.yml │ │ │ │ ├── endpoints_delete.yml │ │ │ │ ├── endpoints_get.yml │ │ │ │ ├── endpoints_list.yml │ │ │ │ ├── endpoints_update.yml │ │ │ │ └── purge_cdn_cache.yml │ │ │ ├── go │ │ │ │ ├── endpoints_create.yml │ │ │ │ ├── endpoints_delete.yml │ │ │ │ ├── endpoints_get.yml │ │ │ │ ├── endpoints_list.yml │ │ │ │ ├── endpoints_update.yml │ │ │ │ └── purge_cdn_cache.yml │ │ │ ├── python │ │ │ │ ├── endpoints_create.yml │ │ │ │ ├── endpoints_delete.yml │ │ │ │ ├── endpoints_get.yml │ │ │ │ ├── endpoints_list.yml │ │ │ │ ├── endpoints_update.yml │ │ │ │ └── purge_cdn_cache.yml │ │ │ └── ruby │ │ │ │ ├── endpoints_create.yml │ │ │ │ ├── endpoints_delete.yml │ │ │ │ ├── endpoints_get.yml │ │ │ │ ├── endpoints_list.yml │ │ │ │ ├── endpoints_update.yml │ │ │ │ └── purge_cdn_cache.yml │ │ ├── models │ │ │ ├── cdn_endpoint.yml │ │ │ ├── purge_cache.yml │ │ │ └── update_endpoint.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_cdn_endpoints.yml │ │ │ └── existing_endpoint.yml │ ├── certificates │ │ ├── certificates_create.yml │ │ ├── certificates_delete.yml │ │ ├── certificates_get.yml │ │ ├── certificates_list.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── certificates_create.yml │ │ │ │ ├── certificates_delete.yml │ │ │ │ ├── certificates_get.yml │ │ │ │ └── certificates_list.yml │ │ │ ├── go │ │ │ │ ├── certificates_create.yml │ │ │ │ ├── certificates_delete.yml │ │ │ │ ├── certificates_get.yml │ │ │ │ └── certificates_list.yml │ │ │ ├── python │ │ │ │ ├── certificates_create.yml │ │ │ │ ├── certificates_delete.yml │ │ │ │ ├── certificates_get.yml │ │ │ │ └── certificates_list.yml │ │ │ └── ruby │ │ │ │ ├── certificates_create.yml │ │ │ │ ├── certificates_delete.yml │ │ │ │ ├── certificates_get.yml │ │ │ │ └── certificates_list.yml │ │ ├── models │ │ │ ├── certificate.yml │ │ │ └── certificate_create.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_certificates.yml │ │ │ ├── examples.yml │ │ │ ├── existing_certificate.yml │ │ │ └── new_certificate.yml │ ├── databases │ │ ├── databases_add.yml │ │ ├── databases_add_connectionPool.yml │ │ ├── databases_add_user.yml │ │ ├── databases_create_cluster.yml │ │ ├── databases_create_kafka_schema.yml │ │ ├── databases_create_kafka_topic.yml │ │ ├── databases_create_logsink.yml │ │ ├── databases_create_replica.yml │ │ ├── databases_delete.yml │ │ ├── databases_delete_connectionPool.yml │ │ ├── databases_delete_kafka_schema.yml │ │ ├── databases_delete_kafka_topic.yml │ │ ├── databases_delete_logsink.yml │ │ ├── databases_delete_onlineMigration.yml │ │ ├── databases_delete_opensearch_index.yml │ │ ├── databases_delete_user.yml │ │ ├── databases_destroy_cluster.yml │ │ ├── databases_destroy_replica.yml │ │ ├── databases_events_logs.yml │ │ ├── databases_get.yml │ │ ├── databases_get_autoscale.yml │ │ ├── databases_get_ca.yml │ │ ├── databases_get_cluster.yml │ │ ├── databases_get_cluster_metrics_credentials.yml │ │ ├── databases_get_config.yml │ │ ├── databases_get_connectionPool.yml │ │ ├── databases_get_evictionPolicy.yml │ │ ├── databases_get_kafka_schema.yml │ │ ├── databases_get_kafka_schema_config.yml │ │ ├── databases_get_kafka_schema_subject_config.yml │ │ ├── databases_get_kafka_schema_version.yml │ │ ├── databases_get_kafka_topic.yml │ │ ├── databases_get_logsink.yml │ │ ├── databases_get_migrationStatus.yml │ │ ├── databases_get_replica.yml │ │ ├── databases_get_sql_mode.yml │ │ ├── databases_get_user.yml │ │ ├── databases_list.yml │ │ ├── databases_list_backups.yml │ │ ├── databases_list_clusters.yml │ │ ├── databases_list_connectionPools.yml │ │ ├── databases_list_firewall_rules.yml │ │ ├── databases_list_kafka_schemas.yml │ │ ├── databases_list_kafka_topics.yml │ │ ├── databases_list_logsink.yml │ │ ├── databases_list_opensearch_indexes.yml │ │ ├── databases_list_options.yml │ │ ├── databases_list_replicas.yml │ │ ├── databases_list_users.yml │ │ ├── databases_patch_config.yml │ │ ├── databases_promote_replica.yml │ │ ├── databases_reset_auth.yml │ │ ├── databases_set_autoscale.yml │ │ ├── databases_update_autoscale.yml │ │ ├── databases_update_clusterSize.yml │ │ ├── databases_update_cluster_metrics_credentials.yml │ │ ├── databases_update_connectionPool.yml │ │ ├── databases_update_evictionPolicy.yml │ │ ├── databases_update_firewall_rules.yml │ │ ├── databases_update_installUpdate.yml │ │ ├── databases_update_kafka_schema_config.yml │ │ ├── databases_update_kafka_schema_subject_config.yml │ │ ├── databases_update_kafka_topic.yml │ │ ├── databases_update_logsink.yml │ │ ├── databases_update_maintenanceWindow.yml │ │ ├── databases_update_onlineMigration.yml │ │ ├── databases_update_region.yml │ │ ├── databases_update_sql_mode.yml │ │ ├── databases_update_user.yml │ │ ├── databases_upgrade_major_version.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── databases_add.yml │ │ │ │ ├── databases_add_connectionPool.yml │ │ │ │ ├── databases_add_user.yml │ │ │ │ ├── databases_create_cluster.yml │ │ │ │ ├── databases_create_logsink.yml │ │ │ │ ├── databases_create_replica.yml │ │ │ │ ├── databases_create_topic.yml │ │ │ │ ├── databases_delete.yml │ │ │ │ ├── databases_delete_connectionPool.yml │ │ │ │ ├── databases_delete_logsink.yml │ │ │ │ ├── databases_delete_onlineMigration.yml │ │ │ │ ├── databases_delete_opensearch_index.yml │ │ │ │ ├── databases_delete_topic.yml │ │ │ │ ├── databases_delete_user.yml │ │ │ │ ├── databases_destroy_cluster.yml │ │ │ │ ├── databases_destroy_replica.yml │ │ │ │ ├── databases_get.yml │ │ │ │ ├── databases_get_autoscale.yml │ │ │ │ ├── databases_get_ca.yml │ │ │ │ ├── databases_get_cluster.yml │ │ │ │ ├── databases_get_cluster_metrics_credentials.yml │ │ │ │ ├── databases_get_config.yml │ │ │ │ ├── databases_get_connectionPool.yml │ │ │ │ ├── databases_get_evictionPolicy.yml │ │ │ │ ├── databases_get_logsink.yml │ │ │ │ ├── databases_get_migrationStatus.yml │ │ │ │ ├── databases_get_replica.yml │ │ │ │ ├── databases_get_sql_mode.yml │ │ │ │ ├── databases_get_topic.yml │ │ │ │ ├── databases_get_user.yml │ │ │ │ ├── databases_list.yml │ │ │ │ ├── databases_list_backups.yml │ │ │ │ ├── databases_list_clusters.yml │ │ │ │ ├── databases_list_connectionPools.yml │ │ │ │ ├── databases_list_events.yml │ │ │ │ ├── databases_list_firewall_rules.yml │ │ │ │ ├── databases_list_logsink.yml │ │ │ │ ├── databases_list_opensearch_indexes.yml │ │ │ │ ├── databases_list_options.yml │ │ │ │ ├── databases_list_replicas.yml │ │ │ │ ├── databases_list_topics.yml │ │ │ │ ├── databases_list_users.yml │ │ │ │ ├── databases_patch_config.yml │ │ │ │ ├── databases_promote_replica.yml │ │ │ │ ├── databases_reset_auth.yml │ │ │ │ ├── databases_set_autoscale.yml │ │ │ │ ├── databases_update_autoscale.yml │ │ │ │ ├── databases_update_clusterSize.yml │ │ │ │ ├── databases_update_cluster_metrics_credentials.yml │ │ │ │ ├── databases_update_connectionPool.yml │ │ │ │ ├── databases_update_evictionPolicy.yml │ │ │ │ ├── databases_update_firewall_rules.yml │ │ │ │ ├── databases_update_installUpdate.yml │ │ │ │ ├── databases_update_logsink.yml │ │ │ │ ├── databases_update_maintenanceWindow.yml │ │ │ │ ├── databases_update_onlineMigration.yml │ │ │ │ ├── databases_update_region.yml │ │ │ │ ├── databases_update_sql_mode.yml │ │ │ │ ├── databases_update_topic.yml │ │ │ │ ├── databases_update_user.yml │ │ │ │ └── databases_upgrade_version.yml │ │ │ ├── go │ │ │ │ ├── databases_add.yml │ │ │ │ ├── databases_add_connectionPool.yml │ │ │ │ ├── databases_add_user.yml │ │ │ │ ├── databases_create_cluster.yml │ │ │ │ ├── databases_create_replica.yml │ │ │ │ ├── databases_create_topic.yml │ │ │ │ ├── databases_delete.yml │ │ │ │ ├── databases_delete_connectionPool.yml │ │ │ │ ├── databases_delete_opensearch_index.yml │ │ │ │ ├── databases_delete_topic.yml │ │ │ │ ├── databases_delete_user.yml │ │ │ │ ├── databases_destroy_cluster.yml │ │ │ │ ├── databases_destroy_replica.yml │ │ │ │ ├── databases_get.yml │ │ │ │ ├── databases_get_ca.yml │ │ │ │ ├── databases_get_cluster.yml │ │ │ │ ├── databases_get_cluster_metrics_credentials.yml │ │ │ │ ├── databases_get_connectionPool.yml │ │ │ │ ├── databases_get_evictionPolicy.yml │ │ │ │ ├── databases_get_replica.yml │ │ │ │ ├── databases_get_sql_mode.yml │ │ │ │ ├── databases_get_topic.yml │ │ │ │ ├── databases_get_user.yml │ │ │ │ ├── databases_list.yml │ │ │ │ ├── databases_list_backups.yml │ │ │ │ ├── databases_list_clusters.yml │ │ │ │ ├── databases_list_connectionPools.yml │ │ │ │ ├── databases_list_events.yml │ │ │ │ ├── databases_list_firewall_rules.yml │ │ │ │ ├── databases_list_opensearch_indexes.yml │ │ │ │ ├── databases_list_options.yml │ │ │ │ ├── databases_list_replicas.yml │ │ │ │ ├── databases_list_topics.yml │ │ │ │ ├── databases_list_users.yml │ │ │ │ ├── databases_promote_replica.yml │ │ │ │ ├── databases_reset_auth.yml │ │ │ │ ├── databases_update_clusterSize.yml │ │ │ │ ├── databases_update_cluster_metrics_credentials.yml │ │ │ │ ├── databases_update_connectionPool.yml │ │ │ │ ├── databases_update_evictionPolicy.yml │ │ │ │ ├── databases_update_firewall_rules.yml │ │ │ │ ├── databases_update_installUpdate.yml │ │ │ │ ├── databases_update_maintenanceWindow.yml │ │ │ │ ├── databases_update_region.yml │ │ │ │ ├── databases_update_sql_mode.yml │ │ │ │ ├── databases_update_topic.yml │ │ │ │ └── databases_update_user.yml │ │ │ └── python │ │ │ │ ├── databases_add.yml │ │ │ │ ├── databases_add_connectionPool.yml │ │ │ │ ├── databases_add_user.yml │ │ │ │ ├── databases_create_cluster.yml │ │ │ │ ├── databases_create_replica.yml │ │ │ │ ├── databases_delete.yml │ │ │ │ ├── databases_delete_connectionPool.yml │ │ │ │ ├── databases_delete_onlineMigration.yml │ │ │ │ ├── databases_delete_user.yml │ │ │ │ ├── databases_destroy_cluster.yml │ │ │ │ ├── databases_destroy_replica.yml │ │ │ │ ├── databases_get.yml │ │ │ │ ├── databases_get_autoscale.yml │ │ │ │ ├── databases_get_ca.yml │ │ │ │ ├── databases_get_cluster.yml │ │ │ │ ├── databases_get_config.yml │ │ │ │ ├── databases_get_connectionPool.yml │ │ │ │ ├── databases_get_evictionPolicy.yml │ │ │ │ ├── databases_get_migrationStatus.yml │ │ │ │ ├── databases_get_replica.yml │ │ │ │ ├── databases_get_sql_mode.yml │ │ │ │ ├── databases_get_user.yml │ │ │ │ ├── databases_list.yml │ │ │ │ ├── databases_list_backups.yml │ │ │ │ ├── databases_list_clusters.yml │ │ │ │ ├── databases_list_connectionPools.yml │ │ │ │ ├── databases_list_firewall_rules.yml │ │ │ │ ├── databases_list_options.yml │ │ │ │ ├── databases_list_replicas.yml │ │ │ │ ├── databases_list_users.yml │ │ │ │ ├── databases_patch_config.yml │ │ │ │ ├── databases_promote_replica.yml │ │ │ │ ├── databases_reset_auth.yml │ │ │ │ ├── databases_set_autoscale.yml │ │ │ │ ├── databases_update_autoscale.yml │ │ │ │ ├── databases_update_clusterSize.yml │ │ │ │ ├── databases_update_connectionPool.yml │ │ │ │ ├── databases_update_evictionPolicy.yml │ │ │ │ ├── databases_update_firewall_rules.yml │ │ │ │ ├── databases_update_installUpdate.yml │ │ │ │ ├── databases_update_maintenanceWindow.yml │ │ │ │ ├── databases_update_onlineMigration.yml │ │ │ │ ├── databases_update_region.yml │ │ │ │ ├── databases_update_sql_mode.yml │ │ │ │ └── databases_upgrade_version.yml │ │ ├── models │ │ │ ├── advanced_config │ │ │ │ ├── helpers │ │ │ │ │ └── mysql_incremental_backup.yml │ │ │ │ ├── kafka_advanced_config.yml │ │ │ │ ├── mongo_advanced_config.yml │ │ │ │ ├── mysql_advanced_config.yml │ │ │ │ ├── opensearch_advanced_config.yml │ │ │ │ ├── pgbouncer_advanced_config.yml │ │ │ │ ├── postgres_advanced_config.yml │ │ │ │ ├── redis_advanced_config.yml │ │ │ │ ├── timescaledb_advanced_config.yml │ │ │ │ └── valkey_advanced_config.yml │ │ │ ├── backup.yml │ │ │ ├── ca.yml │ │ │ ├── connection_pool.yml │ │ │ ├── connection_pool_update.yml │ │ │ ├── connection_pools.yml │ │ │ ├── database.yml │ │ │ ├── database_autoscale_params.yml │ │ │ ├── database_backup.yml │ │ │ ├── database_cluster.yml │ │ │ ├── database_cluster_read.yml │ │ │ ├── database_cluster_resize.yml │ │ │ ├── database_config.yml │ │ │ ├── database_connection.yml │ │ │ ├── database_kafka_schema_create.yml │ │ │ ├── database_layout_option.yml │ │ │ ├── database_layout_options.yml │ │ │ ├── database_maintenance_window.yml │ │ │ ├── database_metrics_credentials.yml │ │ │ ├── database_region_options.yml │ │ │ ├── database_replica.yml │ │ │ ├── database_replica_read.yml │ │ │ ├── database_service_endpoint.yml │ │ │ ├── database_storage_autoscale_params.yml │ │ │ ├── database_user.yml │ │ │ ├── database_version_availabilities.yml │ │ │ ├── database_version_availability.yml │ │ │ ├── database_version_options.yml │ │ │ ├── databases_basic_auth_credentials.yml │ │ │ ├── events_logs.yml │ │ │ ├── eviction_policy_model.yml │ │ │ ├── firewall_rule.yml │ │ │ ├── kafka_schema_verbose.yml │ │ │ ├── kafka_schema_version_verbose.yml │ │ │ ├── kafka_topic.yml │ │ │ ├── kafka_topic_base.yml │ │ │ ├── kafka_topic_config.yml │ │ │ ├── kafka_topic_create.yml │ │ │ ├── kafka_topic_partition.yml │ │ │ ├── kafka_topic_update.yml │ │ │ ├── kafka_topic_verbose.yml │ │ │ ├── logsink │ │ │ │ ├── datadog_logsink.yml │ │ │ │ ├── elasticsearch_logsink.yml │ │ │ │ ├── opensearch_logsink.yml │ │ │ │ └── rsyslog_logsink.yml │ │ │ ├── logsink_base.yml │ │ │ ├── logsink_base_verbose.yml │ │ │ ├── logsink_create.yml │ │ │ ├── logsink_update.yml │ │ │ ├── logsink_verbose.yml │ │ │ ├── mysql_settings.yml │ │ │ ├── online_migration.yml │ │ │ ├── opensearch_connection.yml │ │ │ ├── opensearch_index.yml │ │ │ ├── opensearch_index_base.yml │ │ │ ├── options.yml │ │ │ ├── schema_registry_connection.yml │ │ │ ├── source_database.yml │ │ │ ├── sql_mode.yml │ │ │ ├── user_settings.yml │ │ │ └── version.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── autoscale.yml │ │ │ ├── ca.yml │ │ │ ├── connection_pool.yml │ │ │ ├── connection_pools.yml │ │ │ ├── database.yml │ │ │ ├── database_backups.yml │ │ │ ├── database_cluster.yml │ │ │ ├── database_clusters.yml │ │ │ ├── database_config.yml │ │ │ ├── database_metrics_auth.yml │ │ │ ├── database_replica.yml │ │ │ ├── database_replicas.yml │ │ │ ├── database_schema_registry_config.yml │ │ │ ├── database_schema_registry_subject_config.yml │ │ │ ├── databases.yml │ │ │ ├── events_logs.yml │ │ │ ├── eviction_policy_response.yml │ │ │ ├── firewall_rules.yml │ │ │ ├── kafka_schema.yml │ │ │ ├── kafka_schema_version.yml │ │ │ ├── kafka_schemas.yml │ │ │ ├── kafka_topic.yml │ │ │ ├── kafka_topics.yml │ │ │ ├── logsink.yml │ │ │ ├── logsink_data.yml │ │ │ ├── logsink_schema.yml │ │ │ ├── logsinks.yml │ │ │ ├── online_migration.yml │ │ │ ├── opensearch_indexes.yml │ │ │ ├── options.yml │ │ │ ├── sql_mode.yml │ │ │ ├── user.yml │ │ │ └── users.yml │ ├── domains │ │ ├── domains_create.yml │ │ ├── domains_create_record.yml │ │ ├── domains_delete.yml │ │ ├── domains_delete_record.yml │ │ ├── domains_get.yml │ │ ├── domains_get_record.yml │ │ ├── domains_list.yml │ │ ├── domains_list_records.yml │ │ ├── domains_patch_record.yml │ │ ├── domains_update_record.yml │ │ ├── examples.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── domains_create.yml │ │ │ │ ├── domains_create_record.yml │ │ │ │ ├── domains_delete.yml │ │ │ │ ├── domains_delete_record.yml │ │ │ │ ├── domains_get.yml │ │ │ │ ├── domains_get_record.yml │ │ │ │ ├── domains_list.yml │ │ │ │ ├── domains_list_records.yml │ │ │ │ ├── domains_patch_record.yml │ │ │ │ └── domains_update_record.yml │ │ │ ├── go │ │ │ │ ├── domains_create.yml │ │ │ │ ├── domains_create_record.yml │ │ │ │ ├── domains_delete.yml │ │ │ │ ├── domains_delete_record.yml │ │ │ │ ├── domains_get.yml │ │ │ │ ├── domains_get_record.yml │ │ │ │ ├── domains_list.yml │ │ │ │ ├── domains_list_records.yml │ │ │ │ └── domains_update_record.yml │ │ │ ├── python │ │ │ │ ├── domains_create.yml │ │ │ │ ├── domains_create_record.yml │ │ │ │ ├── domains_delete.yml │ │ │ │ ├── domains_delete_record.yml │ │ │ │ ├── domains_get.yml │ │ │ │ ├── domains_get_record.yml │ │ │ │ ├── domains_list.yml │ │ │ │ ├── domains_list_records.yml │ │ │ │ ├── domains_patch_record.yml │ │ │ │ └── domains_update_record.yml │ │ │ └── ruby │ │ │ │ ├── domains_create.yml │ │ │ │ ├── domains_create_record.yml │ │ │ │ ├── domains_delete.yml │ │ │ │ ├── domains_delete_record.yml │ │ │ │ ├── domains_get.yml │ │ │ │ ├── domains_get_record.yml │ │ │ │ ├── domains_list.yml │ │ │ │ ├── domains_list_records.yml │ │ │ │ └── domains_update_record.yml │ │ ├── models │ │ │ ├── domain.yml │ │ │ ├── domain_record.yml │ │ │ └── domain_record_types.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_domain_records_response.yml │ │ │ ├── all_domains_response.yml │ │ │ ├── create_domain_response.yml │ │ │ ├── created_domain_record.yml │ │ │ ├── domain_record.yml │ │ │ └── existing_domain.yml │ ├── droplets │ │ ├── dropletActions_get.yml │ │ ├── dropletActions_list.yml │ │ ├── dropletActions_post.yml │ │ ├── dropletActions_post_byTag.yml │ │ ├── droplets_create.yml │ │ ├── droplets_destroy.yml │ │ ├── droplets_destroy_byTag.yml │ │ ├── droplets_destroy_retryWithAssociatedResources.yml │ │ ├── droplets_destroy_withAssociatedResourcesDangerous.yml │ │ ├── droplets_destroy_withAssociatedResourcesSelective.yml │ │ ├── droplets_get.yml │ │ ├── droplets_get_backup_policy.yml │ │ ├── droplets_get_destroyAssociatedResourcesStatus.yml │ │ ├── droplets_list.yml │ │ ├── droplets_list_associatedResources.yml │ │ ├── droplets_list_backup_policies.yml │ │ ├── droplets_list_backups.yml │ │ ├── droplets_list_firewalls.yml │ │ ├── droplets_list_kernels.yml │ │ ├── droplets_list_neighbors.yml │ │ ├── droplets_list_neighborsIds.yml │ │ ├── droplets_list_snapshots.yml │ │ ├── droplets_list_supported_backup_policies.yml │ │ ├── examples.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── dropletActions_get.yml │ │ │ │ ├── dropletActions_list.yml │ │ │ │ ├── dropletActions_post.yml │ │ │ │ ├── dropletActions_post_byTag.yml │ │ │ │ ├── droplets_create.yml │ │ │ │ ├── droplets_destroy.yml │ │ │ │ ├── droplets_destroy_byTag.yml │ │ │ │ ├── droplets_destroy_retryWithAssociatedResources.yml │ │ │ │ ├── droplets_destroy_withAssociatedResourcesDangerous.yml │ │ │ │ ├── droplets_destroy_withAssociatedResourcesSelective.yml │ │ │ │ ├── droplets_get.yml │ │ │ │ ├── droplets_get_DestroyAssociatedResourcesStatus.yml │ │ │ │ ├── droplets_get_backup_policy.yml │ │ │ │ ├── droplets_list.yml │ │ │ │ ├── droplets_list_associatedResources.yml │ │ │ │ ├── droplets_list_backup_policies.yml │ │ │ │ ├── droplets_list_backups.yml │ │ │ │ ├── droplets_list_kernels.yml │ │ │ │ ├── droplets_list_neighbors.yml │ │ │ │ ├── droplets_list_neighborsIds.yml │ │ │ │ ├── droplets_list_snapshots.yml │ │ │ │ └── droplets_list_supported_backup_policies.yml │ │ │ ├── go │ │ │ │ ├── dropletActions_get.yml │ │ │ │ ├── dropletActions_list.yml │ │ │ │ ├── dropletActions_post.yml │ │ │ │ ├── dropletActions_post_byTag.yml │ │ │ │ ├── droplets_create.yml │ │ │ │ ├── droplets_destroy.yml │ │ │ │ ├── droplets_destroy_byTag.yml │ │ │ │ ├── droplets_get.yml │ │ │ │ ├── droplets_get_backup_policy.yml │ │ │ │ ├── droplets_list.yml │ │ │ │ ├── droplets_list_backup_policies.yml │ │ │ │ ├── droplets_list_backups.yml │ │ │ │ ├── droplets_list_kernels.yml │ │ │ │ ├── droplets_list_snapshots.yml │ │ │ │ └── droplets_list_supported_backup_policies.yml │ │ │ ├── python │ │ │ │ ├── dropletActions_get.yml │ │ │ │ ├── dropletActions_list.yml │ │ │ │ ├── dropletActions_post.yml │ │ │ │ ├── dropletActions_post_byTag.yml │ │ │ │ ├── droplets_create.yml │ │ │ │ ├── droplets_destroy.yml │ │ │ │ ├── droplets_destroy_byTag.yml │ │ │ │ ├── droplets_destroy_retryWithAssociatedResources.yml │ │ │ │ ├── droplets_destroy_withAssociatedResourcesDangerous.yml │ │ │ │ ├── droplets_destroy_withAssociatedResourcesSelective.yml │ │ │ │ ├── droplets_get.yml │ │ │ │ ├── droplets_get_DestroyAssociatedResourcesStatus.yml │ │ │ │ ├── droplets_get_backup_policy.yml │ │ │ │ ├── droplets_list.yml │ │ │ │ ├── droplets_list_associatedResources.yml │ │ │ │ ├── droplets_list_backup_policies.yml │ │ │ │ ├── droplets_list_backups.yml │ │ │ │ ├── droplets_list_kernels.yml │ │ │ │ ├── droplets_list_neighbors.yml │ │ │ │ ├── droplets_list_neighborsIds.yml │ │ │ │ ├── droplets_list_snapshots.yml │ │ │ │ └── droplets_list_supported_backup_policies.yml │ │ │ └── ruby │ │ │ │ ├── dropletActions_get.yml │ │ │ │ ├── dropletActions_list.yml │ │ │ │ ├── dropletActions_post.yml │ │ │ │ ├── dropletActions_post_byTag.yml │ │ │ │ ├── droplets_create.yml │ │ │ │ ├── droplets_destroy.yml │ │ │ │ ├── droplets_destroy_byTag.yml │ │ │ │ ├── droplets_get.yml │ │ │ │ ├── droplets_list.yml │ │ │ │ ├── droplets_list_backups.yml │ │ │ │ ├── droplets_list_kernels.yml │ │ │ │ └── droplets_list_snapshots.yml │ │ ├── models │ │ │ ├── associated_resource.yml │ │ │ ├── associated_resource_status.yml │ │ │ ├── destroyed_associated_resource.yml │ │ │ ├── droplet.yml │ │ │ ├── droplet_actions.yml │ │ │ ├── droplet_backup_policy.yml │ │ │ ├── droplet_backup_policy_record.yml │ │ │ ├── droplet_create.yml │ │ │ ├── droplet_multi_create.yml │ │ │ ├── droplet_next_backup_window.yml │ │ │ ├── droplet_single_create.yml │ │ │ ├── droplet_snapshot.yml │ │ │ ├── kernel.yml │ │ │ ├── neighbor_ids.yml │ │ │ ├── network_v4.yml │ │ │ ├── network_v6.yml │ │ │ ├── selective_destroy_associated_resource.yml │ │ │ └── supported_droplet_backup_policy.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_droplet_actions.yml │ │ │ ├── all_droplet_backup_policies.yml │ │ │ ├── all_droplet_backups.yml │ │ │ ├── all_droplet_snapshots.yml │ │ │ ├── all_droplets.yml │ │ │ ├── all_firewalls.yml │ │ │ ├── all_kernels.yml │ │ │ ├── associated_resources_list.yml │ │ │ ├── associated_resources_status.yml │ │ │ ├── droplet_action.yml │ │ │ ├── droplet_actions_response.yml │ │ │ ├── droplet_backup_policy.yml │ │ │ ├── droplet_create.yml │ │ │ ├── droplet_neighbors_ids.yml │ │ │ ├── droplets_supported_backup_policies.yml │ │ │ ├── examples.yml │ │ │ ├── existing_droplet.yml │ │ │ └── neighbor_droplets.yml │ ├── firewalls │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── firewalls_add_rules.yml │ │ │ │ ├── firewalls_add_tags.yml │ │ │ │ ├── firewalls_assign_droplet.yml │ │ │ │ ├── firewalls_create.yml │ │ │ │ ├── firewalls_delete.yml │ │ │ │ ├── firewalls_delete_droplets.yml │ │ │ │ ├── firewalls_delete_rules.yml │ │ │ │ ├── firewalls_delete_tags.yml │ │ │ │ ├── firewalls_get.yml │ │ │ │ ├── firewalls_list.yml │ │ │ │ └── firewalls_update.yml │ │ │ ├── go │ │ │ │ ├── firewalls_add_rules.yml │ │ │ │ ├── firewalls_add_tags.yml │ │ │ │ ├── firewalls_assign_droplet.yml │ │ │ │ ├── firewalls_create.yml │ │ │ │ ├── firewalls_delete.yml │ │ │ │ ├── firewalls_delete_droplets.yml │ │ │ │ ├── firewalls_delete_rules.yml │ │ │ │ ├── firewalls_delete_tags.yml │ │ │ │ ├── firewalls_get.yml │ │ │ │ ├── firewalls_list.yml │ │ │ │ └── firewalls_update.yml │ │ │ ├── python │ │ │ │ ├── firewalls_add_rules.yml │ │ │ │ ├── firewalls_add_tags.yml │ │ │ │ ├── firewalls_assign_droplet.yml │ │ │ │ ├── firewalls_create.yml │ │ │ │ ├── firewalls_delete.yml │ │ │ │ ├── firewalls_delete_droplets.yml │ │ │ │ ├── firewalls_delete_rules.yml │ │ │ │ ├── firewalls_delete_tags.yml │ │ │ │ ├── firewalls_get.yml │ │ │ │ ├── firewalls_list.yml │ │ │ │ └── firewalls_update.yml │ │ │ └── ruby │ │ │ │ ├── firewalls_add_rules.yml │ │ │ │ ├── firewalls_add_tags.yml │ │ │ │ ├── firewalls_assign_droplet.yml │ │ │ │ ├── firewalls_create.yml │ │ │ │ ├── firewalls_delete.yml │ │ │ │ ├── firewalls_delete_droplets.yml │ │ │ │ ├── firewalls_delete_rules.yml │ │ │ │ ├── firewalls_delete_tags.yml │ │ │ │ ├── firewalls_get.yml │ │ │ │ ├── firewalls_list.yml │ │ │ │ └── firewalls_update.yml │ │ ├── firewalls_add_rules.yml │ │ ├── firewalls_add_tags.yml │ │ ├── firewalls_assign_droplets.yml │ │ ├── firewalls_create.yml │ │ ├── firewalls_delete.yml │ │ ├── firewalls_delete_droplets.yml │ │ ├── firewalls_delete_rules.yml │ │ ├── firewalls_delete_tags.yml │ │ ├── firewalls_get.yml │ │ ├── firewalls_list.yml │ │ ├── firewalls_update.yml │ │ ├── models │ │ │ ├── firewall.yml │ │ │ └── firewall_rule.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── create_firewall_response.yml │ │ │ ├── get_firewall_response.yml │ │ │ ├── list_firewalls_response.yml │ │ │ └── put_firewall_response.yml │ ├── floating_ips │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── create_floating_ip.yml │ │ │ │ ├── delete_floating_ip.yml │ │ │ │ ├── get_floating_ip.yml │ │ │ │ ├── get_floating_ip_action.yml │ │ │ │ ├── list_floating_ip_actions.yml │ │ │ │ ├── list_floating_ips.yml │ │ │ │ └── post_floating_ip_action.yml │ │ │ ├── go │ │ │ │ ├── create_floating_ip.yml │ │ │ │ ├── delete_floating_ip.yml │ │ │ │ ├── get_floating_ip.yml │ │ │ │ ├── get_floating_ip_action.yml │ │ │ │ ├── list_floating_ip_actions.yml │ │ │ │ ├── list_floating_ips.yml │ │ │ │ └── post_floating_ip_action.yml │ │ │ └── ruby │ │ │ │ ├── create_floating_ip.yml │ │ │ │ ├── delete_floating_ip.yml │ │ │ │ ├── get_floating_ip.yml │ │ │ │ ├── get_floating_ip_action.yml │ │ │ │ ├── list_floating_ip_actions.yml │ │ │ │ ├── list_floating_ips.yml │ │ │ │ └── post_floating_ip_action.yml │ │ ├── floatingIPsAction_get.yml │ │ ├── floatingIPsAction_list.yml │ │ ├── floatingIPsAction_post.yml │ │ ├── floatingIPs_create.yml │ │ ├── floatingIPs_delete.yml │ │ ├── floatingIPs_get.yml │ │ ├── floatingIPs_list.yml │ │ ├── models │ │ │ ├── floating_ip.yml │ │ │ ├── floating_ip_actions.yml │ │ │ └── floating_ip_create.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── examples.yml │ │ │ ├── floating_ip.yml │ │ │ ├── floating_ip_action.yml │ │ │ ├── floating_ip_actions.yml │ │ │ ├── floating_ip_created.yml │ │ │ └── floating_ip_list.yml │ ├── functions │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── create_namespace.yml │ │ │ │ ├── create_trigger.yml │ │ │ │ ├── delete_namespace.yml │ │ │ │ ├── delete_trigger.yml │ │ │ │ ├── get_namespace.yml │ │ │ │ ├── get_trigger.yml │ │ │ │ ├── list_namespaces.yml │ │ │ │ ├── list_triggers.yml │ │ │ │ └── update_trigger.yml │ │ │ └── python │ │ │ │ ├── create_namespace.yml │ │ │ │ ├── create_trigger.yml │ │ │ │ ├── delete_namespace.yml │ │ │ │ ├── delete_trigger.yml │ │ │ │ ├── get_namespace.yml │ │ │ │ ├── get_trigger.yml │ │ │ │ ├── list_namespaces.yml │ │ │ │ ├── list_triggers.yml │ │ │ │ └── update_trigger.yml │ │ ├── functions_create_namespace.yml │ │ ├── functions_create_trigger.yml │ │ ├── functions_delete_namespace.yml │ │ ├── functions_delete_trigger.yml │ │ ├── functions_get_namespace.yml │ │ ├── functions_get_trigger.yml │ │ ├── functions_list_namespaces.yml │ │ ├── functions_list_triggers.yml │ │ ├── functions_update_trigger.yml │ │ ├── models │ │ │ ├── create_namespace.yml │ │ │ ├── create_trigger.yml │ │ │ ├── namespace_info.yml │ │ │ ├── scheduled_details.yml │ │ │ ├── trigger_info.yml │ │ │ └── update_trigger.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── list_namespaces.yml │ │ │ ├── list_triggers.yml │ │ │ ├── namespace_bad_request.yml │ │ │ ├── namespace_created.yml │ │ │ ├── namespace_limit_reached.yml │ │ │ ├── namespace_not_allowed.yml │ │ │ ├── namespace_not_found.yml │ │ │ ├── trigger_bad_request.yml │ │ │ ├── trigger_limit_reached.yml │ │ │ ├── trigger_not_found.yml │ │ │ └── trigger_response.yml │ ├── gen-ai │ │ ├── definitions.yml │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── genai_attach_agent.yml │ │ │ │ ├── genai_attach_agent_function.yml │ │ │ │ ├── genai_attach_knowledge_base.yml │ │ │ │ ├── genai_attach_knowledge_bases.yml │ │ │ │ ├── genai_cancel_indexing_job.yml │ │ │ │ ├── genai_create_agent.yml │ │ │ │ ├── genai_create_agent_api_key.yml │ │ │ │ ├── genai_create_anthropic_api_key.yml │ │ │ │ ├── genai_create_data_source_file_upload_presigned_urls.yml │ │ │ │ ├── genai_create_evaluation_dataset.yml │ │ │ │ ├── genai_create_evaluation_dataset_file_upload_presigned_urls.yml │ │ │ │ ├── genai_create_evaluation_test_case.yml │ │ │ │ ├── genai_create_indexing_job.yml │ │ │ │ ├── genai_create_knowledge_base.yml │ │ │ │ ├── genai_create_knowledge_base_data_source.yml │ │ │ │ ├── genai_create_model_api_key.yml │ │ │ │ ├── genai_create_oauth2_dropbox_tokens.yml │ │ │ │ ├── genai_create_oauth2_google_tokens.yml │ │ │ │ ├── genai_create_openai_api_key.yml │ │ │ │ ├── genai_create_scheduled_indexing.yml │ │ │ │ ├── genai_create_workspace.yml │ │ │ │ ├── genai_delete_agent.yml │ │ │ │ ├── genai_delete_agent_api_key.yml │ │ │ │ ├── genai_delete_anthropic_api_key.yml │ │ │ │ ├── genai_delete_knowledge_base.yml │ │ │ │ ├── genai_delete_knowledge_base_data_source.yml │ │ │ │ ├── genai_delete_model_api_key.yml │ │ │ │ ├── genai_delete_openai_api_key.yml │ │ │ │ ├── genai_delete_scheduled_indexing.yml │ │ │ │ ├── genai_delete_workspace.yml │ │ │ │ ├── genai_detach_agent.yml │ │ │ │ ├── genai_detach_agent_function.yml │ │ │ │ ├── genai_detach_knowledge_base.yml │ │ │ │ ├── genai_get_agent.yml │ │ │ │ ├── genai_get_agent_children.yml │ │ │ │ ├── genai_get_agent_usage.yml │ │ │ │ ├── genai_get_anthropic_api_key.yml │ │ │ │ ├── genai_get_evaluation_run.yml │ │ │ │ ├── genai_get_evaluation_run_prompt_results.yml │ │ │ │ ├── genai_get_evaluation_run_results.yml │ │ │ │ ├── genai_get_evaluation_test_case.yml │ │ │ │ ├── genai_get_indexing_job.yml │ │ │ │ ├── genai_get_indexing_job_details_signed_url.yml │ │ │ │ ├── genai_get_knowledge_base.yml │ │ │ │ ├── genai_get_oauth2_url.yml │ │ │ │ ├── genai_get_openai_api_key.yml │ │ │ │ ├── genai_get_scheduled_indexing.yml │ │ │ │ ├── genai_get_workspace.yml │ │ │ │ ├── genai_list_agent_api_keys.yml │ │ │ │ ├── genai_list_agent_versions.yml │ │ │ │ ├── genai_list_agents.yml │ │ │ │ ├── genai_list_agents_by_anthropic_key.yml │ │ │ │ ├── genai_list_agents_by_openai_key.yml │ │ │ │ ├── genai_list_agents_by_workspace.yml │ │ │ │ ├── genai_list_anthropic_api_keys.yml │ │ │ │ ├── genai_list_datacenter_regions.yml │ │ │ │ ├── genai_list_evaluation_metrics.yml │ │ │ │ ├── genai_list_evaluation_runs_by_test_case.yml │ │ │ │ ├── genai_list_evaluation_test_cases.yml │ │ │ │ ├── genai_list_evaluation_test_cases_by_workspace.yml │ │ │ │ ├── genai_list_indexing_job_data_sources.yml │ │ │ │ ├── genai_list_indexing_jobs.yml │ │ │ │ ├── genai_list_indexing_jobs_by_knowledge_base.yml │ │ │ │ ├── genai_list_knowledge_base_data_sources.yml │ │ │ │ ├── genai_list_knowledge_bases.yml │ │ │ │ ├── genai_list_model_api_keys.yml │ │ │ │ ├── genai_list_models.yml │ │ │ │ ├── genai_list_openai_api_keys.yml │ │ │ │ ├── genai_list_workspaces.yml │ │ │ │ ├── genai_move_agents_to_workspace.yml │ │ │ │ ├── genai_regenerate_agent_api_key.yml │ │ │ │ ├── genai_regenerate_model_api_key.yml │ │ │ │ ├── genai_rollback_to_agent_version.yml │ │ │ │ ├── genai_run_evaluation_test_case.yml │ │ │ │ ├── genai_update_agent.yml │ │ │ │ ├── genai_update_agent_api_key.yml │ │ │ │ ├── genai_update_agent_deployment_visibility.yml │ │ │ │ ├── genai_update_agent_function.yml │ │ │ │ ├── genai_update_agents_workspace.yml │ │ │ │ ├── genai_update_anthropic_api_key.yml │ │ │ │ ├── genai_update_attached_agent.yml │ │ │ │ ├── genai_update_evaluation_test_case.yml │ │ │ │ ├── genai_update_knowledge_base.yml │ │ │ │ ├── genai_update_model_api_key.yml │ │ │ │ ├── genai_update_openai_api_key.yml │ │ │ │ └── genai_update_workspace.yml │ │ ├── genai_attach_agent.yml │ │ ├── genai_attach_agent_function.yml │ │ ├── genai_attach_knowledge_base.yml │ │ ├── genai_attach_knowledge_bases.yml │ │ ├── genai_cancel_indexing_job.yml │ │ ├── genai_create_agent.yml │ │ ├── genai_create_agent_api_key.yml │ │ ├── genai_create_anthropic_api_key.yml │ │ ├── genai_create_data_source_file_upload_presigned_urls.yml │ │ ├── genai_create_evaluation_dataset.yml │ │ ├── genai_create_evaluation_dataset_file_upload_presigned_urls.yml │ │ ├── genai_create_evaluation_test_case.yml │ │ ├── genai_create_indexing_job.yml │ │ ├── genai_create_knowledge_base.yml │ │ ├── genai_create_knowledge_base_data_source.yml │ │ ├── genai_create_model_api_key.yml │ │ ├── genai_create_oauth2_dropbox_tokens.yml │ │ ├── genai_create_openai_api_key.yml │ │ ├── genai_create_scheduled_indexing.yml │ │ ├── genai_create_workspace.yml │ │ ├── genai_delete_agent.yml │ │ ├── genai_delete_agent_api_key.yml │ │ ├── genai_delete_anthropic_api_key.yml │ │ ├── genai_delete_knowledge_base.yml │ │ ├── genai_delete_knowledge_base_data_source.yml │ │ ├── genai_delete_model_api_key.yml │ │ ├── genai_delete_openai_api_key.yml │ │ ├── genai_delete_scheduled_indexing.yml │ │ ├── genai_delete_workspace.yml │ │ ├── genai_detach_agent.yml │ │ ├── genai_detach_agent_function.yml │ │ ├── genai_detach_knowledge_base.yml │ │ ├── genai_get_agent.yml │ │ ├── genai_get_agent_children.yml │ │ ├── genai_get_agent_usage.yml │ │ ├── genai_get_anthropic_api_key.yml │ │ ├── genai_get_evaluation_run.yml │ │ ├── genai_get_evaluation_run_prompt_results.yml │ │ ├── genai_get_evaluation_run_results.yml │ │ ├── genai_get_evaluation_test_case.yml │ │ ├── genai_get_indexing_job.yml │ │ ├── genai_get_indexing_job_details_signed_url.yml │ │ ├── genai_get_knowledge_base.yml │ │ ├── genai_get_oauth2_dropbox_tokens.yml │ │ ├── genai_get_oauth2_google_tokens.yml │ │ ├── genai_get_oauth2_url.yml │ │ ├── genai_get_openai_api_key.yml │ │ ├── genai_get_scheduled_indexing.yml │ │ ├── genai_get_workspace.yml │ │ ├── genai_list_agent_api_keys.yml │ │ ├── genai_list_agent_versions.yml │ │ ├── genai_list_agents.yml │ │ ├── genai_list_agents_by_anthropic_key.yml │ │ ├── genai_list_agents_by_openai_key.yml │ │ ├── genai_list_agents_by_workspace.yml │ │ ├── genai_list_anthropic_api_keys.yml │ │ ├── genai_list_datacenter_regions.yml │ │ ├── genai_list_evaluation_metrics.yml │ │ ├── genai_list_evaluation_runs_by_test_case.yml │ │ ├── genai_list_evaluation_test_cases.yml │ │ ├── genai_list_evaluation_test_cases_by_workspace.yml │ │ ├── genai_list_indexing_job_data_sources.yml │ │ ├── genai_list_indexing_jobs.yml │ │ ├── genai_list_indexing_jobs_by_knowledge_base.yml │ │ ├── genai_list_knowledge_base_data_sources.yml │ │ ├── genai_list_knowledge_bases.yml │ │ ├── genai_list_model_api_keys.yml │ │ ├── genai_list_models.yml │ │ ├── genai_list_openai_api_keys.yml │ │ ├── genai_list_workspaces.yml │ │ ├── genai_move_agents_to_workspace.yml │ │ ├── genai_regenerate_agent_api_key.yml │ │ ├── genai_regenerate_model_api_key.yml │ │ ├── genai_rollback_to_agent_version.yml │ │ ├── genai_run_evaluation_test_case.yml │ │ ├── genai_update_agent.yml │ │ ├── genai_update_agent_api_key.yml │ │ ├── genai_update_agent_deployment_visibility.yml │ │ ├── genai_update_agent_function.yml │ │ ├── genai_update_agents_workspace.yml │ │ ├── genai_update_anthropic_api_key.yml │ │ ├── genai_update_attached_agent.yml │ │ ├── genai_update_evaluation_test_case.yml │ │ ├── genai_update_knowledge_base.yml │ │ ├── genai_update_model_api_key.yml │ │ ├── genai_update_openai_api_key.yml │ │ ├── genai_update_scheduled_indexing.yml │ │ └── genai_update_workspace.yml │ ├── images │ │ ├── attributes.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── imageActions_get.yml │ │ │ │ ├── imageActions_list.yml │ │ │ │ ├── imageActions_post.yml │ │ │ │ ├── images_create_custom.yml │ │ │ │ ├── images_delete.yml │ │ │ │ ├── images_get.yml │ │ │ │ ├── images_list.yml │ │ │ │ └── images_update.yml │ │ │ ├── go │ │ │ │ ├── imageActions_get.yml │ │ │ │ ├── imageActions_list.yml │ │ │ │ ├── imageActions_post.yml │ │ │ │ ├── images_delete.yml │ │ │ │ ├── images_get.yml │ │ │ │ ├── images_list.yml │ │ │ │ └── images_update.yml │ │ │ ├── python │ │ │ │ ├── imageActions_get.yml │ │ │ │ ├── imageActions_list.yml │ │ │ │ ├── imageActions_post.yml │ │ │ │ ├── images_create_custom.yml │ │ │ │ ├── images_delete.yml │ │ │ │ ├── images_get.yml │ │ │ │ ├── images_list.yml │ │ │ │ └── images_update.yml │ │ │ └── ruby │ │ │ │ ├── imageActions_get.yml │ │ │ │ ├── imageActions_post.yml │ │ │ │ ├── images_delete.yml │ │ │ │ ├── images_get.yml │ │ │ │ ├── images_list.yml │ │ │ │ └── images_update.yml │ │ ├── imageActions_get.yml │ │ ├── imageActions_list.yml │ │ ├── imageActions_post.yml │ │ ├── images_create_custom.yml │ │ ├── images_delete.yml │ │ ├── images_get.yml │ │ ├── images_list.yml │ │ ├── images_update.yml │ │ ├── models │ │ │ ├── image.yml │ │ │ ├── image_action.yml │ │ │ ├── image_new_custom.yml │ │ │ └── image_update.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_images.yml │ │ │ ├── examples.yml │ │ │ ├── existing_image.yml │ │ │ ├── get_image_action_response.yml │ │ │ ├── get_image_actions_response.yml │ │ │ ├── new_custom_image.yml │ │ │ ├── post_image_action_response.yml │ │ │ └── updated_image.yml │ ├── kubernetes │ │ ├── examples.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── kubernetes_add_nodePool.yml │ │ │ │ ├── kubernetes_add_registries.yml │ │ │ │ ├── kubernetes_add_registry.yml │ │ │ │ ├── kubernetes_create_cluster.yml │ │ │ │ ├── kubernetes_delete_cluster.yml │ │ │ │ ├── kubernetes_delete_node.yml │ │ │ │ ├── kubernetes_delete_nodePool.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesDangerous.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesSelective.yml │ │ │ │ ├── kubernetes_get_availableUpgrades.yml │ │ │ │ ├── kubernetes_get_cluster.yml │ │ │ │ ├── kubernetes_get_clusterLintResults.yml │ │ │ │ ├── kubernetes_get_clusterUser.yml │ │ │ │ ├── kubernetes_get_credentials.yml │ │ │ │ ├── kubernetes_get_kubeconfig.yml │ │ │ │ ├── kubernetes_get_nodePool.yml │ │ │ │ ├── kubernetes_get_status_messages.yml │ │ │ │ ├── kubernetes_list_associatedResources.yml │ │ │ │ ├── kubernetes_list_clusters.yml │ │ │ │ ├── kubernetes_list_nodePools.yml │ │ │ │ ├── kubernetes_list_options.yml │ │ │ │ ├── kubernetes_remove_registries.yml │ │ │ │ ├── kubernetes_remove_registry.yml │ │ │ │ ├── kubernetes_run_clusterLint.yml │ │ │ │ ├── kubernetes_update_cluster.yml │ │ │ │ ├── kubernetes_update_nodePool.yml │ │ │ │ └── kubernetes_upgrade_cluster.yml │ │ │ ├── go │ │ │ │ ├── kubernetes_add_nodePool.yml │ │ │ │ ├── kubernetes_add_registry.yml │ │ │ │ ├── kubernetes_create_cluster.yml │ │ │ │ ├── kubernetes_delete_cluster.yml │ │ │ │ ├── kubernetes_delete_node.yml │ │ │ │ ├── kubernetes_delete_nodePool.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesDangerous.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesSelective.yml │ │ │ │ ├── kubernetes_get_availableUpgrades.yml │ │ │ │ ├── kubernetes_get_cluster.yml │ │ │ │ ├── kubernetes_get_credentials.yml │ │ │ │ ├── kubernetes_get_kubeconfig.yml │ │ │ │ ├── kubernetes_get_nodePool.yml │ │ │ │ ├── kubernetes_get_status_messages.yml │ │ │ │ ├── kubernetes_list_associatedResources.yml │ │ │ │ ├── kubernetes_list_clusters.yml │ │ │ │ ├── kubernetes_list_nodePools.yml │ │ │ │ ├── kubernetes_list_options.yml │ │ │ │ ├── kubernetes_remove_registry.yml │ │ │ │ ├── kubernetes_update_cluster.yml │ │ │ │ ├── kubernetes_update_nodePool.yml │ │ │ │ └── kubernetes_upgrade_cluster.yml │ │ │ ├── python │ │ │ │ ├── kubernetes_add_nodePool.yml │ │ │ │ ├── kubernetes_add_registry.yml │ │ │ │ ├── kubernetes_create_cluster.yml │ │ │ │ ├── kubernetes_delete_cluster.yml │ │ │ │ ├── kubernetes_delete_node.yml │ │ │ │ ├── kubernetes_delete_nodePool.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesDangerous.yml │ │ │ │ ├── kubernetes_destroy_associatedResourcesSelective.yml │ │ │ │ ├── kubernetes_get_availableUpgrades.yml │ │ │ │ ├── kubernetes_get_cluster.yml │ │ │ │ ├── kubernetes_get_clusterLintResults.yml │ │ │ │ ├── kubernetes_get_clusterUser.yml │ │ │ │ ├── kubernetes_get_credentials.yml │ │ │ │ ├── kubernetes_get_kubeconfig.yml │ │ │ │ ├── kubernetes_get_nodePool.yml │ │ │ │ ├── kubernetes_list_associatedResources.yml │ │ │ │ ├── kubernetes_list_clusters.yml │ │ │ │ ├── kubernetes_list_nodePools.yml │ │ │ │ ├── kubernetes_list_options.yml │ │ │ │ ├── kubernetes_remove_registry.yml │ │ │ │ ├── kubernetes_run_clusterLint.yml │ │ │ │ ├── kubernetes_update_cluster.yml │ │ │ │ ├── kubernetes_update_nodePool.yml │ │ │ │ └── kubernetes_upgrade_cluster.yml │ │ │ └── ruby │ │ │ │ ├── kubernetes_add_nodePool.yml │ │ │ │ ├── kubernetes_create_cluster.yml │ │ │ │ ├── kubernetes_delete_cluster.yml │ │ │ │ ├── kubernetes_delete_nodePool.yml │ │ │ │ ├── kubernetes_get_cluster.yml │ │ │ │ ├── kubernetes_get_credentials.yml │ │ │ │ ├── kubernetes_get_kubeconfig.yml │ │ │ │ ├── kubernetes_get_nodePool.yml │ │ │ │ ├── kubernetes_list_clusters.yml │ │ │ │ ├── kubernetes_list_nodePools.yml │ │ │ │ ├── kubernetes_list_options.yml │ │ │ │ ├── kubernetes_update_cluster.yml │ │ │ │ └── kubernetes_update_nodePool.yml │ │ ├── kubernetes_add_nodePool.yml │ │ ├── kubernetes_add_registries.yml │ │ ├── kubernetes_add_registry.yml │ │ ├── kubernetes_create_cluster.yml │ │ ├── kubernetes_delete_cluster.yml │ │ ├── kubernetes_delete_node.yml │ │ ├── kubernetes_delete_nodePool.yml │ │ ├── kubernetes_destroy_associatedResourcesDangerous.yml │ │ ├── kubernetes_destroy_associatedResourcesSelective.yml │ │ ├── kubernetes_get_availableUpgrades.yml │ │ ├── kubernetes_get_cluster.yml │ │ ├── kubernetes_get_clusterLintResults.yml │ │ ├── kubernetes_get_clusterUser.yml │ │ ├── kubernetes_get_credentials.yml │ │ ├── kubernetes_get_kubeconfig.yml │ │ ├── kubernetes_get_nodePool.yml │ │ ├── kubernetes_get_status_messages.yml │ │ ├── kubernetes_list_associatedResources.yml │ │ ├── kubernetes_list_clusters.yml │ │ ├── kubernetes_list_nodePools.yml │ │ ├── kubernetes_list_options.yml │ │ ├── kubernetes_recycle_nodePool.yml │ │ ├── kubernetes_remove_registries.yml │ │ ├── kubernetes_remove_registry.yml │ │ ├── kubernetes_run_clusterLint.yml │ │ ├── kubernetes_update_cluster.yml │ │ ├── kubernetes_update_nodePool.yml │ │ ├── kubernetes_upgrade_cluster.yml │ │ ├── models │ │ │ ├── amd_gpu_device_metrics_exporter_plugin.yml │ │ │ ├── amd_gpu_device_plugin.yml │ │ │ ├── associated_kubernetes_resources.yml │ │ │ ├── cluster.yml │ │ │ ├── cluster_autoscaler_configuration.yml │ │ │ ├── cluster_read.yml │ │ │ ├── cluster_registries.yml │ │ │ ├── cluster_registry.yml │ │ │ ├── cluster_update.yml │ │ │ ├── clusterlint_request.yml │ │ │ ├── clusterlint_results.yml │ │ │ ├── control_plane_firewall.yml │ │ │ ├── credentials.yml │ │ │ ├── maintenance_policy.yml │ │ │ ├── node.yml │ │ │ ├── node_pool.yml │ │ │ ├── nvidia_gpu_device_plugin.yml │ │ │ ├── options.yml │ │ │ ├── rdma_shared_dev_plugin.yml │ │ │ ├── routing_agent.yml │ │ │ ├── status_messages.yml │ │ │ └── user.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_clusters.yml │ │ │ ├── all_node_pools.yml │ │ │ ├── all_options.yml │ │ │ ├── associated_kubernetes_resources_list.yml │ │ │ ├── available_upgrades.yml │ │ │ ├── cluster_create.yml │ │ │ ├── cluster_user.yml │ │ │ ├── clusterlint_results.yml │ │ │ ├── clusterlint_run.yml │ │ │ ├── credentials.yml │ │ │ ├── examples.yml │ │ │ ├── existing_cluster.yml │ │ │ ├── existing_node_pool.yml │ │ │ ├── kubeconfig.yml │ │ │ ├── node_pool_create.yml │ │ │ ├── node_pool_update.yml │ │ │ ├── status_messages.yml │ │ │ └── updated_cluster.yml │ ├── load_balancers │ │ ├── examples.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── loadBalancers_add_droplets.yml │ │ │ │ ├── loadBalancers_add_forwardingRules.yml │ │ │ │ ├── loadBalancers_create.yml │ │ │ │ ├── loadBalancers_delete.yml │ │ │ │ ├── loadBalancers_delete_cache.yml │ │ │ │ ├── loadBalancers_get.yml │ │ │ │ ├── loadBalancers_list.yml │ │ │ │ ├── loadBalancers_remove_droplets.yml │ │ │ │ ├── loadBalancers_remove_forwardingRules.yml │ │ │ │ └── loadBalancers_update.yml │ │ │ ├── go │ │ │ │ ├── loadBalancers_add_droplets.yml │ │ │ │ ├── loadBalancers_add_forwardingRules.yml │ │ │ │ ├── loadBalancers_create.yml │ │ │ │ ├── loadBalancers_delete.yml │ │ │ │ ├── loadBalancers_delete_cache.yml │ │ │ │ ├── loadBalancers_get.yml │ │ │ │ ├── loadBalancers_list.yml │ │ │ │ ├── loadBalancers_remove_droplets.yml │ │ │ │ ├── loadBalancers_remove_forwardingRules.yml │ │ │ │ └── loadBalancers_update.yml │ │ │ ├── python │ │ │ │ ├── loadBalancers_add_droplets.yml │ │ │ │ ├── loadBalancers_add_forwardingRules.yml │ │ │ │ ├── loadBalancers_create.yml │ │ │ │ ├── loadBalancers_delete.yml │ │ │ │ ├── loadBalancers_get.yml │ │ │ │ ├── loadBalancers_list.yml │ │ │ │ ├── loadBalancers_remove_droplets.yml │ │ │ │ ├── loadBalancers_remove_forwardingRules.yml │ │ │ │ └── loadBalancers_update.yml │ │ │ └── ruby │ │ │ │ ├── loadBalancers_add_droplets.yml │ │ │ │ ├── loadBalancers_add_forwardingRules.yml │ │ │ │ ├── loadBalancers_create.yml │ │ │ │ ├── loadBalancers_delete.yml │ │ │ │ ├── loadBalancers_get.yml │ │ │ │ ├── loadBalancers_list.yml │ │ │ │ ├── loadBalancers_remove_droplets.yml │ │ │ │ ├── loadBalancers_remove_forwardingRules.yml │ │ │ │ └── loadBalancers_update.yml │ │ ├── loadBalancers_add_droplets.yml │ │ ├── loadBalancers_add_forwardingRules.yml │ │ ├── loadBalancers_create.yml │ │ ├── loadBalancers_delete.yml │ │ ├── loadBalancers_delete_cache.yml │ │ ├── loadBalancers_get.yml │ │ ├── loadBalancers_list.yml │ │ ├── loadBalancers_remove_droplets.yml │ │ ├── loadBalancers_remove_forwardingRules.yml │ │ ├── loadBalancers_update.yml │ │ ├── models │ │ │ ├── attributes.yml │ │ │ ├── domains.yml │ │ │ ├── forwarding_rule.yml │ │ │ ├── glb_settings.yml │ │ │ ├── health_check.yml │ │ │ ├── lb_firewall.yml │ │ │ ├── load_balancer.yml │ │ │ ├── load_balancer_base.yml │ │ │ ├── load_balancer_create.yml │ │ │ └── sticky_sessions.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── all_load_balancers.yml │ │ │ ├── examples.yml │ │ │ ├── existing_load_balancer.yml │ │ │ ├── load_balancer_create.yml │ │ │ └── updated_load_balancer.yml │ ├── monitoring │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── monitoring_create_alertPolicy.yml │ │ │ │ ├── monitoring_create_destination.yml │ │ │ │ ├── monitoring_create_sink.yml │ │ │ │ ├── monitoring_delete_alertPolicy.yml │ │ │ │ ├── monitoring_delete_destination.yml │ │ │ │ ├── monitoring_delete_sink.yml │ │ │ │ ├── monitoring_get_DropletCpuMetrics.yml │ │ │ │ ├── monitoring_get_alertPolicy.yml │ │ │ │ ├── monitoring_get_appCPUPercentageMetrics.yml │ │ │ │ ├── monitoring_get_appMemoryPercentageMetrics.yml │ │ │ │ ├── monitoring_get_appRestartCountMetrics.yml │ │ │ │ ├── monitoring_get_destination.yml │ │ │ │ ├── monitoring_get_dropletBandwidthMetrics.yml │ │ │ │ ├── monitoring_get_dropletFilesystemFreeMetrics.yml │ │ │ │ ├── monitoring_get_dropletFilesystemSizeMetrics.yml │ │ │ │ ├── monitoring_get_dropletLoad15Metrics.yml │ │ │ │ ├── monitoring_get_dropletLoad1Metrics.yml │ │ │ │ ├── monitoring_get_dropletLoad5Metrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryAvailableMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryCachedMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryFreeMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryTotalMetrics.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_current_cpu_utilization.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_current_instances.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_current_memory_utilization.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_target_cpu_utilization.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_target_instances.yml │ │ │ │ ├── monitoring_get_droplet_autoscale_target_memory_utilization.yml │ │ │ │ ├── monitoring_get_lb_droplets_connections.yml │ │ │ │ ├── monitoring_get_lb_droplets_downtime.yml │ │ │ │ ├── monitoring_get_lb_droplets_health_checks.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_response_time_50p.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_response_time_95p.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_response_time_99p.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_response_time_avg.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_responses.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_session_duration_50p.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_session_duration_95p.yml │ │ │ │ ├── monitoring_get_lb_droplets_http_session_duration_avg.yml │ │ │ │ ├── monitoring_get_lb_droplets_queue_size.yml │ │ │ │ ├── monitoring_get_lb_frontend_connections_current.yml │ │ │ │ ├── monitoring_get_lb_frontend_connections_limit.yml │ │ │ │ ├── monitoring_get_lb_frontend_cpu_utilization.yml │ │ │ │ ├── monitoring_get_lb_frontend_firewall_dropped_bytes.yml │ │ │ │ ├── monitoring_get_lb_frontend_firewall_dropped_packets.yml │ │ │ │ ├── monitoring_get_lb_frontend_http_requests_per_second.yml │ │ │ │ ├── monitoring_get_lb_frontend_http_responses.yml │ │ │ │ ├── monitoring_get_lb_frontend_network_throughput_http.yml │ │ │ │ ├── monitoring_get_lb_frontend_network_throughput_tcp.yml │ │ │ │ ├── monitoring_get_lb_frontend_network_throughput_udp.yml │ │ │ │ ├── monitoring_get_lb_frontend_nlb_tcp_network_throughput.yml │ │ │ │ ├── monitoring_get_lb_frontend_nlb_udp_network_throughput.yml │ │ │ │ ├── monitoring_get_lb_frontend_tls_connections_current.yml │ │ │ │ ├── monitoring_get_lb_frontend_tls_connections_exceeding_rate_limit.yml │ │ │ │ ├── monitoring_get_lb_frontend_tls_connections_limit.yml │ │ │ │ ├── monitoring_get_sink.yml │ │ │ │ ├── monitoring_list_alertPolicy.yml │ │ │ │ ├── monitoring_list_destinations.yml │ │ │ │ ├── monitoring_list_sinks.yml │ │ │ │ ├── monitoring_update_alertPolicy.yml │ │ │ │ └── monitoring_update_destination.yml │ │ │ └── python │ │ │ │ ├── monitoring_create_alertPolicy.yml │ │ │ │ ├── monitoring_delete_alertPolicy.yml │ │ │ │ ├── monitoring_get_DropletCpuMetrics.yml │ │ │ │ ├── monitoring_get_alertPolicy.yml │ │ │ │ ├── monitoring_get_dropletBandwidthMetrics.yml │ │ │ │ ├── monitoring_get_dropletFilesystemFreeMetrics.yml │ │ │ │ ├── monitoring_get_dropletFilesystemSizeMetrics.yml │ │ │ │ ├── monitoring_get_dropletLoad15Metrics.yml │ │ │ │ ├── monitoring_get_dropletLoad1Metrics.yml │ │ │ │ ├── monitoring_get_dropletLoad5Metrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryAvailableMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryCachedMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryFreeMetrics.yml │ │ │ │ ├── monitoring_get_dropletMemoryTotalMetrics.yml │ │ │ │ ├── monitoring_list_alertPolicy.yml │ │ │ │ └── monitoring_update_alertPolicy.yml │ │ ├── models │ │ │ ├── alert_policy.yml │ │ │ ├── alert_policy_request.yml │ │ │ ├── alerts.yml │ │ │ ├── destination.yml │ │ │ ├── destination_omit_credentials.yml │ │ │ ├── destination_request.yml │ │ │ ├── list_alert_policy.yml │ │ │ ├── metrics.yml │ │ │ ├── metrics_data.yml │ │ │ ├── metrics_result.yml │ │ │ ├── opensearch_config.yml │ │ │ ├── opensearch_config_omit_credentials.yml │ │ │ ├── opensearch_config_request.yml │ │ │ ├── sink_resource.yml │ │ │ ├── sinks_response.yml │ │ │ └── slack_details.yml │ │ ├── monitoring_create_alertPolicy.yml │ │ ├── monitoring_create_destination.yml │ │ ├── monitoring_create_sink.yml │ │ ├── monitoring_delete_alertPolicy.yml │ │ ├── monitoring_delete_destination.yml │ │ ├── monitoring_delete_sink.yml │ │ ├── monitoring_get_DropletCpuMetrics.yml │ │ ├── monitoring_get_alertPolicy.yml │ │ ├── monitoring_get_appCPUPercentageMetrics.yml │ │ ├── monitoring_get_appMemoryPercentageMetrics.yml │ │ ├── monitoring_get_appRestartCountMetrics.yml │ │ ├── monitoring_get_destination.yml │ │ ├── monitoring_get_dropletBandwidthMetrics.yml │ │ ├── monitoring_get_dropletFilesystemFreeMetrics.yml │ │ ├── monitoring_get_dropletFilesystemSizeMetrics.yml │ │ ├── monitoring_get_dropletLoad15Metrics.yml │ │ ├── monitoring_get_dropletLoad1Metrics.yml │ │ ├── monitoring_get_dropletLoad5Metrics.yml │ │ ├── monitoring_get_dropletMemoryAvailableMetrics.yml │ │ ├── monitoring_get_dropletMemoryCachedMetrics.yml │ │ ├── monitoring_get_dropletMemoryFreeMetrics.yml │ │ ├── monitoring_get_dropletMemoryTotalMetrics.yml │ │ ├── monitoring_get_droplet_autoscale_current_cpu_utilization.yml │ │ ├── monitoring_get_droplet_autoscale_current_instances.yml │ │ ├── monitoring_get_droplet_autoscale_current_memory_utilization.yml │ │ ├── monitoring_get_droplet_autoscale_target_cpu_utilization.yml │ │ ├── monitoring_get_droplet_autoscale_target_instances.yml │ │ ├── monitoring_get_droplet_autoscale_target_memory_utilization.yml │ │ ├── monitoring_get_lb_droplets_connections.yml │ │ ├── monitoring_get_lb_droplets_downtime.yml │ │ ├── monitoring_get_lb_droplets_health_checks.yml │ │ ├── monitoring_get_lb_droplets_http_response_time_50p.yml │ │ ├── monitoring_get_lb_droplets_http_response_time_95p.yml │ │ ├── monitoring_get_lb_droplets_http_response_time_99p.yml │ │ ├── monitoring_get_lb_droplets_http_response_time_avg.yml │ │ ├── monitoring_get_lb_droplets_http_responses.yml │ │ ├── monitoring_get_lb_droplets_http_session_duration_50p.yml │ │ ├── monitoring_get_lb_droplets_http_session_duration_95p.yml │ │ ├── monitoring_get_lb_droplets_http_session_duration_avg.yml │ │ ├── monitoring_get_lb_droplets_queue_size.yml │ │ ├── monitoring_get_lb_frontend_connections_current.yml │ │ ├── monitoring_get_lb_frontend_connections_limit.yml │ │ ├── monitoring_get_lb_frontend_cpu_utilization.yml │ │ ├── monitoring_get_lb_frontend_firewall_dropped_bytes.yml │ │ ├── monitoring_get_lb_frontend_firewall_dropped_packets.yml │ │ ├── monitoring_get_lb_frontend_http_requests_per_second.yml │ │ ├── monitoring_get_lb_frontend_http_responses.yml │ │ ├── monitoring_get_lb_frontend_network_throughput_http.yml │ │ ├── monitoring_get_lb_frontend_network_throughput_tcp.yml │ │ ├── monitoring_get_lb_frontend_network_throughput_udp.yml │ │ ├── monitoring_get_lb_frontend_nlb_tcp_network_throughput.yml │ │ ├── monitoring_get_lb_frontend_nlb_udp_network_throughput.yml │ │ ├── monitoring_get_lb_frontend_tls_connections_current.yml │ │ ├── monitoring_get_lb_frontend_tls_connections_exceeding_rate_limit.yml │ │ ├── monitoring_get_lb_frontend_tls_connections_limit.yml │ │ ├── monitoring_get_sink.yml │ │ ├── monitoring_list_alertPolicy.yml │ │ ├── monitoring_list_destinations.yml │ │ ├── monitoring_list_sinks.yml │ │ ├── monitoring_update_alertPolicy.yml │ │ ├── monitoring_update_destination.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── alert_policy_response.yml │ │ │ ├── app_metric_response.yml │ │ │ ├── destination.yml │ │ │ ├── droplet_bandwidth_metric_response.yml │ │ │ ├── droplet_cpu_metric_response.yml │ │ │ ├── droplet_filesystem_metric_response.yml │ │ │ ├── examples.yml │ │ │ ├── list_alert_policy_response.yml │ │ │ ├── list_sinks.yml │ │ │ ├── metric_response.yml │ │ │ ├── monitoring_list_destinations.yml │ │ │ └── sinks.yml │ ├── nfs │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── nfs_actions_create.yml │ │ │ │ ├── nfs_create.yml │ │ │ │ ├── nfs_delete.yml │ │ │ │ ├── nfs_get.yml │ │ │ │ ├── nfs_list.yml │ │ │ │ ├── nfs_snapshot_delete.yml │ │ │ │ ├── nfs_snapshot_get.yml │ │ │ │ └── nfs_snapshot_list.yml │ │ ├── models │ │ │ ├── nfs_actions.yml │ │ │ ├── nfs_actions_response.yml │ │ │ ├── nfs_create_response.yml │ │ │ ├── nfs_get_response.yml │ │ │ ├── nfs_list_response.yml │ │ │ ├── nfs_request.yml │ │ │ ├── nfs_response.yml │ │ │ ├── nfs_snapshot_get_response.yml │ │ │ ├── nfs_snapshot_list_response.yml │ │ │ └── nfs_snapshot_response.yml │ │ ├── nfs_actions_create.yml │ │ ├── nfs_create.yml │ │ ├── nfs_delete.yml │ │ ├── nfs_get.yml │ │ ├── nfs_list.yml │ │ ├── nfs_snapshot_delete.yml │ │ ├── nfs_snapshot_get.yml │ │ ├── nfs_snapshot_list.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── bad_request.yml │ │ │ ├── nfs_actions.yml │ │ │ ├── nfs_create.yml │ │ │ ├── nfs_get.yml │ │ │ ├── nfs_list.yml │ │ │ ├── nfs_snapshot_get.yml │ │ │ └── nfs_snapshot_list.yml │ ├── partner_network_connect │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── partner_attachment_bgp_auth_key_get.yml │ │ │ │ ├── partner_attachment_create.yml │ │ │ │ ├── partner_attachment_delete.yml │ │ │ │ ├── partner_attachment_get.yml │ │ │ │ ├── partner_attachment_list.yml │ │ │ │ ├── partner_attachment_service_key_create.yml │ │ │ │ ├── partner_attachment_service_key_get.yml │ │ │ │ └── partner_attachment_update.yml │ │ │ ├── go │ │ │ │ ├── partner_attachment_bgp_auth_key_get.yml │ │ │ │ ├── partner_attachment_create.yml │ │ │ │ ├── partner_attachment_delete.yml │ │ │ │ ├── partner_attachment_get.yml │ │ │ │ ├── partner_attachment_list.yml │ │ │ │ ├── partner_attachment_service_key_create.yml │ │ │ │ ├── partner_attachment_service_key_get.yml │ │ │ │ └── partner_attachment_update.yml │ │ │ └── python │ │ │ │ ├── partner_attachment_bgp_auth_key_get.yml │ │ │ │ ├── partner_attachment_create.yml │ │ │ │ ├── partner_attachment_delete.yml │ │ │ │ ├── partner_attachment_get.yml │ │ │ │ ├── partner_attachment_list.yml │ │ │ │ ├── partner_attachment_service_key_create.yml │ │ │ │ ├── partner_attachment_service_key_get.yml │ │ │ │ └── partner_attachment_update.yml │ │ ├── models │ │ │ ├── bgp_auth_key.yml │ │ │ ├── partner_attachment.yml │ │ │ ├── remote_route.yml │ │ │ └── service_key.yml │ │ ├── parameters.yml │ │ ├── partner_attachment_bgp_auth_key_get.yml │ │ ├── partner_attachment_create.yml │ │ ├── partner_attachment_delete.yml │ │ ├── partner_attachment_get.yml │ │ ├── partner_attachment_list.yml │ │ ├── partner_attachment_remote_routes_list.yml │ │ ├── partner_attachment_service_key_create.yml │ │ ├── partner_attachment_service_key_get.yml │ │ ├── partner_attachment_update.yml │ │ └── responses │ │ │ ├── all_partner_attachment_remote_routes.yml │ │ │ ├── all_partner_attachments.yml │ │ │ ├── empty_json_object.yml │ │ │ ├── single_partner_attachment.yml │ │ │ ├── single_partner_attachment_bgp_auth_key.yml │ │ │ ├── single_partner_attachment_deleting.yml │ │ │ └── single_partner_attachment_service_key.yml │ ├── projects │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── projects_assign_resources.yml │ │ │ │ ├── projects_assign_resources_default.yml │ │ │ │ ├── projects_create.yml │ │ │ │ ├── projects_delete.yml │ │ │ │ ├── projects_get.yml │ │ │ │ ├── projects_get_default.yml │ │ │ │ ├── projects_list.yml │ │ │ │ ├── projects_list_resources.yml │ │ │ │ ├── projects_list_resources_default.yml │ │ │ │ ├── projects_patch.yml │ │ │ │ ├── projects_patch_default.yml │ │ │ │ ├── projects_update.yml │ │ │ │ └── projects_update_default.yml │ │ │ ├── go │ │ │ │ ├── projects_assign_resources.yml │ │ │ │ ├── projects_assign_resources_default.yml │ │ │ │ ├── projects_create.yml │ │ │ │ ├── projects_delete.yml │ │ │ │ ├── projects_get.yml │ │ │ │ ├── projects_get_default.yml │ │ │ │ ├── projects_list.yml │ │ │ │ ├── projects_list_resources.yml │ │ │ │ ├── projects_list_resources_default.yml │ │ │ │ ├── projects_patch.yml │ │ │ │ ├── projects_patch_default.yml │ │ │ │ ├── projects_update.yml │ │ │ │ └── projects_update_default.yml │ │ │ ├── python │ │ │ │ ├── projects_assign_resources.yml │ │ │ │ ├── projects_assign_resources_default.yml │ │ │ │ ├── projects_create.yml │ │ │ │ ├── projects_delete.yml │ │ │ │ ├── projects_get.yml │ │ │ │ ├── projects_get_default.yml │ │ │ │ ├── projects_list.yml │ │ │ │ ├── projects_list_resources.yml │ │ │ │ ├── projects_list_resources_default.yml │ │ │ │ ├── projects_patch.yml │ │ │ │ ├── projects_patch_default.yml │ │ │ │ ├── projects_update.yml │ │ │ │ └── projects_update_default.yml │ │ │ └── ruby │ │ │ │ ├── projects_assign_resources.yml │ │ │ │ ├── projects_assign_resources_default.yml │ │ │ │ ├── projects_create.yml │ │ │ │ ├── projects_delete.yml │ │ │ │ ├── projects_get.yml │ │ │ │ ├── projects_get_default.yml │ │ │ │ ├── projects_list.yml │ │ │ │ ├── projects_list_resources.yml │ │ │ │ ├── projects_list_resources_default.yml │ │ │ │ ├── projects_patch.yml │ │ │ │ ├── projects_patch_default.yml │ │ │ │ ├── projects_update.yml │ │ │ │ └── projects_update_default.yml │ │ ├── models │ │ │ ├── project.yml │ │ │ ├── project_assignment.yml │ │ │ └── resource.yml │ │ ├── parameters.yml │ │ ├── projects_assign_resources.yml │ │ ├── projects_assign_resources_default.yml │ │ ├── projects_create.yml │ │ ├── projects_delete.yml │ │ ├── projects_get.yml │ │ ├── projects_get_default.yml │ │ ├── projects_list.yml │ │ ├── projects_list_resources.yml │ │ ├── projects_list_resources_default.yml │ │ ├── projects_patch.yml │ │ ├── projects_patch_default.yml │ │ ├── projects_update.yml │ │ ├── projects_update_default.yml │ │ └── responses │ │ │ ├── assigned_resources_list.yml │ │ │ ├── default_project.yml │ │ │ ├── existing_project.yml │ │ │ ├── precondition_failed.yml │ │ │ ├── projects_list.yml │ │ │ └── resources_list.yml │ ├── regions │ │ ├── examples │ │ │ ├── curl │ │ │ │ └── regions_list.yml │ │ │ ├── go │ │ │ │ └── regions_list.yml │ │ │ ├── python │ │ │ │ └── regions_list.yml │ │ │ └── ruby │ │ │ │ └── regions_list.yml │ │ ├── models │ │ │ └── region.yml │ │ ├── regions_list.yml │ │ └── responses │ │ │ └── all_regions.yml │ ├── registry │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── all_registries_get.yml │ │ │ │ ├── registries_create.yml │ │ │ │ ├── registries_delete.yml │ │ │ │ ├── registries_delete_repository.yml │ │ │ │ ├── registries_delete_repositoryManifest.yml │ │ │ │ ├── registries_delete_repositoryTag.yml │ │ │ │ ├── registries_get.yml │ │ │ │ ├── registries_get_all.yml │ │ │ │ ├── registries_get_dockerCredentials.yml │ │ │ │ ├── registries_get_garbageCollection.yml │ │ │ │ ├── registries_get_options.yml │ │ │ │ ├── registries_get_subscription.yml │ │ │ │ ├── registries_list_garbageCollections.yml │ │ │ │ ├── registries_list_repositoriesV2.yml │ │ │ │ ├── registries_list_repositoriesV2_next_page.yml │ │ │ │ ├── registries_list_repositoryManifests.yml │ │ │ │ ├── registries_list_repositoryTags.yml │ │ │ │ ├── registries_run_garbageCollection.yml │ │ │ │ ├── registries_update_garbageCollection.yml │ │ │ │ ├── registries_update_subscription.yml │ │ │ │ ├── registries_validate_name.yml │ │ │ │ ├── registry_create.yml │ │ │ │ ├── registry_delete.yml │ │ │ │ ├── registry_delete_repositoryManifest.yml │ │ │ │ ├── registry_delete_repositoryTag.yml │ │ │ │ ├── registry_get.yml │ │ │ │ ├── registry_get_dockerCredentials.yml │ │ │ │ ├── registry_get_garbageCollection.yml │ │ │ │ ├── registry_get_options.yml │ │ │ │ ├── registry_get_subscription.yml │ │ │ │ ├── registry_list_garbageCollections.yml │ │ │ │ ├── registry_list_repositories.yml │ │ │ │ ├── registry_list_repositoriesV2.yml │ │ │ │ ├── registry_list_repositoriesV2_next_page.yml │ │ │ │ ├── registry_list_repositoryManifests.yml │ │ │ │ ├── registry_list_repositoryTags.yml │ │ │ │ ├── registry_run_garbageCollection.yml │ │ │ │ ├── registry_update_garbageCollection.yml │ │ │ │ ├── registry_update_subscription.yml │ │ │ │ └── registry_validate_name.yml │ │ │ └── python │ │ │ │ ├── registries_create.yml │ │ │ │ ├── registries_delete.yml │ │ │ │ ├── registries_delete_repository.yml │ │ │ │ ├── registries_delete_repositoryManifest.yml │ │ │ │ ├── registries_delete_repositoryTag.yml │ │ │ │ ├── registries_get.yml │ │ │ │ ├── registries_get_all.yml │ │ │ │ ├── registries_get_dockerCredentials.yml │ │ │ │ ├── registries_get_garbageCollection.yml │ │ │ │ ├── registries_get_options.yml │ │ │ │ ├── registries_get_subscription.yml │ │ │ │ ├── registries_list_garbageCollections.yml │ │ │ │ ├── registries_list_repositoriesV2.yml │ │ │ │ ├── registries_list_repositoryManifests.yml │ │ │ │ ├── registries_list_repositoryTags.yml │ │ │ │ ├── registries_run_garbageCollection.yml │ │ │ │ ├── registries_update_garbageCollection.yml │ │ │ │ ├── registries_update_subscription.yml │ │ │ │ ├── registries_validate_name.yml │ │ │ │ ├── registry_create.yml │ │ │ │ ├── registry_delete.yml │ │ │ │ ├── registry_delete_repositoryManifest.yml │ │ │ │ ├── registry_delete_repositoryTag.yml │ │ │ │ ├── registry_get.yml │ │ │ │ ├── registry_get_dockerCredentials.yml │ │ │ │ ├── registry_get_garbageCollection.yml │ │ │ │ ├── registry_get_options.yml │ │ │ │ ├── registry_get_subscription.yml │ │ │ │ ├── registry_list_garbageCollections.yml │ │ │ │ ├── registry_list_repositories.yml │ │ │ │ ├── registry_list_repositoriesV2.yml │ │ │ │ ├── registry_list_repositoryManifests.yml │ │ │ │ ├── registry_list_repositoryTags.yml │ │ │ │ ├── registry_run_garbageCollection.yml │ │ │ │ ├── registry_update_garbageCollection.yml │ │ │ │ ├── registry_update_subscription.yml │ │ │ │ └── registry_validate_name.yml │ │ ├── models │ │ │ ├── docker_credentials.yml │ │ │ ├── garbage_collection.yml │ │ │ ├── multiregistry.yml │ │ │ ├── multiregistry_create.yml │ │ │ ├── registry.yml │ │ │ ├── registry_base.yml │ │ │ ├── registry_create.yml │ │ │ ├── registry_run_gc.yml │ │ │ ├── repository.yml │ │ │ ├── repository_blob.yml │ │ │ ├── repository_manifest.yml │ │ │ ├── repository_tag.yml │ │ │ ├── repository_v2.yml │ │ │ ├── subscription.yml │ │ │ ├── subscription_tier.yml │ │ │ ├── update_registry.yml │ │ │ └── validate_registry.yml │ │ ├── parameters.yml │ │ ├── registries_create.yml │ │ ├── registries_delete.yml │ │ ├── registries_delete_repository.yml │ │ ├── registries_delete_repositoryManifest.yml │ │ ├── registries_delete_repositoryTag.yml │ │ ├── registries_get.yml │ │ ├── registries_get_all.yml │ │ ├── registries_get_dockerCredentials.yml │ │ ├── registries_get_garbageCollection.yml │ │ ├── registries_get_options.yml │ │ ├── registries_get_subscription.yml │ │ ├── registries_list_garbageCollections.yml │ │ ├── registries_list_repositoriesV2.yml │ │ ├── registries_list_repositoryManifests.yml │ │ ├── registries_list_repositoryTags.yml │ │ ├── registries_run_garbageCollection.yml │ │ ├── registries_update_garbageCollection.yml │ │ ├── registries_update_subscription.yml │ │ ├── registries_validate_name.yml │ │ ├── registry_create.yml │ │ ├── registry_delete.yml │ │ ├── registry_delete_repositoryManifest.yml │ │ ├── registry_delete_repositoryTag.yml │ │ ├── registry_get.yml │ │ ├── registry_get_dockerCredentials.yml │ │ ├── registry_get_garbageCollection.yml │ │ ├── registry_get_options.yml │ │ ├── registry_get_subscription.yml │ │ ├── registry_list_garbageCollections.yml │ │ ├── registry_list_repositories.yml │ │ ├── registry_list_repositoriesV2.yml │ │ ├── registry_list_repositoryManifests.yml │ │ ├── registry_list_repositoryTags.yml │ │ ├── registry_run_garbageCollection.yml │ │ ├── registry_update_garbageCollection.yml │ │ ├── registry_update_subscription.yml │ │ ├── registry_validate_name.yml │ │ └── responses │ │ │ ├── all_registries_info.yml │ │ │ ├── all_repositories.yml │ │ │ ├── all_repositories_v2.yml │ │ │ ├── docker_credentials.yml │ │ │ ├── garbage_collection.yml │ │ │ ├── garbage_collections.yml │ │ │ ├── multiregistry_info.yml │ │ │ ├── registries_over_limit.yml │ │ │ ├── registries_precondition_fail.yml │ │ │ ├── registry_info.yml │ │ │ ├── registry_options_response.yml │ │ │ ├── repository_manifests.yml │ │ │ ├── repository_tags.yml │ │ │ └── subscription_response.yml │ ├── reserved_ips │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── create_reserved_ip.yml │ │ │ │ ├── delete_reserved_ip.yml │ │ │ │ ├── get_reserved_ip.yml │ │ │ │ ├── get_reserved_ip_action.yml │ │ │ │ ├── list_reserved_ip_actions.yml │ │ │ │ ├── list_reserved_ips.yml │ │ │ │ └── post_reserved_ip_action.yml │ │ │ ├── go │ │ │ │ ├── create_reserved_ip.yml │ │ │ │ ├── delete_reserved_ip.yml │ │ │ │ ├── get_reserved_ip.yml │ │ │ │ ├── get_reserved_ip_action.yml │ │ │ │ ├── list_reserved_ip_actions.yml │ │ │ │ ├── list_reserved_ips.yml │ │ │ │ └── post_reserved_ip_action.yml │ │ │ ├── python │ │ │ │ ├── create_reserved_ip.yml │ │ │ │ ├── delete_reserved_ip.yml │ │ │ │ ├── get_reserved_ip.yml │ │ │ │ ├── get_reserved_ip_action.yml │ │ │ │ ├── list_reserved_ip_actions.yml │ │ │ │ ├── list_reserved_ips.yml │ │ │ │ └── post_reserved_ip_action.yml │ │ │ └── ruby │ │ │ │ ├── create_reserved_ip.yml │ │ │ │ ├── delete_reserved_ip.yml │ │ │ │ ├── get_reserved_ip.yml │ │ │ │ ├── get_reserved_ip_action.yml │ │ │ │ ├── list_reserved_ip_actions.yml │ │ │ │ ├── list_reserved_ips.yml │ │ │ │ └── post_reserved_ip_action.yml │ │ ├── models │ │ │ ├── reserved_ip.yml │ │ │ ├── reserved_ip_actions.yml │ │ │ └── reserved_ip_create.yml │ │ ├── parameters.yml │ │ ├── reservedIPsActions_get.yml │ │ ├── reservedIPsActions_list.yml │ │ ├── reservedIPsActions_post.yml │ │ ├── reservedIPs_create.yml │ │ ├── reservedIPs_delete.yml │ │ ├── reservedIPs_get.yml │ │ ├── reservedIPs_list.yml │ │ └── responses │ │ │ ├── examples.yml │ │ │ ├── reserved_ip.yml │ │ │ ├── reserved_ip_action.yml │ │ │ ├── reserved_ip_actions.yml │ │ │ ├── reserved_ip_created.yml │ │ │ └── reserved_ip_list.yml │ ├── reserved_ipv6 │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── create_reserved_ipv6.yml │ │ │ │ ├── delete_reserved_ipv6.yml │ │ │ │ ├── get_reserved_ipv6.yml │ │ │ │ ├── list_reserved_ipv6s.yml │ │ │ │ └── post_reserved_ipv6_action.yml │ │ │ ├── go │ │ │ │ ├── create_reserved_ipv6.yml │ │ │ │ ├── delete_reserved_ipv6.yml │ │ │ │ ├── get_reserved_ipv6.yml │ │ │ │ ├── list_reserved_ipv6s.yml │ │ │ │ └── post_reserved_ipv6_action.yml │ │ │ └── python │ │ │ │ ├── create_reserved_ipv6.yml │ │ │ │ ├── delete_reserved_ipv6.yml │ │ │ │ ├── get_reserved_ipv6.yml │ │ │ │ ├── list_reserved_ipv6s.yml │ │ │ │ └── post_reserved_ipv6_action.yml │ │ ├── models │ │ │ ├── reserved_ipv6.yml │ │ │ ├── reserved_ipv6_actions.yml │ │ │ ├── reserved_ipv6_create.yml │ │ │ └── reserved_ipv6_list.yml │ │ ├── parameters.yml │ │ ├── reservedIPv6Actions_post.yml │ │ ├── reservedIPv6_create.yml │ │ ├── reservedIPv6_delete.yml │ │ ├── reservedIPv6_get.yml │ │ ├── reservedIPv6_list.yml │ │ └── responses │ │ │ ├── examples.yml │ │ │ ├── reserved_ipv6.yml │ │ │ ├── reserved_ipv6_action.yml │ │ │ ├── reserved_ipv6_create.yml │ │ │ └── reserved_ipv6_list.yml │ ├── sizes │ │ ├── examples │ │ │ ├── curl │ │ │ │ └── sizes_list.yml │ │ │ ├── go │ │ │ │ └── sizes_list.yml │ │ │ ├── python │ │ │ │ └── sizes_list.yml │ │ │ └── ruby │ │ │ │ └── sizes_list.yml │ │ ├── models │ │ │ ├── disk_info.yml │ │ │ ├── gpu_info.yml │ │ │ └── size.yml │ │ ├── responses │ │ │ └── all_sizes.yml │ │ └── sizes_list.yml │ ├── snapshots │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── snapshots_delete.yml │ │ │ │ ├── snapshots_get.yml │ │ │ │ └── snapshots_list.yml │ │ │ ├── go │ │ │ │ ├── snapshots_delete.yml │ │ │ │ ├── snapshots_get.yml │ │ │ │ └── snapshots_list.yml │ │ │ ├── python │ │ │ │ ├── snapshots_delete.yml │ │ │ │ ├── snapshots_get.yml │ │ │ │ └── snapshots_list.yml │ │ │ └── ruby │ │ │ │ ├── snapshots_delete.yml │ │ │ │ ├── snapshots_get.yml │ │ │ │ └── snapshots_list.yml │ │ ├── models │ │ │ ├── snapshots.yml │ │ │ └── snapshots_base.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── examples.yml │ │ │ ├── not_a_snapshot.yml │ │ │ ├── snapshots.yml │ │ │ └── snapshots_existing.yml │ │ ├── snapshots_delete.yml │ │ ├── snapshots_get.yml │ │ └── snapshots_list.yml │ ├── spaces │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── spaces_key_create.yml │ │ │ │ ├── spaces_key_delete.yml │ │ │ │ ├── spaces_key_get.yml │ │ │ │ ├── spaces_key_list.yml │ │ │ │ ├── spaces_key_patch.yml │ │ │ │ └── spaces_key_update.yml │ │ ├── key_create.yml │ │ ├── key_delete.yml │ │ ├── key_get.yml │ │ ├── key_list.yml │ │ ├── key_patch.yml │ │ ├── key_update.yml │ │ ├── models │ │ │ ├── grant.yml │ │ │ ├── key.yml │ │ │ └── key_create_response.yml │ │ ├── parameters.yml │ │ └── responses │ │ │ ├── bad_request.yml │ │ │ ├── key_create.yml │ │ │ ├── key_get.yml │ │ │ ├── key_list.yml │ │ │ └── key_update.yml │ ├── ssh_keys │ │ ├── attributes │ │ │ ├── ssh_key_fingerprint.yml │ │ │ ├── ssh_key_id.yml │ │ │ └── ssh_key_name.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── sshKeys_create.yml │ │ │ │ ├── sshKeys_delete.yml │ │ │ │ ├── sshKeys_get.yml │ │ │ │ ├── sshKeys_list.yml │ │ │ │ └── sshKeys_patch.yml │ │ │ ├── go │ │ │ │ ├── sshKeys_create.yml │ │ │ │ ├── sshKeys_delete.yml │ │ │ │ ├── sshKeys_get.yml │ │ │ │ ├── sshKeys_list.yml │ │ │ │ └── sshKeys_patch.yml │ │ │ ├── python │ │ │ │ ├── sshKeys_create.yml │ │ │ │ ├── sshKeys_delete.yml │ │ │ │ ├── sshKeys_get.yml │ │ │ │ ├── sshKeys_list.yml │ │ │ │ └── sshKeys_patch.yml │ │ │ └── ruby │ │ │ │ ├── sshKeys_create.yml │ │ │ │ ├── sshKeys_delete.yml │ │ │ │ ├── sshKeys_get.yml │ │ │ │ ├── sshKeys_list.yml │ │ │ │ └── sshKeys_patch.yml │ │ ├── links │ │ │ ├── sshKeys_delete_by_fingerprint.yml │ │ │ ├── sshKeys_delete_by_id.yml │ │ │ ├── sshKeys_get_by_fingerprint.yml │ │ │ └── sshKeys_get_by_id.yml │ │ ├── models │ │ │ └── sshKeys.yml │ │ ├── parameters │ │ │ └── ssh_key_identifier.yml │ │ ├── responses │ │ │ ├── sshKeys_all.yml │ │ │ ├── sshKeys_existing.yml │ │ │ └── sshKeys_new.yml │ │ ├── sshKeys_create.yml │ │ ├── sshKeys_delete.yml │ │ ├── sshKeys_get.yml │ │ ├── sshKeys_list.yml │ │ └── sshKeys_update.yml │ ├── tags │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── tags_assign_resources.yml │ │ │ │ ├── tags_create.yml │ │ │ │ ├── tags_delete.yml │ │ │ │ ├── tags_get.yml │ │ │ │ ├── tags_list.yml │ │ │ │ └── tags_unassign_resources.yml │ │ │ ├── go │ │ │ │ ├── tags_assign_resources.yml │ │ │ │ ├── tags_create.yml │ │ │ │ ├── tags_delete.yml │ │ │ │ ├── tags_get.yml │ │ │ │ ├── tags_list.yml │ │ │ │ └── tags_unassign_resources.yml │ │ │ ├── python │ │ │ │ ├── tags_assign_resources.yml │ │ │ │ ├── tags_create.yml │ │ │ │ ├── tags_delete.yml │ │ │ │ ├── tags_get.yml │ │ │ │ ├── tags_list.yml │ │ │ │ └── tags_unassign_resources.yml │ │ │ └── ruby │ │ │ │ ├── tags_assign_resources.yml │ │ │ │ ├── tags_create.yml │ │ │ │ ├── tags_delete.yml │ │ │ │ ├── tags_get.yml │ │ │ │ ├── tags_list.yml │ │ │ │ └── tags_unassign_resources.yml │ │ ├── models │ │ │ ├── tags.yml │ │ │ ├── tags_metadata.yml │ │ │ └── tags_resource.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── tags_all.yml │ │ │ ├── tags_bad_request.yml │ │ │ ├── tags_existing.yml │ │ │ └── tags_new.yml │ │ ├── tags_assign_resources.yml │ │ ├── tags_create.yml │ │ ├── tags_delete.yml │ │ ├── tags_get.yml │ │ ├── tags_list.yml │ │ └── tags_unassign_resources.yml │ ├── uptime │ │ ├── create_alert.yml │ │ ├── create_check.yml │ │ ├── delete_alert.yml │ │ ├── delete_check.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── alert_create.yml │ │ │ │ ├── alert_delete.yml │ │ │ │ ├── alert_get.yml │ │ │ │ ├── alert_list.yml │ │ │ │ ├── alert_update.yml │ │ │ │ ├── check_create.yml │ │ │ │ ├── check_delete.yml │ │ │ │ ├── check_get.yml │ │ │ │ ├── check_list.yml │ │ │ │ ├── check_state_get.yml │ │ │ │ └── check_update.yml │ │ │ └── python │ │ │ │ ├── alert_create.yml │ │ │ │ ├── alert_delete.yml │ │ │ │ ├── alert_get.yml │ │ │ │ ├── alert_list.yml │ │ │ │ ├── alert_update.yml │ │ │ │ ├── check_create.yml │ │ │ │ ├── check_delete.yml │ │ │ │ ├── check_get.yml │ │ │ │ ├── check_list.yml │ │ │ │ ├── check_state_get.yml │ │ │ │ └── check_update.yml │ │ ├── get_alert.yml │ │ ├── get_check.yml │ │ ├── get_check_state.yml │ │ ├── list_alerts.yml │ │ ├── list_checks.yml │ │ ├── models │ │ │ ├── alert.yml │ │ │ ├── check.yml │ │ │ ├── notification.yml │ │ │ └── state.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── all_alerts.yml │ │ │ ├── all_checks.yml │ │ │ ├── existing_alert.yml │ │ │ ├── existing_check.yml │ │ │ └── existing_check_state.yml │ │ ├── update_alert.yml │ │ └── update_check.yml │ ├── volumes │ │ ├── examples.yml │ │ ├── examples │ │ │ ├── curl │ │ │ │ ├── volumeActions_attach.yml │ │ │ │ ├── volumeActions_attach_byId.yml │ │ │ │ ├── volumeActions_get.yml │ │ │ │ ├── volumeActions_list.yml │ │ │ │ ├── volumeSnapshots_create.yml │ │ │ │ ├── volumeSnapshots_delete_byId.yml │ │ │ │ ├── volumeSnapshots_get_byId.yml │ │ │ │ ├── volumeSnapshots_list.yml │ │ │ │ ├── volumes_create.yml │ │ │ │ ├── volumes_delete.yml │ │ │ │ ├── volumes_delete_byName.yml │ │ │ │ ├── volumes_get.yml │ │ │ │ └── volumes_list.yml │ │ │ ├── go │ │ │ │ ├── volumeActions_attach_byId.yml │ │ │ │ ├── volumeActions_get.yml │ │ │ │ ├── volumeActions_list.yml │ │ │ │ ├── volumeSnapshots_create.yml │ │ │ │ ├── volumeSnapshots_delete_byId.yml │ │ │ │ ├── volumeSnapshots_list.yml │ │ │ │ ├── volumes_create.yml │ │ │ │ ├── volumes_delete.yml │ │ │ │ ├── volumes_get.yml │ │ │ │ └── volumes_list.yml │ │ │ ├── python │ │ │ │ ├── volumeActions_attach.yml │ │ │ │ ├── volumeActions_attach_byId.yml │ │ │ │ ├── volumeActions_get.yml │ │ │ │ ├── volumeActions_list.yml │ │ │ │ ├── volumeSnapshots_create.yml │ │ │ │ ├── volumeSnapshots_delete_byId.yml │ │ │ │ ├── volumeSnapshots_get_byId.yml │ │ │ │ ├── volumeSnapshots_list.yml │ │ │ │ ├── volumes_create.yml │ │ │ │ ├── volumes_delete.yml │ │ │ │ ├── volumes_delete_byName.yml │ │ │ │ ├── volumes_get.yml │ │ │ │ └── volumes_list.yml │ │ │ └── ruby │ │ │ │ ├── volumeActions_attach_byId.yml │ │ │ │ ├── volumeActions_get.yml │ │ │ │ ├── volumeActions_list.yml │ │ │ │ ├── volumeSnapshots_create.yml │ │ │ │ ├── volumeSnapshots_delete_byId.yml │ │ │ │ ├── volumeSnapshots_list.yml │ │ │ │ ├── volumes_create.yml │ │ │ │ ├── volumes_delete.yml │ │ │ │ ├── volumes_get.yml │ │ │ │ └── volumes_list.yml │ │ ├── models │ │ │ ├── attributes.yml │ │ │ ├── volumeAction.yml │ │ │ ├── volume_action_post_attach.yml │ │ │ ├── volume_action_post_base.yml │ │ │ ├── volume_action_post_detach.yml │ │ │ ├── volume_action_post_resize.yml │ │ │ ├── volume_base.yml │ │ │ ├── volume_base_read.yml │ │ │ ├── volume_full.yml │ │ │ ├── volumes_ext4.yml │ │ │ └── volumes_xfs.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── volume.yml │ │ │ ├── volumeAction.yml │ │ │ ├── volumeActions.yml │ │ │ ├── volumeSnapshot.yml │ │ │ ├── volumeSnapshots.yml │ │ │ └── volumes.yml │ │ ├── volumeActions_get.yml │ │ ├── volumeActions_list.yml │ │ ├── volumeActions_post.yml │ │ ├── volumeActions_post_byId.yml │ │ ├── volumeSnapshots_create.yml │ │ ├── volumeSnapshots_delete_byId.yml │ │ ├── volumeSnapshots_get_byId.yml │ │ ├── volumeSnapshots_list.yml │ │ ├── volumes_create.yml │ │ ├── volumes_delete.yml │ │ ├── volumes_delete_byName.yml │ │ ├── volumes_get.yml │ │ └── volumes_list.yml │ ├── vpc_nat_gateways │ │ ├── examples.yml │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── vpc_nat_gateway_create.yml │ │ │ │ ├── vpc_nat_gateway_delete.yml │ │ │ │ ├── vpc_nat_gateway_get.yml │ │ │ │ ├── vpc_nat_gateway_list.yml │ │ │ │ └── vpc_nat_gateway_update.yml │ │ ├── models │ │ │ ├── vpc_nat_gateway_create.yml │ │ │ ├── vpc_nat_gateway_get.yml │ │ │ └── vpc_nat_gateway_update.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── examples.yml │ │ │ ├── vpc_nat_gateway.yml │ │ │ ├── vpc_nat_gateway_create.yml │ │ │ ├── vpc_nat_gateway_update.yml │ │ │ └── vpc_nat_gateways.yml │ │ ├── vpc_nat_gateway_create.yml │ │ ├── vpc_nat_gateway_delete.yml │ │ ├── vpc_nat_gateway_get.yml │ │ ├── vpc_nat_gateway_list.yml │ │ └── vpc_nat_gateway_update.yml │ ├── vpc_peerings │ │ ├── examples │ │ │ └── curl │ │ │ │ ├── vpc_peerings_create.yml │ │ │ │ ├── vpc_peerings_delete.yml │ │ │ │ ├── vpc_peerings_get.yml │ │ │ │ ├── vpc_peerings_list.yml │ │ │ │ └── vpc_peerings_update.yml │ │ ├── models │ │ │ └── vpc_peering.yml │ │ ├── parameters.yml │ │ ├── responses │ │ │ ├── active_vpc_peering.yml │ │ │ ├── all_vpc_peerings.yml │ │ │ ├── deleting_vpc_peering.yml │ │ │ └── provisioning_vpc_peering.yml │ │ ├── vpc_peerings_create.yml │ │ ├── vpc_peerings_delete.yml │ │ ├── vpc_peerings_get.yml │ │ ├── vpc_peerings_list.yml │ │ └── vpc_peerings_update.yml │ └── vpcs │ │ ├── examples │ │ ├── curl │ │ │ ├── vpcs_create.yml │ │ │ ├── vpcs_create_peerings.yml │ │ │ ├── vpcs_delete.yml │ │ │ ├── vpcs_get.yml │ │ │ ├── vpcs_list.yml │ │ │ ├── vpcs_list_members.yml │ │ │ ├── vpcs_list_peerings.yml │ │ │ ├── vpcs_patch.yml │ │ │ ├── vpcs_update.yml │ │ │ └── vpcs_update_peerings.yml │ │ ├── go │ │ │ ├── vpcs_create.yml │ │ │ ├── vpcs_delete.yml │ │ │ ├── vpcs_get.yml │ │ │ ├── vpcs_list.yml │ │ │ ├── vpcs_patch.yml │ │ │ └── vpcs_update.yml │ │ └── python │ │ │ ├── vpcs_create.yml │ │ │ ├── vpcs_delete.yml │ │ │ ├── vpcs_get.yml │ │ │ ├── vpcs_list.yml │ │ │ ├── vpcs_list_members.yml │ │ │ ├── vpcs_patch.yml │ │ │ └── vpcs_update.yml │ │ ├── models │ │ ├── vpc.yml │ │ └── vpc_member.yml │ │ ├── parameters.yml │ │ ├── responses │ │ ├── all_vpcs.yml │ │ ├── existing_vpc.yml │ │ ├── vpc_members.yml │ │ ├── vpc_peering.yml │ │ └── vpc_peerings.yml │ │ ├── vpcs_create.yml │ │ ├── vpcs_create_peerings.yml │ │ ├── vpcs_delete.yml │ │ ├── vpcs_get.yml │ │ ├── vpcs_list.yml │ │ ├── vpcs_list_members.yml │ │ ├── vpcs_list_peerings.yml │ │ ├── vpcs_patch.yml │ │ ├── vpcs_update.yml │ │ └── vpcs_update_peerings.yml └── shared │ ├── attributes │ ├── distribution.yml │ ├── existing_tags_array.yml │ ├── region_slug.yml │ ├── regions_array.yml │ ├── tags_array.yml │ ├── tags_array_read.yml │ └── urn.yml │ ├── headers.yml │ ├── meta.yml │ ├── meta_optional_total.yml │ ├── models │ ├── action_link.yml │ ├── error.yml │ ├── error_with_root_causes.yml │ └── meta_properties.yml │ ├── pages.yml │ ├── parameters.yml │ └── responses │ ├── accepted.yml │ ├── bad_request.yml │ ├── conflict.yml │ ├── no_content.yml │ ├── no_content_with_content_type.yml │ ├── not_found.yml │ ├── server_error.yml │ ├── too_many_requests.yml │ ├── unauthorized.yml │ ├── unexpected_error.yml │ └── unprocessable_entity.yml ├── spectral ├── bundled.spectral.yml ├── functions │ ├── ensureAllArraysHaveItemTypes.js │ ├── ensurePropertiesExample.js │ ├── ensureSchemaHasType.js │ ├── ensureSnakeCaseWithDigits.js │ └── validateOpIDNaming.js └── ruleset.yml └── tests └── .keep /.github/workflows/redoc-index.main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/redoc-index.main.yml -------------------------------------------------------------------------------- /.github/workflows/redoc-index.pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/redoc-index.pr.yml -------------------------------------------------------------------------------- /.github/workflows/spec.main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/spec.main.yml -------------------------------------------------------------------------------- /.github/workflows/spec.pr-comment-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/spec.pr-comment-trigger.yml -------------------------------------------------------------------------------- /.github/workflows/spec.pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/spec.pr.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-python-client-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/trigger-python-client-gen.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-typescript-client-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/trigger-typescript-client-gen.yml -------------------------------------------------------------------------------- /.github/workflows/validate-client-generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.github/workflows/validate-client-generation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.spectral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.spectral.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/openapi.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/.vscode/openapi.code-snippets -------------------------------------------------------------------------------- /ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/ADR.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs-preview/redoc-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/docs-preview/redoc-index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/package.json -------------------------------------------------------------------------------- /specification/DigitalOcean-public.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/DigitalOcean-public.v2.yaml -------------------------------------------------------------------------------- /specification/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/description.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/examples/curl/oneClicks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/examples/curl/oneClicks.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/models/oneClicks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/models/oneClicks.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/models/oneClicks_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/models/oneClicks_create.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/oneClicks_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/oneClicks_list.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/parameters.yml -------------------------------------------------------------------------------- /specification/resources/1-clicks/responses/oneClicks_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/1-clicks/responses/oneClicks_all.yml -------------------------------------------------------------------------------- /specification/resources/account/account_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/account/account_get.yml -------------------------------------------------------------------------------- /specification/resources/account/examples/curl/account_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/account/examples/curl/account_get.yml -------------------------------------------------------------------------------- /specification/resources/account/models/account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/account/models/account.yml -------------------------------------------------------------------------------- /specification/resources/account/responses/account.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/account/responses/account.yml -------------------------------------------------------------------------------- /specification/resources/actions/actions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/actions_get.yml -------------------------------------------------------------------------------- /specification/resources/actions/actions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/actions_list.yml -------------------------------------------------------------------------------- /specification/resources/actions/examples/curl/actions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/examples/curl/actions_get.yml -------------------------------------------------------------------------------- /specification/resources/actions/examples/go/actions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/examples/go/actions_get.yml -------------------------------------------------------------------------------- /specification/resources/actions/examples/go/actions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/examples/go/actions_list.yml -------------------------------------------------------------------------------- /specification/resources/actions/examples/ruby/actions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/examples/ruby/actions_get.yml -------------------------------------------------------------------------------- /specification/resources/actions/models/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/models/action.yml -------------------------------------------------------------------------------- /specification/resources/actions/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/parameters.yml -------------------------------------------------------------------------------- /specification/resources/actions/responses/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/responses/action.yml -------------------------------------------------------------------------------- /specification/resources/actions/responses/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/actions/responses/actions.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_create.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_delete.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_get.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_get_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_get_app.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_get_app_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_get_app_metadata.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_list.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_update.yml -------------------------------------------------------------------------------- /specification/resources/addons/addons_update_plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/addons_update_plan.yml -------------------------------------------------------------------------------- /specification/resources/addons/examples/curl/addons_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/examples/curl/addons_get.yml -------------------------------------------------------------------------------- /specification/resources/addons/examples/curl/addons_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/examples/curl/addons_list.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_app_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_app_info.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_app_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_app_metadata.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_feature.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_plan.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_resource.yml -------------------------------------------------------------------------------- /specification/resources/addons/models/addons_resource_new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/models/addons_resource_new.yml -------------------------------------------------------------------------------- /specification/resources/addons/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/parameters.yml -------------------------------------------------------------------------------- /specification/resources/addons/responses/addons_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/responses/addons_create.yml -------------------------------------------------------------------------------- /specification/resources/addons/responses/addons_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/responses/addons_get.yml -------------------------------------------------------------------------------- /specification/resources/addons/responses/addons_get_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/responses/addons_get_app.yml -------------------------------------------------------------------------------- /specification/resources/addons/responses/addons_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/responses/addons_list.yml -------------------------------------------------------------------------------- /specification/resources/addons/responses/addons_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/addons/responses/addons_update.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_cancel_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_cancel_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_commit_rollback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_commit_rollback.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_create.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_create_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_create_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_create_rollback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_create_rollback.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_delete.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_exec.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_health.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_instanceSize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_instanceSize.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_instances.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_job_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_job_invocation.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_job_invocation_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_job_invocation_logs.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_logs.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_get_logs_aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_get_logs_aggregate.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list_alerts.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list_deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list_deployments.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list_instanceSizes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list_instanceSizes.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list_job_invocations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list_job_invocations.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_list_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_list_regions.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_restart.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_revert_rollback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_revert_rollback.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_update.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_validate_appSpec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_validate_appSpec.yml -------------------------------------------------------------------------------- /specification/resources/apps/apps_validate_rollback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/apps_validate_rollback.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_create.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_delete.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_get.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_get_exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_get_exec.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_get_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_get_logs.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_list.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_restart.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/apps_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/apps_update.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/curl/rollback_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/curl/rollback_app.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_create.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_delete.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_get.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_list.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_restart.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/apps_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/apps_update.yml -------------------------------------------------------------------------------- /specification/resources/apps/examples/python/rollback_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/examples/python/rollback_app.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_email.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_phase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_phase.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_progress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_progress.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_spec_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_spec_rule.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_alert_spec_window.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_alert_spec_window.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_component_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_component_base.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_component_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_component_health.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_database_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_database_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_domain_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_domain_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_domain_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_domain_validation.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_egress_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_egress_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_egress_type_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_egress_type_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_functions_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_functions_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_health.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_health_check_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_health_check_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_health_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_health_response.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_ingress_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_ingress_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_ingress_spec_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_ingress_spec_rule.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_instance.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_instances.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_job_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_job_invocation.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_job_invocations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_job_invocations.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_job_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_job_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_maintenance_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_maintenance_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_propose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_propose.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_propose_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_propose_response.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_response.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_route_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_route_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_service_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_service_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_static_site_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_static_site_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/app_worker_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/app_worker_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_alert_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_alert_response.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_cors_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_cors_policy.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_deploy_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_deploy_template.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_deployment_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_deployment_job.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_deployment_phase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_deployment_phase.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_domain.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_domain_phase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_domain_phase.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_domain_progress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_domain_progress.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_git_source_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_git_source_spec.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_instance_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_instance_size.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_region.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_response.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_restart_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_restart_request.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_string_match.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_string_match.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_vpc.yml -------------------------------------------------------------------------------- /specification/resources/apps/models/apps_vpc_egress_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/models/apps_vpc_egress_ip.yml -------------------------------------------------------------------------------- /specification/resources/apps/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/parameters.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/apps_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/apps_get.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/apps_get_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/apps_get_logs.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/apps_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/apps_health.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/apps_instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/apps_instances.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/cancel_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/cancel_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/delete_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/delete_app.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/get_exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/get_exec.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/get_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/get_instance.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/get_job_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/get_job_invocation.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_alerts.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_apps.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_instance.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_logs.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/list_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/list_regions.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/new_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/new_app.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/new_app_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/new_app_deployment.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/propose_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/propose_app.yml -------------------------------------------------------------------------------- /specification/resources/apps/responses/update_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/apps/responses/update_app.yml -------------------------------------------------------------------------------- /specification/resources/autoscale_pools/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/autoscale_pools/examples.yml -------------------------------------------------------------------------------- /specification/resources/autoscale_pools/models/history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/autoscale_pools/models/history.yml -------------------------------------------------------------------------------- /specification/resources/autoscale_pools/models/member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/autoscale_pools/models/member.yml -------------------------------------------------------------------------------- /specification/resources/autoscale_pools/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/autoscale_pools/parameters.yml -------------------------------------------------------------------------------- /specification/resources/billing/balance_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/balance_get.yml -------------------------------------------------------------------------------- /specification/resources/billing/billingHistory_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/billingHistory_list.yml -------------------------------------------------------------------------------- /specification/resources/billing/examples/curl/balance_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/examples/curl/balance_get.yml -------------------------------------------------------------------------------- /specification/resources/billing/invoices_get_byUUID.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/invoices_get_byUUID.yml -------------------------------------------------------------------------------- /specification/resources/billing/invoices_get_csvByUUID.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/invoices_get_csvByUUID.yml -------------------------------------------------------------------------------- /specification/resources/billing/invoices_get_pdfByUUID.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/invoices_get_pdfByUUID.yml -------------------------------------------------------------------------------- /specification/resources/billing/invoices_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/invoices_list.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/balance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/balance.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/billing_address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/billing_address.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/billing_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/billing_history.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/invoice_item.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/invoice_item.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/invoice_preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/invoice_preview.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/invoice_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/invoice_summary.yml -------------------------------------------------------------------------------- /specification/resources/billing/models/simple_charge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/models/simple_charge.yml -------------------------------------------------------------------------------- /specification/resources/billing/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/parameters.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/balance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/balance.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/billing_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/billing_history.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/invoice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/invoice.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/invoice_csv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/invoice_csv.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/invoice_pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/invoice_pdf.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/invoice_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/invoice_summary.yml -------------------------------------------------------------------------------- /specification/resources/billing/responses/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/billing/responses/invoices.yml -------------------------------------------------------------------------------- /specification/resources/byoip_prefixes/byoip_prefixes_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/byoip_prefixes/byoip_prefixes_get.yml -------------------------------------------------------------------------------- /specification/resources/byoip_prefixes/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/byoip_prefixes/parameters.yml -------------------------------------------------------------------------------- /specification/resources/byoip_prefixes/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/byoip_prefixes/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_create_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_create_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_delete_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_delete_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_get_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_get_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_list_endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_list_endpoints.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_purge_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_purge_cache.yml -------------------------------------------------------------------------------- /specification/resources/cdn/cdn_update_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/cdn_update_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/curl/endpoints_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/curl/endpoints_get.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/curl/endpoints_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/curl/endpoints_list.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/curl/purge_cdn_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/curl/purge_cdn_cache.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/endpoints_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/endpoints_create.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/endpoints_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/endpoints_delete.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/endpoints_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/endpoints_get.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/endpoints_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/endpoints_list.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/endpoints_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/endpoints_update.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/go/purge_cdn_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/go/purge_cdn_cache.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/python/endpoints_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/python/endpoints_get.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/ruby/endpoints_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/ruby/endpoints_get.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/ruby/endpoints_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/ruby/endpoints_list.yml -------------------------------------------------------------------------------- /specification/resources/cdn/examples/ruby/purge_cdn_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/examples/ruby/purge_cdn_cache.yml -------------------------------------------------------------------------------- /specification/resources/cdn/models/cdn_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/models/cdn_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/models/purge_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/models/purge_cache.yml -------------------------------------------------------------------------------- /specification/resources/cdn/models/update_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/models/update_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/cdn/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/parameters.yml -------------------------------------------------------------------------------- /specification/resources/cdn/responses/all_cdn_endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/responses/all_cdn_endpoints.yml -------------------------------------------------------------------------------- /specification/resources/cdn/responses/existing_endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/cdn/responses/existing_endpoint.yml -------------------------------------------------------------------------------- /specification/resources/certificates/certificates_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/certificates_create.yml -------------------------------------------------------------------------------- /specification/resources/certificates/certificates_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/certificates_delete.yml -------------------------------------------------------------------------------- /specification/resources/certificates/certificates_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/certificates_get.yml -------------------------------------------------------------------------------- /specification/resources/certificates/certificates_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/certificates_list.yml -------------------------------------------------------------------------------- /specification/resources/certificates/models/certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/models/certificate.yml -------------------------------------------------------------------------------- /specification/resources/certificates/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/parameters.yml -------------------------------------------------------------------------------- /specification/resources/certificates/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/certificates/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_add.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_add_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_add_user.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_delete.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_delete_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_delete_user.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_events_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_events_logs.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_autoscale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_autoscale.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_ca.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_cluster.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_config.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_logsink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_logsink.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_replica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_replica.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_sql_mode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_sql_mode.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_get_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_get_user.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_backups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_backups.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_clusters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_clusters.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_logsink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_logsink.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_options.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_replicas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_replicas.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_list_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_list_users.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_patch_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_patch_config.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_reset_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_reset_auth.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_set_autoscale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_set_autoscale.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_update_region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_update_region.yml -------------------------------------------------------------------------------- /specification/resources/databases/databases_update_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/databases_update_user.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/backup.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/ca.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/connection_pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/connection_pool.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/connection_pools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/connection_pools.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database_backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database_backup.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database_cluster.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database_config.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database_replica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database_replica.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/database_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/database_user.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/events_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/events_logs.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/firewall_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/firewall_rule.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/kafka_topic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/kafka_topic.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/kafka_topic_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/kafka_topic_base.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/logsink_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/logsink_base.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/logsink_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/logsink_create.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/logsink_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/logsink_update.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/logsink_verbose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/logsink_verbose.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/mysql_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/mysql_settings.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/online_migration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/online_migration.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/opensearch_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/opensearch_index.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/options.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/source_database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/source_database.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/sql_mode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/sql_mode.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/user_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/user_settings.yml -------------------------------------------------------------------------------- /specification/resources/databases/models/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/models/version.yml -------------------------------------------------------------------------------- /specification/resources/databases/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/parameters.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/autoscale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/autoscale.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/ca.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/database.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/databases.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/events_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/events_logs.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/kafka_schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/kafka_schema.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/kafka_schemas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/kafka_schemas.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/kafka_topic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/kafka_topic.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/kafka_topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/kafka_topics.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/logsink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/logsink.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/logsink_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/logsink_data.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/logsinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/logsinks.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/options.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/sql_mode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/sql_mode.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/user.yml -------------------------------------------------------------------------------- /specification/resources/databases/responses/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/databases/responses/users.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_create.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_create_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_create_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_delete.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_delete_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_delete_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_get.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_get_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_get_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_list.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_list_records.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_list_records.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_patch_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_patch_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/domains_update_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/domains_update_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/examples.yml -------------------------------------------------------------------------------- /specification/resources/domains/examples/curl/domains_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/examples/curl/domains_get.yml -------------------------------------------------------------------------------- /specification/resources/domains/examples/go/domains_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/examples/go/domains_get.yml -------------------------------------------------------------------------------- /specification/resources/domains/examples/go/domains_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/examples/go/domains_list.yml -------------------------------------------------------------------------------- /specification/resources/domains/examples/ruby/domains_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/examples/ruby/domains_get.yml -------------------------------------------------------------------------------- /specification/resources/domains/models/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/models/domain.yml -------------------------------------------------------------------------------- /specification/resources/domains/models/domain_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/models/domain_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/parameters.yml -------------------------------------------------------------------------------- /specification/resources/domains/responses/domain_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/responses/domain_record.yml -------------------------------------------------------------------------------- /specification/resources/domains/responses/existing_domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/domains/responses/existing_domain.yml -------------------------------------------------------------------------------- /specification/resources/droplets/dropletActions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/dropletActions_get.yml -------------------------------------------------------------------------------- /specification/resources/droplets/dropletActions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/dropletActions_list.yml -------------------------------------------------------------------------------- /specification/resources/droplets/dropletActions_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/dropletActions_post.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_create.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_destroy.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_destroy_byTag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_destroy_byTag.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_get.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list_backups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list_backups.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list_firewalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list_firewalls.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list_kernels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list_kernels.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list_neighbors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list_neighbors.yml -------------------------------------------------------------------------------- /specification/resources/droplets/droplets_list_snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/droplets_list_snapshots.yml -------------------------------------------------------------------------------- /specification/resources/droplets/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/examples.yml -------------------------------------------------------------------------------- /specification/resources/droplets/examples/go/droplets_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/examples/go/droplets_get.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/droplet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/droplet.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/droplet_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/droplet_actions.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/droplet_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/droplet_create.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/droplet_snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/droplet_snapshot.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/kernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/kernel.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/neighbor_ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/neighbor_ids.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/network_v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/network_v4.yml -------------------------------------------------------------------------------- /specification/resources/droplets/models/network_v6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/models/network_v6.yml -------------------------------------------------------------------------------- /specification/resources/droplets/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/parameters.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/all_droplets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/all_droplets.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/all_firewalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/all_firewalls.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/all_kernels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/all_kernels.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/droplet_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/droplet_action.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/droplet_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/droplet_create.yml -------------------------------------------------------------------------------- /specification/resources/droplets/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/droplets/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_add_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_add_rules.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_add_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_add_tags.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_create.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_delete.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_delete_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_delete_rules.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_delete_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_delete_tags.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_get.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_list.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/firewalls_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/firewalls_update.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/models/firewall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/models/firewall.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/models/firewall_rule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/models/firewall_rule.yml -------------------------------------------------------------------------------- /specification/resources/firewalls/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/firewalls/parameters.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/floatingIPs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/floatingIPs_create.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/floatingIPs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/floatingIPs_delete.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/floatingIPs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/floatingIPs_get.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/floatingIPs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/floatingIPs_list.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/models/floating_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/models/floating_ip.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/parameters.yml -------------------------------------------------------------------------------- /specification/resources/floating_ips/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/floating_ips/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/functions/functions_get_namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/functions_get_namespace.yml -------------------------------------------------------------------------------- /specification/resources/functions/functions_get_trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/functions_get_trigger.yml -------------------------------------------------------------------------------- /specification/resources/functions/functions_list_triggers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/functions_list_triggers.yml -------------------------------------------------------------------------------- /specification/resources/functions/models/create_namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/models/create_namespace.yml -------------------------------------------------------------------------------- /specification/resources/functions/models/create_trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/models/create_trigger.yml -------------------------------------------------------------------------------- /specification/resources/functions/models/namespace_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/models/namespace_info.yml -------------------------------------------------------------------------------- /specification/resources/functions/models/trigger_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/models/trigger_info.yml -------------------------------------------------------------------------------- /specification/resources/functions/models/update_trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/models/update_trigger.yml -------------------------------------------------------------------------------- /specification/resources/functions/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/parameters.yml -------------------------------------------------------------------------------- /specification/resources/functions/responses/list_triggers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/functions/responses/list_triggers.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/definitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/definitions.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_attach_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_attach_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_cancel_indexing_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_cancel_indexing_job.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_create_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_create_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_create_agent_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_create_agent_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_create_indexing_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_create_indexing_job.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_create_model_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_create_model_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_create_workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_create_workspace.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_delete_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_delete_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_delete_agent_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_delete_agent_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_delete_model_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_delete_model_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_delete_workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_delete_workspace.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_detach_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_detach_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_agent_children.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_agent_children.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_agent_usage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_agent_usage.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_evaluation_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_evaluation_run.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_indexing_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_indexing_job.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_knowledge_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_knowledge_base.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_oauth2_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_oauth2_url.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_openai_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_openai_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_get_workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_get_workspace.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_agent_api_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_agent_api_keys.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_agent_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_agent_versions.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_agents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_agents.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_indexing_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_indexing_jobs.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_knowledge_bases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_knowledge_bases.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_model_api_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_model_api_keys.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_models.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_openai_api_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_openai_api_keys.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_list_workspaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_list_workspaces.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_update_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_update_agent.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_update_agent_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_update_agent_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_update_model_api_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_update_model_api_key.yml -------------------------------------------------------------------------------- /specification/resources/gen-ai/genai_update_workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/gen-ai/genai_update_workspace.yml -------------------------------------------------------------------------------- /specification/resources/images/attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/attributes.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/curl/images_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/curl/images_get.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/curl/images_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/curl/images_list.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/go/images_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/go/images_delete.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/go/images_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/go/images_get.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/go/images_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/go/images_list.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/go/images_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/go/images_update.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/python/images_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/python/images_get.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/ruby/images_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/ruby/images_get.yml -------------------------------------------------------------------------------- /specification/resources/images/examples/ruby/images_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/examples/ruby/images_list.yml -------------------------------------------------------------------------------- /specification/resources/images/imageActions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/imageActions_get.yml -------------------------------------------------------------------------------- /specification/resources/images/imageActions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/imageActions_list.yml -------------------------------------------------------------------------------- /specification/resources/images/imageActions_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/imageActions_post.yml -------------------------------------------------------------------------------- /specification/resources/images/images_create_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/images_create_custom.yml -------------------------------------------------------------------------------- /specification/resources/images/images_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/images_delete.yml -------------------------------------------------------------------------------- /specification/resources/images/images_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/images_get.yml -------------------------------------------------------------------------------- /specification/resources/images/images_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/images_list.yml -------------------------------------------------------------------------------- /specification/resources/images/images_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/images_update.yml -------------------------------------------------------------------------------- /specification/resources/images/models/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/models/image.yml -------------------------------------------------------------------------------- /specification/resources/images/models/image_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/models/image_action.yml -------------------------------------------------------------------------------- /specification/resources/images/models/image_new_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/models/image_new_custom.yml -------------------------------------------------------------------------------- /specification/resources/images/models/image_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/models/image_update.yml -------------------------------------------------------------------------------- /specification/resources/images/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/parameters.yml -------------------------------------------------------------------------------- /specification/resources/images/responses/all_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/responses/all_images.yml -------------------------------------------------------------------------------- /specification/resources/images/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/images/responses/existing_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/responses/existing_image.yml -------------------------------------------------------------------------------- /specification/resources/images/responses/new_custom_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/responses/new_custom_image.yml -------------------------------------------------------------------------------- /specification/resources/images/responses/updated_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/images/responses/updated_image.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/examples.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/kubernetes_delete_node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/kubernetes_delete_node.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/kubernetes_get_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/kubernetes_get_cluster.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/cluster.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/cluster_read.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/cluster_read.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/cluster_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/cluster_update.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/credentials.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/node.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/node_pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/node_pool.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/options.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/routing_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/routing_agent.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/status_messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/status_messages.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/models/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/models/user.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/parameters.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/all_clusters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/all_clusters.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/all_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/all_options.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/cluster_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/cluster_user.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/credentials.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/kubernetes/responses/kubeconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/kubernetes/responses/kubeconfig.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/examples.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/loadBalancers_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/loadBalancers_get.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/loadBalancers_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/loadBalancers_list.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/models/attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/models/attributes.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/models/domains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/models/domains.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/models/lb_firewall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/models/lb_firewall.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/parameters.yml -------------------------------------------------------------------------------- /specification/resources/load_balancers/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/load_balancers/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/alert_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/alert_policy.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/alerts.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/destination.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/destination.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/metrics.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/metrics_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/metrics_data.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/metrics_result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/metrics_result.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/sink_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/sink_resource.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/sinks_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/sinks_response.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/models/slack_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/models/slack_details.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/monitoring_create_sink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/monitoring_create_sink.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/monitoring_delete_sink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/monitoring_delete_sink.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/monitoring_get_sink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/monitoring_get_sink.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/monitoring_list_sinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/monitoring_list_sinks.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/parameters.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/responses/destination.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/responses/destination.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/responses/list_sinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/responses/list_sinks.yml -------------------------------------------------------------------------------- /specification/resources/monitoring/responses/sinks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/monitoring/responses/sinks.yml -------------------------------------------------------------------------------- /specification/resources/nfs/examples/curl/nfs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/examples/curl/nfs_create.yml -------------------------------------------------------------------------------- /specification/resources/nfs/examples/curl/nfs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/examples/curl/nfs_delete.yml -------------------------------------------------------------------------------- /specification/resources/nfs/examples/curl/nfs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/examples/curl/nfs_get.yml -------------------------------------------------------------------------------- /specification/resources/nfs/examples/curl/nfs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/examples/curl/nfs_list.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_actions.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_actions_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_actions_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_create_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_create_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_get_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_get_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_list_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_list_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_request.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/models/nfs_snapshot_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/models/nfs_snapshot_response.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_actions_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_actions_create.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_create.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_delete.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_get.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_list.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_snapshot_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_snapshot_delete.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_snapshot_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_snapshot_get.yml -------------------------------------------------------------------------------- /specification/resources/nfs/nfs_snapshot_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/nfs_snapshot_list.yml -------------------------------------------------------------------------------- /specification/resources/nfs/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/parameters.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/bad_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/bad_request.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_actions.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_create.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_get.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_list.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_snapshot_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_snapshot_get.yml -------------------------------------------------------------------------------- /specification/resources/nfs/responses/nfs_snapshot_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/nfs/responses/nfs_snapshot_list.yml -------------------------------------------------------------------------------- /specification/resources/projects/examples/go/projects_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/examples/go/projects_get.yml -------------------------------------------------------------------------------- /specification/resources/projects/models/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/models/project.yml -------------------------------------------------------------------------------- /specification/resources/projects/models/resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/models/resource.yml -------------------------------------------------------------------------------- /specification/resources/projects/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/parameters.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_create.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_delete.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_get.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_get_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_get_default.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_list.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_list_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_list_resources.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_patch.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_patch_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_patch_default.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_update.yml -------------------------------------------------------------------------------- /specification/resources/projects/projects_update_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/projects_update_default.yml -------------------------------------------------------------------------------- /specification/resources/projects/responses/projects_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/responses/projects_list.yml -------------------------------------------------------------------------------- /specification/resources/projects/responses/resources_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/projects/responses/resources_list.yml -------------------------------------------------------------------------------- /specification/resources/regions/models/region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/regions/models/region.yml -------------------------------------------------------------------------------- /specification/resources/regions/regions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/regions/regions_list.yml -------------------------------------------------------------------------------- /specification/resources/regions/responses/all_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/regions/responses/all_regions.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/multiregistry.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | 3 | allOf: 4 | - $ref: 'registry_base.yml' 5 | -------------------------------------------------------------------------------- /specification/resources/registry/models/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/registry.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/registry_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/registry_base.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/repository.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/repository_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/repository_tag.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/repository_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/repository_v2.yml -------------------------------------------------------------------------------- /specification/resources/registry/models/subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/models/subscription.yml -------------------------------------------------------------------------------- /specification/resources/registry/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/parameters.yml -------------------------------------------------------------------------------- /specification/resources/registry/registries_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registries_create.yml -------------------------------------------------------------------------------- /specification/resources/registry/registries_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registries_delete.yml -------------------------------------------------------------------------------- /specification/resources/registry/registries_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registries_get.yml -------------------------------------------------------------------------------- /specification/resources/registry/registries_get_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registries_get_all.yml -------------------------------------------------------------------------------- /specification/resources/registry/registry_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registry_create.yml -------------------------------------------------------------------------------- /specification/resources/registry/registry_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registry_delete.yml -------------------------------------------------------------------------------- /specification/resources/registry/registry_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registry_get.yml -------------------------------------------------------------------------------- /specification/resources/registry/registry_get_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/registry/registry_get_options.yml -------------------------------------------------------------------------------- /specification/resources/reserved_ips/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/reserved_ips/parameters.yml -------------------------------------------------------------------------------- /specification/resources/reserved_ips/reservedIPs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/reserved_ips/reservedIPs_get.yml -------------------------------------------------------------------------------- /specification/resources/reserved_ips/reservedIPs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/reserved_ips/reservedIPs_list.yml -------------------------------------------------------------------------------- /specification/resources/reserved_ipv6/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/reserved_ipv6/parameters.yml -------------------------------------------------------------------------------- /specification/resources/reserved_ipv6/reservedIPv6_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/reserved_ipv6/reservedIPv6_get.yml -------------------------------------------------------------------------------- /specification/resources/sizes/examples/curl/sizes_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/examples/curl/sizes_list.yml -------------------------------------------------------------------------------- /specification/resources/sizes/examples/go/sizes_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/examples/go/sizes_list.yml -------------------------------------------------------------------------------- /specification/resources/sizes/examples/ruby/sizes_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/examples/ruby/sizes_list.yml -------------------------------------------------------------------------------- /specification/resources/sizes/models/disk_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/models/disk_info.yml -------------------------------------------------------------------------------- /specification/resources/sizes/models/gpu_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/models/gpu_info.yml -------------------------------------------------------------------------------- /specification/resources/sizes/models/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/models/size.yml -------------------------------------------------------------------------------- /specification/resources/sizes/responses/all_sizes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/responses/all_sizes.yml -------------------------------------------------------------------------------- /specification/resources/sizes/sizes_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/sizes/sizes_list.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/models/snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/models/snapshots.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/parameters.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/responses/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/responses/examples.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/responses/snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/responses/snapshots.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/snapshots_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/snapshots_delete.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/snapshots_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/snapshots_get.yml -------------------------------------------------------------------------------- /specification/resources/snapshots/snapshots_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/snapshots/snapshots_list.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_create.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_delete.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_get.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_list.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_patch.yml -------------------------------------------------------------------------------- /specification/resources/spaces/key_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/key_update.yml -------------------------------------------------------------------------------- /specification/resources/spaces/models/grant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/models/grant.yml -------------------------------------------------------------------------------- /specification/resources/spaces/models/key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/models/key.yml -------------------------------------------------------------------------------- /specification/resources/spaces/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/parameters.yml -------------------------------------------------------------------------------- /specification/resources/spaces/responses/bad_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/responses/bad_request.yml -------------------------------------------------------------------------------- /specification/resources/spaces/responses/key_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/responses/key_create.yml -------------------------------------------------------------------------------- /specification/resources/spaces/responses/key_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/responses/key_get.yml -------------------------------------------------------------------------------- /specification/resources/spaces/responses/key_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/responses/key_list.yml -------------------------------------------------------------------------------- /specification/resources/spaces/responses/key_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/spaces/responses/key_update.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/attributes/ssh_key_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/attributes/ssh_key_id.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/models/sshKeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/models/sshKeys.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/responses/sshKeys_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/responses/sshKeys_all.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/responses/sshKeys_new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/responses/sshKeys_new.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/sshKeys_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/sshKeys_create.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/sshKeys_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/sshKeys_delete.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/sshKeys_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/sshKeys_get.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/sshKeys_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/sshKeys_list.yml -------------------------------------------------------------------------------- /specification/resources/ssh_keys/sshKeys_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/ssh_keys/sshKeys_update.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/curl/tags_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/curl/tags_create.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/curl/tags_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/curl/tags_delete.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/curl/tags_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/curl/tags_get.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/curl/tags_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/curl/tags_list.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/go/tags_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/go/tags_create.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/go/tags_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/go/tags_delete.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/go/tags_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/go/tags_get.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/go/tags_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/go/tags_list.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/python/tags_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/python/tags_get.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/python/tags_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/python/tags_list.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/ruby/tags_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/ruby/tags_create.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/ruby/tags_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/ruby/tags_delete.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/ruby/tags_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/ruby/tags_get.yml -------------------------------------------------------------------------------- /specification/resources/tags/examples/ruby/tags_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/examples/ruby/tags_list.yml -------------------------------------------------------------------------------- /specification/resources/tags/models/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/models/tags.yml -------------------------------------------------------------------------------- /specification/resources/tags/models/tags_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/models/tags_metadata.yml -------------------------------------------------------------------------------- /specification/resources/tags/models/tags_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/models/tags_resource.yml -------------------------------------------------------------------------------- /specification/resources/tags/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/parameters.yml -------------------------------------------------------------------------------- /specification/resources/tags/responses/tags_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/responses/tags_all.yml -------------------------------------------------------------------------------- /specification/resources/tags/responses/tags_existing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/responses/tags_existing.yml -------------------------------------------------------------------------------- /specification/resources/tags/responses/tags_new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/responses/tags_new.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_assign_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_assign_resources.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_create.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_delete.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_get.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_list.yml -------------------------------------------------------------------------------- /specification/resources/tags/tags_unassign_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/tags/tags_unassign_resources.yml -------------------------------------------------------------------------------- /specification/resources/uptime/create_alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/create_alert.yml -------------------------------------------------------------------------------- /specification/resources/uptime/create_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/create_check.yml -------------------------------------------------------------------------------- /specification/resources/uptime/delete_alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/delete_alert.yml -------------------------------------------------------------------------------- /specification/resources/uptime/delete_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/delete_check.yml -------------------------------------------------------------------------------- /specification/resources/uptime/examples/curl/alert_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/examples/curl/alert_get.yml -------------------------------------------------------------------------------- /specification/resources/uptime/examples/curl/check_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/examples/curl/check_get.yml -------------------------------------------------------------------------------- /specification/resources/uptime/get_alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/get_alert.yml -------------------------------------------------------------------------------- /specification/resources/uptime/get_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/get_check.yml -------------------------------------------------------------------------------- /specification/resources/uptime/get_check_state.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/get_check_state.yml -------------------------------------------------------------------------------- /specification/resources/uptime/list_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/list_alerts.yml -------------------------------------------------------------------------------- /specification/resources/uptime/list_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/list_checks.yml -------------------------------------------------------------------------------- /specification/resources/uptime/models/alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/models/alert.yml -------------------------------------------------------------------------------- /specification/resources/uptime/models/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/models/check.yml -------------------------------------------------------------------------------- /specification/resources/uptime/models/notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/models/notification.yml -------------------------------------------------------------------------------- /specification/resources/uptime/models/state.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/models/state.yml -------------------------------------------------------------------------------- /specification/resources/uptime/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/parameters.yml -------------------------------------------------------------------------------- /specification/resources/uptime/responses/all_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/responses/all_alerts.yml -------------------------------------------------------------------------------- /specification/resources/uptime/responses/all_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/responses/all_checks.yml -------------------------------------------------------------------------------- /specification/resources/uptime/update_alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/update_alert.yml -------------------------------------------------------------------------------- /specification/resources/uptime/update_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/uptime/update_check.yml -------------------------------------------------------------------------------- /specification/resources/volumes/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/examples.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/attributes.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/volumeAction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/volumeAction.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/volume_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/volume_base.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/volume_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/volume_full.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/volumes_ext4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/volumes_ext4.yml -------------------------------------------------------------------------------- /specification/resources/volumes/models/volumes_xfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/models/volumes_xfs.yml -------------------------------------------------------------------------------- /specification/resources/volumes/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/parameters.yml -------------------------------------------------------------------------------- /specification/resources/volumes/responses/volume.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/responses/volume.yml -------------------------------------------------------------------------------- /specification/resources/volumes/responses/volumeAction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/responses/volumeAction.yml -------------------------------------------------------------------------------- /specification/resources/volumes/responses/volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/responses/volumes.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumeActions_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumeActions_get.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumeActions_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumeActions_list.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumeActions_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumeActions_post.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumeSnapshots_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumeSnapshots_create.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumeSnapshots_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumeSnapshots_list.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumes_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumes_create.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumes_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumes_delete.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumes_delete_byName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumes_delete_byName.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumes_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumes_get.yml -------------------------------------------------------------------------------- /specification/resources/volumes/volumes_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/volumes/volumes_list.yml -------------------------------------------------------------------------------- /specification/resources/vpc_nat_gateways/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpc_nat_gateways/examples.yml -------------------------------------------------------------------------------- /specification/resources/vpc_nat_gateways/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpc_nat_gateways/parameters.yml -------------------------------------------------------------------------------- /specification/resources/vpc_peerings/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpc_peerings/parameters.yml -------------------------------------------------------------------------------- /specification/resources/vpc_peerings/vpc_peerings_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpc_peerings/vpc_peerings_get.yml -------------------------------------------------------------------------------- /specification/resources/vpc_peerings/vpc_peerings_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpc_peerings/vpc_peerings_list.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_create.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_delete.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_get.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_list.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_patch.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/curl/vpcs_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/curl/vpcs_update.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_create.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_delete.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_get.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_list.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_patch.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/go/vpcs_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/go/vpcs_update.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/python/vpcs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/python/vpcs_get.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/examples/python/vpcs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/examples/python/vpcs_list.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/models/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/models/vpc.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/models/vpc_member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/models/vpc_member.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/parameters.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/responses/all_vpcs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/responses/all_vpcs.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/responses/existing_vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/responses/existing_vpc.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/responses/vpc_members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/responses/vpc_members.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/responses/vpc_peering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/responses/vpc_peering.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/responses/vpc_peerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/responses/vpc_peerings.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_create.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_create_peerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_create_peerings.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_delete.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_get.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_list.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_list_members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_list_members.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_list_peerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_list_peerings.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_patch.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_update.yml -------------------------------------------------------------------------------- /specification/resources/vpcs/vpcs_update_peerings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/resources/vpcs/vpcs_update_peerings.yml -------------------------------------------------------------------------------- /specification/shared/attributes/distribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/distribution.yml -------------------------------------------------------------------------------- /specification/shared/attributes/existing_tags_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/existing_tags_array.yml -------------------------------------------------------------------------------- /specification/shared/attributes/region_slug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/region_slug.yml -------------------------------------------------------------------------------- /specification/shared/attributes/regions_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/regions_array.yml -------------------------------------------------------------------------------- /specification/shared/attributes/tags_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/tags_array.yml -------------------------------------------------------------------------------- /specification/shared/attributes/tags_array_read.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/tags_array_read.yml -------------------------------------------------------------------------------- /specification/shared/attributes/urn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/attributes/urn.yml -------------------------------------------------------------------------------- /specification/shared/headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/headers.yml -------------------------------------------------------------------------------- /specification/shared/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/meta.yml -------------------------------------------------------------------------------- /specification/shared/meta_optional_total.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/meta_optional_total.yml -------------------------------------------------------------------------------- /specification/shared/models/action_link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/models/action_link.yml -------------------------------------------------------------------------------- /specification/shared/models/error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/models/error.yml -------------------------------------------------------------------------------- /specification/shared/models/error_with_root_causes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/models/error_with_root_causes.yml -------------------------------------------------------------------------------- /specification/shared/models/meta_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/models/meta_properties.yml -------------------------------------------------------------------------------- /specification/shared/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/pages.yml -------------------------------------------------------------------------------- /specification/shared/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/parameters.yml -------------------------------------------------------------------------------- /specification/shared/responses/accepted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/accepted.yml -------------------------------------------------------------------------------- /specification/shared/responses/bad_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/bad_request.yml -------------------------------------------------------------------------------- /specification/shared/responses/conflict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/conflict.yml -------------------------------------------------------------------------------- /specification/shared/responses/no_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/no_content.yml -------------------------------------------------------------------------------- /specification/shared/responses/not_found.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/not_found.yml -------------------------------------------------------------------------------- /specification/shared/responses/server_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/server_error.yml -------------------------------------------------------------------------------- /specification/shared/responses/too_many_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/too_many_requests.yml -------------------------------------------------------------------------------- /specification/shared/responses/unauthorized.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/unauthorized.yml -------------------------------------------------------------------------------- /specification/shared/responses/unexpected_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/unexpected_error.yml -------------------------------------------------------------------------------- /specification/shared/responses/unprocessable_entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/specification/shared/responses/unprocessable_entity.yml -------------------------------------------------------------------------------- /spectral/bundled.spectral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/bundled.spectral.yml -------------------------------------------------------------------------------- /spectral/functions/ensureAllArraysHaveItemTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/functions/ensureAllArraysHaveItemTypes.js -------------------------------------------------------------------------------- /spectral/functions/ensurePropertiesExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/functions/ensurePropertiesExample.js -------------------------------------------------------------------------------- /spectral/functions/ensureSchemaHasType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/functions/ensureSchemaHasType.js -------------------------------------------------------------------------------- /spectral/functions/ensureSnakeCaseWithDigits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/functions/ensureSnakeCaseWithDigits.js -------------------------------------------------------------------------------- /spectral/functions/validateOpIDNaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/functions/validateOpIDNaming.js -------------------------------------------------------------------------------- /spectral/ruleset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/openapi/HEAD/spectral/ruleset.yml -------------------------------------------------------------------------------- /tests/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------