gitextract_547idzy3/ ├── .changeset/ │ ├── config.json │ ├── fix-empty-error-response.md │ ├── honest-comics-worry.md │ ├── loose-enum-autocomplete.md │ └── yellow-meteors-rush.md ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 01_openapi-typescript-bug.yml │ │ ├── 01_openapi-typescript-feat.yml │ │ ├── 02_openapi-fetch-bug.yml │ │ ├── 02_openapi-fetch-feat.yml │ │ ├── 03_openapi-react-query-bug.yml │ │ ├── 03_openapi-react-query-feat.yml │ │ └── config.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ ├── issue-stale.yml │ ├── issue.yml │ ├── release.yml │ └── size-limit.yml ├── .gitignore ├── .nvmrc ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── biome.json ├── docs/ │ ├── .gitignore │ ├── .vitepress/ │ │ ├── config.ts │ │ ├── en.ts │ │ ├── ja.ts │ │ ├── shared.ts │ │ ├── theme/ │ │ │ ├── Contributors.vue │ │ │ ├── CustomLayout.vue │ │ │ ├── SponsorList.vue │ │ │ ├── index.ts │ │ │ └── style.css │ │ └── zh.ts │ ├── 6.x/ │ │ ├── about.md │ │ ├── advanced.md │ │ ├── cli.md │ │ ├── introduction.md │ │ └── node.md │ ├── CONTRIBUTING.md │ ├── README.md │ ├── _redirects │ ├── about.md │ ├── advanced.md │ ├── cli.md │ ├── data/ │ │ ├── contributors.json │ │ └── sponsors.json │ ├── examples.md │ ├── index.md │ ├── introduction.md │ ├── ja/ │ │ ├── about.md │ │ ├── advanced.md │ │ ├── cli.md │ │ ├── examples.md │ │ ├── index.md │ │ ├── introduction.md │ │ ├── migration-guide.md │ │ ├── node.md │ │ ├── openapi-fetch/ │ │ │ ├── api.md │ │ │ ├── examples.md │ │ │ ├── index.md │ │ │ ├── middleware-auth.md │ │ │ └── testing.md │ │ └── openapi-react-query/ │ │ ├── index.md │ │ ├── use-mutation.md │ │ ├── use-query.md │ │ └── use-suspense-query.md │ ├── migration-guide.md │ ├── node.md │ ├── openapi-fetch/ │ │ ├── api.md │ │ ├── examples.md │ │ ├── index.md │ │ ├── middleware-auth.md │ │ └── testing.md │ ├── openapi-react-query/ │ │ ├── index.md │ │ ├── query-options.md │ │ ├── use-infinite-query.md │ │ ├── use-mutation.md │ │ ├── use-query.md │ │ └── use-suspense-query.md │ ├── package.json │ ├── public/ │ │ ├── googlec446be7f016b2162.html │ │ ├── make-scrollable-code-focusable.js │ │ └── robots.txt │ ├── scripts/ │ │ └── update-contributors.js │ ├── tsconfig.json │ └── zh/ │ ├── about.md │ ├── advanced.md │ ├── cli.md │ ├── examples.md │ ├── index.md │ ├── introduction.md │ ├── node.md │ └── openapi-fetch/ │ ├── api.md │ ├── examples.md │ ├── index.md │ ├── middleware-auth.md │ └── testing.md ├── package.json ├── packages/ │ ├── openapi-fetch/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── biome.json │ │ ├── build.config.ts │ │ ├── examples/ │ │ │ ├── nextjs/ │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── app/ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── lib/ │ │ │ │ │ └── api/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ └── v1.json │ │ │ │ ├── next.config.js │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ ├── sveltekit/ │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src/ │ │ │ │ │ ├── app.d.ts │ │ │ │ │ ├── app.html │ │ │ │ │ ├── hooks.server.ts │ │ │ │ │ ├── lib/ │ │ │ │ │ │ └── api/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── v1.d.ts │ │ │ │ │ │ └── v1.json │ │ │ │ │ └── routes/ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── page-data/ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── +page.ts │ │ │ │ ├── svelte.config.js │ │ │ │ ├── tsconfig.json │ │ │ │ └── vite.config.ts │ │ │ └── vue-3/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── env.d.ts │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── App.vue │ │ │ │ ├── assets/ │ │ │ │ │ ├── base.css │ │ │ │ │ └── main.css │ │ │ │ ├── composables/ │ │ │ │ │ └── catfact-query.ts │ │ │ │ ├── generated/ │ │ │ │ │ └── catfact.d.ts │ │ │ │ ├── lib/ │ │ │ │ │ └── index.ts │ │ │ │ ├── main.ts │ │ │ │ └── schema/ │ │ │ │ └── catfact.json │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── src/ │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── test/ │ │ │ ├── bench/ │ │ │ │ └── index.bench.js │ │ │ ├── common/ │ │ │ │ ├── create-client-e2e.test.js │ │ │ │ ├── create-client.test.ts │ │ │ │ ├── params.test.ts │ │ │ │ ├── request.test.ts │ │ │ │ ├── response.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── common.d.ts │ │ │ │ └── common.yaml │ │ │ ├── e2e/ │ │ │ │ ├── app/ │ │ │ │ │ ├── app.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── schemas/ │ │ │ │ │ │ ├── e2e.d.ts │ │ │ │ │ │ └── e2e.yaml │ │ │ │ │ └── vite.config.ts │ │ │ │ └── index.e2e.ts │ │ │ ├── examples/ │ │ │ │ ├── examples.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── github.d.ts │ │ │ │ └── stripe.d.ts │ │ │ ├── helpers.ts │ │ │ ├── http-methods/ │ │ │ │ ├── delete.test.ts │ │ │ │ ├── get.test.ts │ │ │ │ ├── head.test.ts │ │ │ │ ├── options.test.ts │ │ │ │ ├── patch.test.ts │ │ │ │ ├── post.test.ts │ │ │ │ ├── put.test.ts │ │ │ │ ├── request.test.ts │ │ │ │ ├── schemas/ │ │ │ │ │ ├── delete.d.ts │ │ │ │ │ ├── delete.yaml │ │ │ │ │ ├── get.d.ts │ │ │ │ │ ├── get.yaml │ │ │ │ │ ├── head.d.ts │ │ │ │ │ ├── head.yaml │ │ │ │ │ ├── options.d.ts │ │ │ │ │ ├── options.yaml │ │ │ │ │ ├── patch.d.ts │ │ │ │ │ ├── patch.yaml │ │ │ │ │ ├── post.d.ts │ │ │ │ │ ├── post.yaml │ │ │ │ │ ├── put.d.ts │ │ │ │ │ ├── put.yaml │ │ │ │ │ ├── trace.d.ts │ │ │ │ │ └── trace.yaml │ │ │ │ └── trace.test.ts │ │ │ ├── middleware/ │ │ │ │ ├── middleware.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── middleware.d.ts │ │ │ │ └── middleware.yaml │ │ │ ├── never-response/ │ │ │ │ ├── never-response.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── never-response.d.ts │ │ │ │ └── never-response.yaml │ │ │ ├── no-strict-null-checks/ │ │ │ │ ├── no-strict-null-checks.test.ts │ │ │ │ └── tsconfig.json │ │ │ ├── path-based-client/ │ │ │ │ ├── path-based-client.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── path-based-client.d.ts │ │ │ │ └── path-based-client.yaml │ │ │ ├── read-write-visibility/ │ │ │ │ ├── read-write.test.ts │ │ │ │ └── schemas/ │ │ │ │ ├── read-write.d.ts │ │ │ │ └── read-write.yaml │ │ │ ├── redocly.yaml │ │ │ └── types.test.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── openapi-metadata/ │ │ └── README.md │ ├── openapi-react-query/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── biome.json │ │ ├── build.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ ├── test/ │ │ │ ├── fixtures/ │ │ │ │ ├── api.d.ts │ │ │ │ ├── api.yaml │ │ │ │ └── mock-server.ts │ │ │ └── index.test.tsx │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── openapi-typescript/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin/ │ │ │ └── cli.js │ │ ├── biome.json │ │ ├── build.config.ts │ │ ├── examples/ │ │ │ ├── README.md │ │ │ ├── digital-ocean-api/ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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_instanceSize.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_get_tier.yml │ │ │ │ │ │ ├── apps_list.yml │ │ │ │ │ │ ├── apps_list_alerts.yml │ │ │ │ │ │ ├── apps_list_deployments.yml │ │ │ │ │ │ ├── apps_list_instanceSizes.yml │ │ │ │ │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ │ │ │ │ ├── apps_list_regions.yml │ │ │ │ │ │ ├── apps_list_tiers.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_instanceSize.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_get_tier.yml │ │ │ │ │ │ │ │ ├── apps_list.yml │ │ │ │ │ │ │ │ ├── apps_list_alerts.yml │ │ │ │ │ │ │ │ ├── apps_list_deployments.yml │ │ │ │ │ │ │ │ ├── apps_list_instanceSizes.yml │ │ │ │ │ │ │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ │ │ │ │ │ │ ├── apps_list_regions.yml │ │ │ │ │ │ │ │ ├── apps_list_tiers.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 │ │ │ │ │ │ │ └── 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_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_get_tier.yml │ │ │ │ │ │ │ ├── apps_list.yml │ │ │ │ │ │ │ ├── apps_list_alerts.yml │ │ │ │ │ │ │ ├── apps_list_deployments.yml │ │ │ │ │ │ │ ├── apps_list_instanceSizes.yml │ │ │ │ │ │ │ ├── apps_list_metrics_bandwidth_usage.yml │ │ │ │ │ │ │ ├── apps_list_regions.yml │ │ │ │ │ │ │ ├── apps_list_tiers.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_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_spec.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.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_tier.yml │ │ │ │ │ │ │ ├── apps_update_app_request.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/ │ │ │ │ │ │ ├── all_tiers.yml │ │ │ │ │ │ ├── apps_get.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_metrics_bandwidth_usage.yml │ │ │ │ │ │ ├── get_tier.yml │ │ │ │ │ │ ├── list_alerts.yml │ │ │ │ │ │ ├── list_apps.yml │ │ │ │ │ │ ├── list_deployment.yml │ │ │ │ │ │ ├── list_instance.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/ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── examples.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 │ │ │ │ │ ├── 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_topic.yml │ │ │ │ │ │ ├── databases_create_logsink.yml │ │ │ │ │ │ ├── databases_create_replica.yml │ │ │ │ │ │ ├── databases_delete.yml │ │ │ │ │ │ ├── databases_delete_connectionPool.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_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_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_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_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_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_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_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_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_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/ │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── backup.yml │ │ │ │ │ │ │ ├── ca.yml │ │ │ │ │ │ │ ├── connection_pool.yml │ │ │ │ │ │ │ ├── connection_pool_update.yml │ │ │ │ │ │ │ ├── connection_pools.yml │ │ │ │ │ │ │ ├── database.yml │ │ │ │ │ │ │ ├── database_backup.yml │ │ │ │ │ │ │ ├── database_cluster.yml │ │ │ │ │ │ │ ├── database_cluster_resize.yml │ │ │ │ │ │ │ ├── database_config.yml │ │ │ │ │ │ │ ├── database_connection.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_service_endpoint.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.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/ │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── mongo.yml │ │ │ │ │ │ │ ├── mysql.yml │ │ │ │ │ │ │ ├── mysql_settings.yml │ │ │ │ │ │ │ ├── online_migration.yml │ │ │ │ │ │ │ ├── opensearch_connection.yml │ │ │ │ │ │ │ ├── opensearch_index.yml │ │ │ │ │ │ │ ├── opensearch_index_base.yml │ │ │ │ │ │ │ ├── options.yml │ │ │ │ │ │ │ ├── pgbouncer.yml │ │ │ │ │ │ │ ├── postgres.yml │ │ │ │ │ │ │ ├── redis.yml │ │ │ │ │ │ │ ├── source_database.yml │ │ │ │ │ │ │ ├── sql_mode.yml │ │ │ │ │ │ │ ├── timescaledb.yml │ │ │ │ │ │ │ ├── user_settings.yml │ │ │ │ │ │ │ └── version.yml │ │ │ │ │ │ ├── parameters.yml │ │ │ │ │ │ └── responses/ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── databases.yml │ │ │ │ │ │ ├── events_logs.yml │ │ │ │ │ │ ├── eviction_policy_response.yml │ │ │ │ │ │ ├── firewall_rules.yml │ │ │ │ │ │ ├── kafka_topic.yml │ │ │ │ │ │ ├── kafka_topics.yml │ │ │ │ │ │ ├── logsink.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/ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── examples.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/ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── examples.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_cancel_indexing_job.yml │ │ │ │ │ │ │ ├── genai_create_agent.yml │ │ │ │ │ │ │ ├── genai_create_agent_api_key.yml │ │ │ │ │ │ │ ├── genai_create_indexing_job.yml │ │ │ │ │ │ │ ├── genai_create_knowledge_base.yml │ │ │ │ │ │ │ ├── genai_create_knowledge_base_data_source.yml │ │ │ │ │ │ │ ├── genai_delete_agent.yml │ │ │ │ │ │ │ ├── genai_delete_agent_api_key.yml │ │ │ │ │ │ │ ├── genai_delete_knowledge_base.yml │ │ │ │ │ │ │ ├── genai_delete_knowledge_base_data_source.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_indexing_job.yml │ │ │ │ │ │ │ ├── genai_get_knowledge_base.yml │ │ │ │ │ │ │ ├── genai_list_agent_api_keys.yml │ │ │ │ │ │ │ ├── genai_list_agents.yml │ │ │ │ │ │ │ ├── genai_list_datacenter_regions.yml │ │ │ │ │ │ │ ├── genai_list_indexing_job_data_sources.yml │ │ │ │ │ │ │ ├── genai_list_indexing_jobs.yml │ │ │ │ │ │ │ ├── genai_list_knowledge_base_data_sources.yml │ │ │ │ │ │ │ ├── genai_list_knowledge_bases.yml │ │ │ │ │ │ │ ├── genai_list_models.yml │ │ │ │ │ │ │ ├── genai_regenerate_agent_api_key.yml │ │ │ │ │ │ │ ├── genai_update_agent.yml │ │ │ │ │ │ │ ├── genai_update_agent_api_key.yml │ │ │ │ │ │ │ ├── genai_update_agent_deployment_visibility.yml │ │ │ │ │ │ │ ├── genai_update_agent_function.yml │ │ │ │ │ │ │ ├── genai_update_attached_agent.yml │ │ │ │ │ │ │ └── genai_update_knowledge_base.yml │ │ │ │ │ │ ├── genai_attach_agent.yml │ │ │ │ │ │ ├── genai_attach_agent_function.yml │ │ │ │ │ │ ├── genai_attach_knowledge_base.yml │ │ │ │ │ │ ├── genai_cancel_indexing_job.yml │ │ │ │ │ │ ├── genai_create_agent.yml │ │ │ │ │ │ ├── genai_create_agent_api_key.yml │ │ │ │ │ │ ├── genai_create_indexing_job.yml │ │ │ │ │ │ ├── genai_create_knowledge_base.yml │ │ │ │ │ │ ├── genai_create_knowledge_base_data_source.yml │ │ │ │ │ │ ├── genai_delete_agent.yml │ │ │ │ │ │ ├── genai_delete_agent_api_key.yml │ │ │ │ │ │ ├── genai_delete_knowledge_base.yml │ │ │ │ │ │ ├── genai_delete_knowledge_base_data_source.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_indexing_job.yml │ │ │ │ │ │ ├── genai_get_knowledge_base.yml │ │ │ │ │ │ ├── genai_list_agent_api_keys.yml │ │ │ │ │ │ ├── genai_list_agents.yml │ │ │ │ │ │ ├── genai_list_datacenter_regions.yml │ │ │ │ │ │ ├── genai_list_indexing_job_data_sources.yml │ │ │ │ │ │ ├── genai_list_indexing_jobs.yml │ │ │ │ │ │ ├── genai_list_knowledge_base_data_sources.yml │ │ │ │ │ │ ├── genai_list_knowledge_bases.yml │ │ │ │ │ │ ├── genai_list_models.yml │ │ │ │ │ │ ├── genai_regenerate_agent_api_key.yml │ │ │ │ │ │ ├── genai_update_agent.yml │ │ │ │ │ │ ├── genai_update_agent_api_key.yml │ │ │ │ │ │ ├── genai_update_agent_deployment_visibility.yml │ │ │ │ │ │ ├── genai_update_agent_function.yml │ │ │ │ │ │ ├── genai_update_attached_agent.yml │ │ │ │ │ │ └── genai_update_knowledge_base.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/ │ │ │ │ │ │ │ ├── curl/ │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── 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_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 │ │ │ │ │ │ ├── examples.yml │ │ │ │ │ │ ├── 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_recycle_nodePool.yml │ │ │ │ │ │ ├── kubernetes_remove_registry.yml │ │ │ │ │ │ ├── kubernetes_run_clusterLint.yml │ │ │ │ │ │ ├── kubernetes_update_cluster.yml │ │ │ │ │ │ ├── kubernetes_update_nodePool.yml │ │ │ │ │ │ ├── kubernetes_upgrade_cluster.yml │ │ │ │ │ │ ├── models/ │ │ │ │ │ │ │ ├── associated_kubernetes_resources.yml │ │ │ │ │ │ │ ├── cluster.yml │ │ │ │ │ │ │ ├── cluster_registries.yml │ │ │ │ │ │ │ ├── cluster_update.yml │ │ │ │ │ │ │ ├── clusterlint_request.yml │ │ │ │ │ │ │ ├── clusterlint_results.yml │ │ │ │ │ │ │ ├── control_plane_firewall.yml │ │ │ │ │ │ │ ├── credentials.yml │ │ │ │ │ │ │ ├── maintenance_policy.yml │ │ │ │ │ │ │ ├── node.yml │ │ │ │ │ │ │ ├── node_pool.yml │ │ │ │ │ │ │ ├── options.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 │ │ │ │ │ │ └── updated_cluster.yml │ │ │ │ │ ├── load_balancers/ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── examples.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 │ │ │ │ │ ├── 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/ │ │ │ │ │ │ │ │ ├── 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/ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── registry.yml │ │ │ │ │ │ │ ├── registry_create.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 │ │ │ │ │ │ ├── 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_repositories.yml │ │ │ │ │ │ ├── all_repositories_v2.yml │ │ │ │ │ │ ├── docker_credentials.yml │ │ │ │ │ │ ├── garbage_collection.yml │ │ │ │ │ │ ├── garbage_collections.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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/ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── examples.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_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_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 │ │ │ │ │ └── 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 │ │ │ ├── digital-ocean-api.ts │ │ │ ├── enum-root-types.ts │ │ │ ├── enum-root-types.yaml │ │ │ ├── github-api-export-type-immutable.ts │ │ │ ├── github-api-immutable.ts │ │ │ ├── github-api-next.ts │ │ │ ├── github-api-next.yaml │ │ │ ├── github-api-required.ts │ │ │ ├── github-api-root-types.ts │ │ │ ├── github-api.ts │ │ │ ├── github-api.yaml │ │ │ ├── octokit-ghes-3.6-diff-to-api.json │ │ │ ├── octokit-ghes-3.6-diff-to-api.ts │ │ │ ├── simple-example.ts │ │ │ ├── simple-example.yaml │ │ │ ├── stripe-api.ts │ │ │ └── stripe-api.yaml │ │ ├── package.json │ │ ├── scripts/ │ │ │ ├── download-schemas.ts │ │ │ ├── schemas.ts │ │ │ └── update-examples.ts │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── lib/ │ │ │ │ ├── redoc.ts │ │ │ │ ├── ts.ts │ │ │ │ └── utils.ts │ │ │ ├── transform/ │ │ │ │ ├── components-object.ts │ │ │ │ ├── header-object.ts │ │ │ │ ├── index.ts │ │ │ │ ├── media-type-object.ts │ │ │ │ ├── operation-object.ts │ │ │ │ ├── parameter-object.ts │ │ │ │ ├── parameters-array.ts │ │ │ │ ├── path-item-object.ts │ │ │ │ ├── paths-enum.ts │ │ │ │ ├── paths-object.ts │ │ │ │ ├── request-body-object.ts │ │ │ │ ├── response-object.ts │ │ │ │ ├── responses-object.ts │ │ │ │ ├── schema-object.ts │ │ │ │ └── webhooks-object.ts │ │ │ └── types.ts │ │ ├── test/ │ │ │ ├── cjs.test.js │ │ │ ├── cli.test.ts │ │ │ ├── discriminators.test.ts │ │ │ ├── fixtures/ │ │ │ │ ├── _jsonschema-remote-obj.yaml │ │ │ │ ├── _parameters-test-partial.yaml │ │ │ │ ├── _path-object-refs-paths.yaml │ │ │ │ ├── _remote-ref-full.yaml │ │ │ │ ├── _remote-ref-partial.yaml │ │ │ │ ├── anchor-with-ref-test-2.yaml │ │ │ │ ├── anchor-with-ref-test.yaml │ │ │ │ ├── generate-params-test.yaml │ │ │ │ ├── jsonschema-defs.yaml │ │ │ │ ├── multi-line-descriptions.yaml │ │ │ │ ├── parameters-test.yaml │ │ │ │ ├── path-item-components.yaml │ │ │ │ ├── path-object-refs.yaml │ │ │ │ ├── redocly/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── openapi/ │ │ │ │ │ │ ├── a.yaml │ │ │ │ │ │ ├── b.yaml │ │ │ │ │ │ └── c.yaml │ │ │ │ │ └── redocly.yaml │ │ │ │ ├── redocly-flag/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── openapi/ │ │ │ │ │ │ ├── a.yaml │ │ │ │ │ │ ├── b.yaml │ │ │ │ │ │ └── c.yaml │ │ │ │ │ ├── redocly.alt.yaml │ │ │ │ │ └── redocly.yaml │ │ │ │ ├── redocly-lint-error/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── openapi/ │ │ │ │ │ │ └── openapi.yaml │ │ │ │ │ └── redocly.yaml │ │ │ │ └── yaml-merge.yaml │ │ │ ├── index.test.ts │ │ │ ├── invalid.test.ts │ │ │ ├── lib/ │ │ │ │ ├── ts.test.ts │ │ │ │ └── utils.test.ts │ │ │ ├── node-api.test.ts │ │ │ ├── test-helpers.ts │ │ │ ├── transform/ │ │ │ │ ├── components-object.test.ts │ │ │ │ ├── header-object.test.ts │ │ │ │ ├── operation-object.test.ts │ │ │ │ ├── path-item-object.test.ts │ │ │ │ ├── paths-enum.test.ts │ │ │ │ ├── paths-object.test.ts │ │ │ │ ├── request-body-object.test.ts │ │ │ │ ├── response-object.test.ts │ │ │ │ ├── schema-object/ │ │ │ │ │ ├── array.test.ts │ │ │ │ │ ├── boolean.test.ts │ │ │ │ │ ├── composition.test.ts │ │ │ │ │ ├── empty.test.ts │ │ │ │ │ ├── enum.test.ts │ │ │ │ │ ├── number.test.ts │ │ │ │ │ ├── object.test.ts │ │ │ │ │ └── string.test.ts │ │ │ │ └── webhooks-object.test.ts │ │ │ └── yaml.test.ts │ │ ├── tsconfig.examples.json │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── openapi-typescript-helpers/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── biome.json │ │ ├── build.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ └── tsconfig.json │ └── swr-openapi/ │ └── README.md ├── pnpm-workspace.yaml ├── renovate.json ├── tsconfig.json ├── turbo.json └── vitest.workspace.ts