diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..ae762de --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug Report +about: Report a bug or broken page in the API portal +title: "[BUG] " +labels: bug +assignees: '' +--- + +## Describe the bug +A clear and concise description of what the bug is. + +## Steps to reproduce +1. Go to '...' +2. Click on '...' +3. See error + +## Expected behavior +What you expected to happen. + +## Actual behavior +What actually happened. + +## Screenshots +If applicable, add screenshots to help explain your problem. + +## Environment +- OS: [e.g. Windows 11, macOS 14] +- Browser: [e.g. Chrome 124, Firefox 125] +- URL of the affected page: [e.g. https://...] + +## Additional context +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0efbb64 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Aruba Cloud Documentation + url: https://arubacloud.com/ + about: Visit the official Aruba Cloud website for general product documentation. diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000..7d18dee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,19 @@ +--- +name: Documentation Issue +about: Report missing, incorrect, or outdated API documentation +title: "[DOCS] " +labels: documentation +assignees: '' +--- + +## Affected page / API +Link to or name of the documentation page or API endpoint affected. + +## Issue description +Describe what is wrong, missing, or unclear. + +## Suggested correction +If you know the correct information, please provide it here. + +## Additional context +Add any other context, references, or screenshots here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..9399895 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,22 @@ +--- +name: Feature Request +about: Suggest a new feature or improvement for the API portal +title: "[FEATURE] " +labels: enhancement +assignees: '' +--- + +## Summary +A clear and concise description of the feature or improvement you'd like. + +## Motivation +Why is this feature needed? What problem does it solve? + +## Proposed solution +Describe the solution you'd like. Include mockups or examples if possible. + +## Alternatives considered +Are there any alternative solutions or workarounds you've considered? + +## Additional context +Add any other context, screenshots, or references here. diff --git a/.github/ISSUE_TEMPLATE/openapi_update.md b/.github/ISSUE_TEMPLATE/openapi_update.md new file mode 100644 index 0000000..93a7fb5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/openapi_update.md @@ -0,0 +1,19 @@ +--- +name: OpenAPI Spec Update +about: Request an update to an OpenAPI spec file used to generate the API docs +title: "[OPENAPI] " +labels: openapi +assignees: '' +--- + +## Affected spec +Which OpenAPI spec file needs updating? (e.g. `static/openapi/compute-provider.json`) + +## What changed +Describe the changes needed (new endpoints, updated schemas, deprecated operations, etc.). + +## Reference +Link to the source of truth (e.g. internal API changelog, Swagger UI, etc.). + +## Additional context +Any other context or notes for the reviewer. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ad74e39 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ +## Description +Brief description of the changes in this PR. + +Closes # + +## Type of change +- [ ] Bug fix +- [ ] New feature / improvement +- [ ] Documentation update +- [ ] OpenAPI spec update +- [ ] Refactor / chore +- [ ] CI/CD change + +## Changes made +- +- + +## OpenAPI spec changes +If you updated a spec file in `static/openapi/`, confirm you also ran: +``` +make regen-api-docs +``` +- [ ] API docs regenerated (if applicable) + +## Checklist +- [ ] The site builds without errors (`make build`) +- [ ] Changes have been tested locally (`make start`) +- [ ] No sensitive data (API keys, credentials) has been committed +- [ ] Documentation / CONTRIBUTING.md updated if needed + +## Screenshots (if applicable) + diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..e41bb93 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,155 @@ +# GitHub Copilot Instructions — Aruba Cloud API Portal + +## Project overview + +This is **arubacloud-api-portal**, a [Docusaurus v3](https://docusaurus.io/) static site that publishes interactive API reference documentation for the Aruba Cloud platform. API pages are **auto-generated** from OpenAPI 3.0 spec files using `docusaurus-plugin-openapi-docs` v4.x. + +- **Repo:** `Arubacloud/api` +- **License:** Apache 2.0 +- **Node.js:** >= 18 | **npm:** >= 10 +- **Build output:** `dist/` +- **Deployed to:** GitHub Pages via `.github/workflows/deploy.yml` + +--- + +## Project structure + +``` +. +├── docs/ +│ ├── documents/ ← AUTO-GENERATED — never edit manually +│ └── *.md ← Hand-written conceptual docs (intro, filters, pagination, etc.) +├── static/ +│ └── openapi/ ← Source of truth for all API specs (JSON) +├── src/ +│ ├── components/ ← Custom React components (HomepageFeatures, etc.) +│ ├── pages/ ← Custom Docusaurus pages (index.js homepage) +│ ├── css/ ← Global CSS (custom.css) +│ └── theme/ ← Swizzled Docusaurus theme components (Layout.js — GTM/dataLayer) +├── plugins/ +│ └── custom-encoding/ ← Custom plugin: injects GTM noscript tag and requestInterceptor.js +├── i18n/ +│ ├── en/ ← English translations +│ └── it/ ← Italian translations +├── .github/ +│ ├── workflows/deploy.yml ← CI/CD: build + deploy to GitHub Pages +│ ├── ISSUE_TEMPLATE/ ← Bug, feature, docs, openapi issue templates +│ └── PULL_REQUEST_TEMPLATE.md +├── docusaurus.config.js ← Main Docusaurus config +├── sidebars.js ← Sidebar config +├── Makefile ← Developer convenience commands +└── package.json +``` + +--- + +## Critical rules + +1. **Never edit files inside `docs/documents/`** — they are auto-generated from OpenAPI specs. After any spec change, run: + ```bash + make regen-api-docs + ``` +2. **OpenAPI specs live in `static/openapi/`** — these are the source of truth. Editing these and regenerating is the correct workflow. +3. **Versioned compute API:** Compute has two versions (`1.0` in `docs/documents/compute/` and `1.1` in `docs/documents/compute/1.1/`). Regenerate versioned docs separately: + ```bash + npm run clean-api-docs:version && npm run gen-api-docs:version + ``` +4. **Build output is `dist/`**, not the default `build/`. Always reference `dist/` for deployment and artifact paths. + +--- + +## Key commands + +| Command | What it does | +|---|---| +| `make install` | `npm install` | +| `make start` | Start dev server (auto-installs if needed) | +| `make build` | Build static site to `dist/` | +| `make clean` | Clear Docusaurus cache | +| `make regen-api-docs` | Clean + regenerate ALL API docs (main + versioned) | +| `make pre-pr` | Full local CI check: install → regen-api-docs → build | + +Always suggest `make pre-pr` before opening a Pull Request. + +--- + +## API services and their spec files + +| Key in config | Spec file | Output dir | +|---|---|---| +| `auditing` | `static/openapi/auditing.json` | `docs/documents/auditing` | +| `baremetal` | `static/openapi/baremetal-provider.json` | `docs/documents/baremetal` | +| `compute` (v1.0) | `static/openapi/compute-provider.json` | `docs/documents/compute` | +| `compute` (v1.1) | `static/openapi/compute-provider_v1.1.json` | `docs/documents/compute/1.1` | +| `container` | `static/openapi/container-provider.json` | `docs/documents/container` | +| `databse` (sic) | `static/openapi/database-provider.json` | `docs/documents/database` | +| `metering` | `static/openapi/metering.json` | `docs/documents/metering` | +| `network` | `static/openapi/network-provider.json` | `docs/documents/network` | +| `project` | `static/openapi/project.json` | `docs/documents/project` | +| `schedule` | `static/openapi/schedule-provider.json` | `docs/documents/schedule` | +| `security` | `static/openapi/security-provider.json` | `docs/documents/security` | +| `storage` | `static/openapi/storage-provider.json` | `docs/documents/storage` | + +> Note: the config key for database is `databse` (typo in `docusaurus.config.js`). Do not rename it without also updating the output dir and regenerating. + +--- + +## Docusaurus config highlights + +- **Theme registered:** `docusaurus-theme-openapi-docs` — required for `@theme/ApiItem` and all OpenAPI components. +- **Plugin ID:** `"openapi"` (used for `gen-api-docs`/`clean-api-docs` commands). +- **`docItemComponent`:** `"@theme/ApiItem"` — set in the `docs` preset options. +- **Webpack fallback:** A custom inline plugin in `docusaurus.config.js` sets `resolve.fallback: { path: false }` to suppress webpack 5 errors from `postman-code-generators`. +- **Custom plugins:** `custom-encoding` (GTM), `webpack-fallback-plugin` (inline). +- **i18n locales:** `en` (default), `it`. +- **Sidebar:** hideable, configured in `sidebars.js`. +- **Environment variables:** `URL` and `BASE_URL` control the site URL (used in CI via GitHub repo variables). + +--- + +## Custom theme components + +- **`src/theme/Layout.js`** — swizzled Layout that pushes `pageview` events to `window.dataLayer` (GTM integration) on every route change. Uses `useLocation` from `@docusaurus/router`. + +--- + +## i18n workflow + +Translations are in `i18n/en/` and `i18n/it/`. To extract new translatable strings after adding content: +```bash +npm run write-translations -- --locale it +``` + +--- + +## Common issues and fixes + +| Error | Cause | Fix | +|---|---|---| +| `Module not found: @theme/ResponseSamples` | Generated docs out of sync with theme version | `make regen-api-docs` | +| `Module not found: path` (postman-code-generators) | webpack 5 no longer polyfills Node core modules | Already fixed via `webpack-fallback-plugin` in `docusaurus.config.js` | +| `Permission denied` on Docusaurus binary (WSL) | Working on `/mnt/c/...` path | Run npm commands from Windows terminal, or work inside WSL home | +| `error: missing required argument 'id'` on gen-api-docs | Missing `all` argument | Scripts already fixed: `docusaurus gen-api-docs all` | +| `node_modules` empty/incomplete | Failed install (often EPERM on Windows paths) | `rm -rf node_modules package-lock.json && npm install` from Windows terminal | + +--- + +## Conventions + +- **Commits:** [Conventional Commits](https://www.conventionalcommits.org/) — `feat`, `fix`, `docs`, `chore`, `refactor`, `ci`, `openapi` +- **Branches:** `feat/`, `fix/`, `docs/`, `openapi/`, `chore/` +- **PR:** fill in `.github/PULL_REQUEST_TEMPLATE.md`; run `make pre-pr` before opening +- **No manual edits** to `docs/documents/` — always go through OpenAPI spec + regen + +--- + +## CI/CD pipeline (`.github/workflows/deploy.yml`) + +Triggers on push to `main` and `workflow_dispatch`. Steps: +1. `npm ci` +2. `npm run clean-api-docs && npm run gen-api-docs` (main configs) +3. `npm run clean-api-docs:version && npm run gen-api-docs:version` (compute v1.1) +4. `npm run build` (outputs to `dist/`) +5. Upload `dist/` as Pages artifact and deploy + +Environment variables `SITE_URL` and `BASE_URL` are set via GitHub repository variables (`vars.SITE_URL`, `vars.BASE_URL`). diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..66fecc8 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,66 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + name: Build Docusaurus site + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Regenerate API docs + run: | + npm run clean-api-docs + npm run gen-api-docs + npm run clean-api-docs:version + npm run gen-api-docs:version + + - name: Build website + run: npm run build + env: + URL: ${{ vars.SITE_URL }} + BASE_URL: ${{ vars.BASE_URL || '/' }} + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: dist + + deploy: + name: Deploy to GitHub Pages + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Configure Pages + uses: actions/configure-pages@v4 + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 0000000..c3ff631 --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,36 @@ +name: PR Validation + +on: + pull_request: + branches: + - main + +jobs: + validate: + name: Build and validate + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Regenerate API docs + run: | + npm run clean-api-docs + npm run gen-api-docs + npm run clean-api-docs:version + npm run gen-api-docs:version + + - name: Build website + run: npm run build + env: + URL: https://arubacloud.github.io + BASE_URL: /api/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..cd95c75 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,162 @@ +# Contributing to Aruba Cloud API Portal + +Thank you for your interest in contributing! This document explains how to set up the project locally, contribute code or documentation, and follow the project conventions. + +## Table of Contents + +- [Code of Conduct](#code-of-conduct) +- [Getting Started](#getting-started) +- [Development Workflow](#development-workflow) +- [Updating OpenAPI Specs](#updating-openapi-specs) +- [Commit Message Convention](#commit-message-convention) +- [Pull Request Process](#pull-request-process) +- [Troubleshooting](#troubleshooting) + +--- + +## Code of Conduct + +This project follows the [Contributor Covenant Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). By participating, you agree to uphold it. Please report unacceptable behavior to the maintainers. + +--- + +## Getting Started + +### Prerequisites + +- [Node.js](https://nodejs.org/) >= 18 +- npm >= 10 +- [Make](https://www.gnu.org/software/make/) (optional) +- **WSL users:** Clone and work inside your Linux home directory (e.g. `/home/youruser/`) to avoid file permission issues with npm scripts. If you work on `/mnt/c/...`, use a Windows terminal (PowerShell or CMD) for all npm commands. + +### Setup + +```bash +# Clone the repository +git clone https://github.com/Arubacloud/api.git +cd api + +# Install dependencies +npm install + +# Generate API docs from OpenAPI specs +npm run gen-api-docs + +# Start the development server +npm run start +# → http://localhost:3000 +``` + +To stop the server, press `Ctrl+C`. + +--- + +## Development Workflow + +1. **Fork** the repository and create a branch from `main`: + ```bash + git checkout -b feat/your-feature-name + ``` +2. Make your changes. +3. Build and test locally before committing: + ```bash + npm run build + ``` +4. Commit using the [convention below](#commit-message-convention). +5. Push your branch and open a Pull Request against `main`. + +### Branch naming + +| Prefix | Use case | +|---|---| +| `feat/` | New feature or content | +| `fix/` | Bug fix | +| `docs/` | Documentation only | +| `openapi/` | OpenAPI spec update | +| `chore/` | Tooling, CI, dependencies | + +--- + +## Updating OpenAPI Specs + +All API reference pages are **auto-generated** from the spec files in `static/openapi/`. Do not edit files inside `docs/documents/` directly. + +To update an API: + +1. Update the relevant file in `static/openapi/` (e.g. `compute-provider.json`). +2. Regenerate the docs: + ```bash + make regen-api-docs + # or + npm run clean-api-docs && npm run gen-api-docs + ``` +3. For versioned APIs (e.g. Compute v1.1): + ```bash + npm run clean-api-docs:version && npm run gen-api-docs:version + ``` +4. Review the generated pages in the dev server. +5. Commit both the updated spec and the regenerated docs. + +--- + +## Commit Message Convention + +This project follows [Conventional Commits](https://www.conventionalcommits.org/): + +``` +(optional scope): + +[optional body] + +[optional footer] +``` + +Common types: `feat`, `fix`, `docs`, `chore`, `refactor`, `ci`. + +Examples: +``` +feat(openapi): add compute v1.2 spec +fix(docs): correct broken link in storage API page +docs: update CONTRIBUTING with versioned API steps +chore(ci): update deploy workflow Node version to 22 +``` + +--- + +## Pull Request Process + +1. Ensure the site builds without errors (`npm run build`). +2. If you updated an OpenAPI spec, confirm you ran `make regen-api-docs`. +3. Fill in the PR template fully. +4. At least one maintainer review is required before merging. +5. Squash-merge is preferred for a clean history. + +--- + +## Troubleshooting + +### `Permission denied` when running Docusaurus (WSL) + +This happens when working on `/mnt/c/...`. Solutions: +- Move the project to your Linux home directory, or +- Use a Windows terminal for all npm/make commands, or +- Try: `chmod +x node_modules/.bin/docusaurus` (may not work on Windows-mounted paths) + +### `Module not found: @theme/ResponseSamples` + +The generated API docs are out of sync with the installed theme. Run: +```bash +make regen-api-docs +``` + +### `node_modules` missing or incomplete + +Delete and reinstall: +```bash +rm -rf node_modules package-lock.json +npm install +``` + +--- + +For questions, open a [GitHub Discussion](https://github.com/Arubacloud/api/discussions) or file an issue using the appropriate template. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..82ba0af --- /dev/null +++ b/Makefile @@ -0,0 +1,51 @@ +# Makefile for Docusaurus Project + +# Variables +NPM=npm +DOCUSAURUS=docusaurus + +.PHONY: install build start clean lint format docs gen-api-docs clean-api-docs regen-api-docs pre-pr + +install: + $(NPM) install + +build: + $(NPM) run build + +start: + @if [ ! -d node_modules ] || [ -z "$(shell ls -A node_modules)" ]; then \ + $(MAKE) install; \ + fi + $(NPM) run start + +clean: + $(NPM) run clear || $(NPM) run clean || rm -rf build .docusaurus node_modules + +lint: + $(NPM) run lint || echo "No lint script defined." + +format: + $(NPM) run format || echo "No format script defined." + +gen-api-docs: + $(NPM) run gen-api-docs + +clean-api-docs: + $(NPM) run clean-api-docs + +regen-api-docs: clean-api-docs gen-api-docs + $(NPM) run clean-api-docs:version + $(NPM) run gen-api-docs:version + +docs: + $(NPM) run docs || echo "No docs script defined." + +## +## pre-pr: run all checks locally before raising a Pull Request. +## Mirrors the CI pipeline: install → regen API docs → build. +## A successful run means the CI is very likely to pass. +## +pre-pr: install regen-api-docs build + @echo "" + @echo "✅ pre-pr checks passed. Safe to open a Pull Request." + diff --git a/README.md b/README.md index e84f94c..ac1d803 100644 --- a/README.md +++ b/README.md @@ -1 +1,99 @@ -# api \ No newline at end of file +# Aruba Cloud API Portal + +[![Deploy to GitHub Pages](https://github.com/Arubacloud/api/actions/workflows/deploy.yml/badge.svg)](https://github.com/Arubacloud/api/actions/workflows/deploy.yml) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) +[![Node.js](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org) + +The **Aruba Cloud API Portal** is the official developer documentation site for the [Aruba Cloud](https://arubacloud.com) platform APIs. It is built with [Docusaurus v3](https://docusaurus.io/) and auto-generates interactive API reference pages from OpenAPI specifications. + +## Features + +- Interactive API reference for all Aruba Cloud services +- Auto-generated from OpenAPI 3.0 specs using [docusaurus-plugin-openapi-docs](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs) +- Versioned API documentation (e.g. Compute API v1.0 and v1.1) +- Multilingual support (English and Italian) +- Full-text search powered by [docusaurus-lunr-search](https://github.com/praveenn77/docusaurus-lunr-search) +- Deployed automatically to GitHub Pages on every push to `main` + +## Covered APIs + +| Service | Spec file | +|---|---| +| Auditing | `static/openapi/auditing.json` | +| Bare Metal | `static/openapi/baremetal-provider.json` | +| Compute (v1.0, v1.1) | `static/openapi/compute-provider.json` | +| Container | `static/openapi/container-provider.json` | +| Database (DBaaS) | `static/openapi/database-provider.json` | +| Metering | `static/openapi/metering.json` | +| Network | `static/openapi/network-provider.json` | +| Project | `static/openapi/project.json` | +| Schedule | `static/openapi/schedule-provider.json` | +| Security | `static/openapi/security-provider.json` | +| Storage | `static/openapi/storage-provider.json` | + +## Prerequisites + +- [Node.js](https://nodejs.org/) >= 18 +- npm >= 10 +- [Make](https://www.gnu.org/software/make/) (optional, for convenience commands) + +## Quick Start + +```bash +# 1. Clone the repository +git clone https://github.com/Arubacloud/api.git +cd api + +# 2. Install dependencies +npm install + +# 3. Generate API docs from OpenAPI specs +npm run gen-api-docs + +# 4. Start the development server +npm run start +``` + +The site will be available at **http://localhost:3000**. + +## Available Commands + +| Command | Description | +|---|---| +| `make install` / `npm install` | Install all dependencies | +| `make start` / `npm run start` | Start local development server | +| `make build` / `npm run build` | Build the static site to `dist/` | +| `make clean` / `npm run clear` | Clear the Docusaurus build cache | +| `make gen-api-docs` | Generate API docs from OpenAPI specs | +| `make clean-api-docs` | Remove all generated API doc files | +| `make regen-api-docs` | Clean and regenerate all API docs (including versioned) | + +## Project Structure + +``` +. +├── docs/ # Documentation pages +│ └── documents/ # Auto-generated API reference pages (do not edit manually) +├── static/ +│ └── openapi/ # OpenAPI spec files (source of truth for API docs) +├── src/ # Custom React components and pages +├── plugins/ # Custom Docusaurus plugins +├── i18n/ # Translations (en, it) +├── docusaurus.config.js # Docusaurus configuration +├── sidebars.js # Sidebar configuration +└── Makefile # Convenience commands +``` + +> **Note:** Files inside `docs/documents/` are auto-generated from the OpenAPI specs. Do not edit them manually — update the spec files in `static/openapi/` instead, then run `make regen-api-docs`. + +## Contributing + +Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute, report bugs, or request features. + +## License + +This project is licensed under the [Apache License 2.0](LICENSE). + +--- + +© Aruba S.p.A. — via San Clemente, 53 — 24036 Ponte San Pietro (BG) — All rights reserved. diff --git a/docs/documents/auditing/list-audit-events.ParamsDetails.json b/docs/documents/auditing/list-audit-events.ParamsDetails.json new file mode 100644 index 0000000..b508de0 --- /dev/null +++ b/docs/documents/auditing/list-audit-events.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string","default":"*"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/auditing/list-audit-events.RequestSchema.json b/docs/documents/auditing/list-audit-events.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/auditing/list-audit-events.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/auditing/list-audit-events.StatusCodes.json b/docs/documents/auditing/list-audit-events.StatusCodes.json new file mode 100644 index 0000000..d2c2b6c --- /dev/null +++ b/docs/documents/auditing/list-audit-events.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"required":["category","channel","event","identity","origin","severityLevel","status"],"type":"object","properties":{"logFormat":{"required":["version"],"type":"object","properties":{"version":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"LogFormatType"},"@timestamp":{"type":"string","format":"date-time"},"operation":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"OperationType"},"event":{"required":["id","type"],"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true},"type":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"EventType"},"category":{"required":["value"],"type":"object","properties":{"value":{"minLength":1,"type":"string"},"description":{"type":"string","nullable":true}},"additionalProperties":false,"title":"CategoryType"},"region":{"type":"object","properties":{"name":{"type":"string","nullable":true},"availabilityZone":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RegionType"},"severityLevel":{"minLength":1,"type":"string"},"origin":{"minLength":1,"type":"string"},"channel":{"minLength":1,"type":"string"},"status":{"required":["value"],"type":"object","properties":{"value":{"type":"string"},"description":{"type":"string","nullable":true},"code":{"type":"integer","format":"int32","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"StatusType"},"subStatus":{"type":"object","properties":{"value":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"SubStatusType"},"identity":{"required":["caller"],"type":"object","properties":{"caller":{"required":["subject"],"type":"object","properties":{"subject":{"type":"string"},"username":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"tenantId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Caller"}},"additionalProperties":false,"title":"Identity"},"properties":{"type":"object","additionalProperties":{},"nullable":true},"internal":{"required":["identity","properties","trace"],"type":"object","properties":{"trace":{"type":"object","properties":{"conversationId":{"type":"string","nullable":true},"correlationId":{"type":"string","nullable":true},"traceparent":{"type":"string","nullable":true},"tracestate":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Trace"},"identity":{"type":"object","properties":{"claims":{"type":"object","properties":{"aud":{"type":"string","nullable":true},"iss":{"type":"string","format":"uri","nullable":true}},"additionalProperties":false,"title":"Claims"}},"additionalProperties":false,"title":"InternalIdentity"},"properties":{"type":"object","additionalProperties":{}}},"additionalProperties":false,"title":"Internal"},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"categoryId":{"type":"string","nullable":true},"typologyId":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"impactedResources":{"type":"string","nullable":true}},"additionalProperties":false,"title":"EventsResponse"},"nullable":true}},"additionalProperties":false,"title":"AuditResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"required":["category","channel","event","identity","origin","severityLevel","status"],"type":"object","properties":{"logFormat":{"required":["version"],"type":"object","properties":{"version":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"LogFormatType"},"@timestamp":{"type":"string","format":"date-time"},"operation":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"OperationType"},"event":{"required":["id","type"],"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true},"type":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"EventType"},"category":{"required":["value"],"type":"object","properties":{"value":{"minLength":1,"type":"string"},"description":{"type":"string","nullable":true}},"additionalProperties":false,"title":"CategoryType"},"region":{"type":"object","properties":{"name":{"type":"string","nullable":true},"availabilityZone":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RegionType"},"severityLevel":{"minLength":1,"type":"string"},"origin":{"minLength":1,"type":"string"},"channel":{"minLength":1,"type":"string"},"status":{"required":["value"],"type":"object","properties":{"value":{"type":"string"},"description":{"type":"string","nullable":true},"code":{"type":"integer","format":"int32","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"StatusType"},"subStatus":{"type":"object","properties":{"value":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"SubStatusType"},"identity":{"required":["caller"],"type":"object","properties":{"caller":{"required":["subject"],"type":"object","properties":{"subject":{"type":"string"},"username":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"tenantId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Caller"}},"additionalProperties":false,"title":"Identity"},"properties":{"type":"object","additionalProperties":{},"nullable":true},"internal":{"required":["identity","properties","trace"],"type":"object","properties":{"trace":{"type":"object","properties":{"conversationId":{"type":"string","nullable":true},"correlationId":{"type":"string","nullable":true},"traceparent":{"type":"string","nullable":true},"tracestate":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Trace"},"identity":{"type":"object","properties":{"claims":{"type":"object","properties":{"aud":{"type":"string","nullable":true},"iss":{"type":"string","format":"uri","nullable":true}},"additionalProperties":false,"title":"Claims"}},"additionalProperties":false,"title":"InternalIdentity"},"properties":{"type":"object","additionalProperties":{}}},"additionalProperties":false,"title":"Internal"},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"categoryId":{"type":"string","nullable":true},"typologyId":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"impactedResources":{"type":"string","nullable":true}},"additionalProperties":false,"title":"EventsResponse"},"nullable":true}},"additionalProperties":false,"title":"AuditResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"required":["category","channel","event","identity","origin","severityLevel","status"],"type":"object","properties":{"logFormat":{"required":["version"],"type":"object","properties":{"version":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"LogFormatType"},"@timestamp":{"type":"string","format":"date-time"},"operation":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"OperationType"},"event":{"required":["id","type"],"type":"object","properties":{"id":{"type":"string","format":"uuid"},"value":{"type":"string","nullable":true},"type":{"minLength":1,"type":"string"}},"additionalProperties":false,"title":"EventType"},"category":{"required":["value"],"type":"object","properties":{"value":{"minLength":1,"type":"string"},"description":{"type":"string","nullable":true}},"additionalProperties":false,"title":"CategoryType"},"region":{"type":"object","properties":{"name":{"type":"string","nullable":true},"availabilityZone":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RegionType"},"severityLevel":{"minLength":1,"type":"string"},"origin":{"minLength":1,"type":"string"},"channel":{"minLength":1,"type":"string"},"status":{"required":["value"],"type":"object","properties":{"value":{"type":"string"},"description":{"type":"string","nullable":true},"code":{"type":"integer","format":"int32","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"StatusType"},"subStatus":{"type":"object","properties":{"value":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"properties":{"nullable":true}},"additionalProperties":false,"title":"SubStatusType"},"identity":{"required":["caller"],"type":"object","properties":{"caller":{"required":["subject"],"type":"object","properties":{"subject":{"type":"string"},"username":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"tenantId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Caller"}},"additionalProperties":false,"title":"Identity"},"properties":{"type":"object","additionalProperties":{},"nullable":true},"internal":{"required":["identity","properties","trace"],"type":"object","properties":{"trace":{"type":"object","properties":{"conversationId":{"type":"string","nullable":true},"correlationId":{"type":"string","nullable":true},"traceparent":{"type":"string","nullable":true},"tracestate":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Trace"},"identity":{"type":"object","properties":{"claims":{"type":"object","properties":{"aud":{"type":"string","nullable":true},"iss":{"type":"string","format":"uri","nullable":true}},"additionalProperties":false,"title":"Claims"}},"additionalProperties":false,"title":"InternalIdentity"},"properties":{"type":"object","additionalProperties":{}}},"additionalProperties":false,"title":"Internal"},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"categoryId":{"type":"string","nullable":true},"typologyId":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"impactedResources":{"type":"string","nullable":true}},"additionalProperties":false,"title":"EventsResponse"},"nullable":true}},"additionalProperties":false,"title":"AuditResponse"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/auditing/list-audit-events.api.mdx b/docs/documents/auditing/list-audit-events.api.mdx index 0e71253..b9395d9 100644 --- a/docs/documents/auditing/list-audit-events.api.mdx +++ b/docs/documents/auditing/list-audit-events.api.mdx @@ -5,7 +5,7 @@ description: "List Audit Events" sidebar_label: "List Audit Events" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/auditing/aruba-audit-api custom_edit_url: null diff --git a/docs/documents/auditing/sidebar.ts b/docs/documents/auditing/sidebar.ts index e143ca9..534f53b 100644 --- a/docs/documents/auditing/sidebar.ts +++ b/docs/documents/auditing/sidebar.ts @@ -1,26 +1,24 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/auditing/aruba-audit-api" + type: "doc", + id: "documents/auditing/aruba-audit-api", }, { - "type": "category", - "label": "Events", - "items": [ + type: "category", + label: "Events", + items: [ { - "type": "doc", - "id": "documents/auditing/list-audit-events", - "label": "List Audit Events", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/auditing/list-audit-events", + label: "List Audit Events", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/baremetal/check-hpc-creation-status.ParamsDetails.json b/docs/documents/baremetal/check-hpc-creation-status.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/baremetal/check-hpc-creation-status.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/check-hpc-creation-status.RequestSchema.json b/docs/documents/baremetal/check-hpc-creation-status.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/baremetal/check-hpc-creation-status.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/baremetal/check-hpc-creation-status.StatusCodes.json b/docs/documents/baremetal/check-hpc-creation-status.StatusCodes.json new file mode 100644 index 0000000..c46dedb --- /dev/null +++ b/docs/documents/baremetal/check-hpc-creation-status.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"status":{"enum":["InProgress","Succeeded","Failed"],"type":"string","description":"Represents the status of an asynchronous execution, which can be in progress, succeeded, or failed.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.AsyncExecStatus"},"resourceUri":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DTO for returning the status of an asynchronous execution, along with an optional resource URI \r\nthat can be used to check the status or retrieve results.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecStatusDto"}},"application/json":{"schema":{"type":"object","properties":{"status":{"enum":["InProgress","Succeeded","Failed"],"type":"string","description":"Represents the status of an asynchronous execution, which can be in progress, succeeded, or failed.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.AsyncExecStatus"},"resourceUri":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DTO for returning the status of an asynchronous execution, along with an optional resource URI \r\nthat can be used to check the status or retrieve results.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecStatusDto"}},"text/json":{"schema":{"type":"object","properties":{"status":{"enum":["InProgress","Succeeded","Failed"],"type":"string","description":"Represents the status of an asynchronous execution, which can be in progress, succeeded, or failed.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.AsyncExecStatus"},"resourceUri":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DTO for returning the status of an asynchronous execution, along with an optional resource URI \r\nthat can be used to check the status or retrieve results.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecStatusDto"}}}},"303":{"description":"See Other"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/check-hpc-creation-status.api.mdx b/docs/documents/baremetal/check-hpc-creation-status.api.mdx index d665c42..c2c8255 100644 --- a/docs/documents/baremetal/check-hpc-creation-status.api.mdx +++ b/docs/documents/baremetal/check-hpc-creation-status.api.mdx @@ -5,7 +5,7 @@ description: "Check HPC creation status" sidebar_label: "Check HPC creation status" hide_title: true hide_table_of_contents: true -api: eJztWE1vGzcQ/SsETw2g7KpxehHSAIrttGrgyLAd5BAZBcUdaRmvyM2QK8dZ6L93hquVJUt2XScochB8MMWdj8fHx49hLYOaetn7JP88PfTysiNLhWoGAZB7a2nph+zJEt1n0GGQyY40ljtUyKmN8KUyCJnsBaygI73OYaZkr5bhpmRHH9DYqVwsOqtY5kcEUaV5PieQxtk22pcK8IZ+ZOA1mjLwp568yEFwAvABMtE/HYhbt/sScYyJqopAXb9S2kvG6EtnPXi2ftHt8r/NRMN35KedDWBDDAlfQ1oWirHV26ncmAklF6K2BAymCe2DClVsga1mPDEDe4puSvk9GZ9XWgNkwBS+VaagBoHbRr8O7AxK8iZUXgQio8kg3EQoK5S/sTpHZx11wVfQFTt1xHVudC40WYxBGCvKJYSO8C2CjnAoJhFDQjmDCQWD6GM1VsnhrDwHnBsNyRuFQIJSBQ1jbjLApD8mpEpzJp+cuAwKn/QZyDEBOG8IWETKXYUaPqDZNUW2Kgo15pysGtKGVFlmOGhMteJ0ogoPdzk5uhiKCeFHCBVaCvh4alThyPzahJytXNlkFC1a8eFsIEY4siFXoWWw8qS94ASJQF9tpIoQ0MCcVepJcv57yDwKbotK6pORnbIsjFZsmH72bq/KvSp/AlXGXXIvx70cfwY5Mj8H3YPts/0cQAwJETLlL7svty3euyDeuspmP+IS0Hz919lcUfAIy9slszQ1hHFKA+pImuKZCk3XwYtdzhmRaYpH5TGWMln9GFD3irG+HZk8MRqdd5NAM1a+h3DoEJKTuU7IgULNjiI0/90n3J7yJ1H+pO17z/UTuOZ4v+2qOwY0UuTNlbc/QHGM6DBODhU7R8PDtqra9DqMmywVfUIjxCWz3G1pILR35o6qMTmFOHlcpfVkuqwBfVqvqsEFd8Yt1qfNNrzae9O81D6dOWuCw7Q22YILrgixqSwrJMplHkLpe2lK9VyiOIIuXJUl2s0kl12eThQ04SZ6vAEKjtS8XP90zqprhNUarOaGor6D7ZpwQIUcBvHXxws6b66AS8FlWdmvaOhovkVG2sIyB5VBQ6mxExfjb5w9Ow6c0mxlfcB2ZPnvyF3bwqksnn2vlMgRJr+PZErSsTSSdNy6Pm9ZT3jpjaQICmmuyPbvcaHs1Ui+FkNy4mp3QnePV6l6TXDawpeK2qSbdPksK50PMxVX75KBh4SxMZ4VyWtnHEWM01ovRfOpfThg7976I8JKN9S+Qwz1sHZYiI162NfEO1xOcDlqXY+VpztPsVhwd1P5s0Qy43kJZrtvNPXt0fzgu8DOgV2RkO6+O8xVUbFl1OpcoWnW/38C8svZ8vnjmbgvdatme7Oes4V0Syu/j/yPiWlOFpdktVwfPOzmQ59uv2VYc1mPerm2wfxxfEHL6h+nPYKS +api: eJztWN1v2zYQ/1eIe9oAVUo/9iK0Bdw4Xb2ijdEk2EMcDDR1ttjIJHs8Oc0M/e/DSZbj1EmXtcXQByMPDsj74u9+vNNxBaznEfJzeDM+jHCRQNCkF8hIsroCpxcIOQTyH9HwqIAErJMFzSUkQPiptoQF5Ew1JhBNiQsN+Qr4OohiZLJuDk2TbGzZH2FEB/toiRStd721TzXSNSRQYDRkA8tWDqclKnGAkbFQg/FI3ajd50hszHRdMeTwGJrmQmKMwbuIUaSfHBzIz21Hx28hAeMdo+PWJH7mLFRaYlvtuvJTARQSgTYgse1MR9Zct/+hqxeSmJEbk58TxggJnNTGIBYoEL7WtsJCcrYb/XZgHzAQRnQcFZeoOg/Kz5R2SsdrZ0ryztdR4Wc0tSgl6qq0plRGOzVFZZ0K6xASFfsIEuVJzdoYUkiALVcSxIDqqU4PF+EEaWkNpq804QJZV2PyS1sgpYNpZNJGPMX0nS+wiulAAjn6jOakA6BpIfc1GTwje1eKXF1Veio+hTVNk4AuCitGW1cbTGe6ivglJsPTYzXzpAi5Jmfd/OHQ6Mq7ubqyXIqUD51H1Uerzj6M1IQmjkvNPYJ1xEKxV6ZEc3nLVRsCWVwKS2NdcfweMIfsd6AcsocWnRAqa7QIZh+j37Nyz8qfgJVtldzTcU/Hn4GOgs/Tg6e7vf0EUR1ziSSQPzt4tivx3rN67WtX/IiPgG73X7O5geABkjdXZi1qHeMcCRKYeVpo7paePrlLuUDWtnqQH+sia2ceEtS9ZFzdnAzeWUM++hmngxjeIx96wvTd0qRj8tMKF8M2tPjdHW4P+TdB/k3le4/1N2At9n67a+4YOUaS4irlD0kdEXlqkzMYj4bHh/1UdVvrsC2yb8aHyhC2V2ZdbSGBBXLpC8hhjm3yZErLIVvPgDFbbabBRhbbEhuzrgxvam9WBhOzhXeWPWUrWzQycLUhdpNlTRXkUDKHmGeZDjbVYsFUvi5S4xcgY1dEU5Pl61bjFWpCgvz8YnvrRFjXEasX2ORGB/sWd2fCkYtIrP7481Sxv0QZBddj5aDm0pP9u0WkHyxL1AV2kFo38639W73njoYT7I7Xr8hOnPwN/ZWrvC7a3vdcq5Jw9mICmQ/odLDZtFd91KOeytWbgGJNc+QXE/hrWml3OYGX6jigk2l3Zit8numXkEA/+ObwOD1ID6SXBR95odvbu0bga8S4dZ4NyFs9rkm6tK7WpDnvHw5EO99+RNjwBpIvgYEEhDtCxI49omvbb7jSRxarq9VURzyjqmlkuZv8hSKFjXIFi7u/aFY3rfmr7wJ3HuwSr3feHZa6qkWy5epSk+3u/38K5JcP6+ePX9V9rns2u+ttn31IN7DK+8j/6NgW0Fw0SX8/5NjdxsAYDLylsm31YqvA/H50Ck3zD6c9gpI= sidebar_class_name: "get api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/create-hpc.ParamsDetails.json b/docs/documents/baremetal/create-hpc.ParamsDetails.json new file mode 100644 index 0000000..9df9d02 --- /dev/null +++ b/docs/documents/baremetal/create-hpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/create-hpc.RequestSchema.json b/docs/documents/baremetal/create-hpc.RequestSchema.json new file mode 100644 index 0000000..a2974bd --- /dev/null +++ b/docs/documents/baremetal/create-hpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"node":{"type":"object","properties":{"sku":{"type":"string"},"os":{"type":"string"},"replicas":{"type":"integer","format":"int32"},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int32"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the storage configuration for HPC nodes, including size and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCStorageDto"},"ram":{"type":"object","properties":{"size":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the RAM configuration for HPC nodes, including size in GB.\r\nThis is optional as some SKUs may not require explicit RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCRamDto"}},"additionalProperties":false,"description":"DTO representing the specifications of the HPC nodes, including SKU, operating system, number of replicas,\r\nstorage details, and RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNodeDto"},"network":{"type":"object","properties":{"publicSize":{"type":"integer","format":"int32"},"bandwidth":{"type":"string"},"multiCloudLink":{"type":"boolean"},"mobileVpnEnabled":{"type":"boolean"},"loadBalancer":{"type":"object","properties":{"sku":{"type":"string"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the load balancer configuration for the HPC, including SKU and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCLoadBalancerDto"}},"additionalProperties":false,"description":"DTO representing the network configuration for the HPC, including public IP size, bandwidth, multi-cloud link capability,\r\nmobile VPN support, and load balancer details.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNetworkDto"},"firewall":{"type":"object","properties":{"sku":{"type":"string"}},"additionalProperties":false,"description":"DTO representing the firewall configuration for the HPC, including SKU information.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCFirewallDto"},"management":{"type":"object","properties":{"notes":{"type":"string","nullable":true},"backup":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"licenses":{"type":"integer","format":"int32"},"storages":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the backup configuration for the HPC, including the number of licenses and \r\nstorage units required for backup.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDetailsDto"}},"additionalProperties":false,"description":"DTO representing the backup configuration for the HPC, including whether backup is enabled and details about licenses and storage.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDto"},"disasterRecovery":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"managers":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the disaster recovery configuration for the HPC, including the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDetailsDto"}},"additionalProperties":false,"description":"DTO representing the disaster recovery configuration for the HPC, including whether disaster recovery is\r\nenabled and details about the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDto"},"premiumAssistance":{"type":"boolean"}},"additionalProperties":false,"description":"DTO representing the management options for the HPC, including notes, backup configuration, disaster recovery settings,","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCManagementDto"}},"additionalProperties":false,"description":"DTO which encapsulates all relevant information about the HPC, such as node specifications, \r\nnetwork configuration, firewall settings, and management options.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesDto"}},"additionalProperties":false,"description":"DTO representing a HPC (High Performance Computing) resource, including its properties and configuration details.\r\nThis DTO is used in the API by client to create HPC resources.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"node":{"type":"object","properties":{"sku":{"type":"string"},"os":{"type":"string"},"replicas":{"type":"integer","format":"int32"},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int32"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the storage configuration for HPC nodes, including size and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCStorageDto"},"ram":{"type":"object","properties":{"size":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the RAM configuration for HPC nodes, including size in GB.\r\nThis is optional as some SKUs may not require explicit RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCRamDto"}},"additionalProperties":false,"description":"DTO representing the specifications of the HPC nodes, including SKU, operating system, number of replicas,\r\nstorage details, and RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNodeDto"},"network":{"type":"object","properties":{"publicSize":{"type":"integer","format":"int32"},"bandwidth":{"type":"string"},"multiCloudLink":{"type":"boolean"},"mobileVpnEnabled":{"type":"boolean"},"loadBalancer":{"type":"object","properties":{"sku":{"type":"string"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the load balancer configuration for the HPC, including SKU and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCLoadBalancerDto"}},"additionalProperties":false,"description":"DTO representing the network configuration for the HPC, including public IP size, bandwidth, multi-cloud link capability,\r\nmobile VPN support, and load balancer details.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNetworkDto"},"firewall":{"type":"object","properties":{"sku":{"type":"string"}},"additionalProperties":false,"description":"DTO representing the firewall configuration for the HPC, including SKU information.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCFirewallDto"},"management":{"type":"object","properties":{"notes":{"type":"string","nullable":true},"backup":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"licenses":{"type":"integer","format":"int32"},"storages":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the backup configuration for the HPC, including the number of licenses and \r\nstorage units required for backup.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDetailsDto"}},"additionalProperties":false,"description":"DTO representing the backup configuration for the HPC, including whether backup is enabled and details about licenses and storage.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDto"},"disasterRecovery":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"managers":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the disaster recovery configuration for the HPC, including the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDetailsDto"}},"additionalProperties":false,"description":"DTO representing the disaster recovery configuration for the HPC, including whether disaster recovery is\r\nenabled and details about the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDto"},"premiumAssistance":{"type":"boolean"}},"additionalProperties":false,"description":"DTO representing the management options for the HPC, including notes, backup configuration, disaster recovery settings,","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCManagementDto"}},"additionalProperties":false,"description":"DTO which encapsulates all relevant information about the HPC, such as node specifications, \r\nnetwork configuration, firewall settings, and management options.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesDto"}},"additionalProperties":false,"description":"DTO representing a HPC (High Performance Computing) resource, including its properties and configuration details.\r\nThis DTO is used in the API by client to create HPC resources.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"node":{"type":"object","properties":{"sku":{"type":"string"},"os":{"type":"string"},"replicas":{"type":"integer","format":"int32"},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int32"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the storage configuration for HPC nodes, including size and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCStorageDto"},"ram":{"type":"object","properties":{"size":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the RAM configuration for HPC nodes, including size in GB.\r\nThis is optional as some SKUs may not require explicit RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCRamDto"}},"additionalProperties":false,"description":"DTO representing the specifications of the HPC nodes, including SKU, operating system, number of replicas,\r\nstorage details, and RAM configuration.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNodeDto"},"network":{"type":"object","properties":{"publicSize":{"type":"integer","format":"int32"},"bandwidth":{"type":"string"},"multiCloudLink":{"type":"boolean"},"mobileVpnEnabled":{"type":"boolean"},"loadBalancer":{"type":"object","properties":{"sku":{"type":"string"},"replicas":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the load balancer configuration for the HPC, including SKU and number of replicas.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCLoadBalancerDto"}},"additionalProperties":false,"description":"DTO representing the network configuration for the HPC, including public IP size, bandwidth, multi-cloud link capability,\r\nmobile VPN support, and load balancer details.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCNetworkDto"},"firewall":{"type":"object","properties":{"sku":{"type":"string"}},"additionalProperties":false,"description":"DTO representing the firewall configuration for the HPC, including SKU information.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCFirewallDto"},"management":{"type":"object","properties":{"notes":{"type":"string","nullable":true},"backup":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"licenses":{"type":"integer","format":"int32"},"storages":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the backup configuration for the HPC, including the number of licenses and \r\nstorage units required for backup.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDetailsDto"}},"additionalProperties":false,"description":"DTO representing the backup configuration for the HPC, including whether backup is enabled and details about licenses and storage.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCBackupDto"},"disasterRecovery":{"type":"object","properties":{"enabled":{"type":"boolean"},"details":{"type":"object","properties":{"managers":{"type":"integer","format":"int32"}},"additionalProperties":false,"description":"DTO representing the details of the disaster recovery configuration for the HPC, including the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDetailsDto"}},"additionalProperties":false,"description":"DTO representing the disaster recovery configuration for the HPC, including whether disaster recovery is\r\nenabled and details about the number of managers required.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDisasterRecoveryDto"},"premiumAssistance":{"type":"boolean"}},"additionalProperties":false,"description":"DTO representing the management options for the HPC, including notes, backup configuration, disaster recovery settings,","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCManagementDto"}},"additionalProperties":false,"description":"DTO which encapsulates all relevant information about the HPC, such as node specifications, \r\nnetwork configuration, firewall settings, and management options.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesDto"}},"additionalProperties":false,"description":"DTO representing a HPC (High Performance Computing) resource, including its properties and configuration details.\r\nThis DTO is used in the API by client to create HPC resources.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCDto"}}}}} \ No newline at end of file diff --git a/docs/documents/baremetal/create-hpc.StatusCodes.json b/docs/documents/baremetal/create-hpc.StatusCodes.json new file mode 100644 index 0000000..c210603 --- /dev/null +++ b/docs/documents/baremetal/create-hpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"monitorUri":{"type":"string"}},"additionalProperties":false,"description":"A result of the initialization of an asynchronous execution, containing the monitor URI to check the status of the execution.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecInitDto"}},"application/json":{"schema":{"type":"object","properties":{"monitorUri":{"type":"string"}},"additionalProperties":false,"description":"A result of the initialization of an asynchronous execution, containing the monitor URI to check the status of the execution.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecInitDto"}},"text/json":{"schema":{"type":"object","properties":{"monitorUri":{"type":"string"}},"additionalProperties":false,"description":"A result of the initialization of an asynchronous execution, containing the monitor URI to check the status of the execution.","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.AsyncExecInitDto"}}}},"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/create-hpc.api.mdx b/docs/documents/baremetal/create-hpc.api.mdx index 5ff8450..4677f25 100644 --- a/docs/documents/baremetal/create-hpc.api.mdx +++ b/docs/documents/baremetal/create-hpc.api.mdx @@ -5,7 +5,7 @@ description: "Create HPC" sidebar_label: "Create HPC" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/get-hpc-services.ParamsDetails.json b/docs/documents/baremetal/get-hpc-services.ParamsDetails.json new file mode 100644 index 0000000..63bbc83 --- /dev/null +++ b/docs/documents/baremetal/get-hpc-services.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc-services.RequestSchema.json b/docs/documents/baremetal/get-hpc-services.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/baremetal/get-hpc-services.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc-services.StatusCodes.json b/docs/documents/baremetal/get-hpc-services.StatusCodes.json new file mode 100644 index 0000000..ee03e0a --- /dev/null +++ b/docs/documents/baremetal/get-hpc-services.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListContentResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListContentResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListContentResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc-services.api.mdx b/docs/documents/baremetal/get-hpc-services.api.mdx index 9cb9aa8..84c50d1 100644 --- a/docs/documents/baremetal/get-hpc-services.api.mdx +++ b/docs/documents/baremetal/get-hpc-services.api.mdx @@ -5,7 +5,7 @@ description: "Get HPC services" sidebar_label: "Get HPC services" hide_title: true hide_table_of_contents: true -api: eJztWetv2zYQ/1cEftqAVE67bh+MroDj9OG1eaBJsQ+JMdDSKWZDkyxJOUsN/++7ox6WEydRnWDtByFAbFP3vuOP1N2CeX7hWP+MvT8eOjbeYYZbPgMPllYXTOEP1mfG6i+Q+FHKdphQtMD9FL9b+JoLCynre5vDDnPJFGac9RfMXxtidN4KdcGWy51alngKIZmQaGMl6GsO9pq143Ta+m34yhAIrbbh1lnm4GG9Qnm4CH5l2s64L5Z+e7EmS4qZeCJR3Ihnc8z1Bq9ScIkVJjjcZ6dTiChP4Dyk0eB4FK3Y7vKfZGQ8l6T6OaodU6qd0cqBI+oXu7v0sa7o6APyJRqNVz6IhH99z0hOti1uq9ITSgqyYHoMWC8K0V57Lh8Mxh8v2RLNB5ltMl7lUvKJhKIsl6QC5q0IFdrcijAT1rWjlLwl4ZzLvIxBQcqt5ZRP4WHmHo7c1CQnYOcigdF+m2raYMJKxGGoshZWI4tIB2hEoqUOzN+EfrT608C8YKDyGWHcZ3Wp9BWVLBEEcSdXwicEQm8Rga64lISBN831wpN8NrD5hMfDmSnlx3vcAoIll8dWz0UKNh5MkIsHmHBxteriA52CdPFHuODJdbyXq1RC+VHKQopcFhav+XDiuc9d04sBSp9zX5gWfgA5kjsDKgUC1xMjuOJe/yhfCpuxnm5lY8gxjxrxpeFPXmelNqFOz2qlylO9cgj+StvLH+VjwxvaOQiqjKepIEFBfL2lMi4dbG/Tvtcufm8S/Hc8HBa4+KlEUXyGiv8XzR+F8xu1o3JjpEg4MfW+ON3hdIfTHU53ON3h9E+G0+Em3QF0B9AdQHcA3QH0zwbQpP7l7svbHZFD7aO3GkP2JI2Rcic/CCSlsy0oXb2xtsCYFMMmZCs9QqEmlbQx6s5MLlaesQORWO105uOBM7gJhtpCfDBPqHpR1Gw/mOYe/47ThXybkG93Xeli/f2xJnm/b+rFjtBTiyqi4hiJ3lirbUjO4Hi0fzSsGvbrXO/ARwh0kSvQ0aH9CI5TneKzi9ADD33/PuuVLXXXW9TzhSUtFmdHr8DZGlx7eAIiqUCahmgXTCuGFbnFULOp98b1ez1uRMxJRCJ1nsaJnjFqQTtIciv8deDYA5Ru8eu4+eiEqq0oqIpgdQs04gPc7o+PEMetj/76+zTy+hLoEC5b7IMcfbfiG2+ODqbA0cUQSqGy4oK2drpsOFKMuKX1HtpzRX/7eB+QmqeRn0L0ikdTC9mf56yHJaPQk96kYn1WhT2mLXfOIs8tJgtp/5lIri7P2evoCJmo858JCa96/DWaUw0B+ux5vBvv0j3FaOdnPOzaMgIbCmLNjTq2jSMNBYVsLspiOavmL8Tdb46j6nqhS9x6PFi4NQWOMHSqDcBcTzW9B5yxxWLCHXy2crmk5WL6QaWRCkdbLq2P/0tMe2PwFN4PcIHROOUO4nLW1IZ0bbzUhqGeKLUhrkZG99PeyEp92bh3+rMxd4XW9enSSveYflhRINqmUN9pyC+fylnhr9Fdqqt9qq6bOm+EGSvn+yLwaMVYgMsxXeOLnU9uFw8GSQKmmZum1HEDO9+9OUXA+A8nRGiL +api: eJztWV9v2zYQ/yrCPW2AKqVdtgehLeDYbeO1SYwmxR4SY6Cls8WGIlny5NQ19N0HSrIsJ06iusHaB8MPgqn7f8cfqbslEJtZiC7heNS3MPZBM8MyJDRudQmSZQgRaKM+Y0zDBHzg0i0wSsEHg19ybjCBiEyOPtg4xYxBtARaaMdoyXA5g6LwG1n8KYRMuSA0K0FfcjQL6MZplaFd+OoQcCV34VbTqcXH9XJJOCv9miqTMaqW/nixIUvwjD+RKKb5szkau8WrBG1suC4djuAiRc/lCS1h4vVGQ2/Ndp//TsaU5cKpfg5FMXaptlpJi9ZRvzg4cI9NRWfvwYdYSUJJpUj8SqEWzNm2vKtKTVxSwHfp0WiIV6JJEROPBuOvQyh8sCim24yXuRBsIrAqy8KpwHknQolfqRPhlBvbjVKwjoRzJvI6BhUpM4a5fHLCzD4euVTH52jmPMbhoEs1bTFhLeK0rLIOVqc65knPEI+VUCXzN65+WP1FybwElHnmMO6TvJbqxpWsIyjFnd9wih0IveUGb5gQDgNvm0ucnHzomXzCgn6ma/nBETOYITExMmrOEzRBb2LJsBImbLBatcGJSlDY4APOWLwIjnKZCKwftawTleSisnjDh3NilNu2F72Y+JxRZVr5B50judUoE3Tgeq45k4zUz/Klshkt3MlGnxHOlFm0/cmbrDQmNOlZr6zy1KycIt0oc/2zfGx543ZOUfjAkoQ7QaX4ZktNmbC4u00DUjY41rENjkf9foWLH2sUHZCC4v/R/IFb2qrdB6a14DFzTOFnq/Y4vcfpPU7vcXqP078YTpc36T1A7wF6D9B7gN4D9K8G0E794cHh3Y7IqSLvrcpl8iSNkXonPwoktbMdKG2zsXbAmASJcdFJD5eWmIy7GHVvJpdrz+CEx0ZZNaWgZ/UpUl8ZDE7msaveicBsUJpmf/wbZx/yXUK+23VlH+vvj7WT9+e2XuxQEhrJhFcdI94bY5Qpk9MbDQdn/VXDfpPrHZJ3POp7tkJHCz5kSKlKIIJZ2QMv+/4RhHVL3YbLZr5QuMXq7AgrnG3ANUx1bMMlT4qwJdqWplXDitwIiCAl0jYKQ6Z5wJyIWKg8CWKVgWtBW4xzw2lRchwhM2gguhy3X527aqsKakWwvgVq/h7v9seH0qIh7+9/LjxS1+gO4brF3sspVYZ/Y+3RQYoswSqUXE6rC9rG6bLlSNH8jtYHaK+k+w3UjRSKJR6l6L1kXmpw+uoKQqVRMs3DyYr12SrsgdtyV+ARMzOkV1fw70QweX0Fr70zjdJ1/qdc4MuQvQYfVkOACJ4HB8GBu6doZSlj5a6tI7ClIDbcaGLbOtIKv8rmsi6Wy9X8xXFH7XFUUy/uErcZDyhvTSVHOXRqDBj7kCr3HXAJy+WEWfxkRFG45Wr64Uoj4dZtuaQ5/q9x0R48ld8HEAG4cco9xPWsqQvpxnipC0MzUepCvBoZPUx7KyvNZePB6c/W3FVaN6dLa91j98fwCtG2hfpeQ377WM8Kf/fuU73ap3LR1nkrzMPkOyPww4p5AsXYXeOrne/crl704hh1OzdtqeMWdr57cwFF8R8nRGiL sidebar_class_name: "get api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/get-hpc.ParamsDetails.json b/docs/documents/baremetal/get-hpc.ParamsDetails.json new file mode 100644 index 0000000..f1989fa --- /dev/null +++ b/docs/documents/baremetal/get-hpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"calculatePrices","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc.RequestSchema.json b/docs/documents/baremetal/get-hpc.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/baremetal/get-hpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc.StatusCodes.json b/docs/documents/baremetal/get-hpc.StatusCodes.json new file mode 100644 index 0000000..ddcf06f --- /dev/null +++ b/docs/documents/baremetal/get-hpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/get-hpc.api.mdx b/docs/documents/baremetal/get-hpc.api.mdx index 76e7e19..95d98c6 100644 --- a/docs/documents/baremetal/get-hpc.api.mdx +++ b/docs/documents/baremetal/get-hpc.api.mdx @@ -5,7 +5,7 @@ description: "Get HPC" sidebar_label: "Get HPC" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/list-hpc.ParamsDetails.json b/docs/documents/baremetal/list-hpc.ParamsDetails.json new file mode 100644 index 0000000..0e74aeb --- /dev/null +++ b/docs/documents/baremetal/list-hpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/list-hpc.RequestSchema.json b/docs/documents/baremetal/list-hpc.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/baremetal/list-hpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/baremetal/list-hpc.StatusCodes.json b/docs/documents/baremetal/list-hpc.StatusCodes.json new file mode 100644 index 0000000..5263437 --- /dev/null +++ b/docs/documents/baremetal/list-hpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"admin":{"type":"string","nullable":true},"model":{"type":"string","nullable":true},"dueDate":{"type":"string","format":"date-time","nullable":true},"activationDate":{"type":"string","format":"date-time","nullable":true},"autoRenewEnabled":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"renewAllowed":{"type":"boolean"},"folders":{"type":"array","items":{"type":"string"}},"ipAddress":{"type":"string","nullable":true},"configurationMode":{"type":"string","nullable":true},"showVat":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCPropertiesResponseDto"},"numServices":{"type":"integer","format":"int32","nullable":true},"monthlyUnitPrice":{"type":"number","format":"double","nullable":true},"services":{"type":"array","items":{"type":"object","properties":{"hpcServiceID":{"type":"integer","format":"int32","nullable":true},"hpcServiceName":{"type":"string","nullable":true},"hpcidArticoloServizio":{"type":"integer","format":"int32","nullable":true},"hpcServiceType":{"enum":["Unknown","Server","Switch","Firewall"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceModuleType"},"hpcServiceStatus":{"enum":["Activating","Active","Suspended","Spianato"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceStatuses"},"hpcServiceTypeCategory":{"enum":["unknown","BaremetalServer","BaremetalSwitch","BaremetalNetwork"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Providers.Models.Legacy.Bundle.BundleServiceTypeCategories"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCContentResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.Hpcs.HPCListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/list-hpc.api.mdx b/docs/documents/baremetal/list-hpc.api.mdx index cebbc9a..1481a8d 100644 --- a/docs/documents/baremetal/list-hpc.api.mdx +++ b/docs/documents/baremetal/list-hpc.api.mdx @@ -5,7 +5,7 @@ description: "List HPC" sidebar_label: "List HPC" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/rename-hpc.ParamsDetails.json b/docs/documents/baremetal/rename-hpc.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/baremetal/rename-hpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/rename-hpc.RequestSchema.json b/docs/documents/baremetal/rename-hpc.RequestSchema.json new file mode 100644 index 0000000..026875a --- /dev/null +++ b/docs/documents/baremetal/rename-hpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.RenameDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.RenameDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.RenameDto"}}}}} \ No newline at end of file diff --git a/docs/documents/baremetal/rename-hpc.StatusCodes.json b/docs/documents/baremetal/rename-hpc.StatusCodes.json new file mode 100644 index 0000000..a3dc4e5 --- /dev/null +++ b/docs/documents/baremetal/rename-hpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/rename-hpc.api.mdx b/docs/documents/baremetal/rename-hpc.api.mdx index dc39794..d84b5e8 100644 --- a/docs/documents/baremetal/rename-hpc.api.mdx +++ b/docs/documents/baremetal/rename-hpc.api.mdx @@ -5,7 +5,7 @@ description: "Rename HPC" sidebar_label: "Rename HPC" hide_title: true hide_table_of_contents: true -api: eJztV21v00gQ/ivWfoKjtXO8fIkAKU2R6J2AqhTxgUZoY0/ipbZ32R0HgpX/zsyu7ThN4WjvdBKIREo2u/M+j2efNALl0onxO/H8dOrE7EAYaWUJCJZ3G1HRDzEWxuoPkOJJJg6EqnhDYk5rCx9rZSETY7Q1HAiX5lBKMW4Erg0rOrSqWorN5qC3pf4LI9KowxUFqXTVWftYg13TjwxcapVBPhqL8xwidgAOIYsmpyfRVu1bjtjGQtYF0taf5HYWYiQTRzpbs3yqK4QKeSmNKVQq2V3ywbHPZt+wnnP5yDAV0oBFBY5PQzL77qu6KOS8gFARylvILFPsQhanAwsLWTgqGCpkWTGx9VzG09K8BrtSKcRH0gI10yutVAY2nszJiUzZlIuPUbv4DDgKWnJ9BcJn/AXSGDblj3s/ez7syYIzdBgCvD96yF+7SH+po2kLS5J/OBrtixzJLDoLSKZ0BiD2bTeFVDeqUzj9xzr1lfgBSYcS64FxerQRlmBJdqFtKTFsPbh/nXJGNVXFD/lRFXmq0n/V5mabmXihUqudXmA8ceYl4FRbiF+s0pgUyFR57ENze+C8KTR/l/xWJb/VWPtd61vUmu09um72nFCmllxEPAXBRs+s1dY3hy7l41fT7vbf1QpjMCJ2QpHTzMx1xsSh9t1i+jAWSUtOXNL0NGXDm360uiSM337mJrlJSVSRjJ/z1BQfUOA7taUCixzRuHGSEMuIJaunha6zONWlYDLgIK2twrXXOAKybGk5Gx69ZowFGHUCfSfI6t+wz1ROaLpbjP56ex6hvgQmKC3ZmdSUt1Vf/Mjo6E4OktLzBWRgn20JyrPPsjQBkK2BjkCx6kL7UHbupmsuJKP2AvyO7EXF72P9qSo03TFIpOuxjHILiycXIiFMVZR0Mu9UD7vuxBz6hYhQ2iUgyb6fF7K6vBBPo1ekxHRtoQp4nMinFE7H3IiVxaN4xPkY7bCU1SDXHcTsJNA3YHDbkQnf8qZF07uO6jrSHg9pbw8oWl+pBO0wqFjDk1sfCYEhp+DYZNPMpYM3tthseDsQVcZOphw/iVlPGa7E29/Q36Wx12Z1SQi7SpNXsqhZ0oN4Ja0KY+BGgdw5a9n63ehbrjuYV+uhzy6kbU2Zzv+Pjqk1mxlJtQ8Opx0OWtZ0eM7qW8W9a5rjDRqTNAWDA9lhHLPBoDp9c05S8/ZfQ6kzFrbyE//roU8fnfbJ+lHh9xpBj8CylkuWDY759RW2fb4w +api: eJztV9tu20YQ/RVinnpZk06avhBJAFkOELdIIjgO+mALxYgciRuTu5vdoRyV4L8XQ4oSHTlp7BYFWsR+sLE7lzMzR7NHDTCuAqSX8HI2DTBX4NBjRUxeThswWBGk4Lx9Txmf5aBAGzlALkCBpw+19pRDyr4mBSErqEJIG+CNE8fAXpsVtK3axdL/RBB0+mhNPmhrhmgfavIbUJBTyLx2LFcpXBQUSQIKTHk0mZ1Fe7fPJZIYS6xLhhQeQdvOe4wU+MTmG7HPrGEyLP+ic6XOUNIl74PkbA4D24W0D5Q00pFnTUFu+2IO05u6LHFRUt+RtlWAea4lBZazUYQlloEUsGaxhYmvFxhPK/eW/FpnFJ+gp4q4c1rrnHw8WQT2mEmoEJ+yDfE5CYpTttJfYPrI/4MyxkP54cf/ej2SyVNw1oQe4OPjJ/LnNtNf22i6pWWr4Mnx8aHJCebRec9kUGMSd2N3Jep79am//cs+7TrxFZaBketRcNCGaUUeFCytr5D7o58e3+WcE6MuvyqPNoHRZH9rzM2+MnilM2+DXXI8Ce418dR6il+ts3jm7aKk6rSDFg7IeV9qfmv5g1r+oLX2rdcP6LXE+/mu3XNmmLzBMpItSD564b313XAms7PTN9Ph9b/t1a/B6OVsCgoq4sLmIhzqbloiH1JItuIkJM1OprRy2K3WkPTrd7dzk8JlIWl03ibdnlcQOkC93ql9CSkUzC6kSYJOxyjuWWnrPM5sBSIGAmW117zpPE4IPXlIL+fjq7fCsZ5Gg8FuEuj0r3SoVM5MIM/RL79dRGyvSQTKVuxMai6s1390K2OQOwVhTn0Dhdjne4Hy4iNWrifkNsAgoMR1aTsot96mOx4kpw8AfsH2ysjvqb0xpcU84oKipxgVnpbPriCxjgw6nSwG16NhOrFAv4KI0a+In13B74sSzfUVPI/eODIi15a6pKcJPgcFg3JL4VF8HB9LPc4GrtCMar3FmFsF7AYweu1a1Y+82bLpcpC6ARSkY9m7IxSoTzsBCoRU4tGJ2w7JXEFhA0vIpllgoHe+bFs57oWqcCfXQT6J+U4yfIJ390J/UcbeWdU1bQ5k8hrLWiw7Eq/R634N3AvId+dbtf599LnUA83NZpxzgLTvqcj5fzGxzqGdt2r44EjZ/cVWNR1diPve8eCZFry9xyTLyPHIdoxjPlpUs3cXoGCx/dZQ2VyMPd7Itx686dHZrthuVXRnDZRoVjWuxLZPLD9/ArZ9vjA= sidebar_class_name: "put api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/set-hpc-automatic-renew.ParamsDetails.json b/docs/documents/baremetal/set-hpc-automatic-renew.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/baremetal/set-hpc-automatic-renew.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/baremetal/set-hpc-automatic-renew.RequestSchema.json b/docs/documents/baremetal/set-hpc-automatic-renew.RequestSchema.json new file mode 100644 index 0000000..3298d9d --- /dev/null +++ b/docs/documents/baremetal/set-hpc-automatic-renew.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true},"activate":{"type":"boolean"},"actionOnFolder":{"enum":["RemoveFromFolder","DisableSafeFolder"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.Enums.AutorenewFolderAction"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.SetAutomaticRenewDto"}},"text/json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true},"activate":{"type":"boolean"},"actionOnFolder":{"enum":["RemoveFromFolder","DisableSafeFolder"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.Enums.AutorenewFolderAction"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.SetAutomaticRenewDto"}},"application/*+json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true},"activate":{"type":"boolean"},"actionOnFolder":{"enum":["RemoveFromFolder","DisableSafeFolder"],"type":"string","title":"Aruba.CmpService.BaremetalProvider.Abstractions.Models.Enums.AutorenewFolderAction"}},"additionalProperties":false,"title":"Aruba.CmpService.BaremetalProvider.Abstractions.Dtos.SetAutomaticRenewDto"}}}}} \ No newline at end of file diff --git a/docs/documents/baremetal/set-hpc-automatic-renew.StatusCodes.json b/docs/documents/baremetal/set-hpc-automatic-renew.StatusCodes.json new file mode 100644 index 0000000..a3dc4e5 --- /dev/null +++ b/docs/documents/baremetal/set-hpc-automatic-renew.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/baremetal/set-hpc-automatic-renew.api.mdx b/docs/documents/baremetal/set-hpc-automatic-renew.api.mdx index f7a7bd2..7e1ce65 100644 --- a/docs/documents/baremetal/set-hpc-automatic-renew.api.mdx +++ b/docs/documents/baremetal/set-hpc-automatic-renew.api.mdx @@ -5,7 +5,7 @@ description: "Set HPC automatic renew" sidebar_label: "Set HPC automatic renew" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cEPu3DkbyufTG6Ao6dYtmQJnBS7CExBko6W2wkUiUpt57g/313pCQrtlMkxrCHIg5gS+Td/Y53x/tIzSxfGja6Zb9fTQybD1jJNS/AgqbVmkl8YSNWavUJEnuesgETkha4zfBZw+dKaEjZyOoKBswkGRScjWpm1yUxGquFXLLNZtDJEv+FEF6KkxUqKZRspX2uQK/xJQWTaFFa2hqxmwwCAgBjIQ3GV+fBlu0xIJKx4FVucekXhJ17HVHEqUrXRJ8oaUFaeuRlmYuEE1z0yRBmvS9YxWQ+FIyGLEFbAYZ2S74uUMwF2EylaNwDmsgqz3mcgzfOZsAKhM5Mj1SgKkvQSLtQuuDWL/366hAzT6xYcQs99lipHLhkza6Sl/K9ylMUiDQgq4KiYwaFWsF7rYpmb8CmwpDoa76AZg3NtKu9FZbQ2VhXMQ8nRXkNeiUSCE+5Bgwznl9ptRLIHY5j5PIamPBCpZCb8AzhTTiurNIg4YvHGTsaigbG01TQixPT2XXBcwPHY0+tMuE1WIJFc4pkRti46iAtfLUvfv7+/dy/1j/9/OLw79zhBKrBlEjnPfhq+Jp+HhaTDyqYNJkf6V8Ph/skpzwNZr5YoJl6dcIljjLn4lmB5HefED2NUZ5AaSy31bFxlqJ5Rf4kHCERSSZPUepRj9fbk7ELkWhl1MKGY1N+ADvB2AkvVkmIDCiqmDrVzN7tfe7dfTH5USY/qjC+2PoIW5O8N4dyzzmeVCNEQAkRdHCmtdLOOdj3Ti8nbYP9kAszYoDdf8DbtBi4nIzHKFz5oka9cq6jdn3EomYYMFHdjQUbWnQp10Q+LXe5OMrKBEkF0nQILYBxevpJo9Jod5ZZW5pRFGF/H3ISlOSqSsNEFYzacANJpYVdO45TQAysZrfz/tY1hZ6PrpagcxBK/RP2Z4RzTPraBn/8dRNYdQ80GjRjBpaKTGnxj8sk7aCRAaeqSHaleJ9tR4Ozr7wofZzudQDb6GgL/bBftr1ndgv1fn12kbdQ7lAP6uCB4leKvaN+g/ZO0t9UfZG5wiJmcXB6y4NMw+K3OxZh0Eo0XxS3rCetx0Mywh0LLNdLsEj7d5xzeX/H3gWXyEQj10Lk8Dbi71CddvrCySochkM6T6mMLbjLG43ZHw/JB6fp/NqrrSjPRVLdhOttO7sa5B7159guYvF5xyy4QlFLHG5a3QlcjLYMdSbhdR1zAx91vtnQsp9BKThT30WlXdeyo3nXGXxzQj14vnsM4d0JeMXziijdLVlxLXz6eZYiP8yaQfzH4DHo9h7JdR+zVWlrXZrU/0dgdNJmjlTNzaRj+42mWzu5IfYt4157QPp6jnGSQGl7tH095r2cePXxBqni5h8CBfa1uKg5BSl9O+2UO6zLRW6tZngzlhVfEq0Hps+/uyYhxA== +api: eJztWOtP20gQ/1es+XQPY6e93peorRQSquZOlAio7gNEp4k9ibe1d7e747S5yP/7afxIDIEK0Ok+VIBEYHfe89t5sAXGlYfhFbyfjT3MQ7DosCAmJ6db0FgQDME684kSnqYQgtJygJxBCI6+lMpRCkN2JYXgk4wKhOEWeGOF0bNTegVVFe5kqf9CCFp1tCbnldGdtC8luQ2EkJJPnLIsV0O4zCgQBeSZ0mA0mwZ7tvsUiYwlljnDEF5AVc0bG8nzsUk3Qp8YzaRZfkVrc5WgqIs/edG5PRRsFhI+CCWQlhwr8nJrcVOQ5lPizKTT9C5LdJnnuMipCU4VQmE0Z75HqjTTihyEsDSuQG6Ofnt5FzMmrNbI1GNfGJMTamhvjT7T70yekhMa0mUh6DinwqzpnTNFexfCRHkRfYFLas/m4YH1rFi0w8iVC4zGhb0gt1YJRcfoqCDGfObMWqXkotHCs2ss8NGpSSn30YkuCx+NSjaONH1t9IxqGkEDYJoq+aMWs4vrEnNPT9c9YeOjC2JRWyCr5Fx0T9jUKpm+8XOef/w895/1L78+J/wHT7godeSt0b7J4MvBK/m42Uw+mGDcVv4qhFeDwSHJMabBedMsIOz3ibpw2BzVo4DU3D4APW1QHkDpGbl8Ks5SYlT5g/Qo7Rl18hCj7s34du8ZnKrEGW+WHI28/UA8No6i03USzZxZ5FRMatP8wet97Nt9DvmTQv6kxvgc6yfEWuT9flftmWompzEPpCCSC06cM65Ozmg2nZyNuwH7JtcFcfB+Ng6wK4tBXZMhhKJuXzKol3XqZFwfQtwuAz7e7taCSg7rkuvjpizvanGc2cTHW5VW8U5Dp8DXdjabRulyGELGbP0wjtGqCEVQkpsyjRJTgIzhnpLSKd7UHMeETrrZ1bx/dSHQa9DVEewShFb9SYc7wlR7chz88ddlwOYzyWrQrhmjkjPj1D91JekWjYxQuqLEVfB+vl8NTr5hYRucHkwAe3R0jX7Qb9tNZm436sP+XCNvaWqnbvTBO5qfVQeufof2Wsv3xHzVucE04IyC1xhkjpZvriE2ljRaFS861qMu45EE4RoCRrcifnMNfy9y1J+v4W1wZknLyrVUOb2O8S2E0G1fQ3gRDaKB+GON5wLrutGG/X5I3vBml9deb63CBknbFq5X3e7qIYRhf4/dIRbC22GBEAS1wlFvq7eAOw8hM55F+Ha7QE8fXV5VctzsoALOtJmi0t3Ucsvy3WTw3Q31Tv8+0+ZgA15jXgpl/UrW6FRTfh5lyE/n7SL+c3Cf6u4d6U1fZ2fSPrqyqf+PilUK1bwKu5cpbjcX7bR2dCnse8aD8UDsbThGSUKWe7R9O+a9mjj7eAkhLNp/CBQmFWKHAlL5WVtnamfrWlSfbSFHvSpxJbSNYvn6F7smIcQ= sidebar_class_name: "put api-method" info_path: docs/documents/baremetal/aruba-baremetalprovider-api custom_edit_url: null diff --git a/docs/documents/baremetal/sidebar.ts b/docs/documents/baremetal/sidebar.ts index 3d0039a..7db7057 100644 --- a/docs/documents/baremetal/sidebar.ts +++ b/docs/documents/baremetal/sidebar.ts @@ -1,62 +1,60 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/baremetal/aruba-baremetalprovider-api" + type: "doc", + id: "documents/baremetal/aruba-baremetalprovider-api", }, { - "type": "category", - "label": "HPCs", - "items": [ + type: "category", + label: "HPCs", + items: [ { - "type": "doc", - "id": "documents/baremetal/create-hpc", - "label": "Create HPC", - "className": "api-method post" + type: "doc", + id: "documents/baremetal/create-hpc", + label: "Create HPC", + className: "api-method post", }, { - "type": "doc", - "id": "documents/baremetal/get-hpc", - "label": "Get HPC", - "className": "api-method get" + type: "doc", + id: "documents/baremetal/list-hpc", + label: "List HPC", + className: "api-method get", }, { - "type": "doc", - "id": "documents/baremetal/get-hpc-services", - "label": "Get HPC services", - "className": "api-method get" + type: "doc", + id: "documents/baremetal/check-hpc-creation-status", + label: "Check HPC creation status", + className: "api-method get", }, { - "type": "doc", - "id": "documents/baremetal/list-hpc", - "label": "List HPC", - "className": "api-method get" + type: "doc", + id: "documents/baremetal/get-hpc", + label: "Get HPC", + className: "api-method get", }, { - "type": "doc", - "id": "documents/baremetal/check-hpc-creation-status", - "label": "Check HPC creation status", - "className": "api-method get" + type: "doc", + id: "documents/baremetal/get-hpc-services", + label: "Get HPC services", + className: "api-method get", }, { - "type": "doc", - "id": "documents/baremetal/rename-hpc", - "label": "Rename HPC", - "className": "api-method put" + type: "doc", + id: "documents/baremetal/rename-hpc", + label: "Rename HPC", + className: "api-method put", }, { - "type": "doc", - "id": "documents/baremetal/set-hpc-automatic-renew", - "label": "Set HPC automatic renew", - "className": "api-method put" - } - ] - } - ] + type: "doc", + id: "documents/baremetal/set-hpc-automatic-renew", + label: "Set HPC automatic renew", + className: "api-method put", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/compute/1.1/create-cloud-server.api.mdx b/docs/documents/compute/1.1/create-cloud-server.api.mdx index e14e375..03a1453 100644 --- a/docs/documents/compute/1.1/create-cloud-server.api.mdx +++ b/docs/documents/compute/1.1/create-cloud-server.api.mdx @@ -5,7 +5,7 @@ description: "Create CloudServer" sidebar_label: "Create CloudServer" hide_title: true hide_table_of_contents: true -api: eJztW1tv2zYU/isC97KLbCfd9mJ0BRKn7TJ0rZG43UMSFLRE22wkUSUpp4bh/75zSMmWZCVhnBRxAfWhcESeC8+N36HEJdF0qkj/ggwikYXnTM6ZJFc+SamkMdNM4uCSJPAH6ZNUii8s0Kch8QlP8AHVM/gt2deMSxaSvpYZ84kKZiympL8kepEiodKSJ1OyWvlrXjTlHRCmuEgKbl8zJhfwR8hUIHmqcahPRjPmoQCmNAu9o+GptyFzFYw8JzSLNDw67B6CIleWGJgei3CBFFWpQBKIRLNE4xhN04gHFMd6XxROWG7LEmM0DhCCmVImNWcKR8GMNKTaYaa1TJPuZc3ewyxPTDxt7KJEJgNGVj6JhFXwfjlzGmUOgj7htI2kKTz1eOLdzHgwq0j3bngUeWPmGRVY2L2Ul8nRnPKIjqOCVHlUeymQgEn7OKHjnY6O33aOmZzSWFwml8kbIb1YSAZSJkLGZjW+B2YOro28l9SbSTb565L0QhGoXmHZ3k/F2js0CTv4qBOAGCYviaepnDINNJ/HEU2uL8kroM1iGDYUL3v0VRcDk9Aw5PiERsOStSY0UqxumQFEBuWwpJKiHh2LTBs9z6ytwHJ04yGfaK4jNPe7XNkTLdBvNgPXzqBSUkwCrlmsGlKorss7rrRxErDxQJtqXPgkySLjBpsiD1zov7mFt+Jts5piSr6aaqTdHYdINjB+agrGquJ1zZ4xVnwyT4P7V5dJfv+y7vVHYea3LGGSB2e5A3JrgyJDTCldkjQWImI02Rblk0lE50K+v6XMfC+DB7i1KLO1dKwG6gG2ZhFVmgen6X5YHKyrP4koq5jwufR5Yh91cifhGudmjQ/w0zVbDCmXe2AVIFXZOGHapaw+o5Jb6alYAHL14q0UWfqjKZ9B8JxUYc5jJZcw6WaWkb8Dh4JOs2+6xXAthmsxXIvh9qKSthiuxXAthmsx3B4o/6NguPJx3K+/tWCuBXMtmGvB3D6U1BbMtWCuBXMtmNsD5X8MMIeUUDBTwCPWVi8ODrffxg4kQxzzHC9leehgQN/Rxf6tkHJrojt6DEToxjIQWaLlwm0uhP3TLuhWkLtjMBao7SyPng3eMVZ6Gse6KjO0Umu6PBhJbrsBwn4qKj57YK+yxRLI5jx0gXi4gkUqIjF1kO+YJ45qutp9lOtXMbxzMcqNW/NagMUG2wEYblLV7uTwBAoI62geN6D6nAsLj92yKEuR2eMkWh6uEouPaJyKgV3LR+UYNbkmjvNd3VU0NjV3KcA9mcMmjPMc6+STBEDIFf59btQ7BfznkEPqxBKVc6loH8xGSWGfe0hJMfnO5lxk6nwv7eReYMur2CndT+oOqQXShPIok+zMGPkJ47ZB5Ye15RFPrllY4L3vjkN9MxLogZASmr0aCFmHo/M+XdG+7rm96dzvPvvYo7MO27HvtiHfugE3Q43SYJqVnnNQeQqGKqU4PPr9halRNHacOQudJu7QWrwxJtrHA4J968uhKb8R8voUY3BCH1VcbIvvVF9iGhyFIbR9DVtWw3Tu1HvfgaLvLrbN5ruf7w6B+b5m7rwHfkz7vRvy3XCq0iOHPw4OtjvwYxp6Z/aD6afrwu2oSxti9Xbaumoo59bC0gTZoE7zyC0mE5CUBI/qZZarSgMJFPGJ0UDlnvizyRMmeICTZ/3nvZYStgOcfjQ8PfkwaD4tticoXvkzfx9PQWYCqjBJhXGr+Zy/T3p5D616y/UX/6te0Teq3pHMxrQ7EHGaadYLNiwVwTMz+wuvDWQSjElmWqeq3+vRlHcpkhqKbiBigp/hF4dshuKYUYk78MVVeegc48mGTDFhbXXkvrVBv0Ybma34n/9GnqXxtLhmSZfktwQMlrHM/PzHmyJAgMgYFOP5bHNL4PU3Gqc2DsvnR/mFhrX7yyc3+aFHqYgUFy7yJ1db5akMRDZMc5xk9oQSt9L7Buv18huFDXXlzL7Oo7pB1kdL21V9aH2oe1Efu9o+O22aszmiLDcsvOiV8tTIwy1OMch4wPLIg+ndo5Rv+f7u6d7fo9EQb5Hg+80TcZNEAipbDbSBOxKI1l5gQ7xThP7n+WH3sItR0YjXvA9AhxdUJjxiiNdIqc3GeyfdAwP9IdlimpRCpzE5K6tah7v5fDGNKDcNoUmwZZ63F8XZF6Zhv3xXZ5268LuSvFjKy+kLPplhKQBey+WYKvZRRqsVPrZ3c9CL4bpFbXpDudzsDeTns/x6zi/eXZd4GlcGYUfql4SKZDKxM6eS2yK7q063iS5wRrIoyyxU2th1hbk7Y9ScpYESdnxgRXVGyGVDv7VN4lUoS3EUBCzVd869KtXq4YfzEZas/NpSbE5/AXbfEN/8b3QVZummnphn0ETSZJrRKc61PPHf/2wzFoY= +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/compute/1.1/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/1.1/sidebar.ts b/docs/documents/compute/1.1/sidebar.ts index 6270ced..b3e1a77 100644 --- a/docs/documents/compute/1.1/sidebar.ts +++ b/docs/documents/compute/1.1/sidebar.ts @@ -1,26 +1,24 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/compute/1.1/aruba-cmpservice-computing-api" + type: "doc", + id: "documents/compute/1.1/aruba-cmpservice-computing-api", }, { - "type": "category", - "label": "CloudServer", - "items": [ + type: "category", + label: "CloudServer", + items: [ { - "type": "doc", - "id": "documents/compute/1.1/create-cloud-server", - "label": "Create CloudServer", - "className": "api-method post" - } - ] - } - ] + type: "doc", + id: "documents/compute/1.1/create-cloud-server", + label: "Create CloudServer", + className: "api-method post", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/compute/create-key-pair.api.mdx b/docs/documents/compute/create-key-pair.api.mdx index 8bc116c..1f8b2a8 100644 --- a/docs/documents/compute/create-key-pair.api.mdx +++ b/docs/documents/compute/create-key-pair.api.mdx @@ -5,7 +5,7 @@ description: "Create KeyPair" sidebar_label: "Create KeyPair" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztW91v2zYQ/1cI7mUfsp1224vRFkicdkvbrYHjrg9xMJyls81GIlWSSmoY/t+HIyVbtpyOTtNhaNWnVDreHe/zR5m35BZmhvcv+StcnIPQ/CriOWjI0KKmF0suIUPe57lW7zG2ZwmPuJD0AOycRzxBE2uRW6HoIY+4xg+F0JjwvtUFRtzEc8yA95fcLnLiZKwWcsZXq2jNHHLRuUFtiEnJ/kOBetHgP5ojIwFoLCbs+PyMbZbdJYh4TKFILe/zR3y1uvI6orEnKlkQfWMPsZIWpaV3kOepiIHe9d4bIlg2JakJ2YZHZKUctRVo6G2GFhKwAZTeDvs0r2v2J2TI1JRZZwWjCh0jX0U8VV7Bf5dzA2kRIOgvIttImgklmZDsdi7i+ZZ0divSlE2QORUw6Y71WB7fgEhhklZLDQPLco0Gpe0TQYedjU5+65ygnkGmxnIsXyjNMqWRCTlVOnO7iVg8x/jayXsCbK5x+nTMe4mKTa+ybO+7au8dkEmHHnVilBb1mDMLeob26Zj/PUlBXo/5s0TFRYbSuhVPevCsS2HIIUkEPYH0vGatKaQGdy0zUNKCkKauKIOJKqzTc+htpaYMNh6KuBU2JXO/LpU9tYr85pNv7QzQGijkhcXM7EmYXV1eC2Odk2Bm2FTp7biIuCxS5wafiQdu9I/Swo142+ymIil3sx1p94zDA3WuVCnL14bC6XTg6mqNxY+2zfU219tc//pzvd7ef/ypTfo26duk/8qTnlZpNLmSxuv6+OhR8xQw0Ejxvn0YcMggT0F8oSohkgCTRbzQIojurqLTIAyvL7FKwljGqpBWL8JohQ0jDN7QQ4dfldfDMm42GeGs9DCODVXm3Evd0eXgWtN0A1icqS2fHdjNGixzrW5EgjqI2C5ylapZgPzAPAlUM9Tuo1K/LcOHLh6Uxt3xWkxlhhoG2L2q+h7E+zwBix0rsj11v+SCyUlYFhU5Mfs8iZ5HqMTqI01QMfB7eWsCo6bUJJA+1F1V69txl7Fgi4D2R3SBdfJBAiARhv5/4dQ7k1MVkEPm1C+q59JEqRRBctciwSh5SElx+Y43QhXm4n9pp/ACW9/FvdL9dNchO4E0BZEWGofOyA8Yt3tUPgy4pUJeYzIswWCI++9gFApS6E1sB0prTHdByDocg/v0lva7nrsDFdwfhN4rNEoujbX/yYfmFmG2CLNFmC3CbBFmizBbhNkizBZhfjsI8wv/rtlCyxZattCyhZYttGyhZQstW2jZQstvBVrS6l+OjnjjR/QTSNjQ37V9iB/S/duQZuy1DXLgTq4LaXGGup6UQtqfH+8tXGhBpEFyhDQWZPxZHX252oJRkxSzU6eB+ewPyK1lP2XZex2cWpPebVJa9uu+gnFGN7skpOwC9Q1q9lxrpZ0Pjs/PTt8MqqGCfXd1WDXDENGhda4SGlJQrvK4WYU+75VHHtNbrscZVr0K5pvesS4m0B2oLC8s9q49O0OjBU4bPw9R6JT3+dza3PR7PchFF2hZnKoi6cYq4zRgYDAutDsYXi75CYImfHd5VX91QXHkQ6UiWFubuDfu7D0n27irWi/fjZhfw6y6Rtmtph9c2/HMovKPF1VgvHw3coakOB5u5h+ef4Qs9/FXP+qXgxlrt9cP2WUnqp3GqimS8slVo23vLnFBVgK9MkhK42c5uV7EWPpByFn3OBcNa3yanP0+Gp3TfAjdPTxVtzJVkOxeNFQ5SshFL/YO71SB0CUT7b1eyN7kKGnqZCpSpOuFvHY84I+6R90jB1mUsRnImh0bEbq1mbXfa23RfSlx6eqD97I6r1M89uvTOOv45RHfimAe8XUMX0V8TrnQv+TL5QQMvtXpakWP/aANxWmyhtT7LgwuN/37k2M4e7dyjYvGmE8VEy5hbkALX1YOUuT7YTlt9AO7S3QFAOWiLrNSaWPIFUXtHMEd+C+X5fuBF9UZEZfN+kavpWEmv+I4jjG3Ndq6Ole12nT+5mJEaVoOIWXu4xTXcEtDVHDrtVRu0y6H3LMlT0HOCpgRrZdM//4BcM4A5Q== sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/delete-cloud-server.api.mdx b/docs/documents/compute/delete-cloud-server.api.mdx index 8566c3f..af7b486 100644 --- a/docs/documents/compute/delete-cloud-server.api.mdx +++ b/docs/documents/compute/delete-cloud-server.api.mdx @@ -5,7 +5,7 @@ description: "Delete CloudServer" sidebar_label: "Delete CloudServer" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cE7mUDHCvtuhejK5DYyZaha4Ik3R6SYKCls81aIlWSShsY/t93J0qyJMsJmxhDH/YUR7wv3hfvfitm+dyw0Q0bJyqPr0Dfg2Z3A5ZxzVOwoOlwxST+w0Ys2hCdxWzAhMSPGbcL/K3hcy40xGxkdQ4DZqIFpJyNVsw+ZMRsrBZyztbrQS0v0+oTRHYvsmJI0N5jpexfKslTOJdjbiIeQyX7cw76gfUImyqVAJctaTwTB3hLI5Ts8sdgIi0yS0cjdr2AgMwFYyEOji7Ogg3bLrNJxoznicVPr1DtHd3YZEoaMET9+vA1/WkrOooiyFAHckdKWpCWaHiWJSLiRBN+MkS42larpuRlZER/Z6CtcGowvjzm1oNSxH2XkHmS8GkCLkrrAcu18KJzPvYgTJS72tMWRir2ExmpXFqMoxetsH6E3he650nuQ4mkPI4F3Z0nF42bznhisCCssETL3pcOuizTZ2IVWw+qutpTYH2NuXBaO7a4BlMr4VpzqiJhITU9Fd0XBm5hrlox23Ed7zgg272IsdX5ECOBStTcQ79nnXia6ev369K+luN9mcelcztRizQUiTXB4z5TZ0qnnPoXNhA4sCKF3gIiKRAf+1VRnpGwl2l0Mnw1Vq3aqxm4u3w0nllTWuJJ7xuuP8ue3QmXsdzm5ukEJTrPPrmXBIiFof+vCvPO5Ex51JCZOKZmLdVPNL2UHN+5b2kpRb3DvVC5ufou/eTfYJu3eFa5T7oB6STSjIsk13BZOHmPedtjctfnj0ckEXIJMQpQuY7AJ/w7BPkOKXQS2bHSGpLuENKYGD3f6Zb13cjdZ9G+7PY16DeQgPerLCoDQp1ljJNlf8tqz6OnSgep0hAI6XIcPw8CHD2jZWBxKH7Lg4WG2a+3LIxVZMJq2gx/qKa6Ay7jA/p0EBU6b1lguZ6DRZ5/pgmXy1v2DnlxmJe24Hgb8nfDIk0Tfq+0RzPpeZB3PsD9o0bjMMsb3wWaPEdHNUocP/38uuhRPPWkXMRehN6v+WZBOy1cVAZ2Wq9F30eiLeHhgguPAP4XxkiwX5RenlEOzviLmovJpyjNq7+kPDqKY9z7ep6sHnKRvXCKfrzZ9rvvabnPSMwPHXe7LvgMQRuq502+G0ltfpLw5vBwewU/5nFw6Xb9/W3h7tRnDXF2ez1dnSlnZ2PpG9mwT4vELyclapLRi3aZ1bq1QCJHOiksMHUk3mxH4oOywSlu8ntEQ/6Pw+Nx+KWvIooiRkmBq6PgRGt8lon86OJscj6uALw216SA6oIm5DggNGqh4hrIo/gQGDhiYYlmmHBV44XrsNrgTXik8ykfjlWa5RbCBkSJDC3Ack2QnDspQM1co3vZwtrMjMKQZ2LISVTBM4xUygiYMxDhG0Q4EHIcA9c0G93cNY+uKMNcElUEdRxI+tbodEJeK4akP/6+DhxPYNUS5LBCDYsp0wkblD9Oq5RBpsLFotqnyrCVjkgzurCIoPQJ5sHwKBNbVjxOHvx+fX1BeOatvJUT9UUmCrtfZ7DD9JHotzByzj+ogjKk4usd54JzZCGUdCYSoHGONbZw9mp4ODwsNgNlbMrlBtPpz5nWhWqfW/hqwyzhotgXiyivymS6qaAxg9yjJvxc5xP+bmUUdZhGThFfGwbHTFiguSR8tZpyAx91sl7TZ4cYU+LE9UpbPkI4ALHHMesSKmSMUOkt/s7N6x74KB7d6x9nSRvv3ui+o3+0cB2k7yI7DfnxsgTxfwp2qa6GGfnQ1FmZ1Pbyt3nhxco3qbG+ozEdeIEWogfcuUPjG5xbTw+5ru5pk5P3J9cnWLX/As8R6k4= +api: eJztWN1v2zYQ/1cE7mUDFCvNuhejLZDYyZaia4LEXR+SYDiTZ5s1Raok5c4w9L8P1JclWU7YxBj6sKfE4vG+73j32xALc0OGd2QkVMpuUa9Qk4eQJKAhRovaHW6IhBjJkNAt0SUjIeGSDEkCdkFCovFryjUyMrQ6xZAYusAYyHBD7Dpxl43VXM5JloU1v0SrL0jtQXgxFGjxTCn7lxJpjFdyBIYCw4r31xT1mvQwmyolEGSLGyT8aIXacCW79xkaqnli3dGQTBYYOHXRWGTB6fVlsL22T23HYwapsGRIXpEse3AWm0RJg8ZRnxyfuD9tQaeUYmLRuYoqaVFaRwNJIjgFRxN9MY5wsytWTZ2XSej8naC2vBATowUG1oOSsz4jZCoETAUWUcpCkmruRVf42INQqMK0pzWkivmxpCqVVq/9aLn1I/Q2aAUi9aHMQgKMcWc7iOuGpTMQBkNiuXW05EPpoJsyfcZWkSys6upAgfVV5rqQ2tGlaDC1ENAaXBVxi7Hpqei+MIDFuWrFbI853nFItFpxhtqL2K4TJdTcQ75nnXiq6ev3Salfy/G+l0elcztRoxrzxBqD7VV1pnQMrn8xsHhkeYy9BeS4IDvzq6I0ccxeJrHg4SuxatVezaCw5ZPxzJpSE09633D9WfbsTriMBZuapxPU0Xn2yYMkAOPG/b7N1buUM+VRQ2ZcXGrWUv1Eu5cSjJLf01LyescVV6m5/SH95N9gm1Y8q9zH3YB0EmkGXKQab3InHzBve1Tu+vzxiAgul8hu0KhUU/QJ/x5GvkOKO6F2pLRG0R1CGhOj5zvd0r4buVVCD6W3r0K/o0TNaaVRGRDXWUYobX/Las+jF0oHsdIYcFnkOFcyDOgC6TKwCwzeQLDQOHt7TyKmqImqaTP6qZrqjkCyI/fpiOYy70lgQc/Rvr0nf08FyOU9eccUTWOUNr/xJoJ3gzxNBayU9mgmPQ/y3ge4f9RoHCZp4zuXFueomyXOpf31JO9REHtSLpgXofdrvl3QLnIXlYGd1mvRj5FoS1xfA/cI4H+hjET7TenlpcvBGbyouZh0KtF69ZcY6CljGk3Pk9VDzpMXTtGPN9t+9z3N9xmJ+bHj7qILPoPRlup5k++WU/u+4/D6+Hh3BT8DFtwUu/7htvDi1GcNKfT2ero6U87extI3sqEFLvxyUhoLkr5ol9lkrQVyKjAe5xqYOhKvdyPxUdngQqXygGjI/3F4PA6/9VVEXsQSRFDUUXCutdJ5CZ5eX46vRhWA1741zqG6oAk5hg6NWihWA3kuPg4MHJKoRDNMtKnxwiyqNngTnep0CoORipPUYtSAKE20aQGWmYPkipMc1Ey1IEOysDYxwyiChA/AscrvDKiKiQPmDNJU5zjQ3YacIWg3G909NI9uXYYVSVQR1HFw3HdGp3PntXxIev95EhR3AquWKAcVaphPmQWzsPznokqZ958nuYt5tU+VYSsdESfOYE6x9AmX88Fpwne0eJw8+GMyuXZ45r28l2P1TQoFrDvYqQQlJDyihfOPqqAMXPH1jnPBVYLSoaQzLtCNc6SxhZNXg+PBcb4ZKGNjkFtMpz9nWgbVPrf4j40SATzfF/Mob8pkuqugMUNCMmzCz3U+kZC0Msp1mEZOuXttGPwhJAtlrGO+2UzB4Cctssx9LhBjlzisXmnLR2iJ6ycw6xIqJMSh0jv3O5bXPfBRPLrXP4Umbbx7K/vB/dC86CB9huxV5OebEsT/Jdgnuhpm5Lops1Kp7eXv88KLhW9TI3twYzpCjhbebcrzAo1v3Nx5epzr6p42Pv9wPjknWfYvzxHqTg== sidebar_class_name: "delete api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/delete-key-pair.api.mdx b/docs/documents/compute/delete-key-pair.api.mdx index b495027..a5371c4 100644 --- a/docs/documents/compute/delete-key-pair.api.mdx +++ b/docs/documents/compute/delete-key-pair.api.mdx @@ -5,7 +5,7 @@ description: "Delete KeyPair" sidebar_label: "Delete KeyPair" hide_title: true hide_table_of_contents: true -api: eJztWl9v2zYQ/yoCn1bAsdysezG6AkmcYtm61Uhc7CEOClo622xoUSWpdIHh7747UbJl2U7ZJBu6gU+2xft/x9OP9C2Z5TPD+tfsN7gfcqHZTYflXPMFWNC0sGQZ/mB9dusILlLWYSLDBzm3c/yegkm0yK1Q9BAfaPhcCA0p61tdQIeZZA4LzvpLZu9zkmSsFtmMrVadtfBcq0+Q2H9GOM/F0R16Q0Iq8Z8L0Pc78kdziEgBGAtpdDK8iDZshxSRjCkvpMVHL1HtDdlocpUZMER93Dumj21FJ0kCOepA7kRlFjJbCoa/bJxLThYudxWqCYUIWTBYOWgrnALMFE+59aAU6T7zs0JKPpHgIrrqsEILLzoXXQ9CqRLuHP+ahYlK/UQmqsgsZtCLVlg/Qm+H7rgsfCiRlKepIN+5HDY8nXJpsHitsETL3lUBuqwKZ2AVW3XqTfFMifU1Zui0tmxxbWKthGvNaf8ICwuzZ/ftSwO3MFNbOTvgjncekO1OpKC9iJFASTXz0O+5TzzN9I37qLJvK/C+zGdVcFtZSzSUhTXA5X2mTpVecOpc2EDgyAp0aF/mSAqkp367qMhJ2NM0Ohm+Gusm7dUMnC8fjGfVVJZ40vum6/eqZ7fSZSy3hfl6gRKdZ598lgJIhaHfV6V5F9lUeewhM3BMzb00UUoCz8hVtMug59/QUsr9DndCFebqu4yTf4NtevGo7T5oJ6RVSFMuZKHhsgzyM9btHpPbMX84I1Jkt5CiAFXoBHzSf0CQL0ihlcSeKa1BtkHIuhy939Nb1rczdwAVeEuvEPiG4lGlUUnZ4c1zKRzKiD9VRREQZkCYAWEGhBkQZkCYAWEGhBkQZkCYj0eY5e1lgJYBWgZoGaBlgJYBWn4XkClAywAtA7T8T0NL4n7V65Fx2/+in/I0unR/17Nn+CPdrfq8jJ21Xgls7XWBNs6wGzc2JT768Xhv48I+K6SXHpGhpix50ht9udqCUcixGJQWmCdfIIfIPhTZRx2cQkgPh9Q1jFe7DeMPZaO3ePh6lrmbkIHQLkK7+B+ElNh+2ocvLtAhjZKiK9B4TIvOtVa6zMHJ8GLw/qyeQdzmGoAEC1E9T9mhO665Sgl+lyuUGxpu7LO4uiMx8XI9/7iK63sBE5/oYsK7Z2qRFxbiav4SideTmCuUZUrb3KRmoTGkbG5tbvpxzHPR5SQikapIu4laMJpONJAg/qRbJeQ4Ba7pcHh901y6oqpyhVMTrGNP0lnb53OKVGTnEP365yhyPJFVt5B1WTU6WWJWJ6xTfXlblwkylWEV9emsSlUVgEVOCRAJVLHA3HdPcrFjxcPk0S+j0ZCGOsfZOBuoL5lUiB/J5tc8mmuY/jxmMZZMhnGLExf0ozoZXdpwYxZZrmdgkfLjRPLsdszeRO+RhUZFp0LC65i/YY0zPXvZ7XV75TlDGbvg2eaGaLdOtpxZx7vxciqvN8tN4wrour5kM8jdb47QrmsIv29VEf6u64h4NjO9mP05mkhCl8sJN/BBy9WKHrtRWSqWdH0ormB7y+L1K/XBQdq9fqEhrD2oWx1JWFm1d1wLt9O/yZAfLqt54RfRIdX1ES67b+qsTdpEiAaK/0XFm3SubpB4Dry8K0Tv3bobIW5wNoXfNLrO4Pzd+egc99ff4koq/Q== +api: eJztWm1v2zYQ/ivCfdoAxUqz7ovRFkjiFEvXrUbioh9iY6Cls82GJlXy5M0w9N8HipItv6Vskg3dwE9xrOPd8bkXPaRvBcSmBrp38Csu+4xrGMWQM83mSKjtgxVINkfowr0TuM4gBi6hCzmjGcSQoUk1z4kr+yXEoPFLwTVm0CVdYAwmneGcQXcFtMytJkOayymUZbxWnmv1GVP6Z5SznJ8sUBurpFb/pUC93NM/mGFkDaAhzKLz/nW0WXbMkNUxYYUg6MILKMuR9dHkSho0Vvrs9Mz+2TZ0nqaYE9rdpkoSSqoU41+U5IJZD1f7BtXYQgSxBStHTdwZmCOxjJGHJM8OuS8LIdhYoEO0jKHQ3EvOoeshKFTK3Ma/5mGqMj+VqSok6aWfLCc/Qe8NLZgofCTLGFiWcbt3JvqtnU6YMBgDcbKy8L4G6KZOnB4pKOOmKJ4psL7O9J3VHV9cm1gbYVozWz+ccG4OVN+hMDDCqdqK2ZHteMch12rBM9RewrTMlVBTD/uedeLppi/ug9q/LeB9F1/W4O5ELdVYJVaP0UFXJ0rPme1cGSM8IT7HgwVktWB24VdFRW6VPc2i0+FrsWnSXs3A7eWj8cya2hNPed9w/Vb37J1wGWJUmK8nqJXz7JPPkgAZN/b/28q9azlRHjVkem5Ru5bGSglk0m5VIzNKfktLqeodF1wV5va7xMm/wbZ38ahy7+0GZCeRJoyLQuNNBfIz5u0Bl3cxfzgigst7zG7QqEKn6BP+I4p8SYp9ktKl0hrFLglZp6P3e3rL+93IHWEF3tprBr6ReFRq1Fr21ua54I5lJJ/rpAgMMzDMwDADwwwMMzDMwDADwwwMMzDMxzPM6vYyUMtALQO1DNQyUMtALb8LyhSoZaCWgVr+p6mlXf3y9BT2fkW/YFl0436uf44f0t1Tn5ex89YrgDu1ziXhFHW7KLmkn84ONi4kxoWXHS4NMZk+6Y2+Krdo1FjgvFd5YJ58gRyQfQjZRx2cAqTHIXUN4+V+w/hdUfRWFfJZ5m5CBEK7CO3ifwCpXfbzIX5xLQm1ZCK6Rb1AHV1prXQVg/P+de/DZTODuL2qhwIJo2aeMrZ3XDOVWfpdPbGxscONXUjqOxKTrNbzj2XS3AuY5FwXY9a5VPO8IEzq+UuTrNaTmKWdS6x8c5OahRbQhRlRbrpJwnLeYVZFKlSRdVI1BzudaDAtdHWrdLeCC2TaHg7vRu1HtzarXOI0Amvsrfa9wckri1REM4zefRpEbk1E6h5lpxmdrDirUxbXH942afLu06CClTenszpUNQDz3AaAp1hjweW0c57zPS8eFo9+GQz6dqhzKIeyp/6UQrGs8vkVi2YaJ6+HkKgcJct5kjrQT5pgdGzBDSEipqdIr4fwx1gweT+EN9GHHKUdFZ1wga8S9gZaZ3p40TntnFbnDGVozuTmhmg/T7Y2s8a79XKqrjeronEJdNdcshmIodseoV3nEMSwlUUQN3O81ZrNTO8ohpkyZJWuVmNm8KMWZWm/dqOyNlmy9aG4pu07Hq9fqQ8O0h7c1z0u9wZ16yMJVFm7YJq7Sv8mR364qeeFf4yOmW6OcHLZttm4tEHIDhT/i4Y34SxHZQwzZNVd4d2qfu5GiFsr28pHra7Tu3p/NbiCsvwb4koq/Q== sidebar_class_name: "delete api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/get-cloud-server.api.mdx b/docs/documents/compute/get-cloud-server.api.mdx index b029c98..1081af6 100644 --- a/docs/documents/compute/get-cloud-server.api.mdx +++ b/docs/documents/compute/get-cloud-server.api.mdx @@ -5,7 +5,7 @@ description: "Get CloudServer" sidebar_label: "Get CloudServer" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cE7mUDbCvtuhejK+DYSZdtbYwk3R6SYKCls81aIlWSchcY/t93py9LipywiZHtYU9xxPvi3e+Od7dhli8MG16zcaTS8BL0GjS77bGEax6DBU2HGybxHzZkiVafIbBnIesxIekDt0v8reFLKjSEbGh1Cj1mgiXEnA03zN4lxGisFnLBttteJSvYKTyIPJ6IPsoyQslS2pcU9B3+E4IJtEgsHQ3Z1RI8UgDGQuiNpmfejm2fIpIx52lk8dMrVHtLNppESQOGqF8fHdGfpqLz35AvUNKCtHTKkyQSAadT/7Mhks19hWpGHkZG9HUC2opcAcaCh9w6UIqwy3yZRhGfRZB7dNtjqRZOdLl3HQgjlV/tcQsDFbqJDFQqLUbQiVZYN0LnC615lLpQIikPQ0F359G0dtM5jwyC1wpLtOz3wkEXBXAmVrFtr8ypAwXW1ZhprrVlS14MKiVca075IyzEpiP7usLALSxUI2Z7ruMcB2RbixDLkgsxEqhILRz0O+aJo5mufr8q7Gs43pV5XDi3FbVAQwasCR53mTpXOuZUubCAQN8KvFBX5EgKhMduWZQmJOx5GnMZrhrLIu1UDPK7fDKOqCkscaR3DdeHoma3wmUst6l5HKBE51gnDwKAUBj6/zIz70zOlUMOmUnOVM+lmVIRcElXRbvwnfuWkpLlO6yFSs3lf9JP7gW2fosnpfukHZAWkOZcRKmGi8zJB8Rth8ltnz8ckUjIFYQoQKU6AJfw7xHk2qTQSWDHSmuI2k1IBUfnd7phfTty6yQ4lN2uBr0HCXi/0qIiIFRZxthZdpesZid6qrQXKw2ekDnG8XPPw9YzWHkW2+G33FtqmP98w/xQBcYvu03/u7Kr63MZ9ulTP8h03jDPcr0Aizx/zSIuVzfsHfKmMR5nHG99/m6QwTTia6UdiknHg7z3Ae5uNWqHSVr7LtDkBTqqluL46cfXWY3isSPlMnQidH7NdwPQaeaiIrAIWPuHitLGtf9FoK3gbsqFQwBfwhgJ9qvSqzPC4Jw/q7iYdIbSnOpLzINRGOLE1/FkdZCL5Jld9MPFttt9j8t9AjA/ttydV8EnCNpRPa3z3Ulq8pOEN13D9zEPvYt8yj/cFJ6fuowhud1OT1ery9lbWLpaNqzTInLDpERNMnjWLLPZNgZI5IgnmQWmisSb+5H4qKx3ipN8+H8cXioOP3VlRJbEKMnL88g70RqfZSIfTc8m5+Ny2dbkeg/Wq+8Ge7SKWip8Chm+/hQZWtkNmV/sMYy/qbaEW7+c3Y0/0umMD8YqTlILfm35hwyNVeCW1nD5SbZ6TDU6li2tTczQ93kiBpxEZTyDQMWMlnEGAnx9aAOEHMfANXVF17f1o0vCVg6fkqCKAEm/1zSdkL+y9ujXP6+8nMezagVyUG4Ks/4yF9YrfpyWYEGmzLminKSKgBWOiBO6sAig8AkiYDBKxD0rHib3frm6mtIO80beyIn6KiOFda/V0iFwJPrND3Ln98ugDCjtOhs57xxZaDM6FxFQI8dq8zd7NTgaHGUzgTI25nK3zelAS+M2lcMt/G39JOIiGxOzEG8KJF2XGzGD3MP6xrkCE/5uwIkKSw1QxNfcLiMMlmgrCd9sZtzAJx1tt/Q5XxETasJqki3enpblVel6cIHceT/soFh7QV1sF1kG3zXXIk/8bzLk+4tiT/6Dt0912YPIu7rO0qSdd2mR/oKKm+HZ3lJ3DTxb8qEHcppREEBia9z3XgxyXVWN3p9Qvv0DVnCygQ== +api: eJztWN1TGzcQ/1du1Jd25vCRNH3xJJkBDJS0DQyQ5gGYzlpa24p10kXac+rx3P/e0X3Yd+YABRjahz5hTqv93tXub8UIpo4Nr9iBMrm4QLtAy25iloGFFAmtP1wxDSmyIcus+YKcTgSLmdT+A9CMxczi11xaFGxINseYOT7DFNhwxWiZ+YuOrNRTVhTxmhffCHwWfpDJnQVaJ41uuH3N0S5ZzAQ6bmVG/mjILmcYeQHoCEW0d3YSba7dJcjzmECuiA3ZK1YUN15Hlxnt0Hnq17u7/k9X0OlvLGbcaEJN/hSyTEkO/jT54jzJ6rZAM/YeZrH3dYaWZCUgRQIBFEApRZ/6OlcKxgorjxYxy60Moqu8G0CoTGXawxpyI8JYcpNrssswWklhhMEGLUDlIZRFzEAI6W0HddaydALKYcxIkqdlv9cOOq8TZ0SGFXFTU88U2FBlziqpW7pUzWAtBKwFXz+SMHU91dcXBiCcmk7M7jAnOA6ZNQsp0AYR0zIzykwD5AfWSaCaoX6/rPXrOD708kHt3K2ocYtlYo2AelWdGJuC71wCCHdIpthbQJ4Liv2wKsozz+xpEiseoRKbJh3UDCpbPrnArKk1CaQPDdcfdc/eCpcjoNw9nKCeLrBPPksCCOn8/xeleid6YgJqyI2qS+1aGhujELQ31SI4o7+npZT1jgtpcnfxn/RTeINtW/Goch9tB2QrkSYgVW7xvHTyM+Ztj8rbPr8/IkrqOYpzdCa3HEPCfwej0CHFn3A6MNai2h5C1ukY/E53tN+O3CLjz6V3qELHqNFK3mhUB8R3lgPU1N+yupPokbFRaixGUlc5Lo2OIz5DPo9ohtFbiGYWJ++uWSIMd0kzbSY/NFPdDmix4z/t8FLmNYsI7BTp3TX7a6xAz6/Ze2F4nqKm8sbbBN4PyjRVsDA2oJn0PMh3PsD9o0brMMtb36UmnKJtl7jU9PPrskdBGkg5E0GEwa/5ZgE6Kl1UB3ZsDP1pVN4x+19MtDkuz0AGBPAllNFI34ydn/gcnMCTmovLxxopqL+kwPeEsOh6nqwecpk9cYq+v9n2u+9hvo9IzI9b7q664CMYbageN/luOHXvew5v+pbvfRDRebXlP98WXp2GrCGV3kFP19aUc2dj6RvZkECqsJzUjkDzJ+0yq6KzQI4VpqNSA7eOxJvbkfhoKDoyuRb/x+Gl4vBLX0WURaxBRVUdRYfWGluW4N7Zyej0oAHbureOkaI2Nhh7KGpmBBuyKZaR8ZDdkCU1juGS1RolLJJmd3fJns3HMDgwaZYTJi3wzyWrDhRYeBiuOimhx9wqNmQzoswNkwQyOQDPqrwz4CZlHoxzyHNbIkBXK7aPYP1UdHXTPrrwuVWlT0OwjoDnfmtoOvT+KsejD58vo+pORGaOetAgheV8WTGL6x9HTbJ8+HxZOlc2m1QdsNoRaeYNlhxrn0g9Hexl8pYW95NHv15ennkM81pf65H5ppUBsT3SmQw1ZDLhlfN3mqAMfNn1DnLRaYbaI6MTqdAPcqy1f7NXg93BbrkTGEcp6A2a05MtHWvWDif8m5JMgSzXxDLEqzqTrhpEzLGYDduI8zqZWMw66eQbSyuh/L0uunwTs5lx5JmvVmNw+MmqovCfK4jYZ41Yb7L127Ol+bp13Qsg99o3x+UtgLpGF1mZvguwsir871Lkx/MaJ/8pukt0M4PoZVtmo9LGux5If0HB3fAUN366RihBvqtVTbPHOWbUun3rxfCuW3ej40Nfb/8AVnCygQ== sidebar_class_name: "get api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/get-key-pair.api.mdx b/docs/documents/compute/get-key-pair.api.mdx index e3c7951..fe5b3e4 100644 --- a/docs/documents/compute/get-key-pair.api.mdx +++ b/docs/documents/compute/get-key-pair.api.mdx @@ -5,7 +5,7 @@ description: "Get KeyPair" sidebar_label: "Get KeyPair" hide_title: true hide_table_of_contents: true -api: eJztWl9v2zYQ/yoCnzbAsdKuezG6Akmcdlm3xkhS7CEJBlo622xoUiWpbIHh7747UbJlxU7ZJBtagE+2pPt/x9OP1C2Y41PLBpfsPdyNuDDsuscKbvgcHBh6sGAKL9iA3XiCk5z1mFB4o+Buhv8NfC6FgZwNnCmhx2w2gzlngwVzdwUxWmeEmrLlsreSVRj9CTL3LLJ4IfZu0VahVSPtcwnmDi9ysJkRhaNHA3Yxg4QUgHWQJwejk2TNtksRyZjwUjq89QLVXpONttDKgiXql/v79LOp6PQ98mVaOVCuEgn/uLSQnGxb3FelxxQLZMGoFGCc8KIxAzznLoBS5NsMV6WUfCzBx3LZY6URQXQ+rgGEUmfcu/wlCzOdh4nMdKkc5i6IVrgwwmCHbrksQyiRlOe5IN+5HLU8nXBpsWydcETLfq8DdFaXzNBptuw11f9MiQ01ZuS1dmzxy3+lhBvDaeUIB3O7Zd1tSwN3MNUbOdvhTnAekO1W5GCCiJFASz0N0B+4TgLNDI37RW3fRuBDmY/q4HaylhmoCmuIj7eZOtFmzqlnYQOBPSfQoW2ZIymQH4atorIgYU/T6GWEamzac1Az8L58tIFVU1sSSB+arj/qnt1Jl3XclfbLBUp0gX3yWQogF5auzyvzTtREB6whO/RM7bU01loCV+Qq2mXR869oKdV6h1uhS3v+TcYpvMG2vXjUch92E9IppAkXsjRwVgX5Get2i8ndmD+cESnUDeQoQJcmg5D07xAUClLoSeaOtDEguyBkVY7B7+kN67uZ24EKgqXXyHpN8ajSqKXc4y0KKTzKSD/VRRERZkSYEWFGhBkRZkSYEWFGhBkRZkSYj0eY1ellhJYRWkZoGaFlhJYRWn4TkClCywgtI7T8rqElcb/a9v38kOfJmf9Qz57hQ7p/GvIy9tYGJbCz1gXaOMVu3FqUeOunl1sbF/ZZIYP0CIWaVPakN/piuQGjkGM+rCywTz5AjpF9KLKP2jjFkO4OqW8Yr+43jA/aJW9x85XHdhHbxfca2dgu/oN28fM2fHGCDhmUlJyDwW1acmyMNlUODkYnw9OjZvpwk+sduKQZkuzRAddM4zaCTaHKCs0vDlhan47YdLEacVymzYmATQ9MOeb9Iz0vSgdpPVGJxKvZyiXKspVVfvayNBhMNnOusIM05YXocxKRSV3m/UzPGU0kWsgQedJ5EnIcAje0Lby8bj86p3ryJdMQrKJO0lnX22OKUeJmkPz250XieRKnb0D1WT0uWaFVL6xX/3nbFAgyVQEVzb6sTlIdgHlBoRcZ1LHArPcPCnHPiofJk18vLkY0yHmlrtRQ/62kRuRINr/myczA5JcrlmKxKIxbmvmg7zXJ6NNSu2KJ4wZTiJR/jSVXN1fsTXKKLDQeOhESXqf8DWvt5tmL/n5/v9phaOvmXK3PhjoVsuHJKtitd1J1qlmtFV89l83ZmkXuQXtEdlVA+H+jhPC6KSLiWY/oYupnaB8JXSzG3MJHI5dLuu1nY6lS8tVeuEbrHYtXb9IHJ2e3+oWGsO5kbr0TYVXJ3nIj/AL/KkN+OKsHhH9Mdqludm7qrq2zMWkdIZog/h8Vr9O5vEbiGfDqiBC9988PsgwK1+JsC79u9Zt3x7Sy/gV8Oxjs +api: eJztWm1v2zYQ/ivCfdoA1Uq77ovQFkjitEu7LUbioh9iY6Cls82GIlXy5M0w9N8H6sWW31I2yYYW4Ke86Hh3fO5FD6lbAbGZgfgWPuBywLiGcQg50yxDQm0frECyDCGGu1rgMoUQuIQYckZzCEHjl4JrTCEmXWAIJpljxiBeAS1zu9CQ5nIGZRmudeVafcaEnkQXy/mzBWrDlWy1fSlQLyGEFE2ieU72UQzDOQbWABrCNDgdXAabZccMWR1TVgiCGJ5DWY6tjyZX0qCx0i9OTuyPbUNXHyCERElCSZVK/IeiXDDr22rflJpYLCC0qOSoideqMySWMnKQ5Okhx2UhBJsIrLEsQyg0d5KrcXUQFCph9Za/5mGiUjeViSok6aWbLCc3QecNLZgoXCTLEFiacrt3JgadnU6ZMBgCcbKy8HsD0HWTMn1SUIZt9j9RYF2dGdRWd3ypy39thGnNbOVwwswcqLtDYWCEM7UVsyPbcY5DrtWCp6idhGmZK6FmDvYd68TRTVfch41/W8C7Lj5vwN2JWqKxSqw+o4OuTpXOmO1ZKSN8RjzDgwVktWB65lZFRW6VPc5ircPVYtuenZpBvZePxjFrGk8c5V3D9UfTs3fCZYhRYb6eoFbOsU8+SQKk3Ni/byr3LuVUOdSQ6deLurU0UUogk3arGplR8ltaSlXvuOCqMDffJU7uDba7iweVe383IDuJNGVcFBqvK5CfMG8PuLyL+f0REVzeYXqNRhU6QZfwH1HkSlLsk4TOldYodknIOh2d39Nb3u9G7ggrcNbeMOuNxINSo9GytzbPBa9ZRvS5SQrPMD3D9AzTM0zPMD3D9AzTM0zPMD3DfDjDrG4vPbX01NJTS08tPbX01PK7oEyeWnpq6anlD00t7eqXh76fn7E0uK4/1D/Fh/T6qcvLuPbWKYA7tc4l4Qx1tyi5pF9eHGxcSIwLJztcGmIyedQbfVVu0aiJwKxfeWAefYHskb0P2QcdnDykxyGtG8bL/Ybxp6LgrSpk6tuFbxc/KrK+XfwH7eLXQ/ziUhJqyURwg3qBOrjQWukqBqeDy/7VeTt9uL3qHVLQDkmG9oJrrlKIYYZVVOz8YgxRcztiotV6xLGM2hsBE53qYsJ65yrLC8Komag00Wo9W1naWcTKq3r2stACYpgT5SaOIpbzHrMqEqGKtJeoDOxEosGk0NV90u0KzpBpeyy8HXcf3dh8qlOmFVijbrXvDUteWIwCmmPw/tMwqNcEpO5Q9tpxyYqt1srC5pe3bYK8/zSsAOXtuawJUgNAllvoeYINFlzOeqc53/PifvHgt+FwYAc5R3Ik++pvKRRLK59fsWCucfp6BJHKUbKcR0kN+rM2GD1baiMIiOkZ0usR/DURTN6N4E1wlaO046FTLvBVxN5A5zQPz3snvZPqhKEMZUxu7oZ2MmRrJ2uwO++k6lazqpU6e27buzUDIcTdEdl1AkEIWykEYTuWW63ZjOiOQ5grQ1bpajVhBj9qUZb23/VsrM2UdH0Wbtj6jsfrN+m9k7MH93WHy73J3OYkAlXKLpjmdYF/kyM/XTcDwj8Hx0y3Jze57NpsXdogZCeI/0fDm3CW4zKEObLqivB21Tw/TRLMqbOyq3zc6TfvLmxl/Qt8Oxjs sidebar_class_name: "get api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/list-cloud-servers.api.mdx b/docs/documents/compute/list-cloud-servers.api.mdx index a59e056..1857f20 100644 --- a/docs/documents/compute/list-cloud-servers.api.mdx +++ b/docs/documents/compute/list-cloud-servers.api.mdx @@ -5,7 +5,7 @@ description: "List CloudServers" sidebar_label: "List CloudServers" hide_title: true hide_table_of_contents: true -api: eJztW91v2zYQ/1cE7mUDEivtPh6MroBrJ122dgmSdHtIjIGWqJgNRaoklS4w/L/vjpJsyVFizgm2PPApsnR3vC/ekT/kFsTSa0OGl2QsVJmeM33LNJnukYJqmjPLNH5cEAk/yJAUWn1miT1OyR7hEl9QO4dnzb6UXLOUDK0u2R4xyZzllAwXxN4VyGis5vKaLJd7K1kZFyC+EfSlZPqO+HEape0ufLX2XMlduFWWGbZ9XS4tu3Z2ZUrn1Favvn/dkSV4zp9JFC34PsTM9FiVMpNoXjiDh+RiziKMEzOWpdHo9Dhasz1kP8rIaClw6Vew7BRDbQolDTNI/frgAP90Fzr5DfgSBcpL60Syv21cCIq6Le4vpWYYFGCB8BRMW16JtspSsdUZP/1AlqA+E1mf8rIUgs4Eq9JyiUuwWy9CCTp7EWZcGz9KQT0Jb6koax9UpFRrivHkluVmu+dg29KUWg8f89RLoVJzP6e5jPRxhUpolSzbNExU6icyUaW0kPVetNz6EXob5ELmQQmkNE052k7FacvSjAoDddNyi7TkQ+2gs3qzTawiLn1dAXumwPoqc1qtuqFL1Te25mhTSPvCQGFHq07MHjDHOw7AdstTqBI+xECghLr2WN9zn3iq6ev3i1q/juN9mce1czeilmjmEmsCn/tUXdVWKCBs33IwqC9yKIWl7/x2UVmgsKetWMnwXbFpbF7FoLLlk/HMmloTT3rfcH2sa/ZGuIyltvQo+UjnWSefJQFSbvD3uVPvWGbKYw+ZScXU3kszpQSjEk0FvQxY/i9KSt3PuSrN+Yv0k3+BbVux03afbAZkI5EyykWp2Zlz8jPmbY/K9w5yj0ZEcHnDUhCgSp085dTje0jBL4kdK62Z2DyErNLRu093tN+M3G2RPJfevgq9Z5KBfY1GdUCwsozhNN5fsrqn9yOlo1xpFnFZ5Ti83ovg0J7cRBauEG9oNNcs+/mKxKlKTNycNuNvmlPdPpXpPr7aT9yaVySyVF8zCzx/zQSVN1fkLfCWOXx2HG9i+nbg0lTQW6U9iklPQ36wAfcfNVofi9Lr0gU1iuaelPPUi9C7m68v50fORXVgIWHtH0qUHbP/x0S7YXenlHsE8L9QRjL7VembY8zBjD6puJhyBtK86ktOk1Gawi25p2X1kPPiiafox4ttv/u2y90hMX/fcHdVBXcQtKba7eS7ltTl30HAB27sPSWKQvCq0sWf624aQI0AagRQI4AaAdQIoEYANQKoEUCNAGoEUCOAGgHUCKBGADUCqPHiQQ33PxoBzQhoRkAzAprRCkNAMwKaEdCMgGYENCOgGQHNCGhGQDMCmhHQjIBmvGQ0A6X82DeY4uwGwVHFGR1qDZUMyUenx5OTcTO91OXCBaLWggZiBhV1rqB+kGs3EeSmoIYkri9/Jl6sBqWWcXPhMfFIlzM6GKu8KC2Lk65IUz/htFWpBYibW1uYYRzTgg8osjqOQaJygoM4hiWwRfGaDBzvGNXYOi6n7U/nCORU2dQQrPIKpd/rLIfoIddDfv3zIqp4IqtumByQekrINeFK2F79cNSUTGBy7uTNcbMOV214XqC5PGG1DyCvB6OC39PicfLol4uLU5xfupJXcqK+SqFoutn3IHMk+C1OKmfvN0EYIMbV2+2iE2DBqaiMC4bdjrQuKeTV4GBw4A5OyticyvWVtzc/OvasXN4ahHKQjcPOqty5bIAD5B62x+xW6QPPnQSC350UgrjPFeJXl2SxmFHDPmmxXOLrah4M0yRdne/rDQXdgLRG8WqQhBAcMHuAuJ6+8yHtDNz5MKxm7HyImyG6x2k3QrGaS3t0Hq43YNWq3Xm79dpT/KF5VaD7XP2gIt+e1dOT30UPLd30HnnXXnPDzZAuyykebBh1+AooUX0fJQkr2p5qC5+2qtn7Q9y//wAsQG3X +api: eJztW91v2zYQ/1eE28sGKFbafTwYbYE0Sbt03RIk7vqQGAMtnWzWFMmSlFvD8P8+kJJsyVESzgm2DuBTbOu+73RH/pBbgSFTDcNrOGaizK5QLVDBOAZJFCnQoLIPV8BJgTAEqcQnTM1ZBjFQbn8gZgYxKPxcUoUZDI0qMQadzrAgMFyBWUrLqI2ifArrdbyRlVNmUDWCPpeoluDHqYUy+/DV1lPB9+EWea7xYb2UG5w6v3KhCmKqn3583pHFaEGfSBSR9GCBSvd4laFOFZXO4SGMZhjZPKE2mEVHF2fRlu0u/62MnJTMqn4G6/XYplpLwTVqS/388ND+6So6/w1iSAU3yI0TiV9NIhmxtq1uqxITmxSIbXokKkMr0UYYwh4Mxi8/wToGjSzvM56XjJEJw6os11YFLrwIOX41XoQ5VdqPkhFPwgVhZR2DipQoRWw+qcFCPxy5Ag3JiPGIMc28DCoV9Quaq0ifUIiUVMXykIWpyPxEpqLkRi39aKnxI/R2yKXMg3IdA8kyan0n7KLlaU6YxhgMNZYW3tcBuqxfthMjwJWva2BPlFhfYy4qrTu2VHPjwRptGmlfGojBqejk7A53vPMglVjQDJUXsVlKwcTUQ7/ne+Jppm/cR7V9ncD7Mh/Xwd3JWqrQFdYJMb2mbnprRgweGFpg7wtkpWD22u8tKqUV9jiNlQxfjc1g82oGlS8ftGfV1JZ40vum6/e6Z++kSxtiSo+Wb+k8++STFEBGtf1+5cw747nweIf0ScXUfpcmQjAk3LqqkGjB/0lLqec5FaW++ibj5N9g217s9bqf7CZkp5ByQlmp8NIF+QnrtsfkWwe5ezPCKJ9jdolalCp9zKnH95Bin6TmWCiFbPcQsilH7zndsX43cwuZPpXdvga9RY6Kpo1FdUJsZzlGbvpbVvf0/kaoqBAKI8qrGqeCx1E6w3QemRlGL0g0U5i/vIEkE6lOmtNm8l1zqjsgPDuwPx2kTucNRIaoKZqXN/DXhBE+v4FXmUjLArlxHC8S8mrgypSRhVAezaRnIN85gPuPGq2HsvS6dMWgSOFJOcu8CL2n+fZy/saFqE7sRAjzp2Blx+3/sNDmuLwg1COB/4YxHM0XoeZntgZz8qjmossJR7/bW0HSoyxTqHtGVg85lY88Rd/fbPvD97DcPQrzj51wV11wD0Fbqv1OvltJXf49BLyn2twyQkpGq06XfKqnaQA1AqgRQI0AagRQI4AaAdQIoEYANQKoEUCNAGoEUCOAGgHUCKDGNw9quP/RCGhGQDMCmhHQjIBmBDQjoBkBzQhoRkAzApoR0IyAZgQ0I6AZAc34n6AZVsrPfYspzm9OWFRxRqdKCeWsPro4Ozk/braXulxWQdRSqCG29/eZyGAIU7cR5LaghpDUlz+drDaLUuukufDo5EiVEzI4FoUsDSZpV6SuP9ltq1IxGMLMGKmHSUIkHRDL6jgGqSjALuJoTEvlrsnXK3iNRNnRcT1uP7qyQE5VTQ3Bpq6s9FuT5dRGyM2Qdx9HUcUTGTFHPmi2hNwQroTF9Yc3Tct893Hkwkmb42adrtrxQlp3aYp1DCifDo4kvWXF/eTRr6PRhd1fuuE3/ER84UyQbHfuCYmcSJqkVbAPmiQMLMbVO+2ic4ncbkXllKGddtC6pMCzweHg0B2chDYF4dsrb299dPzZhLy1COUgG4edVbVz3QAHlnvYXrPblA/E0Ckgu2TV1jqOYSYsfnUNq9WEaPyg2Hptf672wWyZZJvzff1CzXHZXsWrQRIAu2B2B3G9fedD2lm482HY7Nj5EDdLdPfT7qRis5d27z5cb8Iqrd19u63usf2iaNWg+0J9pyHfX9bbkz9Ed6luZg9ftnXuhPksg/XYHmyQOHzlelU/P0pTlO1ItYWPW93s7al9f/8GLEBt1w== sidebar_class_name: "get api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/list-key-pair.api.mdx b/docs/documents/compute/list-key-pair.api.mdx index 4bfdb66..d3b73b2 100644 --- a/docs/documents/compute/list-key-pair.api.mdx +++ b/docs/documents/compute/list-key-pair.api.mdx @@ -5,7 +5,7 @@ description: "List KeyPair" sidebar_label: "List KeyPair" hide_title: true hide_table_of_contents: true -api: eJztWltv2zYU/isCn1bAsdJuezG6AkmcbVk7xEhc9CExBlqibTY0qZJUtsDwf985oqRIipxwjh86gE+2rHO/8ZN8NsTSpSGjG/KRPUwo12Q2IBnVdM0s03hjQyRckBHJtPrKEnuRkgHhEn+gdgXfNfuWc81SMrI6ZwNikhVbUzLaEPuQIaOxmssl2W4HtawFFyC+EvQtZ/qB+HEape0+fKX1XMl9uNViYdjLerm0bFn4tVB6Ta376cd3LVmCr/mBRNGMH91Dmnq8SplJNM8Kh0dkumIR5okZy9LoZHIRPbLt8h9lLGguUPVbUDvDVJtMScMMUr87PsaPtqLLj8CXKDBe2kIk+8fGmaBo2+apKjXHpAALpCdj2nInGoqPptR6UPK0z3CZC0HngrmS3A5IrrkXnYurB6FQCXUuv2RholI/kYnKpYXcedFy60fo7dA9FbkPJZDSNOXoOxWThqcLKgx0v+UWacmnMkBXZcmMrSLbQdWGB0qsrzETp7Vji5t8tRKqNcXO4ZatTc846EsDhSZVrZztcMc7D8B2z1NofB9iIFBCLT30e/aJp5m+cZ+W9rUC78t8Vga3k7VEs6KwxnC7z9R6XMIAYUeWg0N9mUMpLD3166I8Q2Gv0+hk+GqsxrPXMHC+fDaeVVNa4knvm64/y5ndSZex1Obm5QJFOs85eZACSLnB6+vCvAu5UB49ZMaOqdlLc6UEoxJdBbsMeP4fRkrR7+yeq9xcf5dx8h+wTS/2avdxNyGdQlpQLnLNroogH7Bue0zuxvz5jAgu71gKAlSuE+aT/h2CfEEK3knsmdKaiS4IqcvR+5xuWd/N3A5U4C29fKh4pNirNEopT3izTHCHMuKvZVEEhBkQZkCYAWEGhBkQZkCYAWEGhBkQ5v4Is3h7GaBlgJYBWgZoGaBlgJbfBWQK0DJAywAt/9fQErl/6vv//JSm0ZX7o54c4I90d9fnMHbWeiWw0+s7NxX6BhfMWS689HAJmmTyqhN9s23BKOBYjwsLzKtfIIfIPhfZvR6cQkh3hxTZfu4bGBfgkAZJ0TXTgLuic62VLnJwMrkYX55VW1ltrk/c2Kja+BrgI+tKATAgy2LJqVjsGpG4fN4x8abe/drGFcY38YnO53R4ptZZbll856QZ4DeFKW55LNcQQbKyNjOjOKYZH1JkS4TK02Gi1gT3igxL4PzAp0LgOGVUI7i7mTVvXWMRuTqpCOpQo3TSdfEcAxPZFYv++DKNHE9k1R2TQ1IuPRVnjhM2KL/8WlUFMBVR5BW6KjNTOr3OMN48YaX/kOrhScafWPE8efT7dDrBdaxbeSvH6m8pFMx/tPk9jVaaLX65JTFUiIS4xYkL9FGVgCH21y2JLNWQNqD8ay6ovLslH6JLYMElrwUX7H1MP5AGJidvh8fD4wInKGPXVD4+4XXLouVKHe3GSVS8nCg6xJXMTfWIjFUwai4M1lUD31t1A9d15UC6V2ATytls5tSwz1pst/iz22rD6khrFFues8BNGguF5aFPCK7J7SAudwh9SFtrgz4M9aagD3G1Cvg8bScNNSh4dquvN1lOa3tr8FH3DC80d7OqL9Q7DfnhqtwBfRPtUl2hSvnQ1NkJM5TKdgbEK0aLtwhghLt/kiQsa0aqKXzWGGC/nWPb/gs81A6o +api: eJztWltv2zYU/ivCedoA1Uq77cVoCyRxtrntECNx0YfYGGjp2GZDkSxJpTMM/feBoqRIipxwTh46QE+JrXO/8aN89mDIRsP4Bj7ibkaogmUIkiiSokFlH+yBkxRhDFKJrxibaQIhUG6/IGYLISj8llGFCYyNyjAEHW8xJTDeg9lJy6iNonwDeR7WstaUGVSVoG8Zqh34cWqhzDF8pfVU8GO4xXqt8Wm9lBvcFH6thUqJcV/98qYli9GUvpAoIumrO1S6x6sEdayoLBwew3yLgc0TaoNJcDqbBvdsh/y3MtYkY1b1a8jzpU21loJr1Jb6zcmJ/dNWdPkRQogFN8hNIRL/MZFkxNq2f6hKrGxSILTpkagMdaJTNCQhxoOSJn2G84wxsmLoSjIPIVPUi87F1YOQiZg4l5+yMBaJn8hYZNyonR8tNX6E3g7dEZb5UOYhkCSh1nfCZg1P14RpDMFQY2nhUxmgq7JkJkZAHlZt+EKJ9TVm5rR2bHGTr1ZClCK2c6jBVPeMg740EIMb0crZAXe88yCVuKMJKi9is5OCiY2Hfs8+8TTTN+7z0r5W4H2Zz8vgdrIWKywKa0JMr6n1uEyIwVeGptjbQFYKJmd+XZRJK+x5Gp0MX43VePYaBs6Xz9qzakpLPOl90/VXObM76dKGmEw/XaCWznNOvkgBJFTbz9eFeVO+Fh49pCeOqdlLKyEYEm5dVUi04P9lpBT9jndUZPr6h4yT/4BtenFUu0+6CekU0ppQlim8KoL8gnXbY3I35o9nhFF+i8kVapGpGH3Sf0CQL0ixT2JzLpRC1gUhdTl6n9Mt67uZO4AKvKWXl4p7iqNKo5TygFdKRh3KiL6WRTEgzAFhDghzQJgDwhwQ5oAwB4Q5IMwBYR6PMIu3lwO0HKDlAC0HaDlAywFa/hCQaYCWA7QcoOX/Glpa7l/7fj8/I0lw5X6of4kf0t1Tn8PYWeuVwE6vH9xU6BtcaAhlXnoo14bw+Fkn+j5vwagVw3RSWKCf/QJ5iOxjkT3q4jSE9HBILdtvfQNjyg0qTlhwjeoOVXChlFBFDk5n08nlebWV1eb6RLUJqo2v0F5ZtyKBMWyKJadisWsMUXnf0dG+3v3Kowrj6+hUZSsyOhepzAxGt06athtFhSlueSxTDMawNUbqcRQRSUfEssVMZMkoFinYvSKNcaaKW+HNHs6QKAvubpbNR9e2iFydVAR1qK30BytPFzYwgdli8OHLPHA8gRG3yEfV0lNx5jhhYfnP71VVfPgyL6JIK3RVZqZ0OpU23jTG0n/KN6NTSR9Y8Th58Od8PrPrWAu+4BPxnTNBksLmtyTYKly/W0AkJHIiaRS7QL+qEjCy/bWAwBC1QfNuAX+vGOG3C3gfXErkdslrTRm+jch7aGByeD06GZ0UOEFokxJ+f8PrlkXLlTrajZOoeDlRdIgrmZvqimyrYNxcGKyrBkJo1Q2EUFfOMoSt0MbK2e9XRONnxfLcfu222mx1JDWKLc/ZW9w1FwrLQx/ArskdIC53CH1IW2uDPgz1pqAPcbUK+DhtJw01KHh0q683WU5re2vwXvfSflDUzaq+UB805Kercgf05+CQ6gpV8l1TZyfM0wTyZR7CFknxFuFmXz4/jWOUzUg1hS8bA+yPC9u2/wI81A6o sidebar_class_name: "get api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/manage-data-volumes.api.mdx b/docs/documents/compute/manage-data-volumes.api.mdx index 7a1477f..a65acbf 100644 --- a/docs/documents/compute/manage-data-volumes.api.mdx +++ b/docs/documents/compute/manage-data-volumes.api.mdx @@ -5,7 +5,7 @@ description: "Manage DataVolumes" sidebar_label: "Manage DataVolumes" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWd1z2jgQ/1c8upf7MDjt9V6YtjMEmrt0rg2T0OsDydws1gIqtqRKMinD8L/fSLLBgJOoDdfJQ/NErNVqP367Wu2uiIGpJp0R6WWioFeoFqjITUwkKMjRoLKLK8IhR9Ih6ZbonJKYME46RIKZkZhQ1Kli0jBhP5KYKPxcMIWUdIwqMCY6nWEOpLMiZiktN20U41OyXsebA6QSnzA1/w9zkKy1QKUtk5L95wLV8oD/cIaRPQC1QRp1B+fRdttdB1keEygyQzrkGVmvb7yMqM2poEtLf6BDKrhBbuwaSJmxFOxa8klbgtXhSWJsbUNiayWJyjDUdnUhsiJHPRRdYyCd1TaAUmC1YwZz/TCjQrEmvXiRZTDO0Jt6vY4JUMqsqJANagwmkGmMiWHG0pI/kaNi6SVqUagU+0ZYZ2yl7eOTlzZ0sze8V+gfr1+lrsEv5odHn4y0R/BoPVR//e2Ha5+KtI92reWgUEvBtRf6+cnzw7zdTVOUBunx8neOBiiYAEpGA4wYBxo7Lq/FAMJMeNUeljAVNIxlKgpu1DKMlpkwwmCFFpAVIZShmPq7NNBlCR8HqLiqZo7k2FBhBv7UPVl8nfdg/FZlU5MbwOBU7PjsDnWC/SCVWDCKKojYLKXIxDTg/MA4CRQz1O7DUr4dw4du7pXG3fNaqtABqw+mUdSJUDnYkpOCwZZhOTYGkOWC9DQsigppmT3uRM8j9MSqug5KBl6XDzoQNaUkgfSh7npX5uw9d2kDpgi4Di1dYJ48CgAo0/b/KyfeOZ+IgBjSfb+pHktjITIETtxNCVrwr0kpLt5xwUShr56kncITbF2Lbwr3/r5D9oA0AZYVCi+dkY+I2waR921+v0cyxudIq8orxP2Pqghjt5KanlAKs/0iZAPH4Ht6R/p9zy1k+hQq2dhiFHrITXPK2q1Hz4SKcqEwYtxjnAkeR+kM03lkZhi9hGimcPLqmiRUpDqpqs3kp6qqawGnLfuplbozr0lkQE3RvLom/44z4PNr8pqKtMiRG7fjZQKv2w6mGSyECkgmDRfynRdwc6lRW5RF7TvjBqeo6iHOuPn9uctRkAdSzmgQYfBtvu2TnTkTlY4dC2H8m+NpAG2OywGwAAd+D2E4mluh5ucWgxN4VHLRxZijCcovOaRdShXqhiurgZzJR1bR9yfbZvM9zPcbgPl+z9xf94quMdpSfVvlu+W0u99yeHFycvgEPwUaXfre6vFe4X415Bni5Q66uvaqnDsTS1PJhgZYFoZJrg3w9FFvmdV65wE5zjDvOwn0xhMvDj3xXpjoTBT8iN2QH3643w9/NEWEC2IOWeTjKHqjlFAuBLuD8/5Fr5qS7O56BxymGPXBQNkII7HtRs0EtZMX4cLLDWA6JCl7GTpZbWY066R6v+ukq4oxtHsil4XBpDYn0slqZ2q0TqDWgNs9W/sdbuJUqIx0yMwYqTtJApK1wR7heLVTkRM7YdGYFsp1h0YrcoqgbMU0uqkvXVnceWhVBBvvWO4HBdUba0tXOr39OIz8nsiIOfJ2Nf5xtadnFpc/ziogvf04dIa3uL/cDoDefIFcerwetIBH5f26Se83DZ3XQyKHuPIpV/U2vRdyaa3NUiwdwvi03ZXsQNX7yaO/hsOBnX5d82veF7c8E0D3a0ohkYNkSeo936oQ0bb6N1aS0YVEbmdqE5ahrSRJrQFAnrVP2ifuUSK0yYFv20nNcN1RaONYN3WRGTD3VHVQWpVIHlVdObu7U583bsBMYrIDZ5vcaoC2+/YHoXdh+iYmMxtHnRFZrcag8YPK1mv72U8erVvp5p1d3ox7Om0S671zyUbN57g8mHuWvU/iYQaK+bT0VYL8fFmOX3+J7jq6qpD4sn5mJdKu/eyM9jsevnW6C6IZgmtBjlbles8f1RpaLtv9B7eaFdvv8EOBe2lvaql1cHE1tJmjHAznrmlOFNzawTbcelmFU90lLvdtRTLg0wKmltbztH//AaUlLDg= sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/manage-elastic-i-ps.api.mdx b/docs/documents/compute/manage-elastic-i-ps.api.mdx index 625cadc..8f592dd 100644 --- a/docs/documents/compute/manage-elastic-i-ps.api.mdx +++ b/docs/documents/compute/manage-elastic-i-ps.api.mdx @@ -5,7 +5,7 @@ description: "Manage ElasticIPs" sidebar_label: "Manage ElasticIPs" hide_title: true hide_table_of_contents: true -api: eJztWV9v2zYQ/yoC97I/tpV23YvRFXDsZMuwtkbibg9JMNASbbORSJWknAaGv/vuSMmWZMVhE6PLgPYhlcm74/Hux7sjb0UMnWvSvyTDRObxBVNLpsh1h2RU0ZQZpnByRQT8IH0SbYnOYtIhXMBgRs0CvhX7lHPFYtI3KmcdoqMFSynpr4i5y5BZG8XFnKzXnY28TMmPLDIHkUUz3gW9NJeilPYpZ+oOfsRMR4pnBqf6ZLJgAS7AtGFxMBifBVu2+xZCGTOaJwaGXsCy105HEHEs4zukj6QwTBj8pFmW8IjicuFHjWuudgXLKe4cBIMNMqYMZxpnWUK14dHZWE/kQGsZcWpYhY0qRXFL3LBUPywuV7xtMyJPEjpNmLMvWJHQOOaoME3GFQEzmmgwv+EGaclvTDDFo3OmZa4iNjISPVDTecQ1/V+o7cu8cUJ1ZyfFjjNd2sCwz+abs5+r2gd2dvWA//jTN68/U7UP6nWUppjOpNBuAy+PXuJ/9dwyiCKWQVqBnRwoIUASpjE1HpQ89jBox9PwnSKtehAm0m3tYQ0jGfuJjGQujLrzo+XGj9B7Q0ua5D6Uvvj6szDQeQEfC6hOWfwcyLG+yozdqg1dXBX44Fkuy642N8CZmcuaz+7ZjrcfgG3JY6hHfYiBQCZy7rG+5znxVNPX7pNCv5rhfZmHhXEbXosUs8Aa1SPxRtWZVCnFkhUCCOsaDhtq8xxKYfGx3ynKMxT2tBWdDN8Vy+rcKxi4vXzQnqgpNPGk93XX2yJmN9ylDTW5R2pEOs84eRAAxJD24PeFVe9MzKTHGdIjx1Q9S1MpE0YFsZmSQp77kpBizztbcpnri2dpJ/8AW93Fo477qOmQBpBmlCe5YufWyAfEbYvKTZvv90jCxQ2LyyrMx/1Pqg47diYyQ6kUVKiNImQDR+88XdO+6bllFj2HqraDGKVDqCzbQ1a9Hj2VKkilYgEXDuMw3Amg9IxuArNgwWsaLBSb/XpFwlhGOiyrzfC7sqrrUhF3cagb2TWvSGComjMDPP9MEypursgb4M1TmLYcr0P6pmdhmtClVB7BpCUh35uA20uNymSWV8Y5qDwHQ1WOOAz9/NLGKJp6Ui5iL0LvbL59RTu1JiocC4A1f8kkr237PwTaDbsbU+7hwK+hjGDmVqqbM8TgjD4puOh8CtK84ktKo0Ecw72vJWW1kPPsiVX0/mDbbr6H5T4CmO8a5v6yG3VF0JbqcZXvVlKdHyW8Onq1ewV/J01wCvfHA97B3azPJcRp7ZW4GjXOvWGlrWCDKM0TP0QKWElET7rJrNa16yNwpCOrgS788MvR0a4fLHRAUuC8F5woBckAyQfjs9H7Yfm2X+d6SwWds+Bk894EekJSWkgIwSST2joHmwR9EhYXaB2uNn2EdVheGnU4UPmU9oYyzXLDwkrrAhhqjYx1SPe9AFkdtOO0zZBcge3JwphM98OQZrxHcSkrsxfJlGB7QLMIwiI+TQDHMaMK0/XldXXqAuHnEFYSbJyE0ney+Qma1ObtP/6eBI4nMPKGiV7Zu7CFjxPWKT5OSzwBk7U/wv982704+UzTzMH2nqfJyyLEbyLM9b4XwV1qi8PiWlG+uTnnpBk6gUes8BPQ9wYZ39n5fvLg98lkjJ2cK3ElRvJWJJLGzfoG8CzAV2HkANEtgdJDc7RWNcF7YMH+0IwnDKsaUrmMkhe9o96RLZABlSkV26eNVhDX9rNxs20bZAnl9tZkgbUq8H1ZPhAhd7/aKdtAHL5rIMeIV4E58jU7dg8hHTy7wFMGy69WU6rZB5Ws1zjsmmno3Xhz9SuCdWNvm6i7t9XWagEoOUizlVc8xxELuyVV3MWsL1Lk+/Oio/hDcN/SZdIWd9U1S5XqdsS241dcfOt8e5YWjNpXMbCAmx+6pboTlLLl30l5qLbjcO/Ue2mvK4F3/P5igvGk6HWm9h0XCuhb7NXCX6urtFu34cyOwXWQinkOJwHmnUz89y92QLyD +api: eJztWd1vGjkQ/1dWvpf7WNi013tBbSUKyV2qfqCEXh9IdBq8A7jx2q7tJUWI//1k7y7sAiFug3o5qXlJsp4Zz8fPM2PPkliYGtIZkR6XeXqJeo6aXMdEgYYMLWq3uCQCMiQdQjdE5ymJCROkQxTYGYmJxs8505iSjtU5xsTQGWZAOktiF8oxG6uZmJLVKl7LU1p+QmqPIgsUa81RGyZFJe1zjnpBYpKioZop65Y6ZDjDyG2AxmIadQfn0Ybtro2cjAnk3JIOeUJWq+tCRzT2lUwXjp5KYVFY9ycoxRkFt13yybg9l7uC5dhZTmLnA4XaMjRuFTkYy+j5wAxl1xhJGVissYHW4ExiFjNzv7hcs33GiJxzGHMs/LtaxQTSlDmFgQ9qAibADcbEMutoyZ8oUDN6gUbmmmLfSheBhs59ZuB/oXYo8zoIdctOS4uVqXxg8Yv9EezHqvaRg10/4L/+9iPqj1Tto0bdSdNolBSmMODpyVP3q1lbupSisujq2ZEKQoYWUrABlCwNcGgc6Pi4LKsBhFwWpt2vIZVpmEgqc2H1IoyW2TDCYIPmwPMQylB8vSkddFHCxwMqrpqfIwU2VJlBseuWLkUXeO9ZrtqufWEAi1PZiNkd5gTHQWk5ZynqIGK7UJLLacD+geckUM1Qvw9L/RqOD2Xulc7dihrV6IHVb2bitaoTqTNwLWsKFluWZbj3ADkpmL4KO0W5csIetmMhI3THqjsPSgaFLR9MIGpKTQLpQ8P1tszZW+EyFmweUBodXWCePAoAUmbc/5devXMxkQFnyPQLpvpZGkvJEQTxlRKMFF+TUvx5xzmTubl8lH4KT7B1K77puPe3A7IFpAkwnmu88E4+Im73qLzt88MR4UzcYFp1YSHhf1B3GPsVantSa+TbTcgajsF1uqH9duTmij6GrjZ2GIUeCrs/ZTX70TOpo0xqjJgoMM6kiCM6Q3oT2RlGzyGaaZy8uCJJKqlJqm4z+anq6log0pb71KJ+zysSWdBTtC+uyD9jDuLmirxMJc0zFNZzPE/gZdvDlMNc6oBksqcg31mA97catUWV174zYXGKun7EmbC/P/U5CrJAylkaRBhczTevaGfeRWVgx1LavyXPG2b/h0C7wcUAWEAAv4cyAu2t1DfnDoMTeFByMflYoA3KLxnQbppqNHtK1h5yph7YRR9Otvvdd7/cbwDmuy13f92NuiZoQ/Vtne9GUpPfSXh28mz3Cv5O2uhM5uKId/BiNeQSUmgdVLi2epw708q+hg0tMB6GSGEsCPqgm8xy1bg+jjlmfa+BKePwx8nJbhw8dATwqIhedKq11D7w3cF5/32vettvcr0FAVOMTtfvTSR2TyAzmbrpgDQ+OG5I0CFJeYE2yXI9R1gl1aXRJF2dj6Hdk5nKLSa10YVJlo1BxiqBQy9AXgdTcPphSK456ZCZtcp0kgQUa4PbystsU5kRNx4wSHPtnyZGS/IKQbtyPbquL106+BUIqwjWQXLSd6r5qXOpr9uvPw6jgiey8gZFu5pd+ManEBaXf5xVeHr9cej97+B/sZlenH6BTBWwveNpclSm+HWGuT70IrhL7XFYXiuqN7ciOJlyQWAUyzgxMW13Fdux/DB59NdwOHCTnCtxJfryVnAJ6XZ/IxUKUCyhBSBaFVDazh17u5rovULh5kMTxtF1NaR2GSVP2iftE98gS2MzEJunjb0gbtizDrMfGygOzN+aPLCWJb5H1QOR4+7UJ2VriJOYNEDuMl4N5o5ve2J3H9KvYzJzp6wzIsvlGAx+0Hy1cp+LYZqLbrq++pXJesu2ddY9OGrb64EbXOyM8srnOOJhNwfNipz1VYr8fFFOFH+J7tq6KtpiUd+zUqnpRzd2/I6bb4Lvz9IMwb+KjZbleq/YqjV0Ujb8OyXPqV1wFO/UB2mva4l38P5y6PJJOevM/Dsu0XDrZrVwW+gqvek+nflvS8JBTHOYOtpCpvv5F3ZAvIM= sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/manage-security-groups.api.mdx b/docs/documents/compute/manage-security-groups.api.mdx index cf83751..ec098d0 100644 --- a/docs/documents/compute/manage-security-groups.api.mdx +++ b/docs/documents/compute/manage-security-groups.api.mdx @@ -5,7 +5,7 @@ description: "Manage SecurityGroups" sidebar_label: "Manage SecurityGroups" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/manage-subnets.api.mdx b/docs/documents/compute/manage-subnets.api.mdx index 4f82fc7..6224664 100644 --- a/docs/documents/compute/manage-subnets.api.mdx +++ b/docs/documents/compute/manage-subnets.api.mdx @@ -5,7 +5,7 @@ description: "Manage Subnets" sidebar_label: "Manage Subnets" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cE7mUftpV23YvRFXDsZsvQDyNxt4ckGM4SbbORSJWk3AaG//cdScmWZMVhEq/LgPahcKi74338eHfkrYiGuSL9CzJMRB6fU7mkklx1SAYSUqqpNB9XhOMfpE+iLdFpTDqEcVzMQC/wd0xVJFmmmTCLuCDpp5xJGpO+ljntEBUtaAqkvyL6JjPSlJaMz8l63dlskEnxkUb63xEOGeui5soIKcR/yqm82ZE/WdDAbECVpnEwGJ8GW7bbNjIyZpAnGpee4bZXTkcUcSziG0O/Y0MkuKZcm2+QZQmLwHwLPypDsNrdSUyNb5ARvZRRqRlVli6fcqrVRAyUEhEDTSs8ICUYA5mmqbpbVi5Zm2k8TxKYJtR5G31KII6Z0RaScUXADBKFwdBMG1ryG+VUsuiMKpHLiI60MPHYKjxiCv4XOvsybyJQtezcmVtar+kX/S3GT0/nQ8a4epx//OlbsJ+czocLthElqcoEV07750fPd7P9IIpohsXkcFkfizPEoD0oWezhzY6n1ztFMfUgTIQz7W4NIxH7iYxEzrW88aNl2o/Q26AlJLkPpS+43hQOOivgYwHVKXugAwXWV5mx27Whi+sO7zzIZbPVFgY8MHNRi9kt5njHAdmWLMY+1YcYCUQi5h77e54TTzV9/T4p9Ks53pd5WDi3EbVIUgusUT0Nb1SdCZmCaVQxgdCuZmhQW+SMFBof+52iPDPCHrejk+G7Y9mTeyUDZ8sH5YmaQhNPet9wvS1ydiNcSoPOPeqiofPMkwcBQIw1D/8+t+qd8pnwOENq5JiqZ2kqREKBE1spAevcfVKKPe90yUSuzp+kn/wTbNWKBx33UTMgDSDNgCW5pGfWyQfEbYvKTZ/vj0jC+DWNyxbMJ/yPag079kukh0JKmjSbkA0cvet0Tftm5JZZ9BRa2o7BKAyxs2xPWfV+9ETIIBWSBow7jONyJ8DWM7oO9IIGLyFYSDr79ZKEsYhUWHab4XdlV9cFHnfNUjeye16SQIOcU408f08T4NeX5BXy5il+thwvQ3jVszBNYCmkRzJpKci3FuD2VqPyMcsr6wxVnqOjKkccl35+bnMUpJ6Ui9iL0Luab1/XTqyLisAiYPWfIslrZv+HQLumN2NgHgH8GsrgTeyzkNenBoMzeFRycddYr/ySQjSIY7z3tZSsFnKWPbKL3p9s2913t9wHAPNdw933u05XBG2pHtb5biXV+Y2EF0dHu1fwY4iDM/cie7hbuPvqcw1xenuVrkaXc2tiaWvZME+zxA+THHfi0aPuMqt17QKJHOnIaqA2kXixG4l3QgcneJM/4GvItzjsj8MvbSfCHmKUFLhzFLyWEsuyIR+MT0fvh+Vspc71FjjMaVA8gqGS2BssBFZCkgl7tOzIpk/C4h1DhavNVGcdlnd3FQ5kPoXeUKRZrmlYmSwhQ23OtA5hzyucGck4NjuoyiV6nSy0zlQ/DCFjPTD7WIG9SKTEDGYUjbA0mech5DimIE3LdHFV/XRugOewVRJswmOk73RUr40zbe/0x1+TwPEEWlxT3iunRrb5dMI6xY+TEknIZD1vgH+2nRu9/gJp5gDb9ip8UdTYTYq/uvUxdpfUYq+41JXPnS4maWZ8zyJahAfpe4OM7di8nzz4fTIZm+nZJb/kI/GZJwJTcKO7RAxzjFIYORx0S3z0jCNae8rgPbKYmdyMJdT0lKTyFECe9Y56R/Z6gmBMgW8flnaBWzNmE107n8kSYPbCavG0KjB9Ub7NGe5+dVa5gTX+rgHbpLgKtA1fc4i6F90Y0IU5Vrj3ajUFRT/IZL02y250aeIab67cRZFsGLbJsXsHm63mY6tHmoPT4hmUWLQtQTKXoe6lyPdnxfz2h+C2rctmid9U9yxVqjvRDHm/4ubbyNtTtKBgXyPRA+770G3VnRgpW/6dAmfUdhxuPrCX9qqSacfvzycmhxST5dS+n+PF5TPp2P+trsKablOYXcNrOPB5jmcAvzuZ5t8/GqVIkQ== +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/power-off-cloud-server.api.mdx b/docs/documents/compute/power-off-cloud-server.api.mdx index 752d160..8999d0b 100644 --- a/docs/documents/compute/power-off-cloud-server.api.mdx +++ b/docs/documents/compute/power-off-cloud-server.api.mdx @@ -5,7 +5,7 @@ description: "Power off CloudServer" sidebar_label: "Power off CloudServer" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoC97IBtpV23YvRFXDsZsuwNUaSbg9JMNASbbOWSJWknAaGv/vuSEmWZDlhE6Pbw57iiPf/fnc83oYYutBkeEPGiczjK6bWTJG7HsmooikzTOHhhgj4hwxJtCM6j0mPcAEfM2qW8FuxzzlXLCZDo3LWIzpaspSS4YaYhwyZtVFcLMh226vkZUp+YpE5iiya8T7YpbkUpbTPOVMP8E/MdKR4ZvBoSK6XLEAFTBsWB6PpebBjO6QIZcxpnhj49ArU3qGNOpNCM43Ur09e45+molEUsQx0AHckhWHCIA3NsoRHFGnCTxoJN/tq5QzjAowQoYwpw50ayAiNqfGg5HGXEyJPEjpLmIvrtkdyxb3oXIw9CBPpXHvawkjGfiIjmQsDefSi5caP0NuhNU1yH0ogpXHM0XeaTGuezmmiAcKGG6QlvxcBuizgMzGSbHtlJRwpsb7GTJ3Wli2uJVRKqFIUq4gbluqOGuxKAzVsIRs5O+COdx6Abc1jaE4+xEAgE7nw0O9ZJ55m+sb9urCvEXhf5nER3FbWIsUssCZw3GXqXKqUYv+CBsL6hoNDXZlDKSw+9auiPENhL9PoZPhqLFu1VzNwvnzUnqgpLPGk903XH0XPbqVLG2py/TRAkc6zTx4FADHX+P+VNe9czKVHDemJY6rX0kzKhFGBroJdcM99TUux9c7WXOb66j8ZJ/8GW/fiWeU+aSekBaQ55Umu2KUN8hFx22FyO+aPZyThYsViECBzFTGf9B8Q5Duk4ElkxlIplrSHkAqO3vd0w/p25tZZdCy7fQ36hQkG/pUWFQnBzjKGybK7ZTXn0TOpglQqFnDhMA6fewGMntEqMDAUv6XBUrH5z7ckjGWkw3LaDL8rp7o+FXEfP/Ujq/OWBIaqBTPA8/csoWJ1S94Bb57CseV4G9J3AwvThK6l8mgmHRfywQu4e9SoHWZ57TsHkxcQqFqJw6cfX9seRVNPymXsReh9m++eVGc2REViAbDmT5nkDbf/RaCt2MOUco8EfgtjBDP3Uq3OEYNz+qLmovMZSPPqLymNRnEM776OK6uDnGcvnKIfb7bd4Xta7jOA+aEVbtcFnyFoR/W8yXcnqcmPEt6cnOw/wU9pHFy6t/7xXuHu1OcZ4uz2urpaU87BxtI1skGf5okfJgVoEtGL3jKbbeMBCRzpxFqgq0y82c/EB2mCM3jJH3Eb8n8eHs/DT10VYYsYJAWujoL3SsG1jOSj6fnkYlyu3JpcU3kPtHI+D+p7wh4upJYyxsWdtBVm93dDEhbrDB1uqhXfNiyf8DocqXxGB2OZZrlhYW2rCAyNHSMwoWZQjMs5R2IXkrmCQJOlMZkehiHN+ICiTMs8iGRKcEWnWQS3EW6EgOOUUYVT0s1d/egKsebgVBJUGUHpe0PUe4yfHZd+++s6cDyBkSsmBuX+0M6bTliv+HFWggeYbLB5+bIqElhEJM3Qcx6xIjiAiMEo43tWPE4e/Hp9PcXN5q24FRN5LxIJfbA14gGQBMQtjFwW+mV2BliGnYNdcAEsuC+d84ThYEdq73HyanAyOLFvBIBCSsVuu3MQPQ2fqrAb9sWEWUK5fTzaRG8KYN2UezIN3MP69rjCFvxuoAvbTQ1fyNfeYlcQA1wsEcegZ7OZUc0+qmS7xc9uk4wwiqunbnE5tZyoetuje+ZOV2HEIu09drF+JBbPa6q46wxfZcj3l8U6/YfgkOpySBEPdZ2lSc2A4c79GyrfZXl7h+M3o3YLCBFw527LXuPcu1IwdFWjml5cYQX+A/cawe0= +api: eJztWN1v2zYQ/1cE7mUDFCvNuhejLZDEzZZia40kXR+SYDhTZ5u1RLIk5cww9L8Ppw9bkuWUTYxuD3uKIx7v+453vzVzMLNseMvOE5XF12iWaNh9yDQYSNGhocM1k5AiGzK+JbqMWciEZEOmwc1ZyAx+yYTBmA2dyTBkls8xBTZcM7fSdNk6I+SM5Xm44aeN+ozcHYQXaHG0RGOFkjW3LxmaFQtZjJYboR0dDdnNHAMSgNZhHJyOL4PttX2CiMcUssSxIXvB8vyedLRaSYuWqE+OT+hPW9Ap56gdknFcSYfSEQ1onQgORBN9tkS43hWrJuQXFpKHNBonSjEpOojBeVCKuM8ImSUJTBIs/ZqHLDPCi670sQdhokrTvq4hV7EfS64y6czKj1Y4P0Jvg5aQZD6UecggjgXZDsm4YekUEoshc8IRLfu9ctBVlT4jp1ge1pVwoMD6KjMupXZ0KVvCRggYA1RFwmFqe2qwLwzgcKZaMdtjjncctFFLEaPxInYrrRI185DvWSeeavr6/abSr+V438vnlXM7UeMGi8QagetVdapMCtS/YnB45ESKvQVEXDA+86uiTBOz50ksefhKrFu1VzMobfloPbOm0sST3jdcf1Q9uxMu68Bl9usJSnSeffIgCRALS/9fF+pdyqnyqCE7Ki81a2miVIIgyVSDYJX8lpZS1Dsuhcrs9X/ST/4NtmnFk8p91A1IJ5GmIJLM4FXh5APmbY/KXZ8/HpFEyAXGV2hVZjj6hH8PI98hhU64O1fGYNIdQjbp6P1Ot7TvRm6p+aH09lXoV5RoBK81qgJCneUcpetvWe159EKZIFUGAyHLHBdKhgGfI18Ebo7BKwjmBqev71gUK26jetqMfqinuiOQ8RF9OuKFzDsWODAzdK/v2F+TBOTijr2JFc9SlK648SqCN4MiTRNYKuPRTHoe5L0PcP+o0TjUWeO7kA5naJolLqT7+aToUZB6Us5jL0Lv13y7Ul0ULqoCO1HK/amSrGX2v5hoC1yNQXgE8HsoI9E9KLO4pBycwrOai80mEp1Xf0mBn8axQdvzZPWQC/3MKfrxZtvvvq/zfUJivu+4u+yCT2C0pXra5Lvl1L5PHF4eH++u4GcQB1flrn+4Lbw89VlDSr29nq7OlLO3sfSNbOhAJH45Ka0DyZ+1y6zz1gI5STAdFRrYTSRe7kbivXLBhcrkAdGQ/+PweBx+6auIooglJEFZR8FbY5QpSvB0fDn6cF5Dbu1bY/WAJlDTadDECUMCpOYqJuBOFRVW4HdDFlVwho3WG4gvj+oV3kanJpvA4FylOnMYNVBFG61bGGMeaZKsplMC50qSApDMTMKGbO6ctsMoAi0GQDyLywOuUkYQnUWemQIRul2zMwRDU9LtffPomnKtTKeaYBMR4r4zRL0l/xXj0rtPN0F5J3BqgXJQ44fFvFkyC6sfF3XyvPt0Uzhb1JtVFcDKI6kmywXHyjlCzganWuxo8Th58NvNzZiQzTt5J0fqQSYK4u6IpzRK0CLiZRSO6ugMqAx7B7vgg0ZJeOlUJEiDHWvs4+zF4HhwXOwIyroU5Bbd2Zs9LZs2bnf4t4t0AqJYHotAr6vEuq1xMstCNmyix5vcYiFrZRe1m0Z+0b0uir1JsfuQzSmPh7dsvZ6AxY8myXP6XCLJlEbxZtWtHqeOEZve9ijO3GvqAlc7OHYFP7Iin5dgRNkZvkmRH68qOP2nYJ/oekiRq6bMWqW2wwhz/47Ct1HO72n8RihQwNt1dV6i7I2bO08KuW7TqMYfrqkC/wH3GsHt sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/power-on-cloud-server.api.mdx b/docs/documents/compute/power-on-cloud-server.api.mdx index d5f2c52..1f4511d 100644 --- a/docs/documents/compute/power-on-cloud-server.api.mdx +++ b/docs/documents/compute/power-on-cloud-server.api.mdx @@ -5,7 +5,7 @@ description: "Power on CloudServer" sidebar_label: "Power on CloudServer" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoC97IBtpV23YvRFXDsZsuwNUaSbg9JMNAUbbOWSJWknAaGv/vuREmWZDlhE6Pbw57iiPf/fnc83oZYujBkeEPGscqiK67XXJO7Hkmppgm3XOPhhkj4hwwJ2xGdR6RHhISPKbVL+K3550xoHpGh1RnvEcOWPKFkuCH2IUVmY7WQC7Ld9ip5qVafOLNHkUVT0Qe7jFCylPY54/oB/om4YVqkFo+G5HrJA1TAjeVRMJqeBzu2Q4pQxpxmsYVPr0DtHdpoUiUNN0j9+uQ1/mkqGjHGU9AB3ExJy6VFGpqmsWAUacJPBgk3+2rVDOMCjBChlGsrnBrICI2o9aAUUZcTMotjOou5i+u2RzItvOhcjD0IY+Vce9pCpiI/kUxl0kIevWiF9SP0dmhN48yHEkhpFAn0ncbTmqdzGhuAsBUWacnvRYAuC/hMrCLbXlkJR0qsrzFTp7Vli2sJlRKqNcUqEpYnpqMGu9JALV+oRs4OuOOdB2Bbiwiakw8xEKhYLTz0e9aJp5m+cb8u7GsE3pd5XAS3lTWmeQ6sCRx3mTpXOqHYv6CB8L4V4FBX5lAKj079qihLUdjLNDoZvhrLVu3VDJwvH40nagpLPOl90/VH0bNb6TKW2sw8DVCk8+yTRwFAJAz+f5Wbdy7nyqOGzMQx1WtpplTMqURXwS64576mpeT1ztdCZebqPxkn/wZb9+JZ5T5pJ6QFpDkVcab5ZR7kI+K2w+R2zB/PSCzkikcgQGWacZ/0HxDkO6TgCbNjpTWP20NIBUfve7phfTtz65Qdy25fg37hkoN/pUVFQrCzjGGy7G5ZzXn0TOkgUZoHQjqMw+deAKMnWwUWhuK3NFhqPv/5loSRYiYsp83wu3Kq61MZ9fFTn+U6b0lgqV5wCzx/z2IqV7fkHfBmCRznHG9D+m6QwzSma6U9mknHhXzwAu4eNWqHaVb7LsDkBQSqVuLw6cfXeY+iiSflMvIi9L7Nd0+qszxERWIBsPZPFWcNt/9FoK34w5QKjwR+C2Mkt/dKr84Rg3P6ouZishlI8+ovCWWjKIJ3X8eV1UEu0hdO0Y832+7wPS33GcD80Aq364LPELSjet7ku5PU5EcJb05O9p/gpzQKLt1b/3ivcHfq8wxxdntdXa0p52Bj6RrZoE+L2A+TEjRJ9qK3zGbbeEACRzLJLTBVJt7sZ+KDssEZvOSPuA35Pw+P5+GnrorIixgkBa6Ogvdaw7WM5KPp+eRiXK7cmlxTdQ+0Sgb1NWEP91FLFeHeTuUFlq/vhiQsthkm3FQbvm1YvuBNONLZjA7GKkkzy8PaUhEYGitGYELFbjXnKPJ1ZKYhzGRpbWqGYUhTMaAoMucdMJUQXNAZzuAuwn0QcJxyqnFGurmrH10h0hyYSoIqHyh9b4R6j9HLh6Xf/roOHE9g1YrLQbk9zKdNJ6xX/DgroQNMeahF+a4q0lcEJEnRccF4ERvAw2CUij0rHicPfr2+nuJe81beyom6l7GCLtga8ABGEuIWMpeEfpmcARZh51gXXAALbkvnIuY41pHaa5y8GpwMTvIXAiAhoXK32zmEnYZLVdQt/2LDNKYifznmed4UsLopl2QGuIf11XGFLPjdwBb2mhq6kK+9wi4BBqhYIohBzWYzo4Z/1PF2i5/dFhlBFFXP3OJiavlQ9bVHd8ydnsJ4Rdo77GL1SHI0r6kWrit8lSHfXxar9B+CQ6rLAUU+1HWWJjXjhfv2b6h8l+TtHY7enOYbQIiAO3cb9hrn3nWCoau61PTiCuvvH5emwHU= +api: eJztWF9v2zYQ/yoC97IBipVm3YvRFkjiZkuxtUaSrg9JMJyps82aIlmScmYY+u4DKcmWZDllE6Pbw57iiMf7f8e735pYmBkyvCXnXObpNeolanIfEwUaMrSo3eGaCMiQDAndEl2mJCZMkCFRYOckJhq/5ExjSoZW5xgTQ+eYARmuiV0pd9lYzcSMFEW84ae0/IzUHoQXKHa0RG2YFDW3LznqFYlJioZqpqw7GpKbOUZOABqLaXQ6voy21/YJcjymkHNLhuQFKYp7p6NRUhg0jvrk+MT9aQs6pRSVRWcclcKisI4GlOKMgqNJPhtHuN4VKyfOLyR2HlKoLSvFZGghBRtAydI+I0TOOUw4ln4tYpJrFkRX+jiAkMvStK9rSGUaxpLKXFi9CqNlNoww2KAl8DyEsogJpClztgMfNyydAjcYE8usoyW/Vw66qtJnZCUp4roSDhTYUGXGpdSOLmVL2AgBrcFVEbOYmZ4a7AsDWJzJVsz2mBMcB6XlkqWog4jtSkkuZwHyA+skUM1Qv99U+rUcH3r5vHJuJ2pUo0+sEdheVadSZ+D6VwoWjyzLsLeAHBdMz8KqKFeO2fMkljxCJdatOqgZlLZ8NIFZU2kSSB8arj+qnt0Jl7Fgc/P1BHV0gX3yIAmQMuP+v/bqXYqpDKghMyovNWtpIiVHEM5UjWCk+JaW4usdl0zm5vo/6afwBtu04knlPuoGpJNIU2A813jlnXzAvO1RuevzxyPCmVhgeoVG5ppiSPj3MAodUtwJtedSa+TdIWSTjsHvdEv7buSWih5K71CFfkWBmtFaoyogrrOco7D9Las9j15IHWVSY8REmeNMijiic6SLyM4xegXRXOP09R1JUklNUk+byQ/1VHcEIj1yn46ol3lHIgt6hvb1HflrwkEs7sibVNI8Q2H9jVcJvBn4NOWwlDqgmfQ8yHsf4P5Ro3Go8sZ3JizOUDdLnAn784nvUZAFUs7TIMLg13y7Ul14F1WBnUhp/5Q8b5n9LybaAldjYAEB/B7KCLQPUi8uXQ5O4VnNxeQTgTaov2RAT9NUo+l5snrImXrmFP14s+1339f5PiEx33fcXXbBJzDaUj1t8t1yat93HF4eH++u4GeQRlflrn+4Lbw8DVlDSr2Dnq7OlLO3sfSNbGiB8bCcFMaCoM/aZdZFa4GccMxGXgOzicTL3Ui8lza6kLk4IBryfxwej8MvfRXhi1gAj8o6it5qLbUvwdPx5ejDeQ25tW+N5QPqSIqoCRPGDo+ay9ThdtIXmIfvhiSp0AyTrDcIX5HUG7xJTnU+gcG5zFRuMWmAiiZZtyDGIlFOcAnNlRQejsw1J0Myt1aZYZKAYgNwLP3dAZUZcQCdQZprjwfdrskZgnYz0u198+jaZVqZTDXBJh6O+84I9dZ5zw9L7z7dROWdyMoFikGNHvpps2QWVz8u6tR59+nGu5rVe1UVvsohmXKGM4qVb5iYDU4V29HicfLot5ubscM178SdGMkHwSWk3QFPKhSgWELLIBzVwRm4Iuwd66IPCoVDS6eMoxvrSGMbJy8Gx4NjvyFIYzMQW2xnX+60TNp43eLfNlEcmN8cfZzXVVrd1iCZITEZNqHjTWaRmLRyy/WaRna5e10Iu06w+5jMXRIPb8l6PQGDHzUvCve5RJFdEqWbNbd6mDo2bPraoxhzr6ULXO1g2BX0SHw2L0Gzsit8kyI/XlVQ+k/RPtH1gCJWTZm1Sm1/Obz9OwrfBrm4d6M3gkcAb9fVeYmwN27uPCfOdZsuNf5w7ervH5emwHU= sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/restore-snapshot-from-a-created-volume.api.mdx b/docs/documents/compute/restore-snapshot-from-a-created-volume.api.mdx index 5b99c8b..74c2a82 100644 --- a/docs/documents/compute/restore-snapshot-from-a-created-volume.api.mdx +++ b/docs/documents/compute/restore-snapshot-from-a-created-volume.api.mdx @@ -5,7 +5,7 @@ description: "Restore snapshot from a created volume" sidebar_label: "Restore snapshot from a created volume" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cE7mUftpV23YvRFUjsZsuwtUbibg9NMJwl2mYjkRpJuQ0M/++7IyVblpWETYKiD+1D4Yj3xbsfj3fHNbOwMGz4no0yVaYXXK+4Zlc9VoCGnFuuaXHNJP7BhizZEZ2lrMeExI8F2CX+1vy/UmiesqHVJe8xkyx5Dmy4ZvamIGZjtZALttn0tvIKrT7wxB7ISrlJtCisUPTxgcKhEH001JCQSvx/Jdc3B/KnSx6RAm4sT6PjyVm0Y7tNEcmYQ5lZ/PQM1V55G1HEiUpviP5gD4mSlktLa1AUmUiA1uIPhgjWh5rUjHyDjOilgmsruKHVlcrKnE/VOepSmt/PUGrRZb8sswxmGfcuRccxSFNBJkE2aQiYQ2bQ41ZYomW/ccm1SFC7KnXCx1axYN7K5FOt8r/dLmpuyz/Zb44g7gYwfvzpm0eIX3NTKGm8xc+Pnh8eruMk4QWe3ac7ZJj6IAUbQCnSAA/2Aj3dq3JXAGGm/NbutzBRaZjIRJXS6pswWmHDCIM3tIKsDKEMRdSflYPOK/g4QPXqK+eJAhtqzMRrbdni796tEtAa6HYSlufmUPmmKwxg+ULtxeyW7QTHAdlWIsUqIIQYCVSmFgH6A89JoJmhfp9W9u05PpR5VDm3FbVEcwesMS53mTpXOgeqCzCB8L4VuKGuyJEUnp6EnaKyIGGP0+hlhGqsS6CgZOD38s4EoqayJJA+NFx/VTm7FS5jwZbmfoASXWCefBIApMLQ3xfOvDM5VwFnyIw9U/MszZTKOEjmbkrAe+5zUoo773wlVGkuvko/hSfY5i4edNzH7YC0gDQHkZWanzsnPyFuO0xu+/zuiGRCXvO0LrtCwv+ocrDnVhI7UlrzrF2EbOEYfE/vWd+O3KpIvoYytkcYhRFWlt0pa78ePVU6yrGajYT0GMfPvQhLz+Q6sthsvoRoqfn810sWpyoxcV1txt/VVV0fZNqnT/3E6bxkkQW94BZ5/p1lIK8v2SvkxUJZWsfxMoZXAwfTDFZKBySTjgv51gu4u9RoLBZl47tAkxfoqMYRx08/P3c5CvJAymUaRBh8m+9mF6fORVVgEbDWtxxfB9Cu+c0EREAAv4QxktuPSl+fEQbn8KjkYsoZSgvKLzkkx2mKfV/HldVBLopHVtF3J9tu990v9wHAfNNyd9UEf76gHdXDKt+dpH1+kvDi6OiwBT+BNDr3A7Cn68L9akgb4u0OurpaVc6tiaWrZMM8LbIwTErUJJNH9TLrzV4DiRz52FlgtpF4cRiJN8pGp9jJP+E05Fsc7o7DL10nwh1ilBT5cxS91hqvZSI/npyN347qUfY+VzUHi4yEwiwxlHOt8giiqsWK/IgPjceaYanwhmSFckfOTc6HLK7mGyZeb4frm7ju6U18rMsZDEYqL0rL48Y8Hxn2pvubWFdTRAyWp3AvAaVGx7OltYUZxjEUYgAk0vEOEpUzGoUbnuDtRBMi5DjhoKlqen/VXLog7Hl41QTbCJH0g6LqNfnTlU9//DONPE9k1TWXg3pO7+pPL6xX/TitwYRMzvmE/fPdpP71J8gLj9mO6am7YpvNkqj7tAoOlTvzgtwmEl55FskHx4U42MPd5NHv0+mE3h8u5aUcq48yU5hVWwUjwhKhIeLEh7Bfh3ZAG+ssE6O3yEKvGnORcSoTWaO7Z88GR4Mj13EgjnKQu1lROBb3NrmNohvqFxkI15s63KwrmL6vx3AGuYfNV6AtUvH3HlYpmzXQSnzt16gasIiyJR0KVLNez8DwdzrbbOizf/8hUKbbRrq6+lp72GbOO1+HOneKBRxrvz5Vw03mTscKtPB557MM+f68egT7IbpNdV0CyZumztqkfX/RS9kXVL4L8uaKinsObsaIHvDrI6+qPyUpO/6Da4vM9hx+6n8n7VUjT07eXkwpLVTPc7mbimM78pGQg/87W5XbustK7hs21yAXJSyI1sukf/8DPBZHvA== +api: eJztWV9vGzcM/yoH7WV/zr60616MtkASN1uKrTUcd31IgoE+0bZqnaRKOqeG4e8+SLqzz/YlUZOg6EPz5JxIiiJ/pEhqRSxMDeldklMuS3qBeoGaXKdEgYYCLWq3uCICCiQ9km+JzilJCROkRxTYGUmJxs8l00hJz+oSU2LyGRZAeitil8oxG6uZmJL1Ot3IU1p+wtweyKJocs2UZdJ9fKBwUKyzQG2ckEr85xL18kD+aIaJ2wCNRZocD86TLdttGzkZEyi5JT3yjKzX10FHNPZE0qWjPzhDLoVFYd0aKMVZDm4t+2QcwepwJzl2tiGps5JCbRkat7qQvCxwJIdorNR4P0OpWZv+ouQcxhyDSdfrlAClzKkEfNAQMAFuMCWWWUdL/kSBmuVDNLLUOfatJNG8lcpnWhb/+lPU3Ba/2B+GcNwNYPz62w+LOH6NRklhgsbPj54fBtdxnqOySJ8uyAq0QMFGUDIaYcE00tJplbsiCLkMR7tfw1zSOJG5LIXVyzhaZuMIow+0AF7GUMYi6u/KQMMKPh5QaX3lPJFjY5UZhF33dAl372YT0Brc7cQsFuZw83WbG8DiVO747JbjRPtBablgFHUUsV0qyeU0Yv/IOIlUM9buo0q/HcPHMp9Wxt3zWq7RA6sPtlXVidQFuLqAgsWOZQW2BpCTgvQkLopK5YQ9bscgI3bHugSKSgbhLB9MJGoqTSLpY931T5Wz99xlLNjS3A9QRxeZJ58EAJQZ9/+FV+9cTGREDJl+YGrG0lhKjiCIvynBSPE1KcXHOy6YLM3Fd2mn+ATbPMWDwr2/75A9IE2A8VLj0Bv5CXHbovK+ze/2CGdijrQuu2Lc/6hyMPUruT2VWiPfL0I2cIy+p3e03/fcQuXfQxmbOozCKQrbnrJ269EzqZNCakyYCBhnUqRJPsN8ntgZJi8hmWmcvLoiGZW5yepqM/upruo6IGjHferkfs8rkljQU7Svrsh/Yw5ifkVeU5mXBQrrOV5m8LrrYcphIXVEMmm5kG+9gNtLjcaiKhvfmbA4Rd0McSbs7899joIiknJGowijb/Pt7OLMm6hy7FhKG1qO7wNoc1wOgEU48FsoI9DeSD0/dxicwKOSiynHAm1UfikgP6ZUo2m5slrImXpkFX13sm033/1yHwDMd3vmrprgrxe0pXpY5buVtMvvJLw4OjpswU+AJsMwAHu6LjysxrQhQe+oq2uvyrk1sbSVbGiB8ThMCmNB5I/qZVbrnQZyzLHoew3MxhMvDj3xTtrkTJbiCachP/xwtx/+aIsIH8QCeBLiKHmjtdQ+BI8H5/33p/Uoe5ermoMlRoAyM2mTiZZFAknVYiVhxEdSN6GaSepG5tKHnJ+c90hWzTdMttoM19dZ3dOb7FiXY+ieykKVFrPGPN9kq53p/jrT1RQxJSZQ+JeAUnPSIzNrlellGSjWBSfS83ZzWRA3CjeYl9pPiC5X5ARBu6rp8rq5dOGwF+BVE2w85KQfFFVvnD19+fT24ygJPImVcxTdek7v688gLK1+nNVgevtx5I3vsD/cTurffIFCBcy2TE/9Fdtslljdp1VwqMxZKGc2lmNlWSam3WPFDs5wN3ny12g0cO8PV+JK9OWN4BLofsEoFQpQLMuDCzu1a7vuYK1lYvJeoXCvGhPG0ZWJpNHdk2fdo+6R7ziksQWI7awoHos7h9x40Q/1FQfme1OPm1UF08t6DGdISnrNV6ANUklKdrDqslkDrY5v/zWqBux1SmYuKHqXZLUag8EPmq/X7nN4/3GgpJtGurr69s6wyZx3vg61nnSOy4PXp2q4SXx0LECzkHe+SpGfh9Uj2C/JbVvXJZBYNvesVdq1l3sp+4abb528vnbFPYKfMV6uqvXTsFVn5KRs+Q+uLad24AhT/ztprxt5cvD+YuTSQvU8V/ipONFw45ADN0FX6Y/us5L/tiIcxLSEqaMNMt3f/zwWR7w= sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/set-cloud-server-password.api.mdx b/docs/documents/compute/set-cloud-server-password.api.mdx index 54a5fed..4bd737f 100644 --- a/docs/documents/compute/set-cloud-server-password.api.mdx +++ b/docs/documents/compute/set-cloud-server-password.api.mdx @@ -5,7 +5,7 @@ description: "Set CloudServer password" sidebar_label: "Set CloudServer password" hide_title: true hide_table_of_contents: true -api: eJztVktvGzcQ/isET33IWtV1LkIawK+gboFasFX0YAnFaDmSGO8uGZJrR1jov3eGu1qtItlxgCTIoT4YK3Le83G+qWSAhZfDO3memVLdontAJ6c9acFBjgEdX1ayoB9yKNOt0JWSPakLOrQQlvSt0KdO26ANH9KBw/eldqjkMLgSe9KnS8xBDisZVpat+eB0sZDrda91YJ15h2n4OsbB6iOK3LORxvz7Et1qz/54iYIdoA+oxOnoSmzVnnLENuZQZoGOfiG30zpGMnFm1Irl93JITRGwCHwH1mY6Bb5L3nkWqPY9mRnXhhSpShZd0Oj51oL3j8apQzEVZZbBLMO6TFQMCUppdgPZqGNlDpmnKgYdWFbeYhg1Vi+C4SLKgB/Cdxpat3g//fw9xsiaDr01ha+dHg8G+5C4/lOS3PHgZP/qLyPOG7SQyMkh7TNQ4qZG3JfDVn37ycK0qb9A0gcIZcc4PcSAC5o6PTk3LodQH/16fEhZYQCdvciPLshTkb4kqCf7Wm0zk3ROGvlFjMA3TT053Kwg3pqyUP/34Vv14dWhF3FFCTmyJGrGEpfOGRcnBo30i+vzDXfsatHjFR0yFO186EkixKVRzEomPrJITkOZNKzlk6rlrzUfPmhFvJGcunIG/XOT2zJg0uFQUthhVFLaOvO1SKTf0lGt5TIE64dJQjzWB7YZlfupySXTjce0dDqsosYZgqNeDu+m3atbhluNqI1A2xS2vseEl1xCEYgP//hnLGodEcw9Fv0NF7LurDbWaz7ebvBDSrHeDPebLRtefoDc1jDdTt+WsRkycxMja1reFDC3XCidYlNLku6fWr0X9PPi4vfxeMSkPikmxYV5LDJDk5NTfA1i6XD+20QmBL2CypykddOONs3scyYTKQK4BQaS/HeWQXE/kW/ENanwqjDXGb5O4A2FtdkaaCPoD/oDTo2Rk0N8+81W8gzedtJqGxWZ2GZACwwZjNCoGijebRYoT9rD7jLVopG+d/DIM6qDSNb7eMtrIyIkLRn55KeqZuDxb5et13xc71EMPKU9v2jVkuJHSbQD8dkt62Cq97ja2+IeICtZMr6AB3C6HiefFcgPN80y+aN4ynVzCMWq63MT0m7BeOP8hs63XV5PSXiJoOLDr5r7Zm84GrOVrf4eG3HYtcZpmqINz8pOO8NwdH075qffrLm5Uazj4JHXdPofYzUx9Th54lkl6d0sSliwbG2T//4D7ntbAQ== +api: eJztVktv20YQ/ivEnPqgRcV1LkQSQH4EdQrUgqUiB0soRuRI2pjc3ewO7QgE/3sxJEVRkey6QBvkUJ6InffMt/tNCYwrD/EdXGSmSCfkHsjBPASLDnNiciIsQWNOEEOyU7pOIQSlIQaLvIYQUvKJU5aVkUMIwdHnQjlKIWZXUAg+WVOOEJfAGyvePDulV1BVYRfAOvOJEv5vnKNVJw/kvDhp3X8uyG0O/E/XFEgA8kxpMBpfBzuzpwKJjyUWGUMMr6Cq5k2O5PncpBvRP6ghMZpJs8jQ2kwlKLLokxeF8jCSWUhvIJQuWXKsyIvUovePxqXHctJFluEio6ZNVRUCpqmSMJiNe16WmHkKgRWLLkyIx63XSzbSRGD6wt9pav3m/fTz95ijWDry1mjfBD0dDg8hcfMbVCGcDs8ORb+b4KJFSxXC2THrc0yD2wZx/x62GunfNqYr/QWanpGLnnNQmmlFDkJYGpcjN0e/nB4zTolRZS+Ko7Rn1MlLknpyruWuMhg7s8gov6wz8O1Qz44Pi4P3ptDp/3P4VnN4fexGXGsmpzELGsYKrpwzrn4xRuPry5uLLXfsW02Igx4ZBt37EEJOvDapsJKpL1lNTjFELWv5qOz4q5LDB5WS89HIFQscXJjcFkxRj0N9VO4xahX1gvlGpabfwmUQw5rZ+jiK0KoBis/aeJCYHIRuPCWFU7ypLc4JHTmI7+Z90UTg1iBqq9ANRbwfMOGVtDDgNQUfPk6DxiZgc096sOVCsV00zsL25/0WPx8+Tut+C9xvd2x49QVz28B09/p2jC2QWZo6s3bkbQNzK41SCbW9VHo1GFl1kPTz6sGv0+lYSH2mZ/rSPOrMYFqX+AaDtaPl2xlExpJGq6KkGdrJdpgDqWQGAaNbEb+dwZ+LDPX9DN4FN5a0rApLldGbCN9BCNutIYZXg+FgKKUJcnKs7367lTyDt72yukHVTGwzVFoc1tAoWyjebRcoDyHE/WWqQyOEsIdHeaN6iBS7r7e8LqN5CGtBfnwHZblAT3+4rKrkuNmjBHip8nKj044UvyqiexCf3bKOlnpPm4Mt7gGzQjTrG/CATjXPyT9K5Ifbdpn8MXgqdHuIetOPuU1pv2GycX7D4LspV/MqhDVhWl/8spW3e8PJVLzs7A/YSNJuLEZJQpaf1Z33HsPxzWQqV79dc3OTio3DR1nT8bHJ1dSl1y9PfVZChnpV4Ep0G5/y/QXue1sB sidebar_class_name: "post api-method" info_path: docs/documents/compute/aruba-cmpservice-computing-api custom_edit_url: null diff --git a/docs/documents/compute/sidebar.ts b/docs/documents/compute/sidebar.ts index 51bea9e..08def18 100644 --- a/docs/documents/compute/sidebar.ts +++ b/docs/documents/compute/sidebar.ts @@ -1,116 +1,114 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/compute/aruba-cmpservice-computing-api" + type: "doc", + id: "documents/compute/aruba-cmpservice-computing-api", }, { - "type": "category", - "label": "CloudServer", - "items": [ + type: "category", + label: "CloudServer", + items: [ { - "type": "doc", - "id": "documents/compute/get-cloud-server", - "label": "Get CloudServer", - "className": "api-method get" + type: "doc", + id: "documents/compute/list-cloud-servers", + label: "List CloudServers", + className: "api-method get", }, { - "type": "doc", - "id": "documents/compute/delete-cloud-server", - "label": "Delete CloudServer", - "className": "api-method delete" + type: "doc", + id: "documents/compute/get-cloud-server", + label: "Get CloudServer", + className: "api-method get", }, { - "type": "doc", - "id": "documents/compute/list-cloud-servers", - "label": "List CloudServers", - "className": "api-method get" + type: "doc", + id: "documents/compute/delete-cloud-server", + label: "Delete CloudServer", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/compute/power-on-cloud-server", - "label": "Power on CloudServer", - "className": "api-method post" + type: "doc", + id: "documents/compute/power-on-cloud-server", + label: "Power on CloudServer", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/power-off-cloud-server", - "label": "Power off CloudServer", - "className": "api-method post" + type: "doc", + id: "documents/compute/power-off-cloud-server", + label: "Power off CloudServer", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/manage-subnets", - "label": "Manage Subnets", - "className": "api-method post" + type: "doc", + id: "documents/compute/manage-subnets", + label: "Manage Subnets", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/manage-security-groups", - "label": "Manage SecurityGroups", - "className": "api-method post" + type: "doc", + id: "documents/compute/manage-security-groups", + label: "Manage SecurityGroups", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/manage-elastic-i-ps", - "label": "Manage ElasticIPs", - "className": "api-method post" + type: "doc", + id: "documents/compute/manage-elastic-i-ps", + label: "Manage ElasticIPs", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/manage-data-volumes", - "label": "Manage DataVolumes", - "className": "api-method post" + type: "doc", + id: "documents/compute/manage-data-volumes", + label: "Manage DataVolumes", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/set-cloud-server-password", - "label": "Set CloudServer password", - "className": "api-method post" + type: "doc", + id: "documents/compute/set-cloud-server-password", + label: "Set CloudServer password", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/restore-snapshot-from-a-created-volume", - "label": "Restore snapshot from a created volume", - "className": "api-method post" - } - ] + type: "doc", + id: "documents/compute/restore-snapshot-from-a-created-volume", + label: "Restore snapshot from a created volume", + className: "api-method post", + }, + ], }, { - "type": "category", - "label": "KeyPair", - "items": [ + type: "category", + label: "KeyPair", + items: [ { - "type": "doc", - "id": "documents/compute/create-key-pair", - "label": "Create KeyPair", - "className": "api-method post" + type: "doc", + id: "documents/compute/list-key-pair", + label: "List KeyPair", + className: "api-method get", }, { - "type": "doc", - "id": "documents/compute/get-key-pair", - "label": "Get KeyPair", - "className": "api-method get" + type: "doc", + id: "documents/compute/create-key-pair", + label: "Create KeyPair", + className: "api-method post", }, { - "type": "doc", - "id": "documents/compute/delete-key-pair", - "label": "Delete KeyPair", - "className": "api-method delete" + type: "doc", + id: "documents/compute/get-key-pair", + label: "Get KeyPair", + className: "api-method get", }, { - "type": "doc", - "id": "documents/compute/list-key-pair", - "label": "List KeyPair", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/compute/delete-key-pair", + label: "Delete KeyPair", + className: "api-method delete", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/container/attach-volume.ParamsDetails.json b/docs/documents/container/attach-volume.ParamsDetails.json new file mode 100644 index 0000000..ba21a8c --- /dev/null +++ b/docs/documents/container/attach-volume.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the cluster kubernetes","required":true,"schema":{"type":"string"}},{"name":"nodePoolId","in":"path","description":"unique name of the nodepool within the cluaster kubernetes","required":true,"schema":{"type":"string"}},{"name":"nodeId","in":"path","description":"unique indifieri of the node","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/attach-volume.RequestSchema.json b/docs/documents/container/attach-volume.RequestSchema.json new file mode 100644 index 0000000..6747ef1 --- /dev/null +++ b/docs/documents/container/attach-volume.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the request to attach a volume","content":{"application/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume to attach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeKaasRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume to attach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeKaasRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume to attach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.AttachVolumeKaasRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/attach-volume.StatusCodes.json b/docs/documents/container/attach-volume.StatusCodes.json new file mode 100644 index 0000000..2da33f8 --- /dev/null +++ b/docs/documents/container/attach-volume.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"400":{"description":"Bad Request","content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/attach-volume.api.mdx b/docs/documents/container/attach-volume.api.mdx index 32b5ad3..9e6d8b3 100644 --- a/docs/documents/container/attach-volume.api.mdx +++ b/docs/documents/container/attach-volume.api.mdx @@ -5,7 +5,7 @@ description: "Attach Volume" sidebar_label: "Attach Volume" hide_title: true hide_table_of_contents: true -api: eJztV99v2zYQ/lcIPq1bImW/Xoy2gGMXWFZkMRK3e4iN4SzRFhuJVEnKqSf4f98dJVnyj3SeGwx9aB+K+HTH+4738fix5A4Wlvfu+VsAy6dnPAcDmXDCkLXkCn/wHs+N/iAidxXzMy4VGcAl+HcsbGRk7qQmY6Hkx0IwGQvl5FwKw/ScuUSwOpwNrkcYZMTHQhoR854zhTjjNkpEBrxXcrfKKZt1RqoFX6/PNgDkiZmjtLBYDHsoZsIorMueCEDpWIy0To/bAgpqIFBkjpHsUbpEqgYWPB+uI9uiYr81sgvsxKyQy/MlcoQS1KkxhVnt5R5jHkogsNqY9UdXrA17KhGtMYcidWj6EdNOK4y4xKWOV+S/ncO1OZjTDJyDKGHAljotMqow0sohMSgS8jyVEVBk+MFSeLmPQ8+IrRiIvM2FcRK7g1/r9f7VrzDycFFd0O/aPlTrttADdFZFmsIsFVVTcOs5xLGkWEhHnWxzSC32zElHvrxvihkEgyy/E2YpIxEMsHSQShgMWuLxMMHQaRvcCqsLEwkbDMFB0Pd533sc+J3/n/lo8NxW3WtSO/HJfevO19qd7hH6/odvbfoq20TJjbC5Vrbaz18uLvYn5yXErA57vjFZfd1v3U43NvUf4WkduKKzON44TiyEQd+5Nhm4yvTzT4eCY4GbmR6VRyrMpKJjQD3Z3LKtjF/LyGir5y7o2/wP4QbaiOB6GQUYgEtlQw/N1v369VCLrrBSgykYkQMFwxtjtPHcwst0eDNobu3tqIob7H1zA6KiS3RMAkH7Vnud0ONhLcxsWG4U3pqMnnU2rJnZ0DF8QJqFpUSfRg7hz1YZVebaRD+ro0hXvQdfScrCYDN44lxue2GISiIAShOluoiDSGecLnwrIpwAbuUjLgUYbHbvftr9dEd8rCjXOGy6hqu+Fftq5ApPg3Hs9z/HOCgeBImQWtD0C9wgI//2lG8kTSIAt8FvNh2C21aEvPkEWV6Rtx1ofmR11BIuMtce1PZBb7Yz6OdyD+IBH/bbeDwi7TRREzXUjyrVeG5p6L0ElhgxfzXhIRJQYdVh1ESeN20MCPuEMwdmIRz6/jVLQT1M+Gt2g0GkyeYyFS9DeI1oGnmG0iu4CC44lkGcycDPgGa3dui1VcKmCf4az1NEQ6v4tpc18+6bFwXJ3l73dbEhH/69sxdoIQJShH8ObDhIli197mnYWL2lZiLSJ6ETgADKcgZWvDPpek3mSr4S22Jp6ZzHmzm9U91mTH5W3B7cgwfk5K54XkJakKen/RKMrIbMfwLy3W2t4V+wI99gB+E1h0eturga2G2X6CHwvOAOPtNOwCi/HNxpT7cTsHYY+8Ub+sTT7kRUhGiKnvX8Iy5WHwcVhvMxLdEG76kFqqeK6EeRyN1nfaed62l0czdG51n9zsuojB438EjvVPzfA9V+T/zg97aS4zxbFLAg32pN+vcPX7rnyw== +api: eJztV01v20YQ/SuLOfWDJp1+XIgkgCwFqBukFmwlPVhGMSJH0sbULr07lKMK+u/FLElJtuRUVYwih+im4c7O25m3s2+WwDjxkF7DW0QPNxGU6HBGTE6sSzA4I0ihdPYjZXyeQwTaiAF5ChHk5DOnS9ZWjJXRdxUpnZNhPdbklB0rnpJq3FX3XR8icHRXaUc5pOwqisBnU5ohpEvgRSnRPDttJrBaRWsA+sjIWVF5JqduqxE5Q0z+SADG5tS3tjgsBeLUQhDP0tpC3WueatPCwufDdWBZTB5So7eBHRkVS30yJ+clQBP6riK32Ik9mJKSAOSZctXpn6uN21OBZI8xVgVDCi9gtbqpMZLnM5svZP3DGLyJodgqZMZsqlDNbVHN5ISZNUyGxRPLstAZimfy0Yv7cheHHQlbIRLal+RYk5evzX7/uq5yev+htkG/39Sh3ncDPYYITFUUOCqoLspqFQHmuRZfLPpb0cZYeIqANcta6LhqhHF3Vl6Rm+uM4q41jNqQ6zs71zm5uMfWx5fkbeUy8nEPGeNOiPsh4Oixhf8znjSey7p6bWimT/ytOl9rdbav0A8/fivTV1kmCe7Il9b4Op+/nJ7uds4zzFXj9nxtsv66W7pH1Vif/4CVnpGrrc1BG6YJOYhgbN0MuTb9/NM+55wYdXFQHG08o8kOAfVkcZebk8E7nTnr7Zjjji//IO5aR/G7eRb3nR0VNOsFaL6p16/7SnRumJzBQgk5yKk3zlkXuNXpn/cuuu2r/dCr5ob60L6AM+KpzUUg2FDqoBNSSBph5pPlWuGtxBhY55OGmS0dk1tEnyx1vkpaOeST5UYZ1ebGJH/rqyhPfQBfS8rKFZDClLn0aZJgqWOUMFlhqzzO7AzkwfeUVU7zInicETpykF7fbH+6Ej7WlGsXrKuGpX5Lu2rk3HhyrH7/c6DY3pKIkEbQdCqeWqf/DpRvJc2UMKc62XIJLjci5M0nnJU1eTcNLbSsLbUE2oxtAPXworfpjDul3oG4Z436bTDoi3YamqHp2XtTWMxD03uJaupo/GoIiS3JYKmTrPU8acsYC/YhKEY3IX41hL9GBZrbIbxWFyUZ0WRjXdDLBF9DBK08S+FFfBqfwioKnJlh6AFtth7R68ER1kUIz3hZoDaySyj7smHedTtRiOxNt6eLNfkgepwLiEAIKB5hHFhzUCwP9HmgYWsNloaJNxFM5Qak17BcjtDTe1esVmKu5auwLdde7nm+7tOPTrduk58Vt3tzcEuLHfE8x6KSlYH2c3S6bjL/Cch3l42G/14dOIPthddeHrPYxtXC3lRJBoHnBbd3TDsCo/5ycMeNbkdg3WLsFyf0idHuSFSC6GYVtf1PuFh/7NYYTgayxcZ5Ry3IeWqPTpZRyZ9de7P1PPUvrgYQwaiZ82ZyjBQc3sucivc1UBtyEhp/sC2hQDOpcCJr6z3l9w9fuufL sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/create-backup.ParamsDetails.json b/docs/documents/container/create-backup.ParamsDetails.json new file mode 100644 index 0000000..1d20446 --- /dev/null +++ b/docs/documents/container/create-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"kaasId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/create-backup.RequestSchema.json b/docs/documents/container/create-backup.RequestSchema.json new file mode 100644 index 0000000..fd74cf2 --- /dev/null +++ b/docs/documents/container/create-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInsertDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/create-backup.StatusCodes.json b/docs/documents/container/create-backup.StatusCodes.json new file mode 100644 index 0000000..47765f2 --- /dev/null +++ b/docs/documents/container/create-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/create-backup.api.mdx b/docs/documents/container/create-backup.api.mdx index 1a631c7..2a67502 100644 --- a/docs/documents/container/create-backup.api.mdx +++ b/docs/documents/container/create-backup.api.mdx @@ -5,7 +5,7 @@ description: "Create backup" sidebar_label: "Create backup" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/create-container-registry.ParamsDetails.json b/docs/documents/container/create-container-registry.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/container/create-container-registry.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/create-container-registry.RequestSchema.json b/docs/documents/container/create-container-registry.RequestSchema.json new file mode 100644 index 0000000..d9ba384 --- /dev/null +++ b/docs/documents/container/create-container-registry.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the container registry to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the registry will be created automatically.\r\nPreset is available for all the registries unless a vpc has been already created in the same project and location."},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","description":"The number of concurrent connections required by user","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the registry will be created automatically.\r\nPreset is available for all the registries unless a vpc has been already created in the same project and location."},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","description":"The number of concurrent connections required by user","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the registry will be created automatically.\r\nPreset is available for all the registries unless a vpc has been already created in the same project and location."},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","description":"The number of concurrent connections required by user","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInsertDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/create-container-registry.StatusCodes.json b/docs/documents/container/create-container-registry.StatusCodes.json new file mode 100644 index 0000000..937d7df --- /dev/null +++ b/docs/documents/container/create-container-registry.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/create-container-registry.api.mdx b/docs/documents/container/create-container-registry.api.mdx index e95e746..67a639a 100644 --- a/docs/documents/container/create-container-registry.api.mdx +++ b/docs/documents/container/create-container-registry.api.mdx @@ -5,7 +5,7 @@ description: "Create Container Registry" sidebar_label: "Create Container Registry" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/create-kaa-s.ParamsDetails.json b/docs/documents/container/create-kaa-s.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/container/create-kaa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/create-kaa-s.RequestSchema.json b/docs/documents/container/create-kaa-s.RequestSchema.json new file mode 100644 index 0000000..eaf86cc --- /dev/null +++ b/docs/documents/container/create-kaa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the cluster kubernetes to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the kaas will be created automatically.\r\nPreset is available for all the kaas unless a vpc has been already created in the same project and location."},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"nodeCidr":{"type":"object","properties":{"address":{"type":"string","description":"Address in CIDR notation. The IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"},"name":{"type":"string","description":"Name of the nodecidr"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.NodeCidrDto"},"podCidr":{"type":"string","description":"Details of the subnet podcidr","nullable":true},"securityGroup":{"type":"object","properties":{"name":{"type":"string","description":"Name of the security group"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KaasSecurityGroupDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version. See metadata section of the API documentation for an updated list of admissable values."}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesInsertVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true},"clientSecret":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityDto"},"autoscalerProfile":{"nullable":true},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the kaas will be created automatically.\r\nPreset is available for all the kaas unless a vpc has been already created in the same project and location."},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"nodeCidr":{"type":"object","properties":{"address":{"type":"string","description":"Address in CIDR notation. The IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"},"name":{"type":"string","description":"Name of the nodecidr"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.NodeCidrDto"},"podCidr":{"type":"string","description":"Details of the subnet podcidr","nullable":true},"securityGroup":{"type":"object","properties":{"name":{"type":"string","description":"Name of the security group"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KaasSecurityGroupDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version. See metadata section of the API documentation for an updated list of admissable values."}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesInsertVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true},"clientSecret":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityDto"},"autoscalerProfile":{"nullable":true},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"preset":{"type":"boolean","description":"Set this flag to true if you want the vpc and the subnet related to the kaas will be created automatically.\r\nPreset is available for all the kaas unless a vpc has been already created in the same project and location."},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"nodeCidr":{"type":"object","properties":{"address":{"type":"string","description":"Address in CIDR notation. The IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"},"name":{"type":"string","description":"Name of the nodecidr"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.NodeCidrDto"},"podCidr":{"type":"string","description":"Details of the subnet podcidr","nullable":true},"securityGroup":{"type":"object","properties":{"name":{"type":"string","description":"Name of the security group"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KaasSecurityGroupDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version. See metadata section of the API documentation for an updated list of admissable values."}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesInsertVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true},"clientSecret":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityDto"},"autoscalerProfile":{"nullable":true},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertPropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInsertDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/create-kaa-s.StatusCodes.json b/docs/documents/container/create-kaa-s.StatusCodes.json new file mode 100644 index 0000000..0589735 --- /dev/null +++ b/docs/documents/container/create-kaa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/create-kaa-s.api.mdx b/docs/documents/container/create-kaa-s.api.mdx index 20390e4..ea3700d 100644 --- a/docs/documents/container/create-kaa-s.api.mdx +++ b/docs/documents/container/create-kaa-s.api.mdx @@ -5,7 +5,7 @@ description: "Create KaaS" sidebar_label: "Create KaaS" hide_title: true hide_table_of_contents: true -api: eJztXetz28YR/1cw6Jc+KFJy2zTVpJmRqMRhE9kcS04/WJrOEThSF4E4+ABQZjT637t7dyCeNE/mw06z9owtgvfY3dv3/UZ49DM2S/3Td/6PjKX+bc9PmGJznnGFTx/9GD74p36i5C88yEah3/NFjA9Ydgc/hzwNlEgyIfFhHov3OfdEyONMTAVXnpx62R337HRveDmGSYq/z4XioX+aqZz3/DS443Pmnz762TLB3dJMiXjmPz31VgSwRBwtgCjcyJIAW6lli4Zr2A434GnGQ+9sPPLKaes2wjWmLI8yeHQC294aGmGJcxkucXx9D2QpiHLYQXn3+YSrGASWepn0AsVZxmHBQMYZSAHnsiSJRMBw7uCXFBd4bFMiJyggmAiiSrjKBE/xWzgJFrLMYaSRUxdnVcpfwajiUBRPZa4C7j/1/EgaAjfvs2BR7rDRzzis3GkGTz0Rew93Irir7e49iCjyJtzTJPCwf6Nu4rMFExGbRMXU1GMZKBFPQaSnOODIG12fvzw652rG5vImvom/l8qbSwXaF0+lmmtueh6IObjX+33DvDvFp/+68QehDNJBIdnBHwrej1gcHuGjowC24erG9zKmZjyDOf+dRCy+v/G/hbn5HL7WM74ZsG/7qKY+C0OBT1g0rkhryqKUNyUzBM1gAliqEOqxicwzTecbIyuQHCtPqOdnIotQ3D9ZYi8yiedmrHd1GEwphiYhMj5POwyqSctPIs30IcEyHlBT14ueH+eRPgZjqc9k9NJKuKVvJTfFEMtNXdM+rodaG7LKuImUEWdxSxOvOApWAH8Rm6GNIiuemHpLmXsPLDZiXySBB+evf07zCRg00BuhQuop8PQeHORKWY2dhx7LM4lHGLAoWmrVHWu6PNiPrZQYJQsDymXyOOIpjNDb3sGDCeegBBGsGi5Xi4O9aHLQZgsPijQWCttHmcEKm4WVK7HZZN8q0XYNm468OMkzlU9YfzhPrrhaiID3rZpzBZMWEBFUHw457b+xK6f9Czj3/ksOI0RQPLV6YA7g/46tWIZ8KEK1mTGgDWjtsOAmc2dmIKrKcHTxxoul8Ux9D+PgaOwpFs+4N4dYhWo74dkDatrJcV//HXzd807+8aJ/8pX+dPICPv4TP35tPn+lyX52ZEFGA2R033J+ZSVa+A8ZNuS7htgL8DsiSgt6rcHDdE11y++BRvIAlC1bvlQyT/YRjIsNvJneYd+Cw2zvqsqTlWCZzfxss6a9JAQ2Jet7VxyUs4gTIIPMxj4chLlbLdwaPxp7eRJq/xjZ6MXCuUhT7Wk1MalDTN5Wfis5jeIUlrbSqhj6GMKRS2jeToNgowQ28vRwu3N1dQGJzIyr9sR8PjHpuZnR800uYqb89QWuBTlKxuLAgQyQ2VTMcmVOKW54gnSPxwyUwJJDna85mD2MNbldPRfVVK5qFZRnMyndFwefOXPt+XMRD2UeZw46cwkyi+t6s8oZ8ZOV3B1mMpAWpZATwSFgJsRj5Dlsa1mHp52zD84EsQ8HIKgy1SHbHMUh1no6wezetE3iPr3Vq8IVWddUp7ZQzIIcpGZlCJip4pQ75sL3VOfVPT2zWh8XlqS4qYIxaQ6UhJzlr96vMuaYU0N6HlcLxZRHYGG2FhzDfimSl+HCzKTryLeCwx2zmEdozD+ceQGLYRDuFYrUiFqC+6pRs8q1bY7d7wz2mVRsxjc7adTVfJ5DmSAW/GcZgX1diV+5g+pemS3AM8xFZjUCVKQMKwXFWgTXOkeZr3IF2EO7E1tSLPTOUFWkwPJkWWO4yPx0vQHii81G2v30UEnTBFK1qbDCvjB9EPM9Ki0KRxcdsTTEGgdXnKrubRgxbrKkPUdkK1Gr5hOgD8xuDL5v8zEWgyFll2FXFNkVJwXJK0aGcj6HNEjz8z1sMmbLSLKwf16SbxkyPbVsuZmbAA4kxk7dZkZ6djBkgqpWb+2c841niAnpyPJoWS7cp540FZG2q7Z7TgRuwtVZAOuklaEbSqw8u5MKLCkcJW+wSHpeH6VFh/HuYyUW4FeGxvo6/OYeRXjWKQktzD2fm06By2UPtmWxUcY/ZNRapdYqtVaptUqtVWqtUmuVWqvUWqXWKrVWqbVKrVVqrVJrlVqr1Fql1iq1Vqm1Sq3VZ7VWq+DVP/+FeqzUY6UeK/VYqcdKPVbqsVKPlXqs1GOlHiv1WKnHSj1W6rFSj5V6rNRjpR4r9Vipx+reY8WtoAhOJDzTh/Xi+AT/a+SoxuH7td8soHGvScTEnpqyws0K1/QxWuPWFQWtge7t3ACivpunwKRMLd3G1h3VDhhaW2QexDW/sdrVL7qvxYOyb6mFuyt9mMoISHBy4XtmeGw4a/D77K5zW0PAFmdSOYQzZxVJLCNOg2GAjOTMYX/HI3Mkc8/HdW3Zqp3Xnvcc2qNs6IhOsLElgr/OpUMwq3QRS+SjTMw77hvsKjw8d3Mn8iF2NBvwubo23446W987UrdoddQ+4kEN329TR322lDiPh+zynoermPrpfSrX0IXfBNlQKn2rUhfD9rmRo/euMd3Q145GRAz1hOvh6tpTM9YptG62Htv77lkExYVbg/kUSM8dThvHOaYLOzF/W8hfafJG8VQ6+Ov0wlb/XRqGmSJL64e0KXzp2MIXQubp1Rcpp73nAFXmDxlaLprH31DbKRNRrsCSWeroV7lS0uH+TbmvOIdSq94s+kyx30jpO2SwISa8kYa6MLyWXwqV7fzZ+d6fItfGyLUWGrElXOCwDb3GHXozYm0HEfiSWNnlnWtHWyp8Pb3Kk0SqbLtYnPIoAuvdxTLfxeF2iygegJkAb+uifJ7MFAv5tUPC4C5L7A+FOWQWZ5290r2G6o2K9rbgeDcBenMXrqm12JZreqb93YO3C/C1N9/bXvHtLJvtuFBfl3+wuWPPQ9SWM7ehNYJkjhO6Ms8k322PDpL1e7z+ejn5rB53ZKXc0MU6TqDeG/58N/C93aj/fuOXEVtDnh8FDmx5zf/5rhJX1+UbcyyLFdt8z7QeyncwrsYGF9fhnXfNwzPcxefOzArsYDOx3A3S74tj96xAKregfw0BrIF7HAYl8WWACBoS+Q2CCVaVYwVJ0HTgur+J8WiUOGkwkIahNbgf7/S6a5MA6qH6dZOIZ535Jdh8lPZbi+wLYHEYvETjYAkR8XFExKEKJDihcsGObHTziSRGdg4D71jqMMw5WKXb1vl7zGWQ1YMgTEBdYWGMC1aHD7zrAbZrmcJB3rRBqJgdMUSoGELFECqGUDEb8nZCxRAqhlAxhIohVAyhYggVQ6iY32fkIlTMb4oVQsUQKoZQMYSKIVQMoWIIFUOoGELFECqGUDGEiiFUDKFiCBVDqBiHoyNUDKFidoGK2fPbEQkOsyOGCA5DcBiCwxAcZkPCTnAYgsMQHIbgMASHITgMwWEIDvP7jFwEh/lNsUJwGILDEByG4DAEhyE4DMFhCA5DcBiCwxAchuAwBIchOAzBYQgO43B0BIchOMz2cBjc7G/Hx+366JyF3hv+Pucp6tTWL1ky37rc0hvm3BS2fjHznFok1K8MdtrnYy9OdTWBx5Iz/1LgCxPlNOufpckrjm1m3r9cBAi8gKXm9m3GW/8GHxL5J4n8k+BhJOtPkDWu9/cu31N4RM9Eck9fcOnDORuPLl4PDTmt1xZr/IQHPu7Kxzs6yGwgX4OqXXuwhGV38GlgcVvp4NH+NAqfBgWOKB1Yn1o40oF+aypWiEgIcPoOrxdAsP5dliXp6WAAmVef4aQgknnYD+Tcf7otS0o945wzhXnQu9vqV1eoW0Z9igFl6pWIHznmXk3B4HvyvH//59rL5D3XNZqO7/6ZTeTMbRWeKtLIGYKjUHCo0Nadn8tw+d0HNk+MIlaRjXax1flXMYW2Z17J/gwk7F3x5LZ1q1dcSpnTstdQuiiurFLe6jS/iW21XmtHVJSzRuxT5X3x5ZhWZd+a1HkT0+a10tZ+15aTbUQfV62p/Lbahiyfls2042pr7LjRmtaGd2tKdCPHShG+tsw+bpewjSK1wlu1DCoLnZLS+ltFKxPXVx1ddUWpKOvqBONktE+ysI96plNYJSb5LdvoGOP9cH09xvd543u5L+RDjG9jbXZ3scQFRgZBMfOo8AZ9NJrOrq6H1SS+Jxz5xa6uX4F6+Sf94/6xUcg0mxvpW42p+6gaAyvbryRYuoek3bhxX+8K2Cn6pNOVA/NLJCR+0ZAEPNFeDJUIfSGs8vg4gYz6rYqenvAxuAVlPFW4wtF0VeKPZR7oX+v3O2uHwkP9zvRCAL1uRu7Bn2nHdlQOLOxMu8wFU8IEm2cR8kd0a0Lx8E9eHov3+J5jrc9TYV4krl8CbyTlDS/H68grHG+8rNJVkF2K+gndnHWsSKj5fmjIObrGVcr5rfTtqVfMQJNJssrYKjm3lfg1fn11DcMm4LW1yWvwtq/YAzzEfzWVMlnB0PSzRx80dZZrN+GbnfHP/wAH82+q +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/delete-backup.ParamsDetails.json b/docs/documents/container/delete-backup.ParamsDetails.json new file mode 100644 index 0000000..d522bf3 --- /dev/null +++ b/docs/documents/container/delete-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"kaasId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/delete-backup.RequestSchema.json b/docs/documents/container/delete-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/delete-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/delete-backup.StatusCodes.json b/docs/documents/container/delete-backup.StatusCodes.json new file mode 100644 index 0000000..ce819bd --- /dev/null +++ b/docs/documents/container/delete-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/delete-backup.api.mdx b/docs/documents/container/delete-backup.api.mdx index fc46169..03464f7 100644 --- a/docs/documents/container/delete-backup.api.mdx +++ b/docs/documents/container/delete-backup.api.mdx @@ -5,7 +5,7 @@ description: "Delete backup" sidebar_label: "Delete backup" hide_title: true hide_table_of_contents: true -api: eJztV0tv00AQ/ivWnkAKdijlYhWktCmivFqVIA5NhDb2pNlms2t2x4Fi+b8z40fqJgUVCXohpyS78/xmdvJNIVBeehFfiEOZLPJMTHoik04uAcHxeSEM/RCxyJy9ggRPUtETyvCBxDl9d/A1Vw5SEaPLoSd8MoelFHEh8DpjRY9OmUtRlr21rYWU/q8YUn/DiMzUkxVlq6xprX3NwV3TjxR84lSGfBWL0RwCdgAeIQ0GZyfBjdqvHLGNmcw10tFTcjvhGH1mjQfP0nv9Pf647WiQJJCRD1H2xH6/vy1wKNPgvI6EPCTWIBisnMN3jDItOYtiOyg75RqSClUzA4eqDqK+3Q7d5FrLqYYaTQoGFer7SXqUmHeME64Il+BIdmbdUmJ99GzvLuUUUCp9Lz/KkCeT3CcokpZpqhhCqc+6ANxkJt6rxFlvZxgOfPYB8Mg6CN+vkpAUyNRyWIXmRWUty7RKJBuMrrzdQf7vIa/6e4f1A2BdVrNnf3v2fLAYvLK5SXeTZzd5/h/Id5PnISfP87tYzwll6shF8BEcMa/g2DnrquIQFxueHrWk77bWEDSR2WBa89ueIGo7t0QQSYwvuGbMHWMRNRTXR8Wa7JZ8uFIp8bxo4PKpDI9o5NGQAxcxi42KmsuWUW2fDlRaMh+sQqwZdO4IcjFHzHwcRUQ3Q8mmEm3zNEzsUjAr9JDkTuF1pXEI0lFJ44tJ9+ojd13dWK3AujZk9S1sU9YT4pkOgzefRwHaBTBTbVjvICcYnPpRDZGW985BUqoVpMrMbGW/qd9G9uEgU1ve7pAJXo9GZ8yVx2Zshvab0Za4KxKTPpDB3MHsxVhE1DGGEoiSVvNJi3rIL24sApTuEpBkv0y1NIuxeBmckhJz8JnScBDJlxRNS8eJaof9sM/0ObMel7J6tE3im/1wK4U1np2/M7JSVbBoGuWi3YU8acfdvWjdK/R9Aws64U5hjfX207QMn9EiQ4WeU7Bsvyim0sMnp8uSj+tthPsiVZ7fHXXvTGq/2erFzf/xb3eVO1NcUPds7kIrqXOWrBp0JZ2qH/0fBfLovFnJHge/ct22sLnu+mxDugGYd7YHdNzU6YG9UieUE5JqniKDXV/US2FHpWt10plrw+N3x6NjesQ/AU8peiM= +api: eJztV99v2zYQ/leEe9oAVnKz7kVoCzhxinr9ZbQe9hAbw1k8R6xpkiVP3jxB//tAyXKcOB0yoM1L/SSA5H13/O54+q4GxusA+RWcY7GqHMwFOPS4JiYf12swuCbIwXn7mQoeSxCgTFxALkGApy+V8iQhZ1+RgFCUtEbIa+Cti4aBvTLX0DRij7VCDN8ESH0LEHTqyYZ8UNb0aF8q8lsQICkUXjmOWzlMS0qiAwpMMhlOxsmN2dccRYwlVpohh6fQNPMYY3DWBArx9NngLH5uOxoWBTkmCY2AZ4PB8YFzlMnHLhIQUFjDZLh1Tn9z5jTGW9THQdlFzCGImE1HnlUXRLd7HLqptMaFpo7NRgAr1g87GRi5OgAHZZiuyYOApfVr5G7pl7P7jCUxKv0gP8oERlM8JKhGAEqpIoWoJ4cE3NwM3qnC22CXnA6De098YT2l7zZFOvF2oWk9akML0KI5p1WBETD7HOyJ8u9PeVvfJ64fgeum7T3PjnvPe8vJK1sZeeo8p87z41B+6jyP2Xl+vU/1jA2TN6iTT+Q35JNL761vkzOcjEcfLnrRd9tqRJqYkkWnbwWsiUsrIQfZbsScRe2YQ7aTuCGr92K3iYsbJcmHbOirBaYX1jAqQz6LKjarOy3bZB1+yGolm6gH2xA7BV15DTmUzC7kWYZOpRihCm0rmRZ2DVEVBioqr3jbWpwTevKQX80Ptz7FqusKqz+wzw069YaOJevYBPKc/PbHNGG7oqhUd6p3WHFpvfqnbSK97i0JJXWUKrO0Lf4uf3dunw6dOvJ2z5nk9XQ6iVp5ZmZmZP8y2qJMuKTkOSalp+WLGWTWkUGnsqK3fNKznsYXN4OE0V8Tv5jBnwuNZjWDl8kHRyZq8KXS9DzDlyCgl+M5PE0H6SDKZ2cDr7F9tLuL362HW1fY83nwO2tEl8F6VyhX/SwUQEB+OBftawXEXS5AtFNPtNhPP7uSiWtKxsmrtIEjfl0vMNDvXjdNXO6mkVgXUoX47iTkS9ThbqnXN//j/5xV7r3iirZHs9AGdRVPtgW6Qa+6R/+/Avnp424k+zn5muu+hM320Gcf0g3BcWZ7RMe7PD2yVyWhmTeif4qR7G6jGwoPTA5R5wd9bXT59nJ6CU3zL08peiM= sidebar_class_name: "delete api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/delete-kaa-s.ParamsDetails.json b/docs/documents/container/delete-kaa-s.ParamsDetails.json new file mode 100644 index 0000000..93bc250 --- /dev/null +++ b/docs/documents/container/delete-kaa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the cluster k","required":true,"schema":{"type":"string"}},{"name":"deleteOnCascade","in":"query","description":"if true, delete all the elastic ips used by the cluster kubernetes (es. for load balancers)","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/delete-kaa-s.RequestSchema.json b/docs/documents/container/delete-kaa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/delete-kaa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/delete-kaa-s.StatusCodes.json b/docs/documents/container/delete-kaa-s.StatusCodes.json new file mode 100644 index 0000000..ce819bd --- /dev/null +++ b/docs/documents/container/delete-kaa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/delete-kaa-s.api.mdx b/docs/documents/container/delete-kaa-s.api.mdx index 67d1586..ff3b263 100644 --- a/docs/documents/container/delete-kaa-s.api.mdx +++ b/docs/documents/container/delete-kaa-s.api.mdx @@ -5,7 +5,7 @@ description: "Delete KaaS" sidebar_label: "Delete KaaS" hide_title: true hide_table_of_contents: true -api: eJztV99v2kgQ/ldW+9RK1Ka53gvqVaKQ0+V6aaKG0z0EdBrsIWxZdt3ddVpq+X+/GRuDCVxEI7Uv5QlYz49vvxkP3xQywJ2XvVv5DsDLSUdm4GCJAR2fFtLQD9mTmbMfMQkXqexIZfgAwpy+p+gTp7KgLB/mRn3KUagUTVAzhU7YmQhzFGt3Mbi8JieHn3LlMJW94HLsSJ/McQmyV8iwyjibD06ZO1mWnQ0A9cTMic49XUYsnpg3RU1kXJkB+ARSbEBQMrfaQ6EoJ0cWtZcArSsQqMEHlQiVeZF7TMV0tQsun6Iz5OHFM/SRmFkntAWyAw0moVo8lwfgTq3VCGYHL2TqxT05MKBHsY4oPxOChCAV/esLsXX7P2I4xgxyHejoJaWdMKc+s8ajZ+uz7hl/7CbqJwlmlEOWHfmq2903eEsX/VAjoQyJNYGKWCXHLyHONPAtin1Qdso9RS7UXRm6oGoQ9dN96CbXGqYa6+oTmKCCPs7SBwh5KzjxGvAOHdlSqZYQ6qNfzg45pxhA6aPyKEOZqN5HGJM1pKliCkFftwnY3kxeqsRZb2ch6vvsPYaBdRhd3icROVCo5bCC5mUVLcu0SoADxh+9PVH+/Smv+vvE9Q/guqxmz6v92fPeBvG7zU16mjynyfPzUH6aPD9y8vx6SPVc0E0dpRA36Eh5iXPnrKuKQ1pseDVoROqu17AWliTWbwg66fS5TTcqlSvG4rgn47Xg9nGxUe4lH96TQnY+7rt8CtGABh6NOHTxgsR/XKi0ZPFX4anVf+6IXzkPIfO9OCZtGQF7JtrmaZTYpWQJ6DHJnQqryuMtgqP69W4n7Uc33GJ1FzUGm0JQ1He4r08vSFS6IP78ZySCXSDL0rXE7ed0a6e+VhOjEblzJHVe86fMzFbx18V6cNmon6m9bAdsxB+j0TUL47EZm6H9bCpFzrL9NYi5w9lvYxlTexi6QJw0ni8akiN+vcZSBHB3GMj23ylp+cVYvhFX5MSCe6Y0vo7hDaFptDfp6qgbdVkrZ9aHJVRv6Priu8XfucCGzdY/F8Wo6lesu+K22eI8effaG92mMej7AybohJuDPWgFo5LOCRbHKoopePzb6bLk43rJ4A5IlefXidpyBto/7OBi+zf7ndelg4QsqNMOLXX3oHO2lrxKHX+Dx5aoR/LvLmnb3BP+4VQ9jb6Jymcf1rvtc3HkEn4QXvNKmlUbVwN72zLfxtIx4Np7+hOgUW+WE7JajwEmr35Qb58tl3bUSWuEDs//Oh+d0wD5D+9u6wA= +api: eJztV99v2zYQ/leIe2oBVUqz7kVoC7hJhmVZGqPJ0IfYGM7iKWZDkwx5cucZ+t8HSpZ/xG7gBmhf5ifDJO/u43fH03dzYLwLkN/CBWKAYQIOPU6IycfVORicEOTgvP1CBZ9LSECZuIA8hgQkhcIrx8rGxcqoh4qEkmRYlYq8sKXgMYmFuTi57EMCnh4q5UlCzr6iBEIxpglCPgeeuRgtsFfmDuo6WQJQz4xc6CoweXH/zLiSNDFdmRMMBUrqQDxU5GdbKFQpGs+itRKodQOCNAZWhVAuiCqQFKPZJrhqRN4QUxAvKKSitF5oi1KMUKMpyIeXsAPuyFpNaDbwolOvpuRDBPQk1psxiUgIBSYpev1zsTL7FjHRR4mVZsjhNdT1MHIanDWBQjx9fHQcfzYD9YqCHJOEOoE3R0fbBz6gFJ9aJJBAYQ2T4SY4/cOZ0xhvMd8GZUexpiCJxenIs2pBtLvb0E2lNY40tdmvE2DFer+TgZGrNeegDNMdeUigtH6C3C79crzLWBKj0nvFUSZwzPceh+sEUEoVKUTdXydgdTO4VIW3wZac9oL7SHxiPaWX0yLtezvSNDltoAVovDmnVYHRYfYl2APlP57ypr4PXP8Eruum97zZ7j0fLYvfbGXkofMcOs//h/JD5/mZnefXXarn3DB5g1pck5+SF2feW98kp9c/P7066UTqptVpKywvEK8hgQnx2MqlSo0Zi+I4h2whuEM2Xyr3Oi5OlSQfsp6vRpieWMOoDPnsHjFkcyXrKP4aPK36r7yGHMbMLuRZhk6lGC0LbSuZFnYCUQIGKiqveNZYfCD05CG/Ha5vXccSa6uoO7BMBDp1Qdv69NwE8iz++Hwj2N5TlKULidureGy9+rfpGJ3IHRNKavlTprSN/0WyHl027Tm1FW3HGfH7zU0/CuOBGZhT+9U0ijzK9rcoxp7KdwPIrCODTmVFZ/mqIzmNz2sAgtHfEb8bwN8jjeZ+AO/FlSMTBXepNL3N8D0k0GnvHF6nR+lR1MrOBp5g80IXF99M/sYFlmyufbnqpM3ffFEVt90UFyCBfH2iWxYGJI+ZgARicUQLJeN8OLaBo6/5fISB/vK6ruNyO2TECpAqxOckIS9Rh8cVPF99Zn/wuLSTkHua7RzqpqireBriKLX/DZ4aop6IvzmkrWIP4x+v2m70XVS++LSYbV+KPYfwnfC6J2lm67g62KuS+T6W9gG3Pqc/A5qSUA/rpGsDkbx2o50+10zWvQ7XWujp2Z9nN2dQ1/8B727rAA== sidebar_class_name: "delete api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/delete-registry.ParamsDetails.json b/docs/documents/container/delete-registry.ParamsDetails.json new file mode 100644 index 0000000..62957c4 --- /dev/null +++ b/docs/documents/container/delete-registry.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the registry","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/delete-registry.RequestSchema.json b/docs/documents/container/delete-registry.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/delete-registry.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/delete-registry.StatusCodes.json b/docs/documents/container/delete-registry.StatusCodes.json new file mode 100644 index 0000000..ce819bd --- /dev/null +++ b/docs/documents/container/delete-registry.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/delete-registry.api.mdx b/docs/documents/container/delete-registry.api.mdx index f3bdf29..6c34c47 100644 --- a/docs/documents/container/delete-registry.api.mdx +++ b/docs/documents/container/delete-registry.api.mdx @@ -5,7 +5,7 @@ description: "Delete Registry" sidebar_label: "Delete Registry" hide_title: true hide_table_of_contents: true -api: eJztV91v0zAQ/1csP4FUkjLgpQKksg4xYGwaRTysFXKTS2vm2sF2CiPK/86dk7TZWtCYgBf61Na+j999+Pq7knsxd3xwwc9hLp23V3za47mwYgkeLN2UXOMPPuC5NZ8h8ccp73Gp6UD4BX5PwSVW5l4aOiy0/FIAkyloLzMJlpmM+QWwRp0dnpyhkoUvhbSQ8oG3BfS4SxawFHxQcn+VkzfEIvWcV1VvDUDe0bNtQ7ubW5HLByvMBXlp/KOfYO46gHHwhXfOQ8qGZ8dso/YzR2QjE4XyePQQ3U4Jo8uNduBI+qB/QB/XHQ2TBHL0wasef9zvbwu8ECk7r5Ggh8RojzkJzuGbj3MlKIpyG5SZUYlQBYuVg/WyBlHfbkPXhVJipqDOJoLx0qvbSTovfNExjnn1MAeLspmxS+Hro0cHu5RT8EKqW/mRGj3p5DagUFqkqaQUCnXWTcAmMn4iE2ucyXw0dPk78IfGQnSySiJUQFPLUYDmeLCW50omggzGn53Zp/zvpzz09z7X/yDXVZg9j7dnzzvj2UtT6HQ/efaT5/9J+X7y/MvJ82QX6znGSC26YO/BIvNiR9YaG4qDXGx0etiSvutaI1BIddn5hiQi9V0YpIgoSFdUNeKbAx43HNbF5ZoMV3S4QtJpXTy0xUxEhzj0cMyBjRviibHGpUwrooEBWU2rC4uZ5gvvczeIY2SZkSD9RJkijRKz5EQGHSSFlf4qaLwAYbGSg4tp9+o9NVvdT63AuiRo9Q1sM9VjpJfWs9cfx8ybSyCC2pDdYYGxW/k9zI6W7i5AYHwhk1JnJthvynYj5GiYyy1vO2TYq/H4jCjyRE/0yHzVyiBlJbL+VLCFhezZhMfYKBoDiJNW80Gb6oge2oQzL+wcPMp+mimhLyf8OTtFJaLemVTwNBbPEU3LwpFhR/2oT6w5N84vRXirTeDbbXAtiHVGO/9jaCfUsGz646JdkRxqD7rr0rpF8PuNbISlpG0T0sMtB4u7QIBksSxnwsEHq6qKjuvFg3ohlY6eGLZpJpS72dXl5q/3l2vJzqAusWNurj0roQqSDE25ElbW7/u3gNw7b7av++yWW+JOeG1r66surhb2Ju20wv1ZcJ1F8g7IsLDVFKWa10S5qy/qda6j0rU67cyj0dHbo/ERvsMfWO51fg== +api: eJztV99v2zYQ/leIe9oAVXKz7kVoC7hxhnlbWiN10YfYGGjxZLGhSYY8efME/e8D9cNWYm/Igq0v85MAknf33cfj6bsKiK89pLdwg2vpye1gGYHljm+Q0IWdCjTfIKRgnfmCGU0FRCB1WOBUQAQCfeakJWnCYqnlfYlMCtQkc4mOmZxRgawzZ5fXM4jA4X0pHQpIyZUYgc8K3HBIK6CdDdE8OanXUNfRHoB8ZmTXp/a8sNzKF1t0PkTp4t+X2Lh7CGDexLov0RMKNp5N2cHsrwIFHzkvFUEKL6GulwGjt0Z79OH0xegifB4GGmcZWkIBdQSvRqPjA++4YDctEoggM5pQUxMcf6fEKh6yqI5BmVW4IojCXVt0JFsQ7e4xdF0qxVcKWzbrCEiSetpJT5zKgXOQmnCNDiLIjdtwape+uzhlLJC4VE+KI7UnrrOngKoj4ELIQCFXsyEBh8zgWmbOeJNTPPb2PdKlcRhfb7N45sxK4WbSQPPQeLNWyYwHh8kXb86U//eUN/V95vorcF03vefVce95b4j9YEotzp3n3Hn+P5SfO8/X7Dzfn1I9U03oNFfsI7otOnblnHHN5Yxn08mHy170PbSaoEJCdnMQiRukwghIQTRb4daC3kwh6TSsT6q9GK7D4lYKdD4Zu3LF40ujiUuNLumEp0SfVFLUQQY2yFpZXToFKRRE1qdJwq2MebDPlClFnJkNBDHoMSudpF1j8Q65Qwfp7XK49TEUW1tP/YH9lXArf8ZjpTrVHh2xnz7PGZk7DAK1E7vjkgrj5B9N7+jlboFcYMuk1Llp/HfX9ijleGzlUbQTZ9iP8/ksSOSFXuiJ+U0rw0Uj1l9zVjjM3ywgMRY1tzLJessXPdVxeGgLYMTdGunNAn5dKa7vFvCWfbCog/TOpcLXCX8LEfQqPIWX8SgeBdVsjacNb95ql/hxGTxIYs/o4D9WR+0dVl193PYjkocI0uG4tC8RiB6z0QwlfZkEOynCCFYYT8FjVa24x09O1XVYbgePUAtC+vDEBKQ5V/5xVVeHX+/fjiUnk7rD3dHYs+WqDCebotxyJ9v3/Y+AfHPTTV/fsidOiSfh9aWtd0NcPewD7WGE+3fBDQbJZyCTAuplHfWvKXDXbrTj3MBk6HU56EeTq1+u5ldQ138CWO51fg== sidebar_class_name: "delete api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/detach-a-volume-from-a-kaas-node.ParamsDetails.json b/docs/documents/container/detach-a-volume-from-a-kaas-node.ParamsDetails.json new file mode 100644 index 0000000..84a2378 --- /dev/null +++ b/docs/documents/container/detach-a-volume-from-a-kaas-node.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"nodePoolId","in":"path","required":true,"schema":{"type":"string"}},{"name":"nodeId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/detach-a-volume-from-a-kaas-node.RequestSchema.json b/docs/documents/container/detach-a-volume-from-a-kaas-node.RequestSchema.json new file mode 100644 index 0000000..13e0727 --- /dev/null +++ b/docs/documents/container/detach-a-volume-from-a-kaas-node.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/detach-a-volume-from-a-kaas-node.StatusCodes.json b/docs/documents/container/detach-a-volume-from-a-kaas-node.StatusCodes.json new file mode 100644 index 0000000..2da33f8 --- /dev/null +++ b/docs/documents/container/detach-a-volume-from-a-kaas-node.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"400":{"description":"Bad Request","content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/detach-a-volume-from-a-kaas-node.api.mdx b/docs/documents/container/detach-a-volume-from-a-kaas-node.api.mdx index cfdd0a2..ab38b0d 100644 --- a/docs/documents/container/detach-a-volume-from-a-kaas-node.api.mdx +++ b/docs/documents/container/detach-a-volume-from-a-kaas-node.api.mdx @@ -5,7 +5,7 @@ description: "Detach a volume from a kaas node" sidebar_label: "Detach a volume from a kaas node" hide_title: true hide_table_of_contents: true -api: eJztV92P2kYQ/1esfWrTO/vSNi9WGomDSKVReogj7cOBosEeYHO219ldk1CL/70zuzaYg0uu0umah/AA9ux8f+2PWlhYGhHfiDcARszORAkacrSomVqLgl5ELEqtPmBih6k4E7JgAtgVPWv8WEmNqYitrvBMmGSFOYi4FnZTsqCxWhZLsd2e7XTJx1BSqBRHSmWP4hErexRFUMrzNaVOqqLV9rFCvaGXFE2iZWn5KBaTFQZsAI3FNOiNhsFe7D5DrGMBVWaJ9JzMzryPpOJSpRvmT1RhsbD8CGWZyQTYXPTBsM36WLGac1FJMZW3RG0lGj5dq6zicL7GV2l52stupO/Gw0AtAksBe72BVUGKFpJVSMxFlWUwz9BnmXIpIE0ly0I26lhbQGaoCFZa5hU9Xc0h7OflNeq1TDDsU+ggC9QktJYp6nBglQnHaFSlEzThACyEA2f3L+cHnYuntMcDNvb1ak1b/Gy/V+dbrU53hJ799L1M32SZ2LhGU6rC+Hz+enHBP4f5u4Q0aMQoXY+0Jv3pcenuVGMX/wM4jQVbdZTTFWJxiZp4F0rnYD3pl59PCXM/yOxBdmRBlorkIU7dW9x6H5l4KxOtjFrYsGfKP9H2lcbw7ToJSYBU5QPnmmnq9eJUiYYUqSYTATcH6uC11kq73qLbcXDVb6/hQynfGwG0Y7HQKqe3W2qTgG91iofAzEqlfK8rV313vcciaiCNieoduNky0TWiiZpmbTs0YpVRLYmnhR70ukchntyQ+NVPJ1/nLh6PpipN9REra0sTRxGhhRDYTJKpKg0TlQu+1A0mtBTsxklcImiqf3wz6x5dc4v6LmwZdoUkrW/wGHEMaUC0Df74e0K74xYZaDSgpVdRgrT8x01BC1tWCJQGl3+ei/EeaLz+DHnp+3m/49wW6yAiUrJQzqnD2W/TGfZKeeTiCZ7g98lkxPhoWkyLgfpUZIpGmffgSwhWGhe/TUVEPVlQ1FHSSp63ZQzZ96kILOglWuJ9P8+guJ2KV8EVCTHuWsgMX0bwirxpIRjBq/AivBAUBvdMDm4tNNl6QMcdRLWri7vsy4wcZMWuE+qmGW9afG1IOu5i7V0/0vOd9BCFjbKEQ9S7tmTKATx2ndlSHaVpTuqoFQ8FOVDXczD4TmfbLZM9auUGTKXhbZDutvmd6HbL9IuY9mQObqlN72LmNWQVc7pJWIOWfhX9J0d+GDfQ/cfgPtPtrBSbrs3WpX0FGNs/oWH55BY7jfI/WGarM+Jstg2X2R/2vZ3zCavYCx9d1+yzl+glCZb2i7yzzmUwurqeEPO8+eeU8+TGQsMn/udH385R5eJ2a9bRakHbY1nBknm9Tv78C75pTyo= +api: eJztV99v2zYQ/leIe9oPRUq39UVoCzhxgXlFF8Nxt4fYGM7S2WIjkSpJOfUE/e/DUZJ/xE6XAUHWh/olzpF335H33fFzDQ5XFuIbeIdoYR5AiQYLcmTYWoPCgiCG0uiPlLhRCgFIxQZ0GQRg6FMlDaUQO1NRADbJqECIa3Cbkh2tM1KtoGmCbSz5FEGUTmmsdf4kGXGwJwmEpTxbk7FSqz7ap4rMBgJIySZGlo6XYphmJBiArKNUDMYjsXN7CIhjLLHKHcTwAppm3uZI1l3odMP7E60cKcdfsSxzmSDDRR8tY9bHgfWCiwoBl7ck4yRZXl3rvOLj/Nu+ysjTWe6f9MNkJPRSuIxEG1c4LVJymGQhBKCqPMdFTu0tN00AmKaSfTEf76EtMbcUgJOO98LAVAsML4vymsxaJhReauVQKjJjo9cyJRMOnbbhhKyuTEI2HKLDcOhx//B5DJ2G58TjBpu09eqhHX1236rztVZnv4V++PFbmb7KMjG4IVtqZdv7/OX8nP8c3t8FpqJzg+CpxmS7ely6e9XYnv8RO61DV+0FB6kcrchAAEttCnSt6eefTjkzH2T+KByprEOVPCapB4tb704G72VitNVLFw5s+Tu5S20ofL9OwrHRi5yKoU/NdvV6eapEI+XIKMwFk4OMeGuMNp5bg/FoeHXZP8OHXi03BPZtsTS6EChuEa3gVx0CKMhlOuV3Xfvq++c9hqiTNDaqt+KmYaMnoo06svYMjThkVMu0iXrpYaN6p0Jac2fif9vu5Ofcn6dVU5XJIYbMudLGUYSlDJFhklxXaZjoAvhRt5RURrqN97ggNGQgvpnvL10zRVsW9hu2hcRSvqNjxTFSlowTv/05FU7fEguNTrQMKpdpI//2XdDLlowwpfb+uS8mO6Hx9jMWZcvn3YzzU2xPEYFUS+2TOuz9/jrDQSmPUjyxR/w6nY5ZH83UTA31nco1pn4OvkKRGVq+nkGkS1JYyijpPc/6Moac+wyEQ7Mi93oGfy1yVLczeCOuSlKsu5Yyp1cRvoEAegkWw4vwPDyHJvCcKdCPhe62HsG4g1Nt6+If+zJHqTiwZ0LdkfGm19cWAoj3tfaWjxDcvx4IgEHZwyvqLS3ZciCPPTN7q7d05JwHkHFTxDdQ1wu09MHkTcPmVrUyAVNpeRqk22l+73TbYfpFTXvyDm5pc6SZ15hXvNN3whqNbEfRf0rku0kn3b8XD0H3vaI2+5h9SrsKsLZ/RmD57Ih7RPkfkBl13gT9tOEyt4uXLc7ZlEPsnI+ea8659RgkCZXui3vne4/B+Op6CgEsul9OBXduDAbv+Jcf3rWJan9uP2a9rYYc1arCFe9tY/LnH75pTyo= sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/detach-volume.ParamsDetails.json b/docs/documents/container/detach-volume.ParamsDetails.json new file mode 100644 index 0000000..01f1d20 --- /dev/null +++ b/docs/documents/container/detach-volume.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"Unique identifier of the cluster kubernetes","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/detach-volume.RequestSchema.json b/docs/documents/container/detach-volume.RequestSchema.json new file mode 100644 index 0000000..3c43afd --- /dev/null +++ b/docs/documents/container/detach-volume.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the request to detach a volume","content":{"application/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"volume":{"type":"object","properties":{"uri":{"type":"string","description":"URI of the volume to detach.","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.DetachVolumeKaasRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/detach-volume.StatusCodes.json b/docs/documents/container/detach-volume.StatusCodes.json new file mode 100644 index 0000000..2da33f8 --- /dev/null +++ b/docs/documents/container/detach-volume.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"400":{"description":"Bad Request","content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/detach-volume.api.mdx b/docs/documents/container/detach-volume.api.mdx index 6df2a87..4529019 100644 --- a/docs/documents/container/detach-volume.api.mdx +++ b/docs/documents/container/detach-volume.api.mdx @@ -5,7 +5,7 @@ description: "Detach Volume" sidebar_label: "Detach Volume" hide_title: true hide_table_of_contents: true -api: eJztV9uO2zYQ/RWCT03rlba3FyMJ4LUD1A22a3id9GFtFGNpZDGWRYWknLiC/70zlOR70u0iKPIQPxg2NZczM4fkUSUdLKzsPsjXAFbOOrIAAyt0aHi1kjn9kV1ZGP0OIzeMZUeqnBfApfQ7RhsZVTilefFNrt6XKFSMuVOJQiN0IlyKonEX/dsRORl8XyqDsew6U2JH2ijFFchuJd2m4GzWGZUv5Hbb2QFQT8wcZaWlYsSynKPJqS77RABQqKs1dYXzNUgoo9mcQZlQVk6AlDcWvdFQ7N0+lYhjJFBmjpZ+pLSzGiOFuNHxhu2Pc7h9DuG0iNFBlAoQa52VhLYjI507agV7QlFkKgL2DN9Zdq/Oceg5z4ccaVIFGqeoT/S0ifevdqVRl4s6mtF42E6ljruHHpBxXmYZzDOsh0KtlxDHin0hGx1kSyCzNDOnHNvKninnEPRXxT2atYow6FPpoHI05LQmQphg4LQNxmh1aSK0wQAcBAOf963HQc/l/5mPt9q4nl6b2uFH9206X+t0DrfQ9z98G9NXOSZObtAWOrd1P3+5vj4/OW8gFo3blzsm66fnozuZxq7+R1haB648CE43jsMFGrJNtFmBq5d+/umSM/NBZY/Ko3LKlEePAfXJ4Vb7yuStioy2OnFBzxZ/oOtrg8HtOgrIgUKtBh6abeb166URDalSQykEk4Ou7lfGaOO5RZfp4K7f3trHXjU3xNv2BiQNk+qY9YL2o/ayoSvDRorYsNppmi0vetbZsGFmS8dwSTQLK0U29SbjS9zDquVRaajNMnWusN0wJI0QAAeIMl3GQaRXkq9yixHtbbfxHjcIhsbYfZgdPrpnptVkag1286Cor/FcZwyJ58aJ3/+c0BGwRJYXjVTplVS6UX97MrdiJUWgAn0bmd7jvbx49RFWRU3L/VHlD6MDHURBEu1BHW/htlFBr1BnEC/YiN8mkxGromk+zQf6Q55p2pF8nD0HkRpMXkxlSNTKqeowaj2v2gEFjH0qhQOzQEe2f80zyJdT+VLckROrrURl+DyEl4SmFV4kqoLr4FpSGcyGFfjd3XTrlDhHJeyG4C/oIiM0HMWPvWo49dCqY5aW3UOlvKMV/T7pBa0wtdjDS9uGXUSJlPlKQatqDhbfmGy75eVabDKDYmV5V8a7U/UE8e5Q+6wUvVjXknh2KnXXkJVs6am8BqPqI+E/Aflu3CjuZ+KR7wgX4bUbIt8c4mph7zvPsv3Lgrv4GvEEjDTr7Yysmt3IXawf9Gs4VxN23zue3UpcWu3RiyIs3GdtZwfH4OjufkLG8+Z9YqVj9jHwgd+H6NuD1L49/hjya5Wk3bUoYcG2dUz+/AM0uPr2 +api: eJztV9tu2zgQ/RVinvaiSOleXoS2gGMXWG+RjeG43YfYWIylsc1GIhVy5NRr6N8Xo4vtxG43GxSLPlSP1AznkOdweLgFxqWH+AbeInqYBVCgw5yYnIxuwWBOEEPh7AdKeJhCANrIAPIKAkjJJ04XrK0MvjP6riSlUzKsF5qcsgvFK1JtuupfjiAAR3eldpRCzK6kAHyyohwh3gJvCqnm2WmzhKoKdgD0MysnWemZnLot5+QMMflnAsBCn63JeanXIrkryW2OoExWpKQAeaZU9UZDtU/7VCGZY4FlxhDDC6iqWYORPF/YdCPxD2vwvoZiq1JiTFYK1dpmZU4QQGINk2HJxKLIdIKSGX3wkr49xmHnwg8EQnRBjjV5+dvO969xpdOnF/WAo/GwY6WZdw89hABMmWU4z6ghpaoCwDTVkovZ6KDaAjNPAbBmiYWeK+cY9vPimtxaJxT2rWHUhtzI2bVOyYUDtj4ck7elS8iHA2QMB3Xd9zWOAVv4P+vJURs37HWlmT7yN3a+VnYOj9APP36j6aukSYo78oU1vtnPX87PjzvnBaaqTftybbL5e0zdIzZ2639CpGfk8mBy0IZpSQ4CWFiXIzdDP/90Kln0oLMn1dHGM5rkKaA+Se52vzK41Imz3i447PniD+K+dRRerpNw5Ow8o3xQQ/MtX7+eomhomJzBTIk4yKk3zllXa6s3Gg6u+t2t/TCr0YZ6392AOfHKpuIXbE11bRtiiFor4qPtztNUMlirzketMjs5RreIPtrqtIqaQyaXeA2rsUelyyCGFXPh4yjCQocoEySZLdMwsTnIVe4pKZ3mTZ1xQejIQXwzO/x1LUprxNQF7PjAQr+lY58xNJ4cq9//nCi2tyT2orUqvZJX1um/azF3ZmVFmFKzjSLv8d5evPmIedHIct+q6mZ04INAm4WtQT08wt1Ghb1CH0E8EaN+m0xG4oqmZmoG9t5kFtO6nb1EtXK0eDWFyBZksNBR0mWedQSFgn0KitEtiV9N4a95huZ2Cq/VVUFG3NZCZ/QywtcQQGe8YngRnofnUAW1GnKsT3e7W4+F82AJOxLqC7rIUBuZpaZ922rqpnPHYi3jQ6e8kxUEj/cCAhBpSUZtbVt1zQJYiV7jG9hu5+jpncuqSoYbsykKSrWXU5nuuuojxLum9lkrenJdt7Q5srprzEqJrKW8RqeblvCfgHw3bh339+qJb4ST8LoDYTaHuDrY+50X2/5lwZ18RjwDo06hmlVBdxplF5sf/QbO2UTS94lHt5IsrcnoJQkV/NnY2UEbHF1dTyCAefueyG0qOQ7v5T2E9w1IW29P3YbqsS1kaJYlLiW2mVO+fwA0uPr2 sidebar_class_name: "post api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.ParamsDetails.json b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.ParamsDetails.json new file mode 100644 index 0000000..bc1caf4 --- /dev/null +++ b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the cluster kubernetes","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.RequestSchema.json b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.StatusCodes.json b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.StatusCodes.json new file mode 100644 index 0000000..ecd605d --- /dev/null +++ b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.api.mdx b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.api.mdx index 1beea45..9711f65 100644 --- a/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.api.mdx +++ b/docs/documents/container/download-the-configuration-file-of-the-cluster-kubernetes.api.mdx @@ -5,7 +5,7 @@ description: "Download the configuration file of the cluster kubernetes" sidebar_label: "Download the configuration file of the cluster kubernetes" hide_title: true hide_table_of_contents: true -api: eJztV91v2zYQ/1cIPm2AK2Vd92K0Bdyk3bKgTdC62ENsDLR0slnTpHqkvKWC//feUZKj2G6RZlhf6ifL1H387oOn39UyqLmXw2t5oZSX04EsFaoVBEA+raWlP3IoS3QfIAvnuRxIbflAhQU9I3ysNEIuhwErGEifLWCl5LCW4aZkRR9Q27ncbAZbW3rXSA4+Q10G7fiwsvpjBULnYIMuNKBwhQgLEJmpPOESy2oGaAmifyAAVepHawqQ/bVIyCPe7EEZk1d2AOQ3F6Orc3Gr9iVHbKNQlQl09Au5nTJGXzrrCS9JPz454Z+7ji4v5GYgnxx69ULl4m2DgWxnzgbKS3QL/4a0NIrx1/tw3IwLRipUuhIw6MZ983YftK2MUTMDTR4JTNDB3E/SBxWqnnHKaIA5IMkWDlcqNEe/Pj6knENQ2tzLj7bkyWb3AUXSKs81p1CZq34CbiOTr3WGzrsiJCNfvoFw6hCS1+ssIQUytTqL0LyM1srS6EyxwfSDd8eU//8pj/19zPV3yPUmzp4n+7PnjQvilatsfpw8x8nz46T8OHm+5+T57RDrOadIkVyId4DEucRLRIexOMTCzi5PO7p3V+vM/WONI8IU6aKzhZ5XGK+OKLSBrxJJ4rwLRzRSziEWl6npUKYt8fVpvaXAGz5cEz9Fn46wmqnklGYjTUPAdEksOq01yeQtFqaKMYaGT1dINZGLEEo/TFNiooliE5lxVZ5kbiWZMHrIKtThJmq8AIVU8+H1tP/qHbdl03mdwLZ4ZPUC9tnsOVFQDOLPv8YiuCUwiW0J8aii2FF/iqnqKPECFIUYc65t4aL9tsA7USejUu95OyAj/hiPr5hGT+zE3qnVUyUWCMWziUyppSwFkGad5qMu2wlfyYkUQSHViGT/nhlllxP5XFySEtNzrvLTVD0nNB1TJxaenCQnzK9L58NKxVvdBv5fGuZOuNvc976N5DFWu26b6brbolh72N+otv1Ezzt5oxPuKdaIe9O2ragXFhQPm63rmfLwHs1mw8fNLsOtk2vPd5e6ulDG716X+vab/tVN52BkS2qw3U1qrUzFkrGH1wp1Mzi+CchPb9uF7mfxJdddl9ubvs8O0m1eeeN7kONv20AfgJEquZmSVHvFOEPNi1GWQRl6Kn2r096Q+v3lmG7mZ/xVeLc= +api: eJztV1Fv2zYQ/ivEPW2AaqVd9yK0Bdyk27ygjdG66ENsDGfxZLGmSYY8efME/feBkuU4sVukGdaX+UkAybv7+N3x9F0NjIsA2TVcIgaYJeDQ44qYfFytweCKIAPn7WfKeSQhAWXiAnIJCXi6qZQnCRn7ihIIeUkrhKwG3rhoGNgrs4CmSXa+1H0nkkLulWNl42Jl1E1FQkkyrApFXthCcEki11Vg8mJZzckbYgqPBIBOPVmTDzHeFslNRX5zAGVSkogBKDBJMRyPxK3ZlwJFHwVWmiGDp9A0s4gxOGsChXj62dlZ/NwNdHUJTQLPj229RinedxgggdwaJsNtWPqLU6cx4q8P4dh5TBgkMXWOPKsufLd7CNpUWuNcU8djkwAr1g87GRi52nMOyjAtyEMChfUr5G7pp2fHjCUxKv2gOMoERpM/BFSTAEqpIoWox/sE3N4M3qrc22ALHgyDe0d8bj0N3q7zwdjbuabVRQstQOvNOa1yjA7Tz8GeKP/vKW/r+8T1d+C6aXvP88Pe886y+MVWRp46z6nz/H8oP3We79l5fj6mekaGyRvU4gP5NXnxxnvr2+QMx6OLq/Ne7t21urB/Gm1RdnLRmkItKt8+HVEoTV8Vkivi0krIYEFtcqM0zSDdCt+Q1jsJ3MTFtZLkQzr01RwH59YwKkM+XSKGtFaySeUWS5SK7R06PV15DRmUzC5kaYpODTC6yLWt5CC3K4iCMVBeecWb1uI1oScP2fVsf+tDLMuu8voDu+ShU5d0qGZHJpBn8funiWC7pChit4J4WHFpvfq7paqXxCWhpI5zZQrb+t8m+N6tB0OnDqIdOSN+m0zGUUZPzdTcydULFKWn4uUUUuvIoFNp3ls+6dkexCc5BcHoF8Qvp/DHXKNZTuGVuHJkojyPWX6R4itIoFfqGTwdnA3Oor52NvAK21e9vfi/KZg7191xv/dvbJIu2/W2mK77KSpaZ/sT1a6eILnPGyQQaypatHPTrqxmCZQ2cHRb13MM9NHrponL3SwTS0eqEN+uhKxAHe4/l/r2n/7VSefozZa0OZik1qireLKt4TV61TWObwLyw/vtQPej+FLovsrNZj9mD+mW1zjxPSrwt02gj8CoJDSzJumfWGSo2xjmOTneM9n3OttrUr++mUDT/AP8VXi3 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/get-backup.ParamsDetails.json b/docs/documents/container/get-backup.ParamsDetails.json new file mode 100644 index 0000000..c5937ac --- /dev/null +++ b/docs/documents/container/get-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"kaasId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/get-backup.RequestSchema.json b/docs/documents/container/get-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/get-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/get-backup.StatusCodes.json b/docs/documents/container/get-backup.StatusCodes.json new file mode 100644 index 0000000..e320e65 --- /dev/null +++ b/docs/documents/container/get-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/get-backup.api.mdx b/docs/documents/container/get-backup.api.mdx index f245676..5bbea5b 100644 --- a/docs/documents/container/get-backup.api.mdx +++ b/docs/documents/container/get-backup.api.mdx @@ -5,7 +5,7 @@ description: "Get Backup" sidebar_label: "Get Backup" hide_title: true hide_table_of_contents: true -api: eJztXF9v2zYQ/yoCnzYgldIu24PRFXDirvO6NkbjYg9NMNASbbORSZWk3KaGv/vuRMmWZblmmzgJMD4lkY53vD+8O/4c34IYOtGk84Gc0vg6z8jVEcmoojNmmMLnCyLgD9IhmZIfWWz6CTkiXOADaqbwu2Kfcq5YQjpG5eyI6HjKZpR0FsTcZLhQG8XFhCyXRyte15TqO2HE74TJREjFeiwFnZMLQ02uK66fcqZuSAubkZQpo2KDD834kzlYjUvRXJ8wHSueGXzVIcMpC3CjTIPAoDvoB+tluzaMPMY0Tw08egpir1BXnUmhmUbqZ8fH+GNT0PlrWBdLYZgwBUv2xURZSnFvi21RcoQehiXg64wpwy1riAWaUONACe5o2bjI05SOUmZ9sjwiueJOdNauDoSpjKlVed8OY5m4sYxlLgz4zomWGzdCZ4XmNM1dKIGUJglH3Wk6qGk6pqmG8DfcIC3pqnxEw7NZdsHUnMcsfMe0zFXMYM2cJ0yFZ3I2kyLsGanxZRFY4d+lXasH8JYsj6pUcGfxMJYpbKHvQnxghQdWs4a+NkWu9kaVoniouWEz3ZJa2iKEGjaRG+G0w2TOIZKVijgRA4FM5cRBvqPLHLd5YHcNS7U2/HVgmWelKxsxEitWHJUevG4zzFiqGcXkDZmUPTEczNcWJ8iFJadu6UR+Fo7HBnJuhoJvtzvLw3V3VU1zyqBW7/faMZ7LnTjTp1xcs6RysMth3nE8XEsXvonNmVSKpc3SVOsdDpu9N5RuxOvWjmdU0Imzc6kQ0hSKtRqtXa3FttwDm+BN2bo0lNe2ydvrbaRzbBfu5PgnXOPftgfti7F0yNe6ZxclbRGGTSLVm07aV76K2sLmXOb64lHa6eA9QF35+ywtvab7G2E7pjzNFZxkdKmTuZlSUu33n3LnOGNaQ554+NpvrfQSFWyYCe5FwIklQ/lYdrndP9eM/23X+Mq1t3KNeApWmgyY4tKtGbIEDoSK4dW5yFc3dRtzuFJPoPeoJSx49MuzNh4Idtydex5Jf34mhaEc2s+VIysP2jgNIcHTsNWDh5NpIaw1y0bgOGIYTmVX86/s9Maw/UHx20lrYv6ScchTXXPvRdDRii3lJ1N8vlm2dxgnm1LtQOZ81YX2QpkH6Rj2GmuAqt5LWPchuhSwxoM1sJ6412NVl3+vgreEZVnKLS4VfSzbFg9leijTQ5keyvRQpocyPZT5f78QeijzoSE6D2V6KNNDmR7K9FCmhzI9lOmhTA9leijTQ5lbUGbx/5gew/QYpscwPYbpMUyPYXoM098EPYb5OLA5j2F6DNNjmB7D9BimxzA9hukxTI9hegzTY5gNDBPFnRyfYCRsfvX8rTTBHzIX+AX9W38D3blAlMq5BfFmL/09NSSBewxP3QqEAEkivlX2X6w1I294rKSWYxN2dfaWYWcA96p5jFgZsJr1iq3pW/+nrDf5D5n8hxB9b+sfsDXy+7Vt6EWVGQNMbEwFxZ2kcE530O+dn9ntNGdyvGImKEeg4K3KTLF3JRNWeAtni3RIVALtOlqshqEsowr41VGZUas0GmGnGS3srJNlNCqYwwOeLIFncScqJ6zkCoxNpsZkuhNFNOMhRVZxKvMkjOWM4LQPzWJoSvGTDVhxyqhCrO3DVf3VBcabDamKYH09yfhrtj2KpA+ZXJngr3+GgZHXDCeQlNNMujnYQPGv9tJRzjOZMooY97LwfNmYbdaTSvuwm/EtaS00wZ/D4QBnoFyKS9GTn0UqaRKYKQue02Cq2Pj3SxJBrAhQIIqrlU8qq4d41i5JAC0J+Apo/x2lVFxfkhfBOSzC2SpjnrLnEX1BahgoeRoeh8dFFyW1mVGxboA2I2Fj/ytj1qpY8flZcVZslHyoPo7BGTKd+tCcVaDA7w1DkPJaAitWo3HKeMFncMkAL09hp8h/sRhBk/NepcslPrYjZjAokhXyVJb6a3D4rvE25UdahOAAm62VDbVXBfybo2tajWP3sDkaZy37Cv9Q3GaJNhV2buSnd+Wkn5+DXaKryBc3dZnVltau+T4L3Fpw6eF7lgoxtLwCqvIEo7Hti24cs8zUltS5XtVy4auXQzj4/wFOSHgi +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/get-kaa-s.ParamsDetails.json b/docs/documents/container/get-kaa-s.ParamsDetails.json new file mode 100644 index 0000000..00ee783 --- /dev/null +++ b/docs/documents/container/get-kaa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the cluster kubernetes","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/get-kaa-s.RequestSchema.json b/docs/documents/container/get-kaa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/get-kaa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/get-kaa-s.StatusCodes.json b/docs/documents/container/get-kaa-s.StatusCodes.json new file mode 100644 index 0000000..7c6a439 --- /dev/null +++ b/docs/documents/container/get-kaa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/get-kaa-s.api.mdx b/docs/documents/container/get-kaa-s.api.mdx index 73dc159..06daaf9 100644 --- a/docs/documents/container/get-kaa-s.api.mdx +++ b/docs/documents/container/get-kaa-s.api.mdx @@ -5,7 +5,7 @@ description: "Get KaaS" sidebar_label: "Get KaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/get-registry.ParamsDetails.json b/docs/documents/container/get-registry.ParamsDetails.json new file mode 100644 index 0000000..11f02a9 --- /dev/null +++ b/docs/documents/container/get-registry.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the registry","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/get-registry.RequestSchema.json b/docs/documents/container/get-registry.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/get-registry.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/get-registry.StatusCodes.json b/docs/documents/container/get-registry.StatusCodes.json new file mode 100644 index 0000000..e066cd6 --- /dev/null +++ b/docs/documents/container/get-registry.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/get-registry.api.mdx b/docs/documents/container/get-registry.api.mdx index c3f9ac8..f7ff582 100644 --- a/docs/documents/container/get-registry.api.mdx +++ b/docs/documents/container/get-registry.api.mdx @@ -5,7 +5,7 @@ description: "Get Registry" sidebar_label: "Get Registry" hide_title: true hide_table_of_contents: true -api: eJztXN1z2jgQ/1c8erqboSbt9V6YXmcItDmuTcskdO6hZG6ELUCNkVxJpk0Z/vfb9QcYYxKFlKRN9ZRgr6T90kq7P9gFMXSiSesjOWMTro26IhcNElNFZ8wwhW8WRMAH0iKxkp9YYHohaRAu8AE1U/g/ZDpQPDZc4sNE8M8J83jIhOFjzpQnx56ZMi8f7nVO+zBIsc8JVywkLaMS1iA6mLIZJa0FMVcxrga8cDEhy2VjxQDfc2VViLbnshMhFeuyCDQSnhtqEl3wAeul024ywotltUxUwDz2FZbXHheeTkd7Q5LPNiQNIDOJEtp7J81rmYjQo0EgVQhceEamE81pBHKlwnDtjSM6ITWcj6SMGBUbrNOYP5mDGZGva1kepPzCOw1cee1+z1sP26UjnGNMk8jAo6ew7AWqV8dSaKaR+tnREf7ZXOj9GxgXSGHASOmU7KtpxhFF3hbbS8kR+gwMAe+JmTI8mxqck4bUWFCCz9QwLpIooqOIZW6wbJBEcSu6TK8WhJEMaCbyTRwGMrSbMgDvQC+2ouXGjtBaoNQJLSiBlIYhR9lp1C9JOqaRhh1nuEFa0lbJiPqdWXzO1JwHzD/LtwuMmcMeVn5HzmZS+F0jNb5MHct/m+u1eABvybJRxKbv5g9jGQELPRviAwvczySryJtF7RVvVCmKm5obNtM10azOQ6hhE7nhTjtUZu0icS6IFTEQyEhOLNa3NJklmwc21yAXa8NeB16zk5uy4iOBYulW6cLrOsWMpZpRDN4QSdkTw0F9dX6Cs7Dw2C6cyC/CcttAzI1x4btxl81hy11xpllF0EzuD9rSn3NOrOkjLi5ZWBjYZjPv2B62Rxe+CUxHKsWi6tFUujscNnpvCF3x1y2OZ1TQibVxqRDSpILVKq1erMX2ugdWwWl+dakIn90Mb7Y20lleF77L9g+5xs/ZtbcnxtIiXutuNiis8zC8JFK9aaSbjq/0bGFzLhN9/kPq6eB3gLLw93m0dKvmr7jtmPIoUbCT0aRW6mZKSXWz/ZT9jDOmNcSJhz/7My29QgEraoK8CGZi4UD+KFxu359Lyr/eNO7kuvHkitHgpj78xcko4kEv3ls/mwn1B8XXdY6MuzsoowOZOeTiTK20UaghM7YPUZL6JwwoeFA8zbUwj4NHJ5NORoJZpJU/m1gsAI7N1YmSyeNzxFEkg8tzI9XmqfBIhOMRBOBJP6IWtaWCGOaRD1fLeA2L9OlVJGnoH6/ZzwWi4YyLStq0y1RAdeg0/0bbtAt+i73Evz0sQ0Xlfj1p5Xiyq5TGis83r8C7CKnWX6QKz3edcKlF+znVW6oNUD7I7dpadT1h0LMi3Hf9TA+57rhVynObwkKu52Oq2QcV2Q1Jrwy3GTH+HNpwcx+aHcu7JSp7GfGeltxKxeIYDJXeUZuf8vzFYRoO03CYhsM0HKbhMA2HafzqlSGHaTx0rd5hGg7TcJiGwzQcpuEwDYdpPCKxHKbx0wrnMI2DHvUO03CYhsM0HKaxF6aR/kLDgRkOzHBghgMzHJjhwAwHZriSkAMzfowivQMzHJjhwAwHZjgww4EZDsx4RGI5MOOnFc6BGQc96h2Y4cAMB2Y4MGMPMAMXfF7XleqYht5Z1v6KfIf2VNlbmxprJqDVFbuSVnPgcQIxubRD4dEfz2prBAy0ZeeXXMBKIrhTwFysJSOnPFBSy7Hx2zp+xzBJYP7pPMCyOUw166as6Tv/esapfC+V7wXuOV3voess9jzfjj3vpPHSxn8u8rjI8+uo3EWe+4w8f9bdeor7mIfXKqa8tDCaGqfd73XfdzJ2qpn2CTPe2bqj6oyZKaauZMJSe2Fn1hZp5ni/bi5WbWOXzQJ/1s38Rldc45p5i1aQsrng4ZJgBQR50mkD2gQv1WRqTKxbzSaNuU9xfBDJJPQDOSPYe7QomaQjjhlVmLB+vCi/Okc3yzypIFiXRmP+hm03Ru3B5VEZ759/B56Rlwz7oea9VdsJCK74t6zgmXdXnTKK+PqynJhsXmILkf12zLdWq6Hx/h4M+tiRdSiGoiu/CMzS0zrHC+pNFRv/NSRNcBEBAjSDYuSTQtU+brEh8QxVYCCg/W8Emf3lkLz03sMg7PQ65hF70aQvSQl/JU/9I/8orYZKbWZZKSMXvOIAGxKs1Fk6vtJv70RZYorO8bH4Mgi20W2Vuwqv/AP+r6iCYI2+8BEcx0PsVDwF7nDGxWKUJV/LJT7OmtyiI4QrpCvPKSrsrk7c++naW6udS/C7XW2G82/1EIJdfe2Fua6f7zU8bPYLXq99gR8Uz2LUrbT621necfl3z7IzdC17xSYVV2W+CrbXPnQ7LdkwV2oevQdn4KXLC6DK4wLqLnvRDgIWm9KQ8qwXpbB68moA4eR/HrPP4A== +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/list-kaa-s.ParamsDetails.json b/docs/documents/container/list-kaa-s.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/container/list-kaa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/list-kaa-s.RequestSchema.json b/docs/documents/container/list-kaa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/list-kaa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/list-kaa-s.StatusCodes.json b/docs/documents/container/list-kaa-s.StatusCodes.json new file mode 100644 index 0000000..389bab5 --- /dev/null +++ b/docs/documents/container/list-kaa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/list-kaa-s.api.mdx b/docs/documents/container/list-kaa-s.api.mdx index 5bec648..2f59cee 100644 --- a/docs/documents/container/list-kaa-s.api.mdx +++ b/docs/documents/container/list-kaa-s.api.mdx @@ -5,7 +5,7 @@ description: "List KaaS" sidebar_label: "List KaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/search-backups.ParamsDetails.json b/docs/documents/container/search-backups.ParamsDetails.json new file mode 100644 index 0000000..a3003a9 --- /dev/null +++ b/docs/documents/container/search-backups.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"kaasId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/search-backups.RequestSchema.json b/docs/documents/container/search-backups.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/search-backups.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/search-backups.StatusCodes.json b/docs/documents/container/search-backups.StatusCodes.json new file mode 100644 index 0000000..73cbaa0 --- /dev/null +++ b/docs/documents/container/search-backups.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"billingPeriod":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true},"kaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.ResourceResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupPropertiesResponseDto"},"data":{"type":"object","properties":{"info":{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expiresAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInfoResponseDto"},"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataPrivateResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupInternalDataResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/search-backups.api.mdx b/docs/documents/container/search-backups.api.mdx index 5204643..ef19d1f 100644 --- a/docs/documents/container/search-backups.api.mdx +++ b/docs/documents/container/search-backups.api.mdx @@ -5,7 +5,7 @@ description: "Search backups" sidebar_label: "Search backups" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/search-registries.ParamsDetails.json b/docs/documents/container/search-registries.ParamsDetails.json new file mode 100644 index 0000000..b013074 --- /dev/null +++ b/docs/documents/container/search-registries.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"loadHarborVersion","in":"query","description":"","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/search-registries.RequestSchema.json b/docs/documents/container/search-registries.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/container/search-registries.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/container/search-registries.StatusCodes.json b/docs/documents/container/search-registries.StatusCodes.json new file mode 100644 index 0000000..ea52e4a --- /dev/null +++ b/docs/documents/container/search-registries.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"vpc":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"blockStorage":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"adminUser":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AdminUserDto"},"size":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"passwordSet":{"type":"boolean"},"adminPasswordLastSetDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataPrivateDto"},"info":{"type":"object","properties":{"version":{"type":"string","nullable":true},"privateBaseUrl":{"type":"string","nullable":true},"publicBaseUrl":{"type":"string","nullable":true},"fqdn":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInfoDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryResponseDto"}}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/search-registries.api.mdx b/docs/documents/container/search-registries.api.mdx index 14e3f45..44b9d32 100644 --- a/docs/documents/container/search-registries.api.mdx +++ b/docs/documents/container/search-registries.api.mdx @@ -5,7 +5,7 @@ description: "Search Registries" sidebar_label: "Search Registries" hide_title: true hide_table_of_contents: true -api: eJztXN1v2zYQ/1cEPm1AKqddtwejK+DYXeutWY3Y3R6SYKAlymYjkypJuUsN/++704cjKXLNJnHTZHxJYunI++TxyF98K2LoTJPuKTlhM66NuiTnByShii6YYQrfrIiAD6RLEiU/sMAMQ3JAuMAH1Mzh75DpQPHEcIkPU8E/pszjIROGR5wpT0aemTOvGO71j0cwSLGPKVcsJF2jUnZAdDBnC0q6K2IuE+QGsnAxI+v1wUaAiMcgU8kduIC0diO1VOYm4wqZUbMbjJZRpNluvlwYNsv0iqRaUJM/+ulZba6YL/hdTSVp+IaqqVR/gYdbdKs7tI3PVMqYUVGblib8ydJmwgkEA7qfacNCrzcaelfDtpkV54hoGqNGT4HtOUaQTqTQTCP1s8ND/FVn9O4PGBdIsIkw2ZTsX9NJYoqyra6zklP0NQwBrydMGZ5PbaSh8U4b//KcrEF8Fkdtwos0juk0Znm0r5EFW1oRCpDZijDiSttRxtSScEnjtLBBTkqVouhPbthC77YcpBAaUmNhYx5aCZQqbme0LCJtTCEDmgfLLgkDGdpNGchUYBq1ouXGjtBaocxlFpRASsOQo+40HlU0jWisIR0bbpCW9FQ6pX5/kYyZWvKA+SdMy1QFDMYsIccrvy8XCyn8gZEaX2ZL0n9b2LV8AG9JFvVZOr2zeIhkDCIMbYj3rPAo16yhb7637lw+5dbRFiEUko2shdMWk1mHSFIoYkUMBDKWMwv+li6zFHPP7poUatX8tWee/cKVjRgJFMuWygBetxlms8lAJmVPDAfztcUJzsLCI7t0Ij8Jy2UDOTdBxreTLp/DVrqyGrDKoLne77VlPBeSWNPHXFywsHTwLfZC260L3wSmL5VicXNrqlRd+83eNaUb8XpN4gUVdGbtXCoE1FMoeavR2tVaXee7ZxMcF6VLQ3kNoqcW3kY6y3LhTpZ/yDV+HmfiDUUkLfK1HuSDwrYIw/Ka6rqTdm1fRVnLZarH36Wd9l4DVJX/llvLoOn+RthGlMepgpWMLrUyN1NKqt3+U/YzLpjWkCfuf+/PrfQKFWyYCU6UMBMLJ/J7kfJ6/Vw9mH7RNW7n2rlzJehw057+knQa82CY3Ng+9auI94qX92CqkO4WxuhLYSiHGm5jjdIMubN9yJLUf82Aggfl08IKyyR4dDrpdCqYxbHyoanFApDYXL5WMn18gTiNZXAxNlLVd4VHohyPIQHPRjG1uFsqiWEeeX93Gb8BkxG9xNth/+hK/EIhGi64aBybtrkKqPZ9zN/pm14pb7mW+Of7FajEV64mbWxPdjelieLLegm8jZBq/UmqcLxth8s8Oiqo3lJtgPJeqmtr0w2FwciKcd2NcjsUtuNWR56vuVgo7HxENXuvYrshWcnwNSOij6GNNN/CspG83UHlRk78RizrR7H983sLP68d/5IEgiOrizsfijOTQ6AcAuUQKIdAOQTKIVAOgXIIlEOgHALlECiHQDkEyiFQ34uUDoFyCJRDoBwC5RCoh6acQ6D2utU7BMohUA6BcgjUg0Ggsm8/OejJQU8OenLQk4OeHPTkoCcHPTnoyUFPDnpy0JODnhz05KCn/9PO5aCnR6KTg54eoHYOenLQk4OeHPTkoKf7D0oHPe0XekKmz9v68x3R0DvJGwGSu2jUl721udfNlbQq6xtH+a0NFtvuJRhYzG4tcAGcRHCrJL260owc80BJLSPj93TyJ8ODCfOPlwFe1cNUi0Emmr79N9OcyW9i8ptBsc7WX29rnO/nttxTZmIPExxTXnYlkjmnNxoO3vVzcZo19phRFcy9ItehXHi3Y+ZYuZJZ1us1a4rbJZ0C7tOd1aZv7rpTwk+6UyTYMqt2VHXK7CamaL6b4nZK5sYkutvp0IT7FIcGsUxDP5ALgr1Qy8NSNuIIhMRS9fS8+mqMYZZHUklwdSmS8D/Y9UatQ0jhyni//z3xjLxg2J+16PXaS0FnxT/TamvcOaOIrK2rJUl9Oym19XsJv8athcZ7M5mMsEPsmTgTA/lJYH2enXBeUG+uWPTrGelAiAhQoBOUI5+UVvZxiZ0Rz1AFvgHaf6ZQ01+ckZfeOxiEnWcjHrMXHfqSVJAX8tQ/9A+zexCpzSI/xBSKtwVATY2NTSt7WAbex3ldisFxWmLBOLpbbau8iQ/4u2EPgld0G67g2LnE/2Q4JavVNK+61mt8nPfcxTgIN1fcxeZ+AT6udFEu4HJCsInvFuKicbINaa1Xss2ATXtkG+Ky/7EVbUuD4y+Pa7hwU4p8sVdxq6NzCeq9kK94n+MHxfN81+airYL8cFI0zP7Rs+yw3SpeueDFZVWuhgshFNfnQFwsaBQ0f98LApZUvVCd/LySCl+/mkAe+A+oUAWZ +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/sidebar.ts b/docs/documents/container/sidebar.ts index d480d4b..97c7569 100644 --- a/docs/documents/container/sidebar.ts +++ b/docs/documents/container/sidebar.ts @@ -1,158 +1,156 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/container/aruba-container-api" + type: "doc", + id: "documents/container/aruba-container-api", }, { - "type": "category", - "label": "Backup", - "items": [ + type: "category", + label: "Backup", + items: [ { - "type": "doc", - "id": "documents/container/create-backup", - "label": "Create backup", - "className": "api-method post" + type: "doc", + id: "documents/container/create-backup", + label: "Create backup", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/get-backup", - "label": "Get Backup", - "className": "api-method get" + type: "doc", + id: "documents/container/search-backups", + label: "Search backups", + className: "api-method get", }, { - "type": "doc", - "id": "documents/container/update-backup", - "label": "Update backup", - "className": "api-method put" + type: "doc", + id: "documents/container/update-backup", + label: "Update backup", + className: "api-method put", }, { - "type": "doc", - "id": "documents/container/delete-backup", - "label": "Delete backup", - "className": "api-method delete" + type: "doc", + id: "documents/container/delete-backup", + label: "Delete backup", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/container/search-backups", - "label": "Search backups", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/container/get-backup", + label: "Get Backup", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Kaas", - "items": [ + type: "category", + label: "Kaas", + items: [ { - "type": "doc", - "id": "documents/container/create-kaa-s", - "label": "Create KaaS", - "className": "api-method post" + type: "doc", + id: "documents/container/attach-volume", + label: "Attach Volume", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/get-kaa-s", - "label": "Get KaaS", - "className": "api-method get" + type: "doc", + id: "documents/container/detach-a-volume-from-a-kaas-node", + label: "Detach a volume from a kaas node", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/update-kaas-nodepool", - "label": "Update kaas nodepool", - "className": "api-method put" + type: "doc", + id: "documents/container/detach-volume", + label: "Detach Volume", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/update-kaa-s", - "label": "Update KaaS", - "className": "api-method put" + type: "doc", + id: "documents/container/update-kaas-nodepool", + label: "Update kaas nodepool", + className: "api-method put", }, { - "type": "doc", - "id": "documents/container/delete-kaa-s", - "label": "Delete KaaS", - "className": "api-method delete" + type: "doc", + id: "documents/container/create-kaa-s", + label: "Create KaaS", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/list-kaa-s", - "label": "List KaaS", - "className": "api-method get" + type: "doc", + id: "documents/container/list-kaa-s", + label: "List KaaS", + className: "api-method get", }, { - "type": "doc", - "id": "documents/container/attach-volume", - "label": "Attach Volume", - "className": "api-method post" + type: "doc", + id: "documents/container/update-kaa-s", + label: "Update KaaS", + className: "api-method put", }, { - "type": "doc", - "id": "documents/container/detach-a-volume-from-a-kaas-node", - "label": "Detach a volume from a kaas node", - "className": "api-method post" + type: "doc", + id: "documents/container/delete-kaa-s", + label: "Delete KaaS", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/container/detach-volume", - "label": "Detach Volume", - "className": "api-method post" + type: "doc", + id: "documents/container/get-kaa-s", + label: "Get KaaS", + className: "api-method get", }, { - "type": "doc", - "id": "documents/container/download-the-configuration-file-of-the-cluster-kubernetes", - "label": "Download the configuration file of the cluster kubernetes", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/container/download-the-configuration-file-of-the-cluster-kubernetes", + label: "Download the configuration file of the cluster kubernetes", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Registry", - "items": [ + type: "category", + label: "Registry", + items: [ { - "type": "doc", - "id": "documents/container/create-container-registry", - "label": "Create Container Registry", - "className": "api-method post" + type: "doc", + id: "documents/container/create-container-registry", + label: "Create Container Registry", + className: "api-method post", }, { - "type": "doc", - "id": "documents/container/get-registry", - "label": "Get Registry", - "className": "api-method get" + type: "doc", + id: "documents/container/search-registries", + label: "Search Registries", + className: "api-method get", }, { - "type": "doc", - "id": "documents/container/update-registry", - "label": "Update Registry", - "className": "api-method put" + type: "doc", + id: "documents/container/update-registry", + label: "Update Registry", + className: "api-method put", }, { - "type": "doc", - "id": "documents/container/update-admin-password-registry", - "label": "Update Admin Password Registry", - "className": "api-method put" + type: "doc", + id: "documents/container/get-registry", + label: "Get Registry", + className: "api-method get", }, { - "type": "doc", - "id": "documents/container/delete-registry", - "label": "Delete Registry", - "className": "api-method delete" + type: "doc", + id: "documents/container/delete-registry", + label: "Delete Registry", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/container/search-registries", - "label": "Search Registries", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/container/update-admin-password-registry", + label: "Update Admin Password Registry", + className: "api-method put", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/container/update-admin-password-registry.ParamsDetails.json b/docs/documents/container/update-admin-password-registry.ParamsDetails.json new file mode 100644 index 0000000..62957c4 --- /dev/null +++ b/docs/documents/container/update-admin-password-registry.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the registry","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/update-admin-password-registry.RequestSchema.json b/docs/documents/container/update-admin-password-registry.RequestSchema.json new file mode 100644 index 0000000..23743ee --- /dev/null +++ b/docs/documents/container/update-admin-password-registry.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"passsword to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePasswordDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePasswordDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePasswordDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/update-admin-password-registry.StatusCodes.json b/docs/documents/container/update-admin-password-registry.StatusCodes.json new file mode 100644 index 0000000..ecd605d --- /dev/null +++ b/docs/documents/container/update-admin-password-registry.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/update-admin-password-registry.api.mdx b/docs/documents/container/update-admin-password-registry.api.mdx index 61a23ed..a3c9222 100644 --- a/docs/documents/container/update-admin-password-registry.api.mdx +++ b/docs/documents/container/update-admin-password-registry.api.mdx @@ -5,7 +5,7 @@ description: "Update Admin Password Registry" sidebar_label: "Update Admin Password Registry" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cI7mUftpR23YvRFXCcdsvaJIbrbA+xMZwl2mYjiSpJOc0E/++7IyVb/ujqGMNQYM5DYJN3vK/fnY/HkluYGd654wMxk8bqRz5u8Rw0pMIKTTslz/AL7/Bcqw8ispcxb3GZ0QLYOX6OhYm0zK1UtFhk8mMhmIxFZuVUCs3UlNm5YBU76131kUmLj4XUIuYdqwvR4iaaixR4p+T2MSdpqIvMZny5bK0UkEdK1rVpx4mFXLYX6AuSUslHOe64TQWGThbuGSti1u1fsjXb5wTRGVMoEotLz1Ds2OuIR5yr+JHoN2XkYIx5UDpmVrEij8EKPCNSmUWriRzyPJEREHn4wRBPuStcTSgUyIhByYW2UhjaxZgDnngApXfNPmOayl4j1ToIRhU6EnzZ4onyCn5ZzgKS4gBBvxNZM9wqYzJjD3MZzTeksweZJGwimFNBxMFIj7LuAmQCk6RmNQwswlUYdGmHCNrscnj+S/tc6BmkapSNsjdKs1RpRFs2VTp11rQYujm6d/JeAptrMf15xMNYRSasPRt+U9vehixu01I7QjFCjzizoGfCIs+fkwSy+xF/hbxFituO42UIrwJCJoc4lrQCSb/hrSkkRmx7pofIAIkmNRRlMFGFdXoOvK/Qc7COUItbaRNy97tK2QurKG6+VqyCAVoDZYG0IjV7cmhbl3eYhS5IeAxDbTZx0eJZkbgw+OR8oqFXlYd38La2piZx1nzp9Jqpq4sJBL00fy/0QkYiqDwqNDItsNjoAM8zwaCSR598ubl12dkHn6+1UCs+2VNinhLzlJhfWWI2fzi//+GUoacMPWXo15ShJBY1yxFkHuDPz852++Obt+S8F/u2ziHGoLneerNldj/JeQLySRnvd3fTaysUK3ccQGkQrUUTDhJ1nAmNtB6BfunH5/uYYwyRTA6Sg6C2kEWHKPXZWJfLBjpkpJVRUxt0TX4tbA/TO7haRAEy4FHphVPN7JTZpxbZk8uPcvlRLefJ10f4eulqz4vd2nOtLHujiiw+VZ5T5fn/uPxUef7LyvPTvq7nkjpkFMGoCROavdZaaRecbv/y4qZXT0I3uXwDxrpxineBug9jg/UgFbvyuYppIFm4CNJAtsPDashrwnI1LV7Souv2TFh1hHUbGFaTWbQ7LCVS0sXBOqG1TBqdOsX9KLrQGAg+tzY3nTCEXAZAR0aJKuIgUimnAaoRUaGlfXQc5wI0BrpzN25uvScserjVBOvePJdvxe509xL7Tm3Zb38MmVX3goa61YC4W6AvtPzLX8yqEfFcAJrsHE0JMFgPdV9/gjT3wG3eGqvDVnhp3vSqu1zjelCP7auV8dKhb6qcHZv9d+3toJvLHav20LBfh8M+ja/ptnahHrJEYee8dTVDvGboqDCqOdt1lAMyd++VjN0gE43FpzIRdCVDbeoJeYc/C86CMzItV8amkDV88kU0bti0CmTj1xWPddApK6Te1a8ZBrk7zZeNFVjx85Zz3PtBDVjicw8SezCLQJujESSmLCdgxK1Olkta9g8HhMtYGqoG8f47WbnuEv7xWWGvpfeI3u1nixpBLkEWoKUvRU9S5NtB9XryHTvwlWevenWaZY9NvWq117GgJ5h/V7nGQ9ARmmG0l2OkqjKbfOc3el6J9pDY14w7/QYZ5Dm6USRy26Bt6jFuVNf+7RCpJtVTUKpiItbwQLjD/0475bzhaplbKznm26yAGdF6wfT3Nxfn0ac= +api: eJztWd1v2zYQ/1cI7mUfspRu3YvRFnCSdsv6Zbju9lAbw1k822wkUiFPTjND//twlGTLsbsmwTAUmPMUkHe63336eLeWBAsv+x/kCBfak7uR00gW4CBHQsc3a2kgR9mXhbMfMaULJSOpDR8ALWUkFfrU6YK05cPS6KsShVZoSM81OmHngpYoGnZx9nooI+nwqtQOleyTKzGSPl1iDrK/lnRTsDRPTpuFrKpoA0A/ULJrVXuYWCh0b4XOs5RG/lWJ4XO7AMZB1lWJnlCJwfBCbNk+J4i/MYcyI9mXj2RVTWuM6OnUqhum35VRgPf+2jolyIqyUEAoI5laQ2iIyaEoMp0CkycfPfOs94XbGbtCRuzTAh1p9HybI4ECugNlbZpDynTBvoEct07wtnQpyiqSma0BflnOCrLyDoJ+Z7Kuu60R2ojrpU6XO9LFtc4yMUMRIKCKJ25iBivQGcyyltULIFE49GiozwQ9cTE+/aV3im4BuZ2YiXlhncitQ6HN3Lo8aBOJdInpZZD3BMTS4fzpRCbKpj5pLZt80+reA6N6fNRL0RC6iRQEboH0dCL/nGVgLifymbJpmaOhwPEkgWcxR6YEpTSfQDbsWGsOmcfbljmzhkAb3wUqYGZLCjhHta3sXMDWQ5EkTRmb+1UD9pws+62uFRtngHPAWaAJc38gh25jeaU9BSfBwou5dbtxEUlTZsENdXLeU9HXjYX34m2rTUsStPnS11umgStnEJ/lxTt0K51i3FgU3dDZlVbo4nOyPh418vi/uty8D9k5hDpfW6GEn+iYmMfEPCbmV5aY3R/O7384ZugxQ48Z+jVlKIt16AtrfB3gP56c7PfHb1+y8R4fujoFJUZ1b73bMoef5CIDfa+Mr2/30+uWKzbmuAOlJ6CyGw7aEC7QyUjWEVgf/fTjIWaFBDq7kxxtPIFJ7wLqs75eV53o0Kmz3s4pHvjiDdKZdRi/XqXx0NlZhvl5gOb3yux9i+zR5A8y+YNazqOtH2DrKtSex/u1540l8cKWRh0rz7Hy/H9Mfqw8/2Xl+flQ13PBHbKBTHAThk48d8664JzB8OL87Vk7Cd3lqhswMVC5NqLtw8RoO0jNkZZW8UCyDB7kgWxfJs2Q1yfrzbS44sPQ7fmk6QjbNjBpJrMafbLWqkr44UBBaCuTR6cBeD2KLl0m+3JJVPh+kkChY+BPppktVZzaXPIA1WNaOk03geMUwaGT/Q/T7tU7jsU63FqCbW9e6Je4P929MB4did/+GAuyl8hD3WZAPChpaZ3+q36YNSPiJYLC2tCcAKPtUPf5J8iLOnC7r8bmY5t46b70mrdc53nQju2bk2kVom9ugx67/Xdr7XhQ6D2tDtCIX8fjIY+v+bV2bq9NZkHdfprZAg0UOklbzl7r5ZjVPfgkE28LNDwWn+sM+UkmI9lOyPvyUXwSn7BqhfWUg+nY5IvRuKPTxpGdX9cqqkNn3UTqh3ab4WUk+93NxiZYZXTbOGF/0AYs84WFxIGYnUZyaT2xmPV6Bh7fu6yq+LheHHBcKu25GqjDb7L1tkv4x7XCQU0v8WZvbdFGUEiQFThdl6J7Afl21GxPvhN33PIchNemmbnp4mphb33BK5h/F1xnEfQAZFrJalpFbWaz7eqLsxpEb8zsW8a9foMVqjkGaYoFdWi7OKad6jp8P5aRnDWroNwqJnZwzXEH1zU6G6wRalk4W8sMzKKEBdPWgvnvbxfn0ac= sidebar_class_name: "put api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/update-backup.ParamsDetails.json b/docs/documents/container/update-backup.ParamsDetails.json new file mode 100644 index 0000000..d522bf3 --- /dev/null +++ b/docs/documents/container/update-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"kaasId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/update-backup.RequestSchema.json b/docs/documents/container/update-backup.RequestSchema.json new file mode 100644 index 0000000..5d8d47c --- /dev/null +++ b/docs/documents/container/update-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.BackupUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/update-backup.StatusCodes.json b/docs/documents/container/update-backup.StatusCodes.json new file mode 100644 index 0000000..ecd605d --- /dev/null +++ b/docs/documents/container/update-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/update-backup.api.mdx b/docs/documents/container/update-backup.api.mdx index e206f45..1ce7455 100644 --- a/docs/documents/container/update-backup.api.mdx +++ b/docs/documents/container/update-backup.api.mdx @@ -5,7 +5,7 @@ description: "Update backup" sidebar_label: "Update backup" hide_title: true hide_table_of_contents: true -api: eJztWUtz2zYQ/isY9JK2EumkyUWTZEayk1ZNYmscuT1Yns6KhCREJMEAoBxXo//eXYCUqIcT25P4UvpgywD2/WG1i11yC1PDO5e8B9G8yPlVi+egIRVWaFpf8gz/4R2ea/VJRLYf8xaXGS2AneFnLT4XUouYd6wuRIubaCZS4J0ltzc5ERqrZTblq1VrzWsOYL4LI/k9mEAu2wu0Vqqs4va5EPoG/4mFibTMLW11+HAmGAkQxoqYdQd9tiG7TRDxmECRWFx6imKvvI7IoqfiGzofqcyKzNJHyPNERkDiwk+GZC73GasxxQEZY0Ryoa0UhnYxYhCDvcNJb/YhRevGnuIppibMOqONKnQk+KrFE+UV/LacBSTFHQT9Rcc2kqa4ymTGrmcymm1JZ9cySdhYMKeCiIORHmXdBcgExklFahhYliMJurRDB9qsP+z93u4JPYVUjbJR9lZpliotUMpE6dRZ02Lo5mju5L0ENtNi8mrEw1hFJqw8G/5U2d6GLG7TUjtCMUKPOLOgp8IizT/jBLL5iL9G2iLFbUfxMoTXAaGOQxxLWoFkUPPWBBIjdj1zjMgAiSbVFGUwVoV1ep57X6HnYBOhFrfSJuTu96WyJ1ZR3Pw9XwcDtAZCuLQiNQfux64u76WxLkjIhqE227ho8axIXBj8xbunoR9KD+/hbWNNdaS0ZhtpX8fhGGGDNg2Elio+hMd76l6p1NXFGILjNP8o9EJGIijjJTQSLWQsdIDamuC8tMYEPsde5GiI2DB2Jj2O0EqUFV9sk2GaDNNkmCbD/JgMUy9lfvm1STVNqmlSTZNqfkCqIWHo4hxvi/fQs6Mj+rMdlLN35Ojnh7Z6ECP6XEuG7qt1Y65IyhOQ90pdfvebcVk74Q4nDV67oo4NiTpOhcaz/ir5pd+eHSKOEWsyuZMcvJ0WsuguSt0a4eWqBnMZaWXUxAZdk58Ke4x5KviwiAIkQFbpiVPN7H1f3PfbonH5g1z+oCag8fUDfL1yuef5fu45VZa9VUUWN5mnyTz/H5c3mecxM8+LQ1VPn0p9FMGo9BKavdFaaRec7qB/cnZcPaBvU/nCi439rKBFfdqMylCeFy5g9Ajf4WE5KzDhcj01WNGiK+lMWJZ9Va0X0jggXPqhwCr0zHFBxit6WHf6+VFEodHffGZtbjphCLkMgFhFiSriIFIpp+d1I6JCS3vjKHoCNMazc3lV3/pIkPOoqg5seolcvhP7b/99LC+1ZX/+PWRWzQU9+Zfjg26BPtDyX99IlgOEmQA01fmTcH6+efJ/8wXS3OOz3uWWzNawqHemZe9Za2eqoU25crXXROy0CbWxB6f+y9m7XYRX0Qi6udyz/sAZ9sdwOKAhCHWhJ+o6SxQW0jstJ6qUoUPDqKJsVygIyC0HW012hkQ0XJnIRFCridpUc5YOfxocBUeuaVLGppDVfLcLzi0T1vGtfbciF4eoZQncy2rIZZC6Ux94rbGLn3d8gSuEXKJYj7VKCNOajGmkNkNlif9yOQYjLnSyWtGyHzMRTmNpKAnEh3vK2pDoq0OogybOEc27Q64KUe7CLEBLn4HupciT83LW9jO7TXR1pbKbusxKpY2DaRj3iILLOD2yVETCii5qmRrI2X7j2MtoD4l8Q7hXl5C+nqIbRSK3tbN1Pa5qaXlwMSQ4lpPGVMV0WMM1TUrxt9NOOWNd1nBrS44XcVrAlM56wfTzH4VimP4= +api: eJztWd1v2zYQ/1eI28s+ZCntuhejLeAk7Za1TY3U3R7iYDiLZ5uNRKok5TQz9L8PJ0q2HLttErR5mfPigOR9H093/C3B48xB/xwOMb0sC7iIoECLOXmyvL4EjTlBHwprPlDqTyREoDQvoJ9DBJY+lsqShL63JUXg0jnlCP0l+OuCCZ23Ss+gqqIVr0tE900YqW/BBAvVW5B1yuiW28eS7DVEIMmlVhWet/owmpNgAeQ8STEYnog12ecEMY8plpmHPjyCqroIOpLzh0Ze8/nUaE/a879YFJlKkcUlHxzLXG4zNhOOA0QckYKsV+R4NyePEv0tTgazdynaNfYUcxJmKnxttDOlTQmqCDITFPy6nAVm5S0E/cXH1pJmymihtLiaq3S+IV1cqSwTExK1CiTjsR3rwQJVhpOsJXUCvSgsOdK+zwd64mR0+HvvkOwMczPWY/3SWJEbS0LpqbF5bU0k0jmll7W8pyjmlqbPxpBIk7qk9WzyQ2t7D7Xs8VIvJe3JjkF4tDPyz8bwzyRDfTmG59KkZU7a1xRPE3wec9YBSql4BbNhx1tTzBzd9MyR0R6Vdl1FBU5M6Ws9z4KvzFTgOkIReOUzdvfrRtljbzhu4Z6vgoHWIme48pS7Hffjpi6vlfN1kHDmxNTYzbyIQJdZHYZw8e5o6JvGw1v5tramPdJYs5lpX87DicoypWdDssrIXfl4R91blQa2nGB8lBfvyC5USnETL7JDaxZKko2PvXHxWWONi0ONfV9I9LRmXJv0MEJbUZ4++X2F2VeYfYXZV5jvU2G6rczPv+xLzb7U7EvNvtR8h1LDwiy5wmgXPPT44IB/NoPy9hU7+smurUOU4iyMZBB1p7G6SSoyVHcqXWH3q3FZOeEWJ51HX3ZzQ2lPM7IQQbhKYenXx7uIJXlU2a3kKO086vQ2Sn02wsuqk+YqtcaZqY8Hrjglf2QsxW8WaTy0ZpJRflyr5ra+F3f9Wuxdfi+X32sI2Pv6Hr6u6trzZLv2nBovXppSy33l2Vee/4/L95XnISvPb7u6nhNu9TVmglsvsuKFtcbWwRkMT47fHrUP6JtUofESk4AVRDynzbkNhaKsA8aP8H1IGqzAJcsValDxYt3SuaRp+9peL2E4IFkGUKBKAnOXLJWs+GG91i9AEaXNoA9z7wvXTxIsVIzMKs1MKePU5MDP647S0ip/XVMcElqy0D+/6G6945QLWdUeWM8ShXpF22//J9qR9eLPv0fCm0viJ/8GPhiUfm6s+jcMkg2AMCeUFPzJeX62fvJ/8QnzIuRnd8ptmK3SojuZNrNnZ5xpQZtm5WJriLgxJnRgD+D5q7Z3swlvoxEPCrVl/Y4z4o/RaMggCE+hx+ZKZwblzZHTFKSxUEnaUvbaLIjZLTtHTfG2IM3gylRlxKMmRNDiLH14FB/EB/XQZJzPUXd8dzM5N0xYxbfzba2ikFHLJnHPW5DLQQT9LuC1yl2IbvoCohrOYooVrNWkMK8pyZDa3DjP/JfLCTp6b7Oq4uUAM3GeSuW4CMjdM2UHJPoiCLXTxEu63gK52oyqL8wCrQoV6E6K/HjWYG0/ic+Jbq+Uvu7KbFVaO5jBuAcU3MTpgaUqCRVf1KY0sLPDxlGQ0Rsx+Zpwqy9hfQPFIE2p8J2zXT0uOmV5+H7E6dggjbmRfNjiFSOleBW0M7WxddWo15aQoZ6VOOOzQTD//QeFYpj+ sidebar_class_name: "put api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/update-kaa-s.ParamsDetails.json b/docs/documents/container/update-kaa-s.ParamsDetails.json new file mode 100644 index 0000000..b4a4baf --- /dev/null +++ b/docs/documents/container/update-kaa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the cluster kubernetes","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/update-kaa-s.RequestSchema.json b/docs/documents/container/update-kaa-s.RequestSchema.json new file mode 100644 index 0000000..95022fa --- /dev/null +++ b/docs/documents/container/update-kaa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the cluster kubernetes to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version.\r\nIn updating an existing cluster, the upgrade of the version will be handled as soon as the request will be sent \r\nonly if the UpgradeDate is not evaluated"},"upgradeDate":{"type":"string","description":"You can choose to upgrade the kubernetes version of an existing cluster in a scheduled date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesUpdateVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpdateNodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version.\r\nIn updating an existing cluster, the upgrade of the version will be handled as soon as the request will be sent \r\nonly if the UpgradeDate is not evaluated"},"upgradeDate":{"type":"string","description":"You can choose to upgrade the kubernetes version of an existing cluster in a scheduled date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesUpdateVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpdateNodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","description":"Value of the version.\r\nIn updating an existing cluster, the upgrade of the version will be handled as soon as the request will be sent \r\nonly if the UpgradeDate is not evaluated"},"upgradeDate":{"type":"string","description":"You can choose to upgrade the kubernetes version of an existing cluster in a scheduled date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.KubernetesUpdateVersionDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Nodepool name"},"nodes":{"type":"integer","description":"Number of nodes","format":"int32"},"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values."},"dataCenter":{"type":"string","description":"Datacenter in which the nodes of the pool will be located. See metadata section of the API documentation for an updated list of admissable values.\n\nFor more information, check the documentation."},"minCount":{"type":"integer","description":"Min number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"maxCount":{"type":"integer","description":"Max number of nodes for the node pool when autoscaling is enabled","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicate if autoscaling is enabled for the node pool"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpdateNodePoolsDto"},"description":"list of the nodepools of the kaas"},"ha":{"type":"boolean","description":"If true, the the cluster will be replicated across 3 zones within the region selected.\r\nPlease note that the Control Panel in HA cannot be disabled once the cluster has been created.","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","description":"Storage limit for this Kubernetes cluster.\r\nThe sum of the size of all the volumes used by the cluster must be less than this value, if specified.\r\nDefault value is null and no limitation will be applied.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/update-kaa-s.StatusCodes.json b/docs/documents/container/update-kaa-s.StatusCodes.json new file mode 100644 index 0000000..ecd605d --- /dev/null +++ b/docs/documents/container/update-kaa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/update-kaa-s.api.mdx b/docs/documents/container/update-kaa-s.api.mdx index 6cd4a99..08f748e 100644 --- a/docs/documents/container/update-kaa-s.api.mdx +++ b/docs/documents/container/update-kaa-s.api.mdx @@ -5,7 +5,7 @@ description: "Update KaaS" sidebar_label: "Update KaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/update-kaas-nodepool.ParamsDetails.json b/docs/documents/container/update-kaas-nodepool.ParamsDetails.json new file mode 100644 index 0000000..1a87e8a --- /dev/null +++ b/docs/documents/container/update-kaas-nodepool.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Id progetto CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"Id KaaS","required":true,"schema":{"type":"string"}},{"name":"nodePoolName","in":"path","description":"Nome nodepool da aggiornare","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/update-kaas-nodepool.RequestSchema.json b/docs/documents/container/update-kaas-nodepool.RequestSchema.json new file mode 100644 index 0000000..11f9fe2 --- /dev/null +++ b/docs/documents/container/update-kaas-nodepool.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"Payload di aggiornamento parziale","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values.","nullable":true},"nodes":{"type":"integer","description":"Desired number of nodes","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicates if autoscaling is enabled for the node pool.","nullable":true},"minNode":{"type":"integer","description":"Minimum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true},"maxNode":{"type":"integer","description":"Maximum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolPropertiesDto"}},"additionalProperties":false,"description":"DTO used to update a Node Pool resource. Contains optional metadata and properties sections.","title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values.","nullable":true},"nodes":{"type":"integer","description":"Desired number of nodes","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicates if autoscaling is enabled for the node pool.","nullable":true},"minNode":{"type":"integer","description":"Minimum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true},"maxNode":{"type":"integer","description":"Maximum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolPropertiesDto"}},"additionalProperties":false,"description":"DTO used to update a Node Pool resource. Contains optional metadata and properties sections.","title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"instance":{"type":"string","description":"Configuration name of the nodes. See metadata section of the API documentation for an updated list of admissable values.","nullable":true},"nodes":{"type":"integer","description":"Desired number of nodes","format":"int32","nullable":true},"autoscaling":{"type":"boolean","description":"Indicates if autoscaling is enabled for the node pool.","nullable":true},"minNode":{"type":"integer","description":"Minimum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true},"maxNode":{"type":"integer","description":"Maximum number of nodes for the node pool when autoscaling is enabled.","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolPropertiesDto"}},"additionalProperties":false,"description":"DTO used to update a Node Pool resource. Contains optional metadata and properties sections.","title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/update-kaas-nodepool.StatusCodes.json b/docs/documents/container/update-kaas-nodepool.StatusCodes.json new file mode 100644 index 0000000..7c6a439 --- /dev/null +++ b/docs/documents/container/update-kaas-nodepool.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.TypologyResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.PreviousStatusResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusErrorResponseDto"},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.LinkedResourceResponseDto"},"nullable":true},"preset":{"type":"boolean"},"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceResponseDto"},"kubernetesVersion":{"type":"object","properties":{"value":{"type":"string","nullable":true},"endOfSupportDate":{"type":"string","format":"date-time","nullable":true},"sellStartDate":{"type":"string","format":"date-time","nullable":true},"sellEndDate":{"type":"string","format":"date-time","nullable":true},"recommended":{"type":"boolean"},"upgradeTo":{"type":"object","properties":{"value":{"type":"string","nullable":true},"scheduledAt":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.UpgradeToResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KubernetesVersionKaasResponseDto"},"nodePools":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"nodes":{"type":"integer","format":"int32","nullable":true},"autoscaling":{"type":"boolean"},"creationDate":{"type":"string","format":"date-time","nullable":true},"instance":{"type":"object","properties":{"ram":{"type":"string","nullable":true},"price":{"type":"number","format":"double","nullable":true},"cpu":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"diskSizeGb":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.InstanceResponseDto"},"dataCenter":{"description":"For more information, check the documentation.","type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.DataCenterResponseDto"},"minCount":{"type":"integer","format":"int32","nullable":true},"maxCount":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodePoolsResponseDto"},"nullable":true},"podcidr":{"type":"object","properties":{"address":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PodCidrResponseDto"},"nodecidr":{"type":"object","properties":{"address":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.NodeCidrResponseDto"},"securityGroup":{"type":"object","properties":{"name":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.AutomaticKaasSecurityGroupResponseDto"},"ha":{"type":"boolean","nullable":true},"storage":{"type":"object","properties":{"maxCumulativeVolumeSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.StorageResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.Response.BillingPlanResponseDto"},"managementIp":{"type":"string","nullable":true},"openstackProject":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"description":"OpenstackProject","title":"Aruba.CmpService.ContainerProvider.Models.OpenstackProject"},"identity":{"type":"object","properties":{"clientId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasIdentityResponseDto"},"apiServerAccessProfile":{"type":"object","properties":{"authorizedIpRanges":{"type":"array","items":{"type":"string"},"nullable":true},"enablePrivateCluster":{"type":"boolean"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.ApiServerAccessProfileResponseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasPropertiesResponseDto"},"data":{"type":"object","properties":{"private":{"type":"object","properties":{"phase":{"type":"object","properties":{"name":{"type":"string","nullable":true},"startDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.PhaseDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataPrivateDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasInternalDataDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.KaasResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/update-kaas-nodepool.api.mdx b/docs/documents/container/update-kaas-nodepool.api.mdx index 99ef25a..5cf4ddc 100644 --- a/docs/documents/container/update-kaas-nodepool.api.mdx +++ b/docs/documents/container/update-kaas-nodepool.api.mdx @@ -5,7 +5,7 @@ description: "Update kaas nodepool" sidebar_label: "Update kaas nodepool" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/container/update-registry.ParamsDetails.json b/docs/documents/container/update-registry.ParamsDetails.json new file mode 100644 index 0000000..62957c4 --- /dev/null +++ b/docs/documents/container/update-registry.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the registry","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/container/update-registry.RequestSchema.json b/docs/documents/container/update-registry.RequestSchema.json new file mode 100644 index 0000000..07880e5 --- /dev/null +++ b/docs/documents/container/update-registry.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"registry to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Aruba.CmpService.ResourceProvider.Common.Dtos.FullPayload.BillingPlanDto"},"publicIp":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.Data.GenericResourceDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdatePropertiesDto"}},"additionalProperties":false,"title":"Aruba.CmpService.ContainerProvider.Dtos.Resources.RegistryUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/container/update-registry.StatusCodes.json b/docs/documents/container/update-registry.StatusCodes.json new file mode 100644 index 0000000..ecd605d --- /dev/null +++ b/docs/documents/container/update-registry.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"Microsoft.AspNetCore.Mvc.ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/container/update-registry.api.mdx b/docs/documents/container/update-registry.api.mdx index 24db941..11e8362 100644 --- a/docs/documents/container/update-registry.api.mdx +++ b/docs/documents/container/update-registry.api.mdx @@ -5,7 +5,7 @@ description: "Update Registry" sidebar_label: "Update Registry" hide_title: true hide_table_of_contents: true -api: eJztWktz2zYQ/isY9NKHRDppetGkmZHkOFUT2xpFbg+WpwORkISYJBgAlKNy9N+7CxIi9Ugsa9ocUvrgscFd7BMfd7HMqWFzTTu3dMTnQhu1onctmjLFYm64wic5TeAf2qGpkh94YAYhbVGR4AIzC/g75DpQIjVC4mKWiI8ZJyLkiREzwRWRM2IWnJTspH85BCbFP2ZC8ZB2jMp4i+pgwWNGOzk1qxSlgS4imdP1urVRQJwoWTnTThPLUtFegi9QSikf5NjtthUYW1nwTBseku5wQCq2zwnCPWYsiwwsPQOxd4WOsEVPhiuk35bhbCFGkiwNmeGwRSATA0YjNUvTSAQMqf0PGlnyfdlyipEARohJypURXONTCDmDHY+gLDxzyJa6rldAVcVAy0wFnK5bNJKFgo/LWbIoO0LQH0hWj7ZMiEjIw0IEiy3p5EFEEZlyYlXgoTdRk6S7ZCJi08ixasIMZCvX4NIOErTJYNx70+5xNWexnCST5EIqEksFyZbMpIqtNS0Cbg7urbyXjCwUn/06oX4oA+07z/rfOdvbLAnbuNQOQAxXE0oMU3NugOevacSS+wl9BbxZDI8tx0ufvfIwMSkLQ4ErLBrWvDVjkea7nulDZjABJtUUJWwqM2P1HBW+As+xKkItaoSJ0N3vSmXPjcS4FVCxCQZTiuEhEIbH+sAR2tXlHSSuDRJsQ0Cb7bxo0SSLbBiKs/lEQy9LD+/lW2WNIymt2c60L+fhFNIGbBpCXI4n5krI8FDyPtFQp39XZVPm9eP0PVdLEXBvVNoIPEtAPeX1ZRzLxAMDtXcBQoZsFUkWer1KfWd8NgWYGKSPW5Mp8fgBvFFi/6CfbFeZtFxtDLMWOXO1dw5R9N5woBCBW7WG/Xci3evxxmJutfVXFeuEGf7JNOjeoHuD7g26N+j+raF7vYT/8acG5huYb2C+gfkG5r8pmEdx4OUUkKoI0fOzs/3bnuu3GOcXhx71WAgn394Ubd8A2eYgjZh40mujePpomm/ccASlBsjL6udSgI5zroC2gLFi6efnh5hDOOciOkoOIKNhSXCMUp+Ncb6uQYwIlNRyZryuTq+46cM7wrtcBh4wwFbxuVVN772rn/qmblx+kstPan4bX5/g67XFnhf72HMlDbmQWRI2yNMgz//H5Q3yfE3k+eVQ1TPANgtEECy+uCKvlZLKBqc7HJxf991cb6eytYUXGVVzQOjlFljXQw1tQ4bzxA71yxml9vPNsHONi7as035Z+rl6zy+HcWCon4twjWM+q1YxNs0UuJkujEl1x/dZKjyG/EEks9ALZExx2Kd5AMW5WVmOHmcKwti5vas/eo+ZViSTI6jat1S85fuTyAFUlcqQ3/8cEyPvOQ4gy2FmNwPDlfi76N3LceaCM7DPuhHTe1QNIF9/YnFapGX9YqHcbJMN9cuAst2vdZBuxFyu3O31bTud2U7vVdup3vHYnqaa19p8nUnrm+1K3YXL66Ziz1MHaMhv4/EQx7d4SXAuHxJsv3ZvBED9BJzvB46z7dLEQxcevAkg18CEY+GZiDjeBIA2bkLcoc+8M+/MGim1iQtPlH7ez98tIzbZUHsBwz42//Iyt2/d+F4Dd6c+yt+kN/y94w07MHcpjnwixM8DFqAg7pjnU6b5jYrWa1wuhuKYx6HQiA3h4TY/r2qGL47MDxp1D9m+O5J3GWcP1JIpUQDTkxT5flR+GfADOfILhoPquWOZrOp6ObUrt+PnBf+ucrWPHE7QDAK7xnNZIgH6rnjQL5Roj5G9YtyrPtCggqMbBDw1Ndq6Hnc16B3ejIFqWn7mEMsQiRV7wKyD31Y7ab1hQcKu5RTO0jxjc6QtBOPPP8+lT6E= +api: eJztWluT2jYU/isa9aUXYzZt+sIkmWHZJN3mxhC2fQg7nYN1AGVlySsds6EM/70j2QZzSZZl2jyk5lE+x+eqDx19XnKCqeOdD3yAU+nILvh1xDOwkCKh9U+WXEOKvMMzaz5iQpeCR1xqvwA04xEX6BIrM5LGL+Za3ubIpEBNciLRMjNhNENWqrPemz6PuMXbXFoUvEM2x4i7ZIYp8M6S0yLz1hxZqad8tYrWDsgTLdsqtNPMQiZbc7TOWynt3+YYXrftwDDYus3REQrW7V+yjdrnDPl3TCBXxDv8EV+trgsf0dG5EQsvv22jioWRYXkmgJBHPDGaUJOXhixTMgEv3f7ovMpy37YZ+0rwyJc0Q0sSnX+aIoEAOkKyyMyhWOq+voUUNzVwJrcJ8lXElSkcvN/OHFR+hKE/vFi92kYzqdndTCazLevsTirFxsiCCyjikR3p7hykgrGqVB0DYplFh5o6XqDFLofnL1vnaKeQmpEe6RfGstRYZFJPjE1DNBFLZpjcBHtPgM0sTp6OeFuYxLWrzLa/q2JvgRYtv9RKUBPaEWcEdor0dMT/GivQNyP+TJgkT1FT0HjShmexb0wOQki/Aqpfy9YElMPdzPSMJpDa1R1lMDY5BT8HRa7MhMGmQhEnScqn+3Xp7AUZX7cCKtbFAGvBbwJJmLoDW2jXl9fSUSgSTB2bGLvdFxHXuQplKPbmAwN9U2Z4r9820VQiZTTbnfblPhxLpaSe9hUc0bSVMFppxKHmfWCglf9dm48h7qXZe7RzmWA8KGPsWzOXAm3cM2lqdHxBxsUvcqX6sFAGRHy+cb8KPh8rmVxm90eTW3n/Bryycn+jnxxX2bRo14GFiKpwXXwBBPFL1GhlUq2GwP47k9Xf41XA3M2rv6rZyhjhJ2rQvUH3Bt0bdG/Q/VtD9/oR/sefGphvYL6B+QbmG5j/pmDem7PoMqNdUaKfz872b3vevfJ1fnzo0TkINihuirZvgMJwkCmQD/rbKJ7e2+brNBwh6Qgor+9LqQmnaHnECxgrln75+ZCyQAKpjrIjtSPQyTFOfbbGy1UNYmRijTMTirsue4vUMxbjN/Mk7lszVpheBNfc3n/1Q/+pm5SflPKTht8m1yfkehWw5/E+9rw1xF6YXIsGeRrk+f+kvEGer4k8vx469Vz6MUuDYv7whZY9t9bYUJxu//LiXa/i9XZOtuHgxQYbHjBFmvlzPc/yUDLPJ3Z4u+QoXXu5JjtXfjEc61y7PPpV5712ScZJdO2lFCtP8wW3Cto0t4p3+Iwoc512GzIZg9dPlMlFnJiUe7LPYZJbSYugcY5g0fLOh+v6o/e+04pmqgQ241smX+E+E3mpHVpiv/85ZGRu0BOQJZnZzWlmrPy7mN1LOnOGILBIo2/vwYaAfP4J0qxoy/rFQvmydTfULwPKcb82QVYUc7lyvTe37UxmO7NX7U31iSfMNBu+NvTrxITcbJ/Uq3LF3UzuZeqADPttOOx7+tZfElyYO+3Hr90bAZOhhky2k0qzVbVJ7FN48CaAvctQe1p4IhX6mwAe8Yoh7vBH8Vl8FoI0jtIiE2We9/t3K4h1N9T+gFdR0X/Lsrc/VPS94xHv1Kn8dXvzaDcbgTCvWtzrSeE/D5gZR/6Ny+UYHF5ZtVr55YIU930spPPYIA6P+cvNmeGLlPnBoG5wsUfJVx0XNtQcrCyA6UGOfD8ovwz4gR35BcNB96ptqRd1vyq3N2n3nxf8u87VPnI4wTMp+MrvyxIJfO6KB73CidbQq28U904fPqBCo5skmFFNtu7HdQ16+1dDHvFx+ZlDaoQXtnDnuw7uCu9MyEYAibC25Ar0NIeply0M+98/z6VPoQ== sidebar_class_name: "put api-method" info_path: docs/documents/container/aruba-container-api custom_edit_url: null diff --git a/docs/documents/database/create-d-baa-s.ParamsDetails.json b/docs/documents/database/create-d-baa-s.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/database/create-d-baa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/create-d-baa-s.RequestSchema.json b/docs/documents/database/create-d-baa-s.RequestSchema.json new file mode 100644 index 0000000..2db9ad8 --- /dev/null +++ b/docs/documents/database/create-d-baa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the dbaas to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/create-d-baa-s.StatusCodes.json b/docs/documents/database/create-d-baa-s.StatusCodes.json new file mode 100644 index 0000000..d0d909a --- /dev/null +++ b/docs/documents/database/create-d-baa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/create-d-baa-s.api.mdx b/docs/documents/database/create-d-baa-s.api.mdx index 21469fe..2b9ec73 100644 --- a/docs/documents/database/create-d-baa-s.api.mdx +++ b/docs/documents/database/create-d-baa-s.api.mdx @@ -5,7 +5,7 @@ description: "Create DBaaS" sidebar_label: "Create DBaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/create-database-backup.ParamsDetails.json b/docs/documents/database/create-database-backup.ParamsDetails.json new file mode 100644 index 0000000..2a7617f --- /dev/null +++ b/docs/documents/database/create-database-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the project CMP.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/create-database-backup.RequestSchema.json b/docs/documents/database/create-database-backup.RequestSchema.json new file mode 100644 index 0000000..c1fbbb4 --- /dev/null +++ b/docs/documents/database/create-database-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"The dbaasBackup request to validate.","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"dataCenter":{"type":"string","description":"Data center.\n\nFor more information, check the documentation.","nullable":true},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasReferenceRequestPropertiesDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseReferenceRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"}},"additionalProperties":false,"description":"Dto properties request Database Backup.","title":"DatabaseBackupPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Database Backup.","title":"DatabaseBackupRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"dataCenter":{"type":"string","description":"Data center.\n\nFor more information, check the documentation.","nullable":true},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasReferenceRequestPropertiesDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseReferenceRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"}},"additionalProperties":false,"description":"Dto properties request Database Backup.","title":"DatabaseBackupPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Database Backup.","title":"DatabaseBackupRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"dataCenter":{"type":"string","description":"Data center.\n\nFor more information, check the documentation.","nullable":true},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasReferenceRequestPropertiesDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseReferenceRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"}},"additionalProperties":false,"description":"Dto properties request Database Backup.","title":"DatabaseBackupPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Database Backup.","title":"DatabaseBackupRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/create-database-backup.StatusCodes.json b/docs/documents/database/create-database-backup.StatusCodes.json new file mode 100644 index 0000000..194fb24 --- /dev/null +++ b/docs/documents/database/create-database-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/create-database-backup.api.mdx b/docs/documents/database/create-database-backup.api.mdx index e96bcc1..041a89a 100644 --- a/docs/documents/database/create-database-backup.api.mdx +++ b/docs/documents/database/create-database-backup.api.mdx @@ -5,7 +5,7 @@ description: "Create DatabaseBackup" sidebar_label: "Create DatabaseBackup" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/create-database.ParamsDetails.json b/docs/documents/database/create-database.ParamsDetails.json new file mode 100644 index 0000000..2034439 --- /dev/null +++ b/docs/documents/database/create-database.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"unique identifier of the dbaas instance","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/create-database.RequestSchema.json b/docs/documents/database/create-database.RequestSchema.json new file mode 100644 index 0000000..76360d2 --- /dev/null +++ b/docs/documents/database/create-database.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"database to create","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Dto request Dbaas Database.","title":"DbaasDatabaseRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Dto request Dbaas Database.","title":"DbaasDatabaseRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Dto request Dbaas Database.","title":"DbaasDatabaseRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/create-database.StatusCodes.json b/docs/documents/database/create-database.StatusCodes.json new file mode 100644 index 0000000..265424c --- /dev/null +++ b/docs/documents/database/create-database.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/create-database.api.mdx b/docs/documents/database/create-database.api.mdx index 83388d2..a9cba72 100644 --- a/docs/documents/database/create-database.api.mdx +++ b/docs/documents/database/create-database.api.mdx @@ -5,7 +5,7 @@ description: "Create Database" sidebar_label: "Create Database" hide_title: true hide_table_of_contents: true -api: eJztWNtu2zgQ/RWCT3txLKfbvhhtgSROsVlgN0biRR9iYzEWxzYbSVQpKq0h+N93hrpYWTmFN00eGrgPhUNxbmcOKc0ppINlJoc3cgQO5pBhJmc9mYKFGB1aflTIhP6QQ5la8wlDd6FkT+qEF8Ct6LfCLLQ6ddrwYp7ozzkKrTBxeqHRCrMQboWiMhdnf47JyOLnXFtUcuhsjj2ZhSuMQQ4L6dYpR8uc1clSbja9JgE1B8geG94bC51kDpIQH5kBpProjmDhWFUWFM2uO2lMKCIHwMyhEifjC7E1eygQ+1hAHjlaOqawszJHcnFq1Jr334+hqpYJZ0RoERxXFZrEUem8G9I00iHw7uBTxiZFN7aZc1PIkNqTonWaGDCs6+1mmORRBPMIS9AIGglKaQ4B0bjlYQFRhv8FZUSJVhWJkW9Hzbo+uXbasV/pn9QPrsrtZMl9kA6/updSS7s9v/z6IoricBaz1CRZmeWrwXGXt2eeq+o+WX1n0wj0c6BAkTgmhR/xKdlhsDA2BlceKjxyOsYHvaA6XT8B8g+gWYK3iyPPxJAfFpvnvAt+UFDYx+vBoHvkTkGJ6qQ+xbErn+6BYpXzHjvptezylnN6uTpcom1DTUu/vdplrNCBjvaK03wAfEdDim1lktbJIh75DLLvPrQHZL+F7KOO/AHShyEtL4zX3QvjL+PEB5MnT/KWPnTgcF0crosXACmbvdn1fXFBBVnyJK7R0qArzq011veARt/R5Vk9Y+8aBJoZg7KM0a2M4tne+C8VP+IPZVBpB1lQNCLEhhfvaM63WXBi8zn0az+BH/WDopILNoFqtA3qhU+w1DVyS7jKlXNpNgwCmu37wI7CyOSqH5pY8gieYZhb7dbe4hTBUt+GN7P2o2umVsmeekPTAPbeUQfOGS6vSvzxcSJKG5ribzHp1/oA285LZ73qx4eaK2TksWVqX20VgvOvEKclJSu5olYwmBoL47OqWlsidhan3DAdYgPeuAK1f5LqTt57WYnfJ5MxSx7TZJqMzJckMvT1ycW+BbGyuHg3lQERLiHAm9Yc1c3sc1FTKRzYJTra+s88guR2Kt+LS7JhJWWhI3wbwHtKrxZVhvK4P+gPuFJmTgxJC4Uuze5V1bSq9XIjP54cRcXAm1r8YgoN20JYQ0L6fZ+GHIcZyBZb5Uq1dbYVs5ycFwUv/W2jzYaXS0mJ+aZ0xodW7Z7Xi+2r+ZuC0876bnHdEbTuIMp5pyf+HVhd3hj/K5Gfripd7WexpxS4M71qEZJ1O6867W0HWJx72uQ6QuEj8qv7vZnR1hWC8pdGUT09K/M5mrCPrXXnQ4BrKy1OwhBT19rbTmbWujfHl9cTvjAqwTA2indb+MKCJ/3vczQeGX9f+bVC0hFb5rDkvWVk/vcvLW60kA== +api: eJztWF1P4zgU/SvWfdqP0MLs7Es0MxJQRstIu1TQ1TxQtLqNb1sPiR1sp0wV5b+vbpy0YVNGLAMPg+AJ2ffz3GM3PiV4XDiIL2GEHmfoyMFVBDlazMiT5a0SNGYEMeTWfKHEn0qIQGleQL+ECCS5xKrcK8OLhVY3BQklSXs1V2SFmQu/JNG4i+M/xxCBpZtCWZIQe1tQBC5ZUoYQl+DXOWdz3iq9gKqKNgXIGaJ7bPraWSjtPOqEHlkB5mpvRdZxrqaKm4LsulfGZEmCE5DzJMXh+FRs3e5LxDHmWKQeYjiAqroKNZLzR0au2f5uDtmMTHgjEkvouavEaE/aszXmeaoSZOvhF8cuZT+3mfFQIOLp5mS9Ise7od9+hbpIU5ylFECrqghQSsUpMB13IswxdfRfUEbetKCIUT2OlnUDiMArz3Gh3mk3zoP5yBueA3j66l9KL93x/PLri2iK01lyudEuVPlm/6DP2+Oaq/IuWevJ5imq50Ahgvp8KKNHfEp2OMyNzdCHQ0V7XmV0bxSSR+snQP4eNAN4uzjyTAz5YbF5zrvgBwWFY7zd3+8fuSOUojmpT3Hswu4DUGxqfoCl8+iLTnBQ2tOCbBdqpf1vb3Y5S/Ko0gfl2XwAfMdAym1nMLZmllI2qitw331oX5H9FrKPOvKvkN4Pabgw3vYvjL+MFx9NoZ/kV/p1Aq/Xxet18QIgZbffd31fnGpPVmMqLsiuyIoTa42tZ3A4Ph2dHbdv7F0Pgc0bAyLIyC+N5Le9qb9U6id+DMNGO3DDciNCVLy4UpKsGx7aYoaDNs6wfuoPy0YuqIZyo21E4OoCg65R2BRiWHqfu3g4xFwNkAMlqSnkIDEZ8BPcUVJY5de1xxGhJQvx5VV364KpFdjTGmwGwNF76sAJw1WrEp8+T0TwEd5ckx60+gD7zkKwqPnnY8uVT58nNbZM7fOtQnDyFbM8ULKRK1oFg6kxN3VVzWgDYsdZzgNTCW3AGzegDg5z1av7QV7ij8lkzJLHVE/1yNzq1KCsm32HYmlp/n4KQ5OTxlxtRrPXDnPATU1BeLQL8u+n8M8sRX09hQ/iLCfNSspcpfRuiB8gglZUieFgsD/Y506ZORnqDgp9mt3pajOqzo9bFQVylA0DL1vxiykUd4WwDQkhgrs05DzMQPbYKleyq7MtmeXxJZQlL/1t06ri5SApMd+kcnxo5e73ern9af6m4LSzv2ta9wStFaYFW9bEX6FV4cb4X4X8dN7oaj+LB0qBO8trFlGvu3W1ZW8nwOLc0xbXEwofUV877+qqimBJKOtLo2x2j0M9exOOsfXufQhwb8HjMEko9x3bbjFXnXtzfHYx4QujEQwzI9na4i0LnngbajQ1MvV9Va+VkKJeFLhg25CZ//4FLW60kA== sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/create-grant.ParamsDetails.json b/docs/documents/database/create-grant.ParamsDetails.json new file mode 100644 index 0000000..59f185d --- /dev/null +++ b/docs/documents/database/create-grant.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the project CMP.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance to create the database user in.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The name of the database to assign the grants to.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/create-grant.RequestSchema.json b/docs/documents/database/create-grant.RequestSchema.json new file mode 100644 index 0000000..adae3e1 --- /dev/null +++ b/docs/documents/database/create-grant.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"The creation parameters.","content":{"application/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","description":"The user's username."}},"additionalProperties":false,"title":"UserRequestDto"},"role":{"type":"object","properties":{"name":{"type":"string","description":"The role's name-"}},"additionalProperties":false,"title":"RoleCreationRequestDto"}},"additionalProperties":false,"description":"Parameters required to assign a user to a database.","title":"DatabaseUserGrantCreationRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","description":"The user's username."}},"additionalProperties":false,"title":"UserRequestDto"},"role":{"type":"object","properties":{"name":{"type":"string","description":"The role's name-"}},"additionalProperties":false,"title":"RoleCreationRequestDto"}},"additionalProperties":false,"description":"Parameters required to assign a user to a database.","title":"DatabaseUserGrantCreationRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","description":"The user's username."}},"additionalProperties":false,"title":"UserRequestDto"},"role":{"type":"object","properties":{"name":{"type":"string","description":"The role's name-"}},"additionalProperties":false,"title":"RoleCreationRequestDto"}},"additionalProperties":false,"description":"Parameters required to assign a user to a database.","title":"DatabaseUserGrantCreationRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/create-grant.StatusCodes.json b/docs/documents/database/create-grant.StatusCodes.json new file mode 100644 index 0000000..7c599f5 --- /dev/null +++ b/docs/documents/database/create-grant.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/create-grant.api.mdx b/docs/documents/database/create-grant.api.mdx index a4e23ca..85e4e4d 100644 --- a/docs/documents/database/create-grant.api.mdx +++ b/docs/documents/database/create-grant.api.mdx @@ -5,7 +5,7 @@ description: "Create Grant" sidebar_label: "Create Grant" hide_title: true hide_table_of_contents: true -api: eJztWd9v2zYQ/lcIvqzbEivpuhejK5DE6ZYBbYzERR+SYDiLtM1GJlWSSmsI/t93R/2wEjuJowYdsCoPgX3m3X28+3Q88XLuYep4/4L/aUF7x692eAoW5tJLS/Kca/zC+zy15pOM/YngO1xpEoCf4WchXWxV6pUh4QetPmeSKSG1VxMlLTMT5meSlers6N2wh1pWfs6UlYL3vc3kDnfxTM6B93PuFym5c94qPeXL5U6NQIwB3CP+B4cA50xp50HHknnDYivBy4BBgIcxOMkyh8CUbg2ktPOevj6EZoROSacKQg0AcYFzaqqDeBpCj8K2gCBVuzeYL/Ja4sEs2MVGQORAOi8FOxiesJXafY7IxgSyxKNoH91eFRjRxKERC1q/7iMEHb+yFZdob7HRHolBOpCmiYrDouiTI8V8HYEZE2dQEdmTSuuVdPQrpW+7VUV8Nu3oLmJa/ZNjlVKP4stBCEVrIBk2TE8gcZgYr3xCRj+gylkRkIE3HNWsSeTj+LbHRvYQGynsbo/rDLWOyjw08T2mf9v/sE4gq5jZYC8UjxIJanJToisMg1JGMQoF5h5AXn71HQ1+eBo0i8Ivv3Z8+LH5QJCsdKnRrgjNy7399eMmqEpx+3QJ9SRNQH1nAuksSWBMe6TD+0lcKUlShas9UVpiqHLyLGRtiYG4WfqvOgiEtdHDxNg5+KIZk7tehU7sjtvSihSHi+cMFLWhaww+K4m6qZR9/0LW8bDj4X/aWXUE7AhYneGv9vbWj+1DEKw87Z/j6C5+fXRrNfgtVjoPPmsYx/dqL6f4YDRijqLfXm5SFtKDSrbyU11WfEtm8tXOOMpRYz4ICNw3H0ZdZB+KbKvy2oX0/pAWBePVesF4bzx7azL9LJ1+l4GuXHTl4n8QUlL7fVN/cYIbwu40YefS3kjLjq01NuTgYHgyOD2qrtc3XSaw0MggxLn0MyNQnprQpoRL/j6PymGGi/J6KrIk4Y0S0rrowGZj6FWdURTmFlFeji+WUdXZkqwxSVhGxRyAruID5mL8klkMNZ95n7p+FEGqekDm48RkohebOacLeSfjzCq/CBqHEiz17xdXzZ/OiW0FoaoFdU7I+toV0zFFMMwn/v44YoUO8+ZahrlJIC/pjgtjO+WHtxV9UCmEm9h+tpoXHH+FeVqwtHrLWL1H1LONVdt954fAqYkJ2EtOFNE+mqeUaRXLOvDDMiG9g1St7W4rLfbXaDSkMcmlvtQD80UnBttWCslrYDMrJ39c8giZqjEtdVp3KyL0aOuXnHmwU+lx6T/jBPT1JX/DTlGHpi8TlcjXEbxBeNUgps/3e3u9PYoBsW4OuhGGO/y8taU6m40jEY0E/uQldS+qMR6xrN8c6dXsxc+3+Ut+iLqksRrB1SQO4tsDsWk9SpzRc4Ne8zy8I9hkuSRxMZwirgrlqAaIzdeM+eqkf3B0tXHj1xJd3BmN3UCS0crw0NyAVUUBehKQF2flhefPbNtp50Z8pRD0ogmswr3KDc35WqF78iy0BcyKEK1BthmRtsHZZOjyCtfPJIhQJfNyyVEBb3dEhlYm1poh2mqhcRDHMvWNtU1EV43jY3h6PqIKWc5L50bQagtfUEj/A1ATAhUKdJDlHKvFNIMprS0809+/X8cYVg== +api: eJztWd9PGzkQ/leseWnvbslCr/cStZWA0DsqtUSQqg8EVZPdSeKysRfbC41W+7+fxvsjCwkQUtSTruEpeD2ezzPfjmf95eBwYqF7Dn8bVM7CRQApGpyRI8PjOSicEXQhNfobRe44hgCk4gF0UwggJhsZmTqpefCzklcZCRmTcnIsyQg9Fm5KojIXhx/7HQjA0FUmDcXQdSajAGw0pRlCNwc3T9mddUaqCRRF0CCIR4j2Ef+9A8QzIZV1qCISTovIEDryGGJ0OEJLIrNkhFQbA6nW+cT/PoRmMCXBNnUQGgBOC7RWTpQfnvjQC6c3BYSp3LkmY9lrhecqIzNfCYgdkHUUi/3+sViY3eeI1xhjljjowh4UxUWJkaw70PGc5y/78EGXWokFl3hvkVaOlGMbTNNERn5S+M2yYb6MQI+YMxAw+VIyTpLlp5y+9WaV8Vm1o7uIefYLK2qjDscXMI4lz8Gk31p6jImlAJx0CS/62ZI5LQPScxqKAIxO6HF862Pj9V5Yz6Sd9XGd6oQOqzy08T1mf9t/v0mgqJnZYi+WrxIPNOTmRNcYetUYx8gXmHsAOfrutjT45WnQLgq//7Hlw6/NB4ZkyKZa2TI0r3b3lo8bb0rx7dPF15M0QfmTCaSyJMER75EP7ydxpSJJHa7NibIhhjonz0LWDTEwNyv/dQfRQ7fSw1ibGbqyGaMdJ30ndsdttQrFB/PnDBS3oUsMPq2IuqqU/fxCtuXhlof/aWe1JeCWgPUZ/np3d/nYPsBYVKf9cxzd5dNHt9aAX2Omdeiy1uIglaMJmXbMpXJ/vlplHJNDmazlp76s+JHM5IudQd/oUUKznkdgf/gw2kb2ochuVF63Ib0/pGXBeL1cMD5pJ97rTD1Lp7/NwLZcbMvF/yCkbPbXqv7iWDnuThNxRuaajDgyRhufg/3+ce/ksL5eX3WZIHwjAwHMyE11zLf72rcp/pK/C2ElZtgwb1SRggevZUzGhvsmG2Gn7oxCr1uEeSVfFGHd2fJYS0kowlIH4Kt4j7mUXzKTQBemzqW2G4aYyg7y8lGis7gT6RnwhbylKDPSzb3FAaHh/v38ov3ojNlWEqqe0OSEV1+6YjriCHp94sOXgShthNOX5HUTT162HZWLBdWP9zV9PnwZ+HAz208XesHRd5ylJUvrr4zFd0SjbSza7jsPPKfG2mOvOFFG+3CWcqZlRE3g+1VCOvupXNrdWlbin8GgzzLJUA1VT9+oRGPsQ/IGxdTQ+O0QQp2SwlQ2ad2pidDhrQ9BODQTcm+H8HWUoLocwjtxkpJi9WUsE3oT4jsIoBZiurDX2e3scgyYdTNUrTDc4eetLTXZbB2JRVDyJ6+oe17LeMyyblvSa9gLAdzmL/th6rLFQoJrSOyHbwtik0ZKnPJ70z2HPPffCCYpCh4uxSnmaiwt14B49TVjvjjpH5SuVm78kuZL0tg1JhnP9C/NNRpZFqAnAXl5Wl14/ibWVTtX4qsGUc3bwGrci9ywzrcRuidroRvArAmxMchNJNJNcLYZWlwUAUwJY18l82rKYQlvZ8ALLZZYaoZ4q6XFfhRR6lpz24guWsdH/+RswBWy0ktnOubZBm9Y78WbEqj2gfIF2o/lkKCaZDjhuaVn/vsXX8cYVg== sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/create-user.ParamsDetails.json b/docs/documents/database/create-user.ParamsDetails.json new file mode 100644 index 0000000..7402ee4 --- /dev/null +++ b/docs/documents/database/create-user.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance to create the database user in.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/create-user.RequestSchema.json b/docs/documents/database/create-user.RequestSchema.json new file mode 100644 index 0000000..b9ca7cd --- /dev/null +++ b/docs/documents/database/create-user.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"The creation parameters.","content":{"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"The username of the new database user."},"password":{"type":"string","description":"The password to assign to the new database user."}},"additionalProperties":false,"description":"Parameters required to create a new database user.","title":"DatabaseUserRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"The username of the new database user."},"password":{"type":"string","description":"The password to assign to the new database user."}},"additionalProperties":false,"description":"Parameters required to create a new database user.","title":"DatabaseUserRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"The username of the new database user."},"password":{"type":"string","description":"The password to assign to the new database user."}},"additionalProperties":false,"description":"Parameters required to create a new database user.","title":"DatabaseUserRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/create-user.StatusCodes.json b/docs/documents/database/create-user.StatusCodes.json new file mode 100644 index 0000000..06f1b28 --- /dev/null +++ b/docs/documents/database/create-user.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/create-user.api.mdx b/docs/documents/database/create-user.api.mdx index 3dbacac..c5460a0 100644 --- a/docs/documents/database/create-user.api.mdx +++ b/docs/documents/database/create-user.api.mdx @@ -5,7 +5,7 @@ description: "Create User" sidebar_label: "Create User" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPu2HYyVd92J0BZw4xTJgi5G42ENiDGfxbLORRZWkkhqC//fdUZIl107rptkeAuchkCne3cfvjifyK6SHmZO9G/neoXVy3JEZWFig51+9m0Km9EP2ZGbNB4z9hZIdqVMeAD+nZ4Uutjrz2vDg+1R/zFFohanXU41WmKnwcxSVuTj7c0hGFj/m2qKSPW9z7EgXz3EBsldIv8w4mvNWpzO5WnXWANQEwH0l/OAU4Fro1HlIYxTeiNgieAwQFHiYgEOR00ppUveJQCDTR/fEDoeswNCa7XILzYiCcgB0HpXoDy9EY/ZYIPYxhTzxNHRCYcclRnJxatSS52/HCGukn6LJHK8tNqmnNLANZFmi4zAp+uDYsNhGYCacITKkXGVovUbHb5mtcuW7sH6OpZ5d5z3Fh03iu3LFJebcg7FqP5/1bM4nPepZyk+PeSf3oJRme0iGraVMIXH4uf/hmjJR10KrbGBXhI702ieMeVC94K1zVWZp4E2A4PGTP1D9v1DdLu6ffj5w/t9zziAsusykriTx1fHJdms6C0HUZicK+yJLQD9bktI8SWDCgLmFE7K6HRL8nQZTYxfA/ZUWjkdek9vHvKA6Xe4R82s5WRPKn7BNVksSd5XycxbyS+Lo2TvryyGH/bw+Pt7eiqegRLWDn2M7lm/3YLLCvcdMOrH5vOWczlUeZ2jbdNPQL692GSv0oJO94tRnw+9JStGsTNI4WSwGAYH77k18YPZLzD5p6x8ofZzSsmG83m4Yfxkv3pk8fZav9yEDh3ZxaBcvgFI2+3XX+eKCFkTnq0Rco71HK86tNTbkoD+8GFye1fLKrguC4HMMIaRrytwoVnZMOKUEgacno0o5clGxlqBWPHivFV1ror7NJ9Ctz0RRUImiohKLVlEeVC3KQQBWKlq5JT7l3PvM9aIIMt0FdhInJlfd2Cwkqy4O49xqvwwWpwiWQPZuxu1X11xSZdXUE9bEs/et29450xRudn/8PRKlDV3H7jBoUaFC2XZSOutUD+/qGiGjwCmX9FUjCp1/gkVWlmJzzG0y31xG12IWl8rUBLRVqksWzxYZJ1DHuCZ0WBHd7Wd6az17WYnfR6Mhq1+36W06MA9pYug0yiS8ATG3OP3tVkZUgCklIqrvokd1gru82FspPNgZepr6zySB9O5WvhWXZMOi2lQn+CaCtwSv1td68qR73D0Od3GqpgWEFlAxs1l2Gytap6/1oSMfoWCKqiJvaimUy6rXlkXXRUnPm2XJcbgi2aLRMfNacZ1zxZPjogjnepusVjxcqopcf0o73rxq9y2/aD7RX9Qcd67tDpdbmuY9JDnPDBvhHqwuO8c3AfnhqtIbfhR7isI74VWDkC7buGrYDfuszz4J3DdLxk+AWad8NaapcwQVeklRvT0rYR2N2EdjvXUu4CWWFv04xsy35rbBjFutdHh5PeI+UknHC6N4toUHlr7pf8BoAkGhjYWxQtIOm+Uw47llZP77F7V4cRg= +api: eJztWE1v2zgQ/SvEnPZDsZNuexHaAkmcYlNgN0biooc4WIzFsc1GIlWSSmoI+u+LoSRbrp3WTbN7CJyTQ3JmHt8MR+QrwePMQXwNHxxZBzcR5GgxI8//xdclaMwIYsit+USJP5cQgdI8gH4OEUhyiVW5V4YHP2j1uSChJGmvpoqsMFPh5yQac3H61xAisPS5UJYkxN4WFIFL5pQhxCX4Rc7RnLdKz6CqoiUAOUF03wk/OEG8Eko7jzoh4Y1ILKGnAEGixwk6EoUjK5TuPRII5urgjqzjkA2YzwXZxQaa0ZwEByDnSYrj4blYmT0UiH1MsUg9xHAEVXVTYyTnT4xc8PrNGGGPymixyhzvLTHak/Zsg3meqiQs6n9ybFhuIjATzhBEnOqcrFfkeJbZqne+DevXWNrVbd413a8T34OKS8y5e2Plbj7b1ZxPdE7NNP96yHsVAUqp2B7TYWcrU0wdfe1/uKRMtLXQKRvcFiECr3zKmAfNBB+dyzpLA28CBE9f/J7q/4XqbnH/9vue8/+ecwZhyeVGu5rEF4dHm63pNASR650onIs8RfVkSdJFmuKEAXMLryJo2+EA/VaDqbEZcn+V6OnAq4we9ELyZLFDzO/lZEkof8LWWa1J3FbKT1nIz4mjJ++sz4cc9vPy8HDzKJ6gFM0JforjWM/uwGSDe4eVzqMvOs5BaU8zsl26lfZ/vNhmLMmjSneK094NfyYp5WpnMLRmklI2CAjcTx/iPbPfYvZRR39P6cOU1g3j5WbD+Nt48c4U+km+3vsM7NvFvl08A0rZ7NW2+8W59ny/SsUV2Tuy4sxaY0MOjofng4vTVl7Z9kAQfI+BCDLycyNZ2THhlhIEnhj6jXLk+uVSgqp48E5Jsq5/bIsJ9to7UT+oRP2yEYuqfhFUrQhcAFYrWoVNIYa597mL+33MVQ/ZSZKaQvYSkwGrLo6Swiq/CBYnhJYsxNc33akrLqm6atoFS+LZ+8Zr74xpCi+79x9HorYR3txS0KJChbLtpHYWNT/etTXy/uMocMolfbkShc6+YJbXpbi65q4yv3qMLsUsLpWpCWibVNcsnmY5J1AltCR02BDdO87Vxn52shJ/jkZDVr/GeqwH5l6nBmUg4TWKuaXpmzH0TU4ac9Vv36IHbYJ7vNkxCI92Rv7NGP6ZpKhvx/BWXOSkWVSbqpRe9/EtRNDqazEc9Q57h+EtbpzPMLSAhpn1slvb0TJ9nQ9dFdUFUzYVed1KoVxWcVcWXRYlRLBelhyHK5ItVjpm0Squc674+BrKMtzrbVpVPFyrilx/Ujk+vHL7K79cfaK/qTlu3dstLTY0zTtMC14ZDsIdWlV3jh8C8stlozf8KnYUhbfCawZRL7q4Wtgr9lmffRS4H5aMHwGzTXl1U0UwJ5Shl5TN7GkN62DEPlbWG/cC3mJtcZwklPvO2i6Ym04rHV5cjbiPNNJxZiSvtnjP0jfe1xhNICi0sTBWQop6VuCM19aR+e9ftXhxGA== sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/delete-d-baa-s.ParamsDetails.json b/docs/documents/database/delete-d-baa-s.ParamsDetails.json new file mode 100644 index 0000000..bee2591 --- /dev/null +++ b/docs/documents/database/delete-d-baa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the DBaaS","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/delete-d-baa-s.RequestSchema.json b/docs/documents/database/delete-d-baa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/delete-d-baa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/delete-d-baa-s.StatusCodes.json b/docs/documents/database/delete-d-baa-s.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/database/delete-d-baa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/delete-d-baa-s.api.mdx b/docs/documents/database/delete-d-baa-s.api.mdx index 325002e..d7afd41 100644 --- a/docs/documents/database/delete-d-baa-s.api.mdx +++ b/docs/documents/database/delete-d-baa-s.api.mdx @@ -5,7 +5,7 @@ description: "Delete DBaaS" sidebar_label: "Delete DBaaS" hide_title: true hide_table_of_contents: true -api: eJztV99v0zAQ/lcsP4FUmjLgpYJJ29qJIWAVK+JhrdA1ua7eXDuznUEV5X/nLj+6bB2oTOMBqU9NL/fdnT+fne9yGeDCy/65HMwAvJx2ZAoOlhjQsTmXhv7IvkydvcQ4nCSyI5VhA4QFPSfoY6fSoCwbM6OuMxQqQRPUXKETdi7CAkUNF0efRgRyeJ0ph4nsB5dhR/p4gUuQ/VyGVcrZfHDKXMii6KwLUI/MPDgEOHtkTkjVixsiglPUySmJW21kH1MiToA+YCIORifiFva7RBxjDpkOZHpJaadco0+t8ejZe6+3xz93Ex3EMaaUQxYd+brX23Q4hER8qSqhDLE1gQgpk+PPEKUaeBX5ZlF2xvtDENqpFF1QVRHV283STaY1zDRWbFIxQQW9nacPELJWcOI14AU68p1bt4RQmV7tPQROMIDSW+VRhjKZeJuiyBuSRDGFoEdtAm5XJslOiOWgrMDLEpSmWsXAuOjS2x2zT8Zs2a07Sp+O0qK8MF5vXhifbRDHNjPJ7rrYXRf/K7O76+IfXBdvHtIXJ7QgR5HEGTrSOGLonHXlHpDqGZweNfLqLmqAmhTlWouRvFxYUmLkxXbeGdZ0fRnVOtFH+VpwFmy8IWHnfHTgshl0BxBgBh6jhDVrlKukYJ1VFlSJ1swRj3IRQur7UUQyrguMjLXNkm5sl5LVlsc4cyqsSsQhgqN96p9P26/OuJWqbmkc1oRz9A0hOGR6St354dtYVBgR7BWabiMFGTurgnXqh+OmNwhUcqnM3Jap6v2p1n20TJl1FeOaglFNTfcgVRvFbIUS78fjEUvWiZmYgf1htCUJySt4C2LhcP5uIiPqGkMsRkkd4EWzJV0+dBMpArgLDOT6fabBXE3kvjglDCvhudL4NoJ9Kq8RxSR4u71uj0Vsan1YQnlua9F9r1fuLGlNfuvzREHK7c7rJjpvZhVP6H57bln3ET3f7STOU84/hKBBgzpgQXVxrDzn91+dLgo2V/KfGyZRnk8ZdfEctL/f8fntt/SPw8GDy7nC1cbwcQM6Y8+yc2/AqeqI/1Uhz77UM9BzseWg9mB5tRHMql1XU/Yt4TxIPW1xTU88oiza1WJKXguEpDznef2imqhakHbUaeuuGgw/DsdDOp6/AAN7QDc= +api: eJztV01vGzcQ/SvEnFqA0SpuelkkAWRLQR20jRCryMESitFyZDGmSJrkqhUW+9+L2V19OHIL1XAPBXSSMOTMPL4Zct9UkPAuQn4LwzlihJkEjwFXlCiwuQKLK4IcfHBfqUjXCiRoywZMS5CgKBZB+6QdG0urH0oSWpFNeqEpCLcQaUmicxdXv4xBQqCHUgdSkKdQkoRYLGmFkFeQNp6zxRS0vYO6ljsA+pmZh5eIN8/MiV6/WlOInKJL/lBS2BxlnyxJcAKKiZQYjK/F3u3vEnGMBZYmQQ6voa5njDF6ZyNF3n3Rv+Cfx4kGRUE+kYJawpt+/3jDJSrxuUUCEgpnE9nUJKc/U+YN8imqY1BuzvUByYX2FJJuQbSrx9BtaQzODbVs1hKSTua0nTFhKg+Cg7aJ7iiAhIULK0yt6YeLp5wVJdTmpDzaxoS2OAVULQGV0kwhmvEhAfuTwTi4uaHVsEEQoXHy3ugC2S/7Gt2Z2RdjtunWM6UvR2ndPBhvjh+MX10SH1xp1fm5OD8X/1dmz8/Ff/Bc/PiUvri2iYJFI24orCmIUQguNDUYjK+Hn6628uqx15AMpb0WW1FaOgU5qMbOlWFNl0PW6cSYVTvBWbNxrRWFmA1COcfeEBPOMVKmWLNmlVY166wGUCtay2Agh2VKPuZZhl73kD0L40rVK9wKWG1FKsqg06bxuCQMFCC/nR0u3XArtd2y3bAjnKMfCcER09Pozo9fJqL1Ecndk+1tpSD7zttgsvvzYdsbH79MGi61XbgmVVef9txXK8+s64J2FIw7anoDr4/AnOQlfppMxixZp3Zqh+4Paxyq5gRvUSwDLd5NIXOeLHqdqS7Aq21JenzppiAShjtK76bw+9ygvZ/Ce/HJk2UlvNCG3mb4HiRsRXEOr3v9Xp9FrHcxrbC5t53o/qZXHh1pR/7B56mWbbmrrolut7NKBAn54dyy6yOQ8LiTOE8z/0jIteIpaOli4lhVxeu/BVPXbG7lPzeM0pFvmYJ8gSZ+2/HV/lv6j8PBk8e5p83R8LFGU/LOpnPXGHR7xf8VkO8+dzPQ9+LEQe1JeJ0R7eYQ1xb2nnAepF4W3LYnngFLK6hntYQloWruedUttBPVgcth1NnBWzUc/TyajKCu/wIDe0A3 sidebar_class_name: "delete api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/delete-database-backup.ParamsDetails.json b/docs/documents/database/delete-database-backup.ParamsDetails.json new file mode 100644 index 0000000..895b821 --- /dev/null +++ b/docs/documents/database/delete-database-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the DBaaS Backup","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/delete-database-backup.RequestSchema.json b/docs/documents/database/delete-database-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/delete-database-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/delete-database-backup.StatusCodes.json b/docs/documents/database/delete-database-backup.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/database/delete-database-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/delete-database-backup.api.mdx b/docs/documents/database/delete-database-backup.api.mdx index 80e87a3..c41239f 100644 --- a/docs/documents/database/delete-database-backup.api.mdx +++ b/docs/documents/database/delete-database-backup.api.mdx @@ -5,7 +5,7 @@ description: "Delete DatabaseBackup" sidebar_label: "Delete DatabaseBackup" hide_title: true hide_table_of_contents: true -api: eJztV9tuEzEQ/RXLTyCl2VDKS1SQ2iaIIi4RDeKhidBkd9K4deyt7S1Eq/13ZvaSbpuCQlUekPKUjXcux2fG3jO5DHDhZf9cDiDADDweQ3yVpXLakSk4WGJAx+9zaeiP7MvU2UuMw2kiO1IZXoCwoOcEfexUGpTlxcyo6wyFStAENVfohJ2LsEBRu4uTjyNycnidKYeJ7AeXYUf6eIFLkP1chlXK2XxwylzIouisAahHZh4cA5yJenuPSw2p2rshPjhTjYFyudUGiDHl4wToAybiaHQqbt1+l4hjzCHTgZZeUNopY/SpNR49W+/39vnnbqKjOMaUcsiiIw96vU2DY0jElwoJZYitCcRLmRx/hijVwLvIN0HZGZeJXKhgKbqgKhDV203oJtMaZhorNglMUEFvZ+kDhKwVnHgNeIGObOfWLSFUSy/3H3JOMIDSW+VRhjKZeBtQZA1JophC0KM2Abc7k7ROHstBicDL0ilNtYqB/aJLb3fMPhmzZbfuKH06SovywjjYvDA+2SDe2swku+tid138r8zurot/cF28ekhfnNKGHEUSZ+hI44ihc9aVNSDVM/h80siru14D1CQsxT3N2ZEkNxeWJBmZswGXiDVeX0a1bvRRvhagBS/ekNBzPjpy2Qy6TbxoVgYkY5UULLlKbJWMzRxRKhchpL4fRaTousC+sbZZ0o3tUrLw8hhnToVV6XGM4Khk/fNp+9UZd1XVOI3BmnuOvqEJh8xUqUTffxuLykcEe4Wm26hC9p1VwTr1w9umTcippFWZuS1T1aWqdn6yTLkAKsY1CaOanO5RqjbAbOUl3o3HI1avEzMxA/vDaEtqkndwCGLhcP56IiNqIEMsRkkdYK8pSpfP30SKAO4CA5l+n2kwVxP5RnwmHxbFc6XxMII3BK/Rx6R9u71uj/Vsan1YQnmEa/39u7a5s7d1FVqfLIpW1j2v++m8GWM8effbI826pej5blNxSaq2Yh+aQqgZFgSRo+U5W3x1uih4uRoKuHcS5fnsUUvPQfv75yC//cL+cWR4cENXuNoYSW5AZ2xZNvENOFUd/L8C8uxLPRk9F1tOcQ/CqxfBrNq4Gti3lPN49bTg7g16j0BHxS2mZLVASMqTn9cvqnGr5dKOOm3dX4Phh+F4SAf2F7dpUi8= +api: eJztV0tvGzcQ/ivEnFqA0SpuelkkAWRLQR20jRCryMESitFyZDGmSJrkKhUW+9+L2V3JsuUUquEeCugkgZzHNw/OflNBwpsI+TUMMeEcI51jcVt6mEnwGHBFiQLfV2BxRZCDD+4rFelSgQRt+QDTEiQoikXQPmnHh6XVdyUJrcgmvdAUhFuItCTRqYuL38YgIdBdqQMpyFMoSUIslrRCyCtIG8/eYgra3kBdyx0A/UzPw3PEK9GF9zzX6PWrNYXInjoMdyWFzQGIyZIEO6CYSInB+FLcq33PEdtYYGkS5PAa6nrGGKN3NlJk6bP+Gf88dDQoCvKJFNQS3vT7hwLnqMTnFglIKJxNZFPjnP5KmTfIUVSHoNycywSS6+0pJN2CaG8PodvSGJwbarNZS0g6meMkY8JU7hkHbRPdUAAJCxdWmNqjn86eUlaUUJuj/GgbE9riGFC1BFRKcwrRjPcTcB8ZjIObG1oNGwQRGiXvjS6Q9bKv0Z0y+2KZbbr1lNKXS2ndDIw3hwPjd5fEB1dadRoXp3Hxf83saVz8B+Pi56f4xaVNFCwacUVhTUGMQnChqcFgfDn8dLGlVw+1hmQokXjEOSWsKC2dghxUI8AlYo6XQ9bxxphVOwJa8+FaKwoxG4Ryjr2tvWzeGIxZpVXNlKvB1tLYMhjIYZmSj3mWodc9ZN3CuFL1CrcCJl6RijLotGk0zgkDBcivZ/tXV9xVbeNsBXa5Z+sHnHDEmWqY6McvE9HqiORuyfa2rJB1560x2f35sG2Tj18mTVq1XbjGVVeqNvKLlecC6IJ2SRh3yekNvD4Ac5SW+GUyGTN7ndqpHbpv1jhUTQRvUSwDLd5NIXOeLHqdqc7Aq21Revz+piAShhtK76bw59ygvZ3Ce/HJk2VSvNCG3mb4HiRs+XEOr3v9Xp/5rHcxrbB5wh3//l7bPIhtV4W9T1Yt27pXXT9db9eYCBLy/ZVm11Ig4WFTcUnatmIdrXhFWrqY2FpVscQfwdQ1H7dLAfeO0pHfnoJ8gSY+fgfV/Rf2H1eGJwO6pc3BSrJGU7Jk08RrDLp9+P8KyA+fu83oR3HkFvckvO4Q7WYf1xb2fcp5vXpZcI8WvWeg0wrqWS1hSaial191F+26taeyb3W2N7+Go19HkxHU9d+3aVIv sidebar_class_name: "delete api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/delete-database.ParamsDetails.json b/docs/documents/database/delete-database.ParamsDetails.json new file mode 100644 index 0000000..306c5e4 --- /dev/null +++ b/docs/documents/database/delete-database.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database to delete.","required":true,"schema":{"type":"string"}},{"name":"name","in":"path","description":"The name of the database to delete.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/delete-database.RequestSchema.json b/docs/documents/database/delete-database.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/delete-database.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/delete-database.StatusCodes.json b/docs/documents/database/delete-database.StatusCodes.json new file mode 100644 index 0000000..c34b1f1 --- /dev/null +++ b/docs/documents/database/delete-database.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/delete-database.api.mdx b/docs/documents/database/delete-database.api.mdx index c67bed7..40540a1 100644 --- a/docs/documents/database/delete-database.api.mdx +++ b/docs/documents/database/delete-database.api.mdx @@ -5,7 +5,7 @@ description: "Delete Database" sidebar_label: "Delete Database" hide_title: true hide_table_of_contents: true -api: eJztVt+P2zYM/lcEPa1Aamdd+xK0Ba6XFLuiXYNdij5cgoGxmYt6iuRK8m2B4f99pGwnvibtsuAe+xSH4o9P5CeSlQxw6+XoRo4hwBI8erkYyAIcbDCg46NKGvojR7Jw9gtm4SqXA6kMCyCs6TtHnzlVBGVZ+MmoryUKlaMJaqXQCbsSYY3i8sNUTBsXCVk5/Foqh7kcBVfiQPpsjRuQo0qGbcHhfHDK3Mq6HuwQ5EsA/x/xx28AroUyPoDJUGTWBFCGPEUQeXtNEazIUdMdz8USf34EZEbhWKm7/+OFhkI9vaficJwWAaXcbY9C4ADoA+biYnol9mbfC8Q+VlDqQKJfKeyCMfrCGuYGaT8bPuefh4H+sOKSEk0ll/VAPj+uEsRbWxquXtbqcnD8J6SFBr5FdQjKLpkvZELkK9AF1YBoTg+hm1JrWGpssklQggr6NE3iSyh7zimvAW/Rke7Kug2ERvTbs2PGORLJ9ElxOmaeoEzakOeKEwh62k/A/maS5GSxGUcEXkajotAqA7ZLv3j7M7OPltnI1p8pfbyUstmL4fCwXVzRhRx5EtfoqGmJiXPWxRpQGxt/vOz65TfNP/ZV0Q0zQkljbG1znh3xiIvDzXok03ac+bTaDbaahfc0upxPL1y5hKTzlMbRk1btBKrTrpuTjLtyzR01Im1GZukowXIdQuFHaUoNOwH2l2lb5klmN5L7qsesdCpso8UbBEcFHN0s+kfXzLGGRp3CrhLs/aDlTzhvcd68+zwTjQ1NnDs0Sdf02XbZOBu0H2870pBRTLIyKxtDtYVrsnG5KbgcKsNdYqZtwpKLQh2AOclK/D6bTXk4zc3cjO3fRlvI4w1eglg7XL2ay5ToZCiLu7Q/7QqV8GucSxHA3WIg1b+WGszdXL4WH8mGZ95KaXyZwmuC140/Gm3JMBnysCqsDxuID7odr4ckenCrXf57o4v8xIpXLbtuumXJk/WovzjtCEbfDynGcZhdbLFfdHY8Y3EESOxYE2YOUlV89MnpumZxswQwmXLl+WkS71eg/bfPpNoP4B+uCEfveYfbgxXkHnTJmpHV9+BU0xf+F5Bf/mw3oSfi1BXyKL5WCGbbB9bh3peC96mz0J2zYJ6BtKPA2ThP2z/PQBZZWC9Ib42Qx55VtUcXWYZF6Bn1/S563Xg8eT+ZTajV/AsWuExU +api: eJztVlGP2zYM/isCnzbAja9d92K0BdJLil2xrcEuRR8uQcHYTKKeIvkk+rbA8H8fKNu5XJO1WXCPfbIhieQn8hM/1sC4CpDdwAgZFxgowDyBEj1uiMnLVg0WNwQZlN59oZyvCkhAW1lAXkMCBYXc65K1k8WPVt9VpHRBlvVSk1duqXhN6vKPiZq0LgaQgKe7SnsqIGNfUQIhX9MGIauBt6WEC+y1XUHTJDsExQIxfCf+6C3itdI2MNqcVO4so7bariKIorumYqcKMsR0Lpb4+RaQ6ZqUHOrv/3ShsdTP7skHidMhuKvIb49CkAAUmAo1nFypB7P/CiQ+llgZhgyeQ9PMBWMonRVuZDW8uHgpn8eB/nTq0lkmy9Ak8PL4EVbvXGWlenl3VoLTP5yWBuUW9SEotxC+QCLkK8mzbkG0u4fQbWUMLgy12WwSYM3mtJOBkas956At04o8JLB0foPcLv3y4phxQYzanBSnZ+YJh5sEsCi0JBDNZD8BDzeDiXcLQ5tRRBAgGpWl0TmKXfoluB+ZfbLMRrb+SOnTpVTMfr24OGwXV5bJWzTqmvw9eTX23vlYg+HkavThsu+XXzX/2FdVL2aQwIZ47QrRjrglxZFmnUHayVlI652wNbJ4rwvyIR36aoGD3lMapSetOwVq0r6bh7SWrtxIR41IW8msvIEM1sxlyNIUSz1A8ZcbVxWD3G1A+mqgvPKat9HiLaEnD9nNfH/rWjjW0qg/sKuEeD9o+WPJW9Sb95+mqrVR7G7JDvqmL7aL1lnS/bzrSfP+0zQmWduli6G6wrXZuNyUUg6d0y4xky5hg2GpD8CcZKV+m04nIk4zO7Mj97c1Dot4g1eo1p6Wr2eQupIslnqX9md9oQbyGmegGP2K+PUMPi8M2tsZvFEfSrKieUtt6FWKbyCBXv4yeD64GFyIWJUu8Abjg+7k9ZBEj261y/+edDVJW/G6Y9dNPywFSCDbH5x2BIMEHlNM4gi7xOJh0NnxTJYjwHkCaxdYgtS1bH30pmlkuR0ChEyFDvI0C8iWaMLXz6R+EOBvjghH73lL24MR5B5NJScjq+/R67Yv/C8gP/3VTUI/q1NHyKP4ukW0231gPe6HUsg8dRa6cwbMM5D2FDgb52nz5xnIIgubeZPAmrCIPavutoZ5TiXvGe37ne9149H49/F0DE3zLxa4TFQ= sidebar_class_name: "delete api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/delete-grant.ParamsDetails.json b/docs/documents/database/delete-grant.ParamsDetails.json new file mode 100644 index 0000000..e0a80c8 --- /dev/null +++ b/docs/documents/database/delete-grant.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database users to delete.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to delete.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/delete-grant.RequestSchema.json b/docs/documents/database/delete-grant.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/delete-grant.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/delete-grant.StatusCodes.json b/docs/documents/database/delete-grant.StatusCodes.json new file mode 100644 index 0000000..c34b1f1 --- /dev/null +++ b/docs/documents/database/delete-grant.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/delete-grant.api.mdx b/docs/documents/database/delete-grant.api.mdx index 9fb0a05..6bc9ea3 100644 --- a/docs/documents/database/delete-grant.api.mdx +++ b/docs/documents/database/delete-grant.api.mdx @@ -5,7 +5,7 @@ description: "Delete Grant" sidebar_label: "Delete Grant" hide_title: true hide_table_of_contents: true -api: eJztVk2P2zYQ/SsETy3gSE6aXow0wGbttFu0idF10MPaKMYSbTFLkwpJbWoI+u+doT4sr53GUXLMyfJoPh6HT/Om5B62jk/u+K8WtHd8NeI5WNgJLyzZS67xD5/w3Jr3IvE3KR9xqckAPsPnVLjEytxLQ8Z3Wn4oBJOp0F5upLDMbJjPBLv+c87mdYoIo6z4UEgrUj7xthAj7pJM7IBPSu73OZVz3kq95VU16hCkawD3mfrTVwC3TGrnQSeCJUZ7kBozBRApeFiDE6xweDrmDUuFwpMORtTke0N/j2ENSUeo9Gmq4xMusho+OX79CSCXTx6wF5S7qYr3Z/dny1IB4bxI2dX8hh3CPlWIcmygUB5NT7HsijC63GgnHHk/Gz+nn+NCbwy7xltD/vBqxJ+fd/HstSk0USFpfKm4+NfHuQI6RXkKyqyJfBiCTM6F9bIGUb89ha4LpWCtRN1NhOKlV5d5Ivl80UuOffViKyz6bozdga9NPz07F5wKZKy6qE5L8wuc0RvSVFIDQc37DTicjKMdI3bTgMDxEJTnSiZAcfF7Z7539pt1NrD1e0u/XUsp7Ofx+HRc3OCBcFwqdissDi02s9bYcAc4xqZvr9t5+UhJwlxlQRYRIgpiZlKa+cFON0PTecLjRhhdXHYSWZHxAUXQuvjKFmuIpo1SxEHE4rLRsipuJYRsPTWp4m3Q47hsZ31FgzYcoJblwmLfeeZ97iZxjHM8AqqUKFOkUWJ2nMatE0lhpd+HiFcCLN7r5G7Vf3VL1KvZ1Tp0F0TZT5RgRu0Mcvr73wtWx6AQ3QsdtVpAses62ah5eN1yCYNC76XemFCquc+6T9e7nG5JJqJr2bxpZXSVyxMwF0Wx3xaLOWnWUi/11HzUykAaTvACWGbF5pclj5FlGrvYXciT9goj+kiXnHmwW+HR9Z+1An2/5C/ZW4whKdxIJV7E8BLhtaqIiheNozFpWG6c30H4zhvVfcStoyN1ze/JGSYJ1102pLtrtzGH0ZP+ZtbxDp+PmUd1iHQUcdikOvoF8/E6UzOQXnSLCfImw9MQgrIk13dWVRWZ662BaJZKR98yfisbUO7xd1UeFPt/d4qzTbgX+5Od5QFUQZ6B7w9gZT1IvgjID381q9OP7NIF9iy+xgh63wfW4j7cEy1gg9ANX28H4G1ZMhjtwLJ9Fg6u/ek1eQCkjv/VCn0zAWmYo2Xz+ipJRO57gf3cq552TGd/zBYzHH//AXgMobU= +api: eJztVk2P20YM/SsDnlpAsZw0vQhJAGfttBu0idF1kMPaKGiJticrz2hnKKeGoP9eUF+W106ydXPMab2cIfmGfOJjAYxrD9Et/ObQsIdFABk63BKTE3sBBrcEEWTOfqKYrxMIQBsxIG8ggIR87HTG2orxg9H3OSmdkGG90uSUXSnekLr6c6qmdYgBBODoPteOEojY5RSAjze0RYgK4H0m6Tw7bdZQlkGHIFki+m/kH79GvFHaeEYTk4qtYdRGm3UFIkHGJXpSuSfnFVuVUEpMFyNq4r2Tf49hXRJOUJnTUMcvnG1q+HLx/78AM/1kR85L7CbrfU5ufzatJCDPlKjR9Fod3L6USGKsME8ZIngKZbkQjD6zxpOX28+Gz+XPcaJ3Vl1Zw2QYygCen7/C6o3NjVAhbu5KcvqHwyxFeUVxCsouhXwQCJMzcqxrEPXpKXSTpykuU6qrWQbAmtPH3fSMnPeCgzZMa3IQwMq6LXJt+uXZOeeEGHX6qDwtzR9xuQwAk0RLATGd9gtweBlMnV2mtB1XCDxUTlmW6hjFL/zk7Y/KfrfKVmz9UdLvV1Jx+3U4PB0X14ZlXKbqhtyOnJo4Z13Vg9H0evz+qp2XD5SkmquqkkUIYEu8sYnM/MounZHpHEHYCKMPi04iSzHudELOhyOXL3EwbpQirEQsLBotK8NWQsTWU5MyXFd6HBbtrC9l0FYPqGU5dylEsGHOfBSGmOkBSqY4tXkyiO0WZNx6inOneV95vCZ05CC6XfSPboR6NbvaC12DJPqJEkyknJWcvv04U7WPYntHZtBqgfgu62BB8+NNy6W3H2dV7bVZ2SpV08+6TlfbTLqkY+pKNm1KORhl+gTMo7zU77PZVDRrbuZmbD+b1GJSveAFqo2j1cs5hDYjg5nuGvKkbeFAPtI5KEa3Jn45h7+XKZq7ObxS7zMyIoUrndKLEF9BAK0qRvB0MBwMRcMy63mL1XfeqO4Dbh09qSt+T87KoG530ZDutt3GPAQQ9TezjncQwDHzJI+QTjwOm1RHv8p8vM7UDJSDbjFZBLCxngVBUcjVDy4tSzHXW4PQLNFevuUEohWm/uF3VRwU+6s7xdki3NH+ZGfZYZrLzYrvO3S6HiT/CchPfzWr08/qsQvsWXyNEc2+D6zFfeiTLGAXobt8vb0Ab8uSi9FemLbPwotzf3lNvgBSx/9yUQawIUyqOVo0x6M4pox7jv3Yi552jCd/TGYTKMt/AXgMobU= sidebar_class_name: "delete api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/delete-user.ParamsDetails.json b/docs/documents/database/delete-user.ParamsDetails.json new file mode 100644 index 0000000..e4c4cda --- /dev/null +++ b/docs/documents/database/delete-user.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database user to delete.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to delete.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/delete-user.RequestSchema.json b/docs/documents/database/delete-user.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/delete-user.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/delete-user.StatusCodes.json b/docs/documents/database/delete-user.StatusCodes.json new file mode 100644 index 0000000..c34b1f1 --- /dev/null +++ b/docs/documents/database/delete-user.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/delete-user.api.mdx b/docs/documents/database/delete-user.api.mdx index 20247d6..ad64bfd 100644 --- a/docs/documents/database/delete-user.api.mdx +++ b/docs/documents/database/delete-user.api.mdx @@ -5,7 +5,7 @@ description: "Delete User" sidebar_label: "Delete User" hide_title: true hide_table_of_contents: true -api: eJztVk2P2zYQ/SsETw3gSG6aXoQkwGbtoFu0jdH1Ioe1EYyl8YpZmVRIaltD0H/vDCXZ2thJHDfHnCxT8/E48zRvaunhzsnkVt44tE4uR7IECxv0/C+5raWmPzKRpTUfMPVXmRxJpfkAfE7PGbrUqtIrw4c3Wn2sUKgMtVdrhVaYtfA5iss/Z2LWhojIy+LHSlnMZOJthSPp0hw3IJNa+m3J6Zy3St/JphntEGQrAPeV/JPXANdCaedBpyhSoz0oTZECiAw8rMChqOiuwhuRYUEXPRcQRwmPX0I0z9t0bPj/U0Kpnj5QZzh2l5XqbbdH03ICdB4zcTG7Enu3zyXiGGuoCk9HP1PaJWN0pdEOHVs/Gz/nn8eJ/jLikqpM/ZbNSD4/buLFG1Npbl3a2XJy/NfHZQF8i/oQlFkxWciFmFei9aoF0b49hK6rooBVgW01CYpXvjjNksjiq0FwqqvHO7RkuzZ2A749+uXZMecMiWHFSXl6Wp5gTNaQZYoLCMVsWID9zSSdk8dmEhA4GZzKslApsF/8wZkflf1ulQ1s/VHS71dSdvt1PD4cF1d0IRqXhbhGS0NLTK01NvSAxtjk7WU/Lz+Z/GGuClYxQkj6lZuMRSMcc2N4OCcy7nTMxfVO0Ro+fCDNsi6+sNUKokknFHHQnLjupKeJeZLT/36gNzxNA8pWKytLxZW596VL4piGdQQcLy1MlUWp2UieqQ7Tyiq/DR6vESwhTm6Xw1fXzK+WQr3Brgsc/WDcT7lmQeN+fzcXrQ+pzT3qqB/47Ltqg426hzc9YcgpFFjptQmpuqa11bjclNwKleKuMLOuYNFFqQ7AnOQlfpvPZyxMC73QE/OPLgxk4QYvQOQW1y8XMiYqaapi3Av3075REX+JCyk82Dv0ZPp+VYC+X8hX4i35sN6tVYEvYnhF8HrpI1mLxtGYhao0zm8gfMydtD4m0KMb7Wo/kCyKEbpdd8y67TckR97JcFvakYueH9OL8zCz2GO/3QSO8dFuvyBm5ISXk9Q1O97Yomn4uBV/JlKmHH+SxPk1FO7Tz6PeC+8XV4Oj97zH7cHq8QBFxZaB0Q9gVTsPvgnIT393G9ATcereeBRfdwh6OwTW4963gveos9CdvVWeAbfnwdlgP79wnoFmR8FmSbY5QhaGVd29vkhTLP3AcRh7ORjDk+kf0/mUZsx/y69H6A== +api: eJztVt+P2kgM/ldGfrqTUkJ77UvUVqIL1W11vaJbVn1Y0MkkBqY7zGRnHFoU5X8/OT+ALbTHcX3sE8EZ29/YX/y5BMZlgOQObgP5ALMIcvS4JpZ/yV0JFtcECeTefaKUrzOIQFsxIK8ggoxC6nXO2onx1uqHgpTOyLJeaPLKLRSvSF29H6txE6IHEXh6KLSnDBL2BUUQ0hWtEZISeJtLusBe2yVUVbRDkM0Rw7/kH75BvFHaBkabkkqdZdRW22UNIkPGOQZSRSCv2KmMDDFdCkii1I/fQzRZNenk4P9Pibl+siEfJHab9aEgvz2ZVhJQYMrUYHyt9m7fSiQxFlgYhgSeQlXNBGPInQ0U5PSz/nP5eZzoT6eunGWyDFUEz08fYfXWFVZal7ZnJTl94Tg3KLcoj0G5uZAFImFeTp51A6J5ewzdFsbg3FBTzSoC1mzOOxkYuTgIDtoyLclDBAvn18iN6bdnp5wzYtTmrDwdLc84XEWAWaalgGjGhwXY3wzG3s0NrYc1ggC1U54bnaL4xZ+C+1nZH1bZmq0/S/rjSipuL/r943FxbVnGpVE35Dfk1ch75+seDMbXww9X3bz8avLXc1WJikEEa+KVy0Q0arM0RoZzAnGrYyEud4pWiXGjM/IhHvhijr1hKxRxrTlx2UpPFcskD3HZDfRKpmmNstHKwhtIYMWchySOMdc9lHipcUXWS90aZKYGSguveVt7vCH05CG5mx2+uhF+NRTqDuy6INGPxv1IalZr3LuPE9X4KHb3ZHvdwBffeRMsah/edoR593FSF1jbhatTtU1rqnG1zqUVOqVdYcZtwXqDXB+BOctL/T6ZjEWYpnZqh+6zNQ6z+gYvUa08LV5NIXY5Wcx13An3k65RPfkSp6AY/ZL41RT+nhu091N4rT7kZEXvFtrQyxhfQwSd9CXwtNfv9UWochd4jfXH3ErrYwI9utGu9geSVUVNt8uWWXfdhhQgguRwW9qRCyJ4TC/JI8wSj/12U3NMTLv9YhbBygWWJGUpjrfeVJWYG/EXImU6yCeZQbJAE77+PMq98H53NTh5z3vaHq0eGzSFnKwZvUGvm3nwn4D88le7Af2qzt0bT+JrjWi3h8A63PtWyB51EbqLt8oL4HY8uBjstxfOC9DsKFjNqghWhFk9rMr29SBNKecDx8PYs4MxPBz9MZqMoKr+AcuvR+g= sidebar_class_name: "delete api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/generate-database-backup-download-link.ParamsDetails.json b/docs/documents/database/generate-database-backup-download-link.ParamsDetails.json new file mode 100644 index 0000000..895b821 --- /dev/null +++ b/docs/documents/database/generate-database-backup-download-link.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the DBaaS Backup","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/generate-database-backup-download-link.RequestSchema.json b/docs/documents/database/generate-database-backup-download-link.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/generate-database-backup-download-link.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/generate-database-backup-download-link.StatusCodes.json b/docs/documents/database/generate-database-backup-download-link.StatusCodes.json new file mode 100644 index 0000000..85af2a8 --- /dev/null +++ b/docs/documents/database/generate-database-backup-download-link.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/generate-database-backup-download-link.api.mdx b/docs/documents/database/generate-database-backup-download-link.api.mdx index cbe4f9a..46b9dfb 100644 --- a/docs/documents/database/generate-database-backup-download-link.api.mdx +++ b/docs/documents/database/generate-database-backup-download-link.api.mdx @@ -5,7 +5,7 @@ description: "Generate DatabaseBackup download link" sidebar_label: "Generate DatabaseBackup download link" hide_title: true hide_table_of_contents: true -api: eJztVk1vGzcQ/SsETy2gaNU0vQhpANtKWvcjFmIXPVhCMVqOLEYrckPOuhUW+u+d2S+vIjlQ3RxyyEkrct7M48wjZ0pNcBf1+FZPgGABEc8hXRe5ng90DgE2SBhkv9SO/+ixzoN/jyldGj3Q1skC0Iq/DcY02Jysl8XC2Q8FKmvQkV1aDMovFa1QNXB18fuUQQE/FDag0WMKBQ50TFe4AT0uNW1ziRYpWHend7tBR8A+MfLkHOBaNcd7WmjI7bN7zodEajhwrLA9IHHD8SQARkKjzqaX6gH2WCDxsYQiI176jsPOhWPMvYsYxfr5aCQ/+4GufmVc6h3xaSuX+A8leQbCrTwM5ReSfIZwGXIMZGvXhJvcBwjb36xbH02BBmOsxIRs2oMuIYucO7KUif2+hsTZu+YEE/K1mzzPbAriKXkf/RfKssril0pPHL0YvTjUwltP6o0vnPkskqh2DzXqiiyDhRCVa7PraJ9gGQmo6DnnC0R4h4Ftlz5sgOql758fAxsksNlJcazjSC49hdSjNSkfTqZ5nRGbScUg/n8Zf83sJzL7tKv3NaWPplRgPxxrHZd8oMCe1DUG7k7qdQg+VDXgfjW5umgb4z7qJ3QYgLid7j1Tyvi/XebBqExev4HmwWHljTRpH6uCSa8e66Tp/zEpu0FiJ4v33LBDTM5CsYBh6ztZVM7Z2LJVG0J6aEW5nkuKwJnWK6I8jpOEW/QQxEma+cIMU7/R0kkjpkWwtK0Q5wiBKzm+nfe3rkVstZ5ag64k4v2gyb+WBFajxS9/3qgao8iv0Q3bNi/YRe1s0Hy8adXDoCrb1i19FaqpYJ2Ci00udbEpdtmYNlkanuX2gMxJKPXzzc1UxpGZm7lJWzE5wUtQq4DLH2c6YV05zmJiGgfP2uoM5VrOtCIId0hs+tciA7ee6VfqijEy5Sxthi8TeMX02oGHh5nhaDjSfFKRwgaqm90MVKeqae+sXVV6nY29VzooG6HdtnNqZPS4P7N2WuPvfbVJiWq9CaYaMzvJsU5WImR2XJZi/EfIdjtZrgdAkZWxUW6r6Tr6R6y7nvzJ8fDo2da4PRg/7yErxLLS9z0EWz8V/4nIN++aKfhbdeLEfpReswhu2+fV0n7IvozSn5fcR0P9E9hxnXdztlohmOpRKJuNszTFnHqQvtd574WbXl3LTf4X1fqfWw== +api: eJztVk1v2zgQ/SvEnLaAarkfexHaAk7cdtPdbYzGix5iYzEWxzFriWRIyq0h6L8vRl+xa6dwsz300JMNivPmceaR80oIeOMhuYYxBlygpzNM14WFeQQWHeYUyPH3EjTmBAlYZz5RGi4kRKA0L2BYQQSSfOqUDcrwYqHVbUFCSdJBLRU5YZYirEi04eL87wlE4Oi2UI4kJMEVFIFPV5QjJCWEreVsPjilb6Cqop6AemDm8RnilWiP97DUaNXjDTnPmVoOtwW57QGJ6YoEJyAfSIrR5ELchd2XiDGWWGQBEngCVTVnjt4a7cnz7qfDIf/sJ7r8EyJIjQ6kQw1JX0JsM2Ru5WEqs+DiQ8RdtOSCaqAD5dY4dNu/lF4fLQGglIpzYjbZCV1i5imCoELG+/c1xGAf2hOMg2lgrM1UiowUf/LmJ2VZV/FnpcdAz4fPD7Xw3gTxxhRa/hBJ1F8PNaqLLMMFE+VrU/W0T9jpA4ZiBxyUDnRDDiJYGpdjaJaePT0WLCmgyk7Ko7QPqNNTSN3bk/LuZDBxZpFRPq4Z+P8v41+V/UZlH3b1fpX03pJy2O/HRseFDuQ0ZuKK3IaceO2ccXUPRpOL8eV5Nxj3o96SJoeBxP4zJaT5rDODUmT8+kWQU1gZyUPa+LphPKsTiNv57+OyNxIVL26UJOfjkSsWOOiw40UN7uNSySruUvAMrSk3vqRwGSSwCsH6JI7RqgEySJqZQg5SkwNPUk9p4VTY1hFnhI4cJNfz3U9XLLZGT92GviWMfjDkX3MBa2vx7uNUNDEimDXpQTfmOXbRgEXtnzedet59nNbVVnpp6lRtB5sSnOeW+6JS6qsxaas0GFl1QOakKPHHdDphOzLTMz3uOsYneIFi5Wj5cgaxsaTRqli2AI+77gz4Ws5ABHQ3FF7O4N9Fhno9g1fi0pJml7NUGb2I8RVE0BmeBJ4MhoMhVFEthRzrm90aqlPVtHfWvis7k62KGh2UrdCuO5/qIYJk17P2WoMI9tXGLWr0xjG1zewlN49gxUJOrqEsefM/LqsqXm4MIMtKKs+3VfYT/SvW/Uz+pj08erY1bQ/s5wazgnfW+t6gU81T8V1EfvvQuuBH4kTHfpReu4h6u8uro31XfbbSP5bcV6b+AeyUhGpeRbAilPWjULYfRmlKNuyE7KLOd164yeUV3+T/ANX6n1s= sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/generate-scheduled-backup-download-link.ParamsDetails.json b/docs/documents/database/generate-scheduled-backup-download-link.ParamsDetails.json new file mode 100644 index 0000000..c0cb066 --- /dev/null +++ b/docs/documents/database/generate-scheduled-backup-download-link.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database to read.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"name of the database to read.","required":true,"schema":{"type":"string"}},{"name":"backupName","in":"path","description":"name of the backup to read.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/generate-scheduled-backup-download-link.RequestSchema.json b/docs/documents/database/generate-scheduled-backup-download-link.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/generate-scheduled-backup-download-link.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/generate-scheduled-backup-download-link.StatusCodes.json b/docs/documents/database/generate-scheduled-backup-download-link.StatusCodes.json new file mode 100644 index 0000000..85af2a8 --- /dev/null +++ b/docs/documents/database/generate-scheduled-backup-download-link.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"temporaryLink":{"type":"string"}},"additionalProperties":false,"title":"DatabaseBackupLinkResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/generate-scheduled-backup-download-link.api.mdx b/docs/documents/database/generate-scheduled-backup-download-link.api.mdx index 0f0686d..9840601 100644 --- a/docs/documents/database/generate-scheduled-backup-download-link.api.mdx +++ b/docs/documents/database/generate-scheduled-backup-download-link.api.mdx @@ -5,7 +5,7 @@ description: "Generate Scheduled Backup download link" sidebar_label: "Generate Scheduled Backup download link" hide_title: true hide_table_of_contents: true -api: eJztV0tv2zgQ/isET1vAldxu92J0CyRx280+GqPJoofYWIxFOmYtkSpJpTUE/ffOUA/Layd13Bx66MkyNY+PMx85n0ru4cbx0TUfg4c5OOn4bMBzsJBJLy29KrnGP3zEc2s+ysSfCz7gStMC+CU+C+kSq3KvDC0WWn0qJFNCaq8WSlpmFswvJWvc2dk/E3Sy8lOhrBR85G0hB9wlS5kBH5Xcr3PK5rxV+oZX1aADIOYA7hvpx6cAl0xp50EnkiVGe1AaIwUMotkl84ZZCSI6FkkT5x39vQ8O2bcFeKzkc0hWRf6g1LXL9yaGXD29RVJQ/CYzttqud1JfYUpKIJ2Xgp1MztnG7a5EFGMBRepx6RmmnRFGlxtNnETr58Mh/WwnuvgL/ajHSLYQUn7xcZ4CYSt3U5k5MRBdkIu5tF7Vob3McmPBrv9WerW3BByEUJQT0knPdQGpw9p55VOyb8/Qaag2BXvf7GDsTR0mz1OVAEWKPzrzg6IMVfxR4VGgF8MXu1x4Zzx7YwotHoUS4e0uR3WRpjAnoHRsqg72AZZ4I/miFxwPkJc30qLtwtgMfL306/N9zkLiNZYelKe9+w4wvrMn5WZnHNfRIxsHBO77afyzsvdU9rij97Okd5aU3H7bNzrOcUMWI7FLaXE6sdfWGht6gPNqfHHWDsZtr7dSSwteskvsjShSHG/1RcWE+axTA4KldP8NOOqnpRE0nI0LLaMZPeJxI4NcXHZ6qqLFW1RM1sUntphD1F6CcZA8cdkonypuNQSt9TRIFdcT3sWuxRWXG52Afg06GsBhv7WyKyy2iS+9z90ojnG+R0D5k9QUIkpMxmkMO5kUVvl18DiVYJEGo+tZ/xVVI6vJ2Bp0/aToOwrhNVU/SJM/P1yx2gflyUrqqNUIQerUwQbNw5uWeugUWqX0woRUTfvr6p1lOTVVJbIr5KQpcHSSqx0wB3mxP66uJqRlpnqqx22zaQcvgS2tXPw+5TGSUmMVuzY9bRsb0ZmecubB3kiPpv/NU9CrKX/FLtCHJNJCpfJlDK8QXquWUAlFw2jIcafEogzCtdCoscOpuLXbri+9wYjxAxPKhqXXrdZ36D3q6/6OqPi8TVXKQywlj41Q7/galrdVc0PZpt9hB2S1JW873iLZlnSQEFtZUpB/bVpVtFxLUOKmUI7uC9Fpiv9tvFMF9wrUveVZyfWOAL6FtCDLcEhuwar6snoQkF/eNzr8CTvww2kvvGYR9LqPq4W9aSCJ+aPAPfyz6gicLW2ORvmtr61jMPU5+yjAdr/FjoDVOyTVDK2XGCpcy2VjcJIkMvc91370WW88TS4u6S79Cn2Sj8Q= +api: eJztV99v2zYQ/leIe9oA1XK77kVoCyRxu6XbGqPJ0IfYGM7iOWYjkQpJpTME/e/DUT8iz07quHnoQ5/iULy7j3cf7z5W4PHKQXIJE/S4QEcO5hEUaDEnT5Y/VaAxJ0igsOYzpf5UQgRK8wL6FUQgyaVWFV4ZXiy1uilJKEnaq6UiK8xS+BWJ1lyc/DWFCCzdlMqShMTbkiJw6YpyhKQCvy44mvNW6Suo66gHIBeI7ivhJ8eI50Jp51GnJFKjPSqt9FXAINtTCm+EJZSjQ5G0fj7wvw/B4f1dAp4q+ALT67J4VOjG5FsDY6Ge3ZJ17L+NfFOSXW+FvliR4ADkPElxND0Vd2b3BWIfSywzDwk8h7qeM0ZXGM2cTCp4MR7zn81AZ39ABFxj0j64pH99XGTI2KrtUGbBDISIqVyQ9apx7SkvjEW7/lPp650pAJRScUzMpgPTJWaOIvDKZ7y/u0PHIdvs7GN7gok3jZuiyFSK7Cn+7Mx3ijJk8XuFx45ejl9uc+GD8eKdKbV8EkqEr9sc1WWW4YKB8rWpe9h77HQefTlwDkp7uiILESyNzdE3S7+82GUsyaPK9orT9b49Nt9bk+ruZDC1ZpFRPgkI3LfT+EdmH8jsYVfvR0rvTSmb/bprdJxqT1ZjJs7J3pIVb601NtTgaHo6OTvpBuOm1W+kyaIncZ6uSJYZSdE0KiHNF50ZlCLj/hdBTn5lJA9n40LJeEYnELcyyMVVr6dqXrxVkqyLj2y5wFHXBOMgeeKqVT513GkIXhtokDpuJryLXYcrru50Qh136HgAh/M2yq60GSSw8r5wSRxjoUbI8dPMlHKUmhx4DDtKS6v8OlgcE1qykFzOh584G3lDxm5DX0/2vqUQ3nL2gzR5/+lCNDbCm2vSo04jBKnTOIvaH+866r3/dBFKpfTShFBt+ZvsneQFF1Wl1Cdy2iZ4dFSoLTB7WYnfLy6mrGVmeqYnXbH5BK9QrCwtX88gNgVpLFRfpmddYUd8p2cgPNor8q9n8M8iQ309gzfirCDNEmmpMnoV4xuIoFNLCTwfjUdjqKPAohxDW2jV2P5U3DhtX5fBYKyjhglVy9LLTus7iCAZ6v6eqBDBJlU5DrOULe6Ees/XsLypmlvKtvUOJ+BdG/K25+08ghVfpOQSqoqd/G2zuublRoIyN6Vy3C9kryn+d/BeFTwoUHem55rWWwL4FrOSd4ZLcotWNc3qUUB++tjq8J/Fng+nnfDaRdTrIa4O9l0BWcwfBO7xz6oDcHa0ORjl115bh2AacvZJgG2/xQ6ANbgk9byOYEUoQ1uu2g1HaUqFH5gOvc8H42l6ds699D99ko/E sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/get-d-baa-s.ParamsDetails.json b/docs/documents/database/get-d-baa-s.ParamsDetails.json new file mode 100644 index 0000000..9ef3b2a --- /dev/null +++ b/docs/documents/database/get-d-baa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the dbaas","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/get-d-baa-s.RequestSchema.json b/docs/documents/database/get-d-baa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/get-d-baa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/get-d-baa-s.StatusCodes.json b/docs/documents/database/get-d-baa-s.StatusCodes.json new file mode 100644 index 0000000..d43ee85 --- /dev/null +++ b/docs/documents/database/get-d-baa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/get-d-baa-s.api.mdx b/docs/documents/database/get-d-baa-s.api.mdx index 3a8a988..64fe533 100644 --- a/docs/documents/database/get-d-baa-s.api.mdx +++ b/docs/documents/database/get-d-baa-s.api.mdx @@ -5,7 +5,7 @@ description: "Get DBaaS" sidebar_label: "Get DBaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/get-database.ParamsDetails.json b/docs/documents/database/get-database.ParamsDetails.json new file mode 100644 index 0000000..bdda219 --- /dev/null +++ b/docs/documents/database/get-database.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database database to read.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to read.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/get-database.RequestSchema.json b/docs/documents/database/get-database.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/get-database.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/get-database.StatusCodes.json b/docs/documents/database/get-database.StatusCodes.json new file mode 100644 index 0000000..f15976e --- /dev/null +++ b/docs/documents/database/get-database.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/get-database.api.mdx b/docs/documents/database/get-database.api.mdx index 5ded395..721cdfb 100644 --- a/docs/documents/database/get-database.api.mdx +++ b/docs/documents/database/get-database.api.mdx @@ -5,7 +5,7 @@ description: "Get Database" sidebar_label: "Get Database" hide_title: true hide_table_of_contents: true -api: eJztV99v2zYQ/lcIPm2AY3ld+2J0BZI47bJijdGk2ENsDGfpHLGRSZWk0hqC/vfeUT+s1E7mOX3Mk+kT7+7jd0fyYyk93Dg5vpYT8LAAh07OBzIHCyv0aPlTKTX9kWOZW/MZY3+eyIFUmg3gUxon6GKrcq8MGz9p9aVAoRLUXi0VWmGWwqcoTv+eimkdYkheFr8UymIix94WOJAuTnEFclxKv845nfNW6RtZVYMOQbIAcP+Rf3ICcCmUdh50jCI22oPSFCmASJplbgbeCIuQHAypifOB/z6G6yr9eUkhV0d3VB2O3OQkzu16Z1JOgM5jIo6n52Lj9lAijrGEIvNk+o3Szhmjy43m5qDZL0Yj/rmf6OI9+THXVPUQEr/5KM+AsZXbqcyC24BcqKdytF7VoevlbQPSRZbBIsOao4oyEXucmbp2p8PS2BX4ujx45FWoze4omJys98hJ0yFJFCeFbNpDvYTMUdm88jxXTrhF2830seFt4o0MEfI8U3FAHn125pmbHjehY55J6ZPCMV6OXm7vtg/Gi7em0MnP2HT11z04bBDvMZPOXl/0gtMR5fEGbZ9oMv3+YpdzgnRgZ3vlaU/5p5Sj3KxMkp08VpOAwD15yz4z+xizB234Z0ofppTdXu26nM9pQZYiiUu0dP+LM2uNDTUgRTC5OG2lx32vd+hFey4RRNKDqSGVIm8wlIU1zlhGjSh0UdnJw4qNdyQArYuObbGAYRsmCgIuKhsdV0WtIGJbT0hVLE8C1lqAFpYolqn3uRtHEamfIXDcODNFMozNSrJIcRgXVvl18DhBsFTC8fW8/+mSu6xupHZCVwuOvqWfzpi5IBz/+udK1D4k3m5RD1sFxb6LOtigGbxt24acAs1KL01I1ZSuZuV0lXNBVIwdQdOGuOFxrrbA7OUl/ry6mrLSm+mZnpivOjOQhBW8BpFaXP4xkxE1lCYWO/qP2oINeT/OpPBgqcw09d9FBvp2Jt+IC/JhAblUGb6O4A3Ba7Uk6cThaDiStNLcOL8Cvbmbf2yje0vqyO/dXBQklLtsWuy6fXc48h733yBdl9H4fp9xHm4x9ti8GbpmC+a+bqcWSQk4JytLtn6yWVWxuZbV3FGJcrxDk+4C/2El3T38qOjeud5bXG+J+jvICp4ZWvsOrKqPh/8F5JePzdviV7Hvq2wnvsYIet0H1uLelIRfKAehe8Kb7QDAbUccDPehp9whWPptWM1pfkrBwslVNlOO4xhz33Pux5/3DuZ3Z3zafAd4FHkj +api: eJztV01v2zgQ/SvEnHYBxUq73YvQFnDitJsutjEaFz3ERjGWxjYbmVTIkbuGoP++GH3YSu1kXafHnOJQnJnHN4/kYwGMcw/RDQyQcYqePEwCyNDhkpicfCrA4JIggszZbxTzZQIBaCMDyAsIICEfO52xtjL42ei7nJROyLCeaXLKzhQvSJ3/M1TDOkUPAnB0l2tHCUTscgrAxwtaIkQF8DqTcp6dNnMoy2CDIJki+v+pPzhDvFbaeEYTk4qtYdRGm3kFImmWuf3BVjnC5GhITZ6P8u9juEaLX1cUM32yIuclc1PzLie33ltUCpBnSlR/eKm2YQ8VkhwzzFOGCF5AWU4Eo8+sEXFEBbw8PZU/9wtd/Q0BCNdkuEpJ/3KYpSjYit1SdioygEA0lZFjXaeul7cLyORpitOUao7KAGJHKJUHyHsDZtYtkev20Anrqjf7s1Bytj6gZhkAJomWopgOO6hnmHoKgDXLXBiIRNvN9KnhbcAWqgxZluq4Qh5+8/aZmw43lWKeSemSIjlenb7a3W0fLat3NjfJr9h09dcDOGwQHzDTM3LeSQ7aMM3JdYnWhv94uS84IUadHlSnPeWf0o5iuzIYOjtNaTmoEPgnb9lnZh9j9qgN/0zpw5RK2J/7LudLw+QMpuqa3IqcunDOuqoH/eHl4Oq8tR73o94Tq/ZcggCWxAubQARzqtoiHieCsDGFPiw29rCUwZVOyPmw7/Ip9to0YWXgwqLxcWXYGiIZ6xipUuxJhbU2oLlLIYIFc+ajMMRM91DyxqnNk15slyAmxVOcO83rKuKM0JGD6GbS/XQtKquF1E7Y9EKy7/inC2GuMo4fvoxUHaPY3pLptQ5KYqd1sqD58a6VzYcvo4pmbWa2KtW0rmblfJlJQ3RMG4KGDXG9fqZ3wBwUpf4ajYbi9MZmbAb2u0ktJtUKXqNaOJq9GUNoMzKY6Q39J23DerIfx6AY3Zz4zRi+TlM0t2N4q64yMmIgZzql1yG+hQBaLxnBi95p7xTKADLreYlmezf/KKN7S9qQ37m5yqBud9FI7KZ9d3gIIOq+QTYqgwDu60zqiMQkYvtm2IitGu769kkAC+tZihWFjH52aVnKcG2rRVGJ9rJDk80F/sNKNvfwo6Z773pvab1j6leY5jKzkvYKna6Ph58C8tun5m3xuzr0VbYXXzOIZt0F1uLetkReKEehe8Kb7QjArSKOhvvQU+4YLF0ZlpMygAVhUp1cRTOlH8eUcSe4m3/SOZjfX8hp8x94FHkj sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/get-grant-by-database.ParamsDetails.json b/docs/documents/database/get-grant-by-database.ParamsDetails.json new file mode 100644 index 0000000..6282c7a --- /dev/null +++ b/docs/documents/database/get-grant-by-database.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the databaseName.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to get the user grant of.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to get the user grant of.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-database.RequestSchema.json b/docs/documents/database/get-grant-by-database.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/get-grant-by-database.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-database.StatusCodes.json b/docs/documents/database/get-grant-by-database.StatusCodes.json new file mode 100644 index 0000000..ee53e59 --- /dev/null +++ b/docs/documents/database/get-grant-by-database.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-database.api.mdx b/docs/documents/database/get-grant-by-database.api.mdx index c8bc444..20b1a09 100644 --- a/docs/documents/database/get-grant-by-database.api.mdx +++ b/docs/documents/database/get-grant-by-database.api.mdx @@ -5,7 +5,7 @@ description: "Get Grant by Database" sidebar_label: "Get Grant by Database" hide_title: true hide_table_of_contents: true -api: eJztWE1vGzcQ/SsETy1ga9U0vQhpANtyXLdoLNgOerCEYrQ7khivyA3JdSss9N87w/3QKpJtRTaai06WuZyZx5lHDh8L6WHqZO9OXljQ3snRkczAwhw9Wh4vpKZ/ZE9m1nzG2F8m8kgqzQPgZ/Q7QRdblXllePCTVl9yFCpB7dVEoRVmIvwMxdmfA1G56JCVxS+5spjInrc5HkkXz3AOsldIv8g4nPNW6alcLo8aBMkYwD0Tv38KcCOUdh50jCI22oPS5CmASMDDGBx+JId7o2j5eBLKbSug8EZM0QcQuaOsTDnblJt9UbATvQuCeuKrI4BMHT8QRzhUBYIqbxdbUXAAdB4TcTK4FCuzxwKxjwnkqaehnyjsiDG6zGiHjme/6Xb5z3qgqz/IjitO3Asu8V8fZSkwtmIzlBkzGcmEaJmh9ap0zcnZbVaZiE3oOk9TGKdYZpNyJiFJFIOEdNDyMoHUUbK98jxXfiKXfW8kza9p8zyOV8bQrwJXOKxJ/38M1xS0ih9bBJ5PsLZGmBg7B19uSjz2KuyHr8JWXjA5XbxmovgsqrPFlQvH53XF0QCfXWVZquKwhOizMwceHnj4XXgYTsIDAQ8E/D4EZGdvu283O/ZH48UHk+vkNRp3+fXZhTXQd5hJt0ift5zTNcfjlLZFK+M09PObbcYJ0tUz3SlOfV99SV2K1cokjZPFvB8QuBe3okNmn8rsXofrIaWPp5TNftl2wb+kBVGzScUNWtIQ4txaY0MNSFX0r85q+bJudUGqJxxKYrwQ9UlFWEnizgxJHkmyiOvDCqono0qkuqhoFO+SBx9I01oXndh8DJ3aTRQ0aVRU0nQZ1Q2Lx1pCcRkFuUWjdb9csvoJyyhVdm4p+3LmfeZ6UUTiqgMcKU5NnnRiM5esgRzGuVV+ESxOESx36LtR+9MNE7DkWD2hKRN735Bn55zUIAt//+tWlDYkFu9Rd2qBxrbj0tlR9eNDzSgyChVQemJCqKqqZZ7O5hnXSsXYpGxQpbJzkqkNMDtZid9ubwcsJId6qPvmH50aSMIK3oGYWZz8OpQRcU1TFpuCHNcl7PBWHUrhwVLhaerf4xT0/VC+F1dkw/p0olJ8F8F7gldLVZKhnW6ny704M87PQa8a/qMMW1tbU4VWdyNvoe5Fxb67+pXFkXWv/eLSEJB+r1OQ4zD72GL1QtLwMAyvP1mUVOQPzeWNCDSjZTGCogid3KbLJQ+Xmp75lijHWztprgBfLa9p4E8q/q1JuMfFxovCA6Q5zwzEfwCrynPlm4D8cF09bPwodn2Y2oqvGgS9aAOrca/qxM8je6H7tmerPTDWzNgb4c6vWfuAa/PzRQh3eu3aA2GzUZYjmjtDSMLJW1SfT+IYM98ybPsetVrNxTmflv8BKDd1fA== +api: eJztWE1v2zgQ/SvEnHYBxXK73YvQFkjiNJsutjGSFD3ERkFLY5uNTCrkKLuGoP++GOrDSu0krhO0F59sUJyZx5knjt4UQHLmILqGUys1ORgHkEkrF0hoeb0ALRcIEWTWfMOYzhIIQGlekDSHABJ0sVUZKcOLn7W6zVGoBDWpqUIrzFTQHMXxP0NRu+hBABZvc2UxgYhsjgG4eI4LCVEBtMw4nCOr9AzKMmgRJBMp3RPxB0dSXgqlHUkdo4iNJqm00jMPIpEkJ9LhJ7nAnVF0fDwK5aoTUJARMyQPIndoxYyzLcx0VxTsRG+DoNn44ghkpg7u0DoOVYO4zdEuN6LgAOgIE3E4PBMrs4cCsY+pzFOCCF5BWY4Zo8uMduh49+t+n3/uBzr/GwLgiqMm7xL/ozBLJWMr1kOZCZMRAmZ2hpZU5ZqTs92uKhHr0HWepnKSYpXNsgxAJolikDIddrxMZeowAFLEe+GzQzsgA2XQcuxpHC+MYVAHrnFYk/58DBcmbeLHFiXvH0jaGGFq7EJS9VLiASn/PnwXtvaCydHyJRPFd1GTLa6cvz4vao56+Owqy1IV+yOE35zZ83DPw1/CQ38T7gm4J+CvISA7e9N/s96xPxkSH0yuk5do3NXTJw/WQt9ipyNJecc5KE04Q9vNuNL0x+tNxgmSVOlWcZrv1efUpVidDIbWTFJcDDwC9+xWtM/sY5nd6XLdp/ThlLLZn5s+8M80cbNJxSXaO7TixFpjfQ0Oh2eD8+NGvty3OkUS/lISk6VobioIYIE0NwlEMENfH1ZQEYS1SHVh0SrekhfvVILWhYc2n8he4yb0mjQsamlahk3D4rWOUCxDL7dcWDT9smT1449RqezcphDBnChzURjKTPUkR4pTkye92CyANZDDOLeKlt7iCKXlDn097j66ZAJWHGs2tGVi72vy7IST6mXhxy9XorIRZG5Q9xqBxraTyllQ//nQMOrjlytfAaWnxoeqq1rl6XiRca1UjG3KhnUqe4eZWgOzlZX46+pqyEJypEd6YP7VqZGJP8FbKeYWp+9GEJoMtcxUW5CDpoQ9flVHIEjaGdK7EXydpFLfjOC9OM9Qsz6dqhTfhvI9BNBI1Qhe9fq9PvfizDhaSL1q+A8y7N7Z2ip0ulsZVHUvavZdN1MWBwFE3YlLS0AI4D4FOQ6zjy1WE5KWh375/siioiI/aD/exgHMjSNGUBS+k9u0LHm50vTMt0Q5frWT9hPgu+O1DfxRxb8xCTe4XJso3Mk0552e+HfSqupe+SEgv13Ug43fxbaDqY346kWpl11gDe5VnXg8shO6Hxtb7YCxYcbOCLeeZu0CrsvPZyHcatq1A8L2RSnHZQBzlIm/eYv68WEcY0Ydw67vcafVnJ7wbfk/KDd1fA== sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/get-grant-by-user.ParamsDetails.json b/docs/documents/database/get-grant-by-user.ParamsDetails.json new file mode 100644 index 0000000..6282c7a --- /dev/null +++ b/docs/documents/database/get-grant-by-user.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the databaseName.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to get the user grant of.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to get the user grant of.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-user.RequestSchema.json b/docs/documents/database/get-grant-by-user.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/get-grant-by-user.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-user.StatusCodes.json b/docs/documents/database/get-grant-by-user.StatusCodes.json new file mode 100644 index 0000000..ee53e59 --- /dev/null +++ b/docs/documents/database/get-grant-by-user.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/get-grant-by-user.api.mdx b/docs/documents/database/get-grant-by-user.api.mdx index 6dde669..b41e63f 100644 --- a/docs/documents/database/get-grant-by-user.api.mdx +++ b/docs/documents/database/get-grant-by-user.api.mdx @@ -5,7 +5,7 @@ description: "Get Grant by User" sidebar_label: "Get Grant by User" hide_title: true hide_table_of_contents: true -api: eJztWE1vGzcQ/SsETw0ga9U0vQhpANtyXLdoLNgOcrCEYrQ7khivyA3JdSss9N87w/3QOlJsRTaai06SqPl4nHnL2cdCepg52b+V5xa0d3LckRlYWKBHy+uF1PRD9mVmzWeM/UUiO1JpXgA/p+8JutiqzCvDix+1+pKjUAlqr6YKrTBT4ecoTv8aiipEl7wsfsmVxUT2vc2xI108xwXIfiH9MuN0zlulZ3K16jQIkgmAeyL/4ATgWijtPOgYRWy0B6UpUgCRgIcJOPxAAfdG0YrxKJSbVkLhjZihDyByR1WZcbWpNvui4CB6FwS14YsjgEwd3RNHOFUFgjpvl1tRcAJ0HhNxPLwQa7dvJeIYU8hTT0s/U9oxY3SZ0Q4dW7/u9fjjYaLLP8mPO07cCyHxXx9lKTC2YjOVmTAZyYVomaH1qgzNxdnNqizEJnSdpylMUiyrSTWTkCSKQUI6bEWZQuqo2F55tpUfKeTAG0n2NW2exvHCGAZV4gqHNen/j+GKklb5Y4vA9gRra4apsQvw5UOJR16F5+GrtFUUTE6WL1koPovqanHnwvF5VXE0wOdQWZaqOGwh+uzMgYcHHv4QHoaT8EDAAwF/DAE52Jvem82J/cF48d7kOnmJwV3+++TGGug7WNJbpM9bwek1x+OMHotWxWnpl9fbnBOkV890pzz1++pz+lKsdyZpnTwWg4DAPXsUHSr7WGX3OlwPJf12Sdnt120v+Be0IRo2qbhGSxpCnFlrbOgBqYrB5WktXx56nZPqCYeSmCwFn1CEk+Tt3JDckSSJuDesnvoyqgSqi4pG7a548Z70rHXRsc0n0K0Puyjo0aioZOkq4lFIv+uJuIqCxGKLlmRcseoJ8Et1nVuqupx7n7l+FJGo6gJniVOTJ93YLCRrH4dxbpVfBo8TBMuT+Xbc/uuaiVdyqzZo2sPRN2TZGRczyME/Pt2I0odE4h3qbi3M2HdSButUX97XTCKnUHmlpyakqrpZ1uh0kXGPVIxNuYZVGbvHmdoAs5OX+P3mZsgCcqRHemD+0amBJOzgLYi5xelvIxkRxzRVMaprflS3r8uP6EgKD5aaTqZ/T1LQdyP5TlySD+vSqUrxbQTvCF4tUUl+dnvdHs/gzDi/AL0e9FuZ9WBfTQdaE40ihZ4XFetu65sVR9799i1LQzz6/pB6nIdZxx7rW5HAP15qXQ6UFAx27XsLIs6ctsPZiyJMbpuuVrxcanjmWaIcP8pJM/K/2lozsB9V+FsLcIfLjRuEe0hztgyEvwerynPku4D8dFVdZLwSu15EbcVXLYJetoHVuNc94uuQvdB93zXVHhhrVuyNcOfbq33Atan4LIQ73W7tgbB5glZjsp0jJOHELaq/j+MYM99ybMcet8bL+Rmfkv8BAKpvpA== +api: eJztWN9P20gQ/ldW83QnmZj2ei9RWwkI5ejpSgRUfSDoNLEnyRZn1+yOuYss/++nWdvBNCmkAV1f8gRaz49vZ76dyUwJjFMP/Ss4cWjYw3UEOTqcE5OT8xIMzgn6kDv7lRI+TSECbeQAeQYRpOQTp3PWVg4/G31bkNIpGdYTTU7ZieIZqaO/hqox0YMIHN0W2lEKfXYFReCTGc0R+iXwIhd3np02U6iqaIkgHSP6J/wPDhEvlDae0SSkEmsYtdFmGkCkyDhGT59wTluj6Nh4FMplx6Fiq6bEAUThyampRFvZybYoxIjZBEEr+OIIMNd7d+S8uGpA3BbkFmtRiAPyTKk6GJ6qe7XvORIbEywyhj68gqq6Fow+t8aTF+nX+/vy56Gjsz8hAsk4GQ4m6V+O8wwFW7nqyo6FjBAJs3NyrGvTEpzNpOpArEI3RZbhOKM6mlUVAaapFpCYDTtWJph5ioA1iyx89uQGbKGKlhx7GscLYxg0jhsczmb/P4Zzm7X+E0co8gPktR4m1s2R60dJe6zDe/jGbWOF0sPFSwZKalEbLclcKJ/nDUcDfDGV55lOwhXir97ueLjj4U/hYaiEOwLuCPhzCCjG3uy/We3YnyyrD7Yw6Us07vrrkxdbQt9A0jNy0TEO2jBNyXUjrg3/9nqdckqMOtvIT/t79Tl5Ke9vBkNnxxnNBwGBf3Yr2kX2schuVVx3If1+SEXt93U/8E8NS7PJ1AW5O3Lq2DnrQg4OhqeDs6N2fHmodUKsQlFS44WSCgURzIlnNoU+TCnkRqanPsTNgOrjcjntVnJ4p1NyPj5wxRh7bbGLwzwal81YWsXSCn1cth2xisOIJRKdkbGSqSfAr6frwmXQhxlz7vtxjLnuoXhJMlukvcTOQWYfT0nhNC+CxiGhk858dd39dCHEq7nVCizTI9ZXxrJjCWYYBz9+uVS1jmJ7Q6bXDmaiO66NRc0/H1omffxyGSKvzcQGV0026xgdzXPJkU5oGa5hE8beQa5XwGykpf64vBzKADkyIzOw/5jMYhpu8BbVzNHk3Qhim5PBXMdtzPfa9PXkiY5AMbop8bsR/D3O0NyM4L06y8nIXDrRGb2N8T1E0I6ofXjV2+/tSw/Orec5mvtGv5ZZD+61zECno1VRnfOyYd1Vu1nxEEG/u2VZEg8ieEg98SOsE437rUjgnxx1lgM1BYNcd29xHcHMehbvZRk6t8uqSo7rGV54lmovTzldtvxvrrZs2I9O+GsDcEOLlQ3CHWaFSAbC36HTdR35ISC/nDeLjF/VpouotfiaQzSLLrAW932OZB2yFbofW1NtgbFlxdYIN95ebQOuS8VnIdxou7UFwuULqq6rCGaEaai4ZfP5IEko545i1/Z1p72cHEuV/A8Aqm+k sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/get-user.ParamsDetails.json b/docs/documents/database/get-user.ParamsDetails.json new file mode 100644 index 0000000..166b829 --- /dev/null +++ b/docs/documents/database/get-user.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database user to read.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to read.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/get-user.RequestSchema.json b/docs/documents/database/get-user.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/get-user.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/get-user.StatusCodes.json b/docs/documents/database/get-user.StatusCodes.json new file mode 100644 index 0000000..5704d17 --- /dev/null +++ b/docs/documents/database/get-user.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/get-user.api.mdx b/docs/documents/database/get-user.api.mdx index 5aa1ee2..ff903b3 100644 --- a/docs/documents/database/get-user.api.mdx +++ b/docs/documents/database/get-user.api.mdx @@ -5,7 +5,7 @@ description: "Get User" sidebar_label: "Get User" hide_title: true hide_table_of_contents: true -api: eJztV01v4zYQ/SsETy3gSN6PXoTtAkmc3U2LNsYmix5ioxhL45gbmdSSVFpD8H/vDPURpVayrtNjTpIozszjm+HwsZIebpxMruUXh9bJ+UgWYGGNnr+S60pq+pCJLKz5iqk/z+RIKs0D4Ff0nqFLrSq8Mjz4RatvJQqVofZqqdAKsxR+heL0t6mY1i4isrL4rVQWM5l4W+JIunSFa5BJJf2m4HDOW6Vv5HY76hBkCwD3nfiTE4BLobTzoFMUqdEelCZPAUQGHhbgUJS0VuGNsAjZoXDYR3h9Cs/Vqg7GE58bEAp1dEdZYc9NTOLabgaDcgB0HjNxPD0X92aPBWIfSyhzT0OvKOycMbrCaIeOZ78ej/nxMNDFr2THHFO2g0v828dFDoyt2g1lFpx+MqFaKtB6VbvuiBwApcs8h0WONU9bikYMcvQJ+EGDpbFr4EVQrvHIq5CfYS+YnWz2iEnTIcsUB4V82kO+hNxR6rzyPFdOuDwnTYXxZvrc8DfxRgYvRZGrNKCPvzrzwtEAR6GCXsgZIof9vB2/3d2FvxsvPphSZ//HZqz/7sFjg3qPmdSLfdlzTq3L4w3aPtk09Ob1kHGG1MDzveK0Xf85KanuVyZpnCzWk4DAPXsLvzD7FLMHbfwXSh+nlM1+Gjq0z2lB1C5zcYmWdIE4s9bYkANSCpOL01aSPLT6iF5wTyJ4pA1XhpSLvMGQEtY9iYwbgejiqpOKWx68IzFoXXxsywVEbXuLg5iLq0bTbWPu4fTdtvItS5WArxahpSVa5cr7wiVxTEooAvaX5qbMotSsJQsWh2lpld8EixMES3CT63n/1yVXVl087YSOf/a+o6XOmK0gHn/540rUNiTkblFHrZpi20XtbNS8fGhLhYwCtUovTQjVpKtm43RdcBJUih0x04aw6LhQO2D2shKfrq6mrPpmeqYn5i+dG8jCCt6BWFlc/jyTMRWRJhbjVhEftYmKeA/OpPBgKb009c9FDvp2Jt+LC7JhMblUOb6L4T3Ba3UlacZoHI0lrbQwzq8hbONGt/ZK58FyOuJ7JxU5CKmumrK6bu8djqyT/h2kqyx6f1hbHIfLii3u7wyhwHioUwtUFisCy0GqKpy5Nt9uebiW1VxFmXK8E7PusP7XCrrz9knRPbjOW9zsiPo7yEueGcr5Dqyq28B/AvLD5+Zu8aPY9zY2iK8ZBL3pA2tx36eCbygHoTvwrnYA2LYKDob62DXuACxd+W3nNHdFjkKXqprfx2mKhe8Z9n3Pe8334xl3ln8AkA10AQ== +api: eJztV99v2zYQ/leIe9oAxUq77kVoCyRx2qXDFqNJ0YfYGM7S2WYjkwp5ymYI+t+Ho35EaZzUc/aYpzgU7+7jd8fjdxUwLj0kV/DFk/Mwi6BAh2ti+S+5qsDgmiCBwtlvlPJZBhFoIwvIK4ggI586XbC2svjF6JuSlM7IsF5ocsouFK9InfwxUZPGxQgicHRTakcZJOxKisCnK1ojJBXwppBwnp02S6jrqEeQzRH9D+KPjxEvlDae0aSkUmsYtdFmGUBkyDhHT6r05BRb5QizfeGIj/DzKTyXqyaYbHxuQCz0wS05L57bmDcluc3WoBKAPFOmjiZn6s7ssUDiY4FlzpDAK6jrmWD0hTWevOx+fXgof+4HOv8dIhCOyXBwSf9wXOQo2KqHoexc0g+R1FJBjnXjuidyCyhT5jnOc2p4qiNIHaFEHyNvNVhYt0Y5RIZMB6xDfrZ7oex4s0PMOgLMMi1BMZ8MkC8w9xQBa5a9MJbyHLcVJpfpc8vfmC0EL0WR6zSgj795+8LRFo5CBb2Qs40c8fPm8M3DW/inZfXBlib7Py5j83UHHlvUO+z0jFwOnIM2TEtyQ7K14V9ebzPOiFHnO8Xpuv5zUlLdnQwmzs5zWo8DAv/sK/zC7FPM7nXxXyh9nFIx+3Xbo31mWNplri7I3ZJTp85ZF3JwNDkbn590kuS+1UdiJT0JIlgTr2wGCSwppER0TwJxKxB9XPVSsZbFW52R8/GRK+c46tpbHMRcXLWaro6lh/u46lp5LVIl4GtEaOlySGDFXPgkjrHQIxR/aW7LbJTaNYhg8ZSWTvMmWBwTOnKQXM2Gny6kspri6Tb0/Iv3B1rqVNgK4vHT10vV2Ci212RGnZoS23njLGp/fOhK5dPXy0CtNgsbQrXpatg4WReSBJ1ST8ykJWx0VOgHYHayUr9dXk5E9U3N1Izt3ya3mIUTvEW1crR4N4XYFmSw0HGniA+6RI3kDk5BMbol8bsp/DXP0VxP4b06L8iImFzonN7G+B4i6HRlAq9Gh6NDqCMorOc1hmvc6tZB6dw7Tk/84KWqoybVVVtWV93c4SGCZDiD9JUFEdyvLYkjZSUWdzNDKDBZ6tXCLIKV9SxBqiq8uS6va1luZLVUUaa93MSsf6y/O0H/3j4puree85o2D0T9Leal7AzlfItON23gPwH56XM7W/ysdp3GtuJrF9FshsA63HepkAllL3R7zmp7gO2qYG+oj41xe2Dpy6+e1RGsCLPQpar281GaUsEDw6Hv2aD5fjyVzvIvkA10AQ== sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-d-baa-s.ParamsDetails.json b/docs/documents/database/list-d-baa-s.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/database/list-d-baa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-d-baa-s.RequestSchema.json b/docs/documents/database/list-d-baa-s.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-d-baa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-d-baa-s.StatusCodes.json b/docs/documents/database/list-d-baa-s.StatusCodes.json new file mode 100644 index 0000000..9f7c383 --- /dev/null +++ b/docs/documents/database/list-d-baa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}},"additionalProperties":false,"title":"DbaasListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}},"additionalProperties":false,"title":"DbaasListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}},"additionalProperties":false,"title":"DbaasListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-d-baa-s.api.mdx b/docs/documents/database/list-d-baa-s.api.mdx index de961bd..a981131 100644 --- a/docs/documents/database/list-d-baa-s.api.mdx +++ b/docs/documents/database/list-d-baa-s.api.mdx @@ -5,7 +5,7 @@ description: "List DBaaS" sidebar_label: "List DBaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-database-backups.ParamsDetails.json b/docs/documents/database/list-database-backups.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/database/list-database-backups.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-database-backups.RequestSchema.json b/docs/documents/database/list-database-backups.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-database-backups.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-database-backups.StatusCodes.json b/docs/documents/database/list-database-backups.StatusCodes.json new file mode 100644 index 0000000..d55a35f --- /dev/null +++ b/docs/documents/database/list-database-backups.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DbaasReferencePropertiesResponseDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"description":"DbaasReference response class.","title":"DatabaseReferencePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"storage":{"type":"object","properties":{"size":{"type":"integer","description":"Size is in bytes","format":"int64","nullable":true}},"additionalProperties":false,"title":"StorageBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupPropertiesResponseDto"}},"additionalProperties":false,"title":"DatabaseBackupResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-database-backups.api.mdx b/docs/documents/database/list-database-backups.api.mdx index b841656..51ef1a1 100644 --- a/docs/documents/database/list-database-backups.api.mdx +++ b/docs/documents/database/list-database-backups.api.mdx @@ -5,7 +5,7 @@ description: "List DatabaseBackups" sidebar_label: "List DatabaseBackups" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-databases.ParamsDetails.json b/docs/documents/database/list-databases.ParamsDetails.json new file mode 100644 index 0000000..19e8805 --- /dev/null +++ b/docs/documents/database/list-databases.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the databases searching for.","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-databases.RequestSchema.json b/docs/documents/database/list-databases.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-databases.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-databases.StatusCodes.json b/docs/documents/database/list-databases.StatusCodes.json new file mode 100644 index 0000000..f02680f --- /dev/null +++ b/docs/documents/database/list-databases.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabasesListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabasesListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabasesListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-databases.api.mdx b/docs/documents/database/list-databases.api.mdx index bd7ca26..de70ad8 100644 --- a/docs/documents/database/list-databases.api.mdx +++ b/docs/documents/database/list-databases.api.mdx @@ -5,7 +5,7 @@ description: "List Databases" sidebar_label: "List Databases" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnNoZWVRTtwdNmhnbclr3ZU3sTA+WpgORSwsxBDAA6FbD0X/vLvgQFUkWq+SQg06iwH1h9+MC3xbci0fHhw98JLyYCQeOT3s8E1YswIOlVwXX+IcPeWbNB4j9TcJ7XGpaEH6Ozwm42MrMS0OL77X8mAOTCWgvUwmWmZT5ObCrP8ZsXJroo5aFj7m0kPChtzn0uIvnsBB8WHC/zMid81bqR75a9ZoIkpkQ7oD/0aUQd0xq54WOgcVGeyE1WgpBJPU2mQNh4zmtp8YeG1AqFWapjgf3bZe8m6Yz1h+jVxWB9nqEtklTB4f9Su3hMewLc7MQvlz6/tWGLSUX8guZEpk8e0a07djVZnHvsYRUJ3AeEnYxvmFrtX37JxupyBW5/g7dTqnULjOawI7SrwYD+tl0dPsb6hF2EMXBJPzro0wJiq3YdmVmVBRUwfJkYL0sTXvjhTqYjB/P+QrDB5XuCl7nSomZghKWK3IBz50ENcbcSTCV1nWTVKKj4LNQeZWDUlRYK6ie0sPCHc5cCYwOjmILgmqG/WunQpNo/PLhzEs0u88KJJfLDj5RXCSJJKdCjVtRp0I57BteepLlI2pWdVt9VyFu5A1C8CgT7nfp/KYdNJNlSsYhA9EHZ07oPKHzK0Jn6JonWJ5g+TXBkgydD863z/w/jWdvTa6TL3L0h7cdalGF3UESb7Q+dwe/DLxb7VBOAK/BqpOf+u78OWUt1jvjuI4ai1GIwH3+sXXK7AuZPa7lnlK6N6Wk9sMuinCDG7Joid2BRRbCrq01NtQAecno9qrmkZta1I/Ymmz3OPLsuUHSyR8DMQucdsijiue5qGho94oWn5FYWxdd2Hwm+rWdKBDjqKj48SpKWg5cCK9k8rnFrPK595kbRhHSrr4gQ7EyedKPzYITO3IQ51b6ZdC4RJqMVRs+TNuv7ghYJXZqgSb9ZH2LuF1TsgID//Wve1bqMG+eQPdr6ka6s9JYr3p4WyMFlUJmpU5NcFVVq0zD1SKjGsgYmoyMq0z1LzK5FUwnLfbL/f2YKOZET/TI/KOVEUnYwWvB5hbSnyY8QgxpzGKT77O6Qn36BCeceWGxrij690wJ/TThb9gt6hBzTaWC15F4g+HVJBYJan/QH9DNJjPOL4ReH+vbyNnYVJP+1nGFZkLBiwpVD/X0gLSH7XFOAyx83oQW+SFUkcZ6/JK0p0VzQ/ebB14UtPTeqtWKlksGTxhKpKPPMGmO6idYtocn4d6DC5xGAnuEq3lJF9GNEUkXhWYq0kW4Hnu8LPtJbZrrxIsTjJ0VLL1uTkjWvqf0x8qyy+1K9d5AvnlXzbu+ZV1Hdjvjq6+qetkO7JNaIGj+X5pa0R090Dsi3BrhqymKzkEkofUV1duLOIasXfu26Wmrlf98Te3qP4d/YAY= +api: eJztWEtv2zgQ/ivCnHYBxUrT7B6EtkASp7vpPmI0KXqIg8VYHNlsKFIlqWwNQf99MXrYcuMkWreHHnyKQ86L830acqYEj3MH8Q2M0eMMHTm4DSFHixl5srxVgsaMIIbcmk+U+AsBIUjNC+gXEIIgl1iZe2l48YOWnwsKpCDtZSrJBiYN/IKCs78mwaQxMYIQLH0upCUBsbcFheCSBWUIcQl+mbM7563Uc6iqcBWBmCG6Z/yPTxGvAqmdR51QkBjtUWqp53UQojtm4AhtsuD11NhdA0ql8mS7eD4XZJcwTNMZ63fRa0Hgs+6gbdLU0fN+pfY0r8+VGpuhb5ZeHm3YUjKT38kU5vLgnqzbcqpNcK8XFDBO5DyJ4GRyEazVHjs/20ixUOz6BVTVLUPtcqOZ7HEJR4eH/GfT0eUfEAJzh7SvTdIXH+UKObbyoSszY1AgZHhysl42pr3xqJ5Nxq/HUIXgSKXbgteFUjhT1NCyYhd0P0hQ0xc/SDCV1g2TVDhQ8B5V0eagEUVrkfGUnjL3fOYaYgxwlFhCxmyMfqvCKtECPR14mdGjVkicLgf4rEJAISQ7RTXpRZ2ichSCl55lYczFqiur71vGjb2BajcT7k/p/KadEDDPlUzqDESfnNmzc8/OH4idddXc03JPyx+Jlmzo+PD44Z3/t/HBW1No8V2u/np3ABZt2AMknUdfuGe/jJdH25QFeZRqkJ/u7fwtsJbrk8HEmpmibFxH4L792tpn9onM7lZy9yl9NKWs9su2FuFCe7IaVXBF9p5scG6tsTUGJ5OL8eVZ10duanE9CtbNdggZ+YUREMO8bszqnjaGqO3zXFSu2u6KF++lIOuiE1vMcNTZierGOCrb/riKRM+Bq8NrOvnCKohh4X3u4ijCXI6QDSXKFGKUmAy4O3KUFFb6Za1xSmjJQnxz29+6YmI13OkEVuln6w8at3NOVt2Bv/t4HTQ6gTd3pEdd68a6s8ZY2P542zHl3cfrOrNSp6Z21aLVpOEsyxkDmdAqI5M2U6OTXD4IZpBW8Pv19YRbzKme6rH5VyuDoj7BKwwWltLXU4hMThpzucr3QYfQiD/BKQQe7Zz86yn8M1Oo76bwJrjMSXPnmkpFryJ8AyF0TWwML0aHo0N+2eTG+Qz1+lp/yJyNQ63S37uuqrABvGxZddNND1g77o9zVsSCEDapxX6YVayxHr+I/rRoYfh9cwNlyUsfrKoqXm46eOaQkI4/Q7G6qu9o2R+e1O8eiAF4JPCIcDsvGSK6MSIZorCaigwR7sYeT8t+hc3qOfHkBGMrgo3XzQnJ2vct/2NlU+W2pfrRQH563867fg6Gjuy2xtc9VfWyH9hXWFyI/5mmXnQ7D/R2CLdjeHVbhbAgFHXpK9vdkyShvI993/Rtr5T/ds7l6j+Hf2AG sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-grants-by-database.ParamsDetails.json b/docs/documents/database/list-grants-by-database.ParamsDetails.json new file mode 100644 index 0000000..018a4c0 --- /dev/null +++ b/docs/documents/database/list-grants-by-database.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the databaseName.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to get the grants of.","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-database.RequestSchema.json b/docs/documents/database/list-grants-by-database.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-grants-by-database.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-database.StatusCodes.json b/docs/documents/database/list-grants-by-database.StatusCodes.json new file mode 100644 index 0000000..fc9d2d4 --- /dev/null +++ b/docs/documents/database/list-grants-by-database.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-database.api.mdx b/docs/documents/database/list-grants-by-database.api.mdx index cee1993..b9dfd13 100644 --- a/docs/documents/database/list-grants-by-database.api.mdx +++ b/docs/documents/database/list-grants-by-database.api.mdx @@ -5,7 +5,7 @@ description: "List Grants by Database" sidebar_label: "List Grants by Database" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cIPm1AaqVdtgejK5DEaZdtbYwkxR4SY6Clk82GJlWSymYI/t93R31Yjp1YdYK91E+Wqfv48e54JH8quBcTx/s3/IMV2js+OuCZsGIGHiyNF1zjH97nmTVfIPbnCT/gUtOA8FN8TsDFVmZeGhr8rOXXHJhMQHuZSrDMpMxPgZ1+HLLKRA+1LHzNpYWE973N4YC7eAozwfsF9/OM3DlvpZ7wxeKgQZCMhXBb/A9OhLhiUjsvdAwsNtoLqdFSAJEIL8bCwSc0uDOKlo0noVy3HDJv2AR8ADEJgca47IoglQqTU/vGcNs576bpjPW76FWJo3ntoG3S1MF2v1J7mIR5pcbOhC+HfnqzYkvJmXwhUyKTr+6xyDfMaj2RlCdwHhJ2PDxnS7XH5k82UpErcv0a3Y4o1S4z2oEj6TeHh/Sz6ujiD9SjksXFE0zCvz7KlCBsxborM6akoAqmJwPrZWnaGy/U1mD8csQXCB9Uugm8zpUSYwVlWS7IBdx3EtSIuZNgKq3rJqlER8F7ofIqBqWosFZQPqWHmdseudxhmDpJlSW0FRJiEkkiKb1CDVtWUqEcrnYvPcnyz2hy4A1lpO4Y23G8MIZB5bjCYY36/zFcotPKf2xBkDzC2uihqWUMGLzyMjTjtYoIViA5mb9koGgbqqNFmQs752W1ugP8Z9pyf0r3wCDayzIl4xCT6Isz+5awbwn7lvB9t4RwPtj3gn0v2PeC77wXkMWjw6P1K8Un49l7k+vkRW4W4W2HlVbh7yCJ93Sfu63tCK9uG5QTwMu96uSnZgSek+hiOTOO46gxGwQE7vkHtH1kn4jsbvvcPqSPhpTUft7EQJzjhHD3UuwK7D1YdmatsSEHx8PzwcVpTVOtalE/YmVrYuM5qxsWop2Bn5oERSaBAAo8WZ9HFZ/koqJhFRc0eC8TsC46tvlY9GozUeD9oqKi/xZRvQfSWIuMW0Qls0asTEBf0pe5xaDzqfeZ60eRyGRPkPlYmTzpxWbGiZtxEOdW+nnQOAFhaae/GbVfXVHdlaVVCzTZIetrtNEZxTIwfr//dc1KHebNHeheTRyR7rg0dlA9vK8LCZVC4KVOTXBVJbMMzuksoxTJGJo4Dav49Y4zuQamkxb77fp6SATXrb7VA/OPVkYkYQZvBZtaSH+95RGWmMYoNll4VeetRyv0ljMvLGYbRf8eK6Hvbvk7doE6xJulUsHbSLxDeDWF1ueve4e9Q9rTM+P8TOjlweGJwlqZXZOH1raG9kLmi6robmoSk+qj3yazm7rD59XKIz9UdKSxJJ+b8gvDq2zwpCHRp4ZOpTe8KMLebdViQcMlw0hVlkhH6zhpNv07wBdLcjecVnGAE2X5iHDF53YRXaFwuyg0rG0X4ZqWfVr2QdKa88iTDOvG1JZeVxncpe8R/bGybJObQv0okB8uKz7+R9b1S8ZGfPUFQ8/bwB7kAqvp28LUQvdt3zl2wFjX+84IO33+2AVYe8UtRig/BZGEfl1UIsdxDFm7HNv2R61d6cMZ9dj/AGcFXfw= +api: eJztWU1v2zgQ/SvEnHYB1UrT7h6MtkBat910d1ujSdFDHCzG0shmS5MqSWVrGPrvi6E+IsdOrDrBXupTHHo+HueNhtTzCjzOHAwv4K1F7R1cRpCjxQV5sry+Ao0LgiHk1nyhxJ+mEIHUvIB+DhGk5BIrcy8NL37S8ltBQqakvcwkWWEy4eckXv09FnWIAURg6VshLaUw9LagCFwypwXCcAV+mXM6563UMyjLqEWQThHdjvyjl4hnQmrnUSckEqM9Si31LIBI0eMUHb3HBe2NohPjTijnnYTCGzEjH0DMQqGFyfZFkEnlyTa5vxVkl9DP0xnr9/GrieN97eFtsszR7rxSe5qFfWXGLtBXS0+O12IpuZAPFApz+eiKrNuyq00imSdynlJxMj4V12637Z9jZFgoTv0YyvKSqXa50Y4cWx8fHfGf9UQf/oQIuGVJ+xCSvvs4V8jYVpupzJRJgYjpycl6WYX2xqPaWYzfn0IZgSOVbQOvC6Vwqqhqy5JT0FUvQ03ffS/DTFrXz1JhT8MrVEVdg8oUrUXmU3pauN2VKxzZflZVC+2EVEaAaSqZXlTjTpQMlaMIvPRsC58c2ZE3zEgzMXbjeGAMozpxjcMa9f9j+GhUkz+xhGw/Qr81Q9vLKXp65GUYxhsdEaJQ+nL5kIXiY6ipFjMXTs6P9dMd4N8zlvtLuhsBI8A8VzIJNYm/OHMYCYeRcBgJP/dICPeDwyw4zILDLPjJZwFHfHr0dPOV4r3x4o0pdPogbxbh2x5PWo2/h6Xz6Au3cxw9Od7mnJJHqXrlaRSB+xC9ut4ZjK2ZKlqMAgJ3/wvaobJ3VHa/c+5Q0ltLym6/bVMgTrXn00uJM7JXZMVra40NHJyMT0cfXjUy1boXzyNRjSYxXYpmYEEEC/Jzk8IQZkEACjrZEOJaT3LxqlUVS168kilZF5/YYoqDJkwcdL94Vct/ZdycgbzWEePKuFLWWJUJ6Cv5srAKhjD3PnfDOMZcDpDDJ8oU6SAxC2BtxlFSWOmXweMloeWT/uKy+9UZ913VWo1Byw5H35CNXnMtg+L37vO5qHyEN19JDxrhiH2nVbCo/vCmaaR3n89D4aXOTEhVk1kV59UiZ4pkQm2dxnX9Bie53ADTy0v8cX4+ZoFroid6ZP7VymAadvAMxdxS9nwCsclJYy5bFh41vA34CZ2A8Ghn5J9P4J+pQv11Ai/Eh5w062aZVPQsxhcQQSOhDeHx4GhwxGd6bpxfoL6+ONzRWGu7a3noHGtlVDG/qpvuohExuT+GXTG77TuIYL3zOA83HXtci89t+4XldTV41oroc8O30gtYrcLZbVVZ8nKlMHKXpdLxc5y2h/5XWnbF3XBbhSEAS5a3GNd6bh/TNQm3j0Or2vYxbmTZu21vkNbeR+5UWLdSW2VdV3Cvc1/yP1ZWY3JbqW8F8svHWo//VfT9JWMrvuYFQy+7wG5wcZr+YJk66H7sd449MDb9vjfCXj9/7AOs+8SVl2UEc8I0zOtVbXKSJJR327Eb/7JzKr19zTP2P2cFXfw= sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-grants-by-user.ParamsDetails.json b/docs/documents/database/list-grants-by-user.ParamsDetails.json new file mode 100644 index 0000000..cc7bd4f --- /dev/null +++ b/docs/documents/database/list-grants-by-user.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the databaseName.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The user to get the grants of.","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-user.RequestSchema.json b/docs/documents/database/list-grants-by-user.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-grants-by-user.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-user.StatusCodes.json b/docs/documents/database/list-grants-by-user.StatusCodes.json new file mode 100644 index 0000000..fc9d2d4 --- /dev/null +++ b/docs/documents/database/list-grants-by-user.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"user":{"type":"object","properties":{"username":{"type":"string","nullable":true}},"additionalProperties":false,"title":"UserDto"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseDto"},"role":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"RoleDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUserGrantsListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-grants-by-user.api.mdx b/docs/documents/database/list-grants-by-user.api.mdx index dd74fc6..0a13be6 100644 --- a/docs/documents/database/list-grants-by-user.api.mdx +++ b/docs/documents/database/list-grants-by-user.api.mdx @@ -5,7 +5,7 @@ description: "List Grants by User" sidebar_label: "List Grants by User" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cIPq1AYqVdtgejK5DEaZdtbYwkRR8SY6Clk82GJlWS8mYI/t93R33Yjp1YdYK91E+Wqfv48e54JH8quBcjx7u3/IMV2js+OOCZsGICHiyNF1zjH97lmTVfIfYXCT/gUtOA8GN8TsDFVmZeGhr8rOW3HJhMQHuZSrDMpMyPgZ197LPKRAe1LHzLpYWEd73N4YC7eAwTwbsF97OM3DlvpR7x+fygQZAMhXBb/PdOhbhmUjsvdAwsNtoLqdFSAJEIL4bCwSc0uCuK3IENj0/BuEFnJMi8YSPwwfkoBBjjsavnVCpMSu0Xw2xnvJ2mM9bvolcljOa0g7ZJUwfb/UrtYRTmlRo7Eb4c+vnNii0lJ/KFTIlMHk6xuDfMaj2JlCdwHhJ20r9gC7XH5k82UpErcv0a3Q4o1S4z2oEj6TdHR/Sz6ujyT9SjUsVFE0zCvz7KlCBsxborM6SkoAqmJwPrZWnaGy/U1mD8esznCB9Uugm8zpUSQwVlWc7JBUxbCWrE3Eowlda1k1SipeBUqLyKQSkqrBWUT+lh4rZHjlZqO6myhLZCQkwiSSSlV6j+kpVUKIer3UtPsvwzmux5QxmpW9N2HC+MoVc5rnBYo/5/DFfotPIfWxAkj7A2emhqGQMGh16GRrxWEcEKJKezlwwUbT91tChzYce8qlZ3gP9MW+4v6R4YRHtZpmQcYhJ9dWbfEvYtYd8SfuyWEM4H+16w7wX7XvCD9wKyeHx0vH6l+GQ8e29ynbzIzSK8bbHSKvwtJPF+7nO3tR3h1W2DcgJ4qVet/NRMwHMSXSxmxnEcNSa9gMA9/4C2j+wTkd1tn9uH9NGQktovmxiIC5wQ7l6KXYOdgmXn1hobcnDSv+hdntU01aoW9SNWtiY2nDFqVIh0An5sEnw9CuRP4Me6PKq4JBcVDZM4p8GpTMC66MTmQ9Gpe14UuL6oqCi/eUS7K/6vN9l5VLJpxMQExCVVmVsMNB97n7luFIlMdgSZjZXJk05sJpz4GAdxbqWfBY1TEJZ299vB8qtrqrWynGqBJiNkfY0qOqf4BZbvjy83rNRh3tyD7tRkEekOS2MH1cP7unhQKQRb6tQEV1UCy6CcTTJKi4yhiU+/ilvnJJNrYFppsd9vbvpEat3pO90z/2hlRBJm8FawsYX0tzseYVlpjGJUnz4O63x1aFXeceaFxSyj6N9DJfT9HX/HLlGHuLJUKngbiXcIr6bNuvx156hzRPt4ZpyfCL04LDxSTCsza3KwtI2hrZD1oiq025q0pNroLpPWTa3h82q1kR8qNNJYkMyh5GhoifEdNST52NDp85YXRdijrZrPabhkEqmyEulovSbN5n4P+GJB4oZTKQ5woiYfEa542zaiK1RtG4WGnW0jXNOvT8s+SFZz7niSSd2Y0tLrKlO78D2gP1aW7XBTqB8F8tNVxbu/Ym2/VGzEV18k9GwZ2INcYBV9X5iW0H3fd4wdMNZ1vjPCrZ84dgDVrLT5AGXHIJLQm4vq9UkcQ7Zchsu2B0s7z4dz6qf/AQujT+A= +api: eJztWd9v2zYQ/leIe9oAxUrTbA9GWyCJ0y7d1hhJij7EwXCWTjYbmlRJKqth6H8fjpIcO3Zi1Qn2Uj/Foe7Hx7vjHfVpBh5HDrrX8MGi9g5uIsjR4oQ8WV6fgcYJQRdya75S4s9SiEBqXkA/hghScomVuZeGFz9r+a0gIVPSXmaSrDCZ8GMSJ3/3RW2iAxFY+lZISyl0vS0oApeMaYLQnYGf5uzOeSv1CMoymiNIh4hug//eMeKlkNp51AmJxGiPUks9CiBS9DhER59wQtuiKBzZ8PMpGFdjEiwovBEj8sH5KARYmGxbz5lUnmzj91tBdgrtNJ2xfhu9OmG8py20TZY52uxXak+jsK/M2An6aun1wZItJSfyhUxhLvfuyLo1u1pNIueJnKdUHPXPxL3aY/tnGxkWil2/grK84VS73GhHjqUP9vf5z7Kj8z8hAi5V0j6YpO8+zhUyttmqKzPkpEDE6cnJelmZ9saj2hiM3w+hjMCRytaB14VSOFRUlWXJLuiulaCm776VYCatayepsKXgHaqijkElitYi51N6mrjNkeOT2k6qKqGNkMoIME0lpxdVf8FKhspRBF56loXPjmzPG85I05o243hhDL3acY3DGvX/Y7gwqvGfWEKW76Ff62Feyyl62vMyNOKVighWKD2evmSgePw00eLMhYl5UZ/uAP+Zttxf0j0wGAHmuZJJiEn81ZldS9i1hF1L+LlbQrgf7HrBrhfsesFP3gvY4uH+4eorxSfjxXtT6PRF3izC0xYnrcbfQtJ59IXb2I5eH6xTTsmjVK38NEzAcxI9u98Z9K0ZKpr0AgL3/AvaLrJPRHa7ObcL6aMhZbXf1jEQZ9rz9FLikuwdWXFqrbEhB0f9s975SUNTLWtxPxJVaxLDqeBGBRFMyI9NCl0YBfIn8GNdiGsuycWzOZNY8uKdTMm6+MgWQ+w0PS8OXF88qym/Mubp6uJZM2TLuGLTmIkJiCuqsrAKujD2PnfdOMZcdpDNJsoUaScxE2A+xlFSWOmnQeOY0PJ0v75ZfHTJtVaVUyMwzwhbX6GKTjl+geX7+OVKVDrCm1vSnYYsYt1hZSyqf7xviufjl6sQbKkzE1zVCayCcjLJOS0yoXl8+nXcOke5XAHTSkv8cXXVZ1JroAe6Z/7VymAadvAGxdhS9nYAsclJYy7j5vax1+Srw6dyAMKjHZF/O4B/hgr17QDeifOcNHNlmVT0JsZ3EEFDm3XhVWe/s89zPDfOT1DfXxYeKaalnc1zsDDGyqjK+qwutOuGtOTa6C6S1vNagwiWq439cKGxxj3JHEqOlxYY39GcJB8bvn1ew2wWZrRVZcnLFZPIlZVKx+c1nQ/3W5oukrjhVgpdAKYmHxGueds2oktUbRuFOTvbRrihX5+WfZCs+b3jSSZ1bUorr8tM7b3vG/7Hyqodrgv1o0B+uah5919F2y8Va/E1LxJ6ugjsQS7O0h8M0wK6H/uOsQXGps63RrjxE8cWoOYnrbwpIxgTpqE3z+rHR0lC+WIZLtq+WZg8H065n/4HC6NP4A== sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-scheduled-backups.ParamsDetails.json b/docs/documents/database/list-scheduled-backups.ParamsDetails.json new file mode 100644 index 0000000..bdda219 --- /dev/null +++ b/docs/documents/database/list-scheduled-backups.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database database to read.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to read.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-scheduled-backups.RequestSchema.json b/docs/documents/database/list-scheduled-backups.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-scheduled-backups.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-scheduled-backups.StatusCodes.json b/docs/documents/database/list-scheduled-backups.StatusCodes.json new file mode 100644 index 0000000..41b64bd --- /dev/null +++ b/docs/documents/database/list-scheduled-backups.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledMetadata"},"properties":{"type":"object","properties":{"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDbaas"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDatabase"},"datacenter":{"type":"string","nullable":true},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int64","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledStorage"}},"additionalProperties":false,"title":"DatabaseBackupScheduledProperties"}},"additionalProperties":false,"title":"DatabaseBackupScheduledResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupScheduledListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledMetadata"},"properties":{"type":"object","properties":{"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDbaas"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDatabase"},"datacenter":{"type":"string","nullable":true},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int64","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledStorage"}},"additionalProperties":false,"title":"DatabaseBackupScheduledProperties"}},"additionalProperties":false,"title":"DatabaseBackupScheduledResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupScheduledListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledMetadata"},"properties":{"type":"object","properties":{"dbaas":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDbaas"},"database":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledDatabase"},"datacenter":{"type":"string","nullable":true},"storage":{"type":"object","properties":{"size":{"type":"integer","format":"int64","nullable":true}},"additionalProperties":false,"title":"DatabaseBackupScheduledStorage"}},"additionalProperties":false,"title":"DatabaseBackupScheduledProperties"}},"additionalProperties":false,"title":"DatabaseBackupScheduledResponseDto"}}},"additionalProperties":false,"title":"DatabaseBackupScheduledListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-scheduled-backups.api.mdx b/docs/documents/database/list-scheduled-backups.api.mdx index fefae81..608acc6 100644 --- a/docs/documents/database/list-scheduled-backups.api.mdx +++ b/docs/documents/database/list-scheduled-backups.api.mdx @@ -5,7 +5,7 @@ description: "List Scheduled Backups" sidebar_label: "List Scheduled Backups" hide_title: true hide_table_of_contents: true -api: eJztWUtz2zYQ/isYnJoZWXRStwdNkhnbclq3TayJnenB0nRWJCQhpgAGANWqHP737oIPUbZss5IPOfBkGtrHh90PS3A34w7mlg9u+RAcTMEKyyc9noCBpXDC0E8ZV/gPH/DE6K8idJcR73GpaAHcAp8jYUMjEyc1LX5R8lsqmIyEcnImhWF6xtxCsPOPIzYqTPRRy4hvqTQi4gNnUtHjNlyIJfBBxt06IXfWGanmPM97NYJoCmCf8T88A7hmUlkHKhQs1MqBVGjJg4jKbW4enGZGQLQ3pNLOJ/r3KVw3i5dzCok8WmF2yHLpE2Nu1judkgNhnYjY6eiSbdQec0Q2ZpDGDpdeo9sJYbSJVkQOlH5zfEx/th1d/Y56FGvMujcp/nFBEgNhyx660lOiAaogpxJhnCxMO+0gbohJtDcXBuVm2izBFUs/n/Ac4Yt4tgu8SuMYprEo4pmTC7FqJagQcyvBmTS2nWQMLQVXEKdlDApRMAYon9KJpX0+cnhagdj1vGRBoRaQQmQoZRcrw06FOiXoVxw56fl/zwqagSiSZAbiUQPHDGKLZHfSkWxdfc4gvEuTa6RLlMYi+ljtKn/AlCf36OvE82Kpke2I0S5kB2526EGjkapKvFguDwVW4SmxhXjG8VC2iZx12sC8xU6s/Fe0OfgvvbfrEuChdhoah5r6XBbbodNo60Bjf0jrtg2ivSSJZejPdvDV6q5CdxW6q9Bdhe4q9HdTof3tuSvNXWnuSnNXmrvS/P2UZrJ4cnzysP/xSTv2QacqepE2iP+1BUNK/K24BC61z5Lkxze7lCOsJDJu5afqux1ysLLNzjiuo8Zy6BHYwz9fusg+Edn9rh1dSB8NKan9tKtdekkvAbTEroVZCcMujNHG5+B0dDm8Oq+awdtaVI9YXZ1YUa0sgsULzEJHKDEXPkHUfx7woGzY2yCrW/c5La5kJIwNTk06hX5V+wL/3g+ysseeB9WblNYaTe48mBZ+A1shoWay30cxLkgNhp8vnEvsIAggkX0gT2Gs06gf6iWnlrIVId4g3NprnAkw9FK8nTR/op0uC5JVAnWeyPqDbvcFRdW3+X/784YVOszpO6H6Vb+bdKeFsV758KGiFCr5FEg1095VmdYiTufLhJIlQ1GHbFSGsn+ayAdgWmmxX29uRtSXH6uxGuq/Vawh8jt4C2xhxOzdmAdINoVRrBNyVKWwT2d1zJkDg4lH0b+mMai7MX/PrlCH2v0zGYu3AbxHeFXnf8Bf94/7x/5aqK1bgtrchh6n2Nbm6jQ03m9ozic+K+l3W82LSHvQnB3VDMTnbQ6SH3+RQ43NrKcmol/enrdMa4AbNiKFFpo+HW55lpHsFxPnOS0XQxJiXCQtne6ovgrc21/9Dn9yhLIzCndize+PaPwXCq566q/AyKK0/C8gP3wuJ0WvWNsZ20581TeSWjeBVbg3iaJ5017oDpjA7QG44snecB8bzO2DpUnOfILyCzTmK1tWipyGoUhcQ7lpf9Io5b9cUDX6D0lfZB0= +api: eJztWUtv20YQ/ivEnFqAFp3U7YFIAtiW0zptYiF2kIMlFCNyJG1M7TK7SzUuwf9ezPIhKpJtVvIhB54sL2dnvnnw2+VMDhbnBsJbGKLFKRoyMPEhRY1LsqT5UQ4SlwQhpFp9ochexuCDkLyAdgE+xGQiLVIrFC9+kuJrRp6ISVoxE6Q9NfPsgrzz9yNvVKoYgA+avmZCUwyh1Rn5YKIFLRHCHOx9yuaM1ULOoSj8BkE8RTRP2B+eIV57QhqLMiIvUtKikELOHYi4cnP9wypPE8Z7Q6r0fOB/H8N1s3g+o5iKoxVpw5orm18z0vc7jbIBMpZi73R06a23PWSIdcwwSyyE8AKKYsIYTaokF0eYw8vjY/6zaejqT/CBY03SOpX0zQZpgowt3zalplwG4HNNpaStKFVbZTFpiQlpaU4afJgpvURbLv12AoUPhpLZLvAySxKcJlTGs2ATtOokKOmb7SQ4E9p0k0ywo+AKk6yKQSmKWiPnU1hamqcjtySLXF1PS5Yl1AFSpAk5u0O0Ozc0KYnR0pEVrv6/01L4gHEsWA0moxaOGSaGfLDCsmzDPmcY3WXpdbSgOEsofl97VWxVyqM+Op54WizTolthdAvZgc4OHejCbyjl2XJ5KLAaT4UtImlJd4qcsUrjvIMnRvxLXV785/btugJ4qJ7WjkNVfazIdmgVFIcq+0sYu6nQB0zTRETu3Q6+GNUzdM/QPUP3DN0z9A/D0O723FNzT809NffU3FPzj0PNrPHk+GS7//FBWe+tymT8LG0Q97RDhVT4O9US2sw8WSS/vNy1OSaLIulkp+67HfJi5WvPYKTVNKHl0CEwh3++9JF9JLL7XTv6kD4YUt7266526SUfAhIT75r0irR3obXSLgeno8vh1XndDN7cxXzkNezklWxlwOcLzELFEMKcXIK4/xxCUDXsTZA3rfuCF1ciJm2CU51NcVBzX+DO/SCveuxFUJ+kvNZqchfBtLQbmBoJN5OdH+W4INMJhLCwNjVhEGAqBsiWokRl8SBSS+CWsqEo08Leux1nhJoPxdtJ+xF7uiyLrBZo8sTat7rdFxxV1+Z/9/nGK/d4Vt2RHNT9bt47LZX51Y+3dUm9+3zjUiDkTDlTVVrLOJ0vU06WiKgJ2agK5eA0FVtgOu3y/ri5GXFffizHcqj+kYnC2HnwCr2FptnrMQQqJYmpaBJyVKdwwO/qGDyLek729Rj+niYo78bwxrtKSXK7fyYSehXgG/Ch7vyH8GJwPDh210Jl7BLl+jb0cIltONekoXW+FX6Z+Lwqv9t6XsS7w/bsqKlA8GGzBtmOu8j5EK5nPU0huuXNecu0AbiuxokPC8WfDreQ5yz7SSdFwcvlkIQrLhaG3+64uQp8519zhj86QtkZhTu63xrRuC8UCMGV/gq1KKnlfwH56WM1KfrZ6zpj24mv/kaS921gNe51onjetBe6AyZwewCu62RvuA8N5vbB0i7OYlL4sCCMHbPllchpFFFqW5vb+ictKv/9gtnoP0lfZB0= sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/list-users.ParamsDetails.json b/docs/documents/database/list-users.ParamsDetails.json new file mode 100644 index 0000000..7398128 --- /dev/null +++ b/docs/documents/database/list-users.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database users searching for.","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/list-users.RequestSchema.json b/docs/documents/database/list-users.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/list-users.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/list-users.StatusCodes.json b/docs/documents/database/list-users.StatusCodes.json new file mode 100644 index 0000000..3e44301 --- /dev/null +++ b/docs/documents/database/list-users.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUsersListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUsersListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"username":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"DbaasDatabaseUserResponseDto"}}},"additionalProperties":false,"title":"DbaasDatabaseUsersListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/list-users.api.mdx b/docs/documents/database/list-users.api.mdx index be88d3f..cfd8bfc 100644 --- a/docs/documents/database/list-users.api.mdx +++ b/docs/documents/database/list-users.api.mdx @@ -5,7 +5,7 @@ description: "List Users" sidebar_label: "List Users" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnJoZWVRTtwdNmhnbclr3ZU3sTA6SpgORSwsxBDAA6FbD0X/vLkjKZCxZrJxDDjqJAveF3Q9LfFtwL+4cH074BwfW8VmPZ8KKJXj6N5wUXOMfPuSZNZ8g9lcJ73GpaUH4BT4n4GIrMy8NLX7Q8nMOTCagvUwlWGZS5hfALv4cs3Fpoo9aFj7n0kLCh97m0OMuXsBS8GHB/Sojd85bqe/4et3bRJDMhXB7/I/OhbhhUjsvdAwsNtoLqdFSCCIRXsyFA5bTXpkDYeMFvUyNPTSqVCpMVR0Ubt6ueDdNZ6w/RK+qBG34AG2Tpg72+5Xaw13YF+ZmKXy59MPrli0ll/IrmRKZPHnAomzZVbvCt1hHqhM4Dwk7G1+xR7Vd+ycbqcgVuf4e3c6o1C4z2oEj6deDAf20HV3/jnoEIIRyMAn/+ihTgmIrnroycyoKqmB5MrBelqa98ULtTcZPp3yN4YNKtwWvc6XEXEEJyzW5gIdOghpj7iSYSuu6SSrRUfBBqLzKQSkqrBVUT+lh6fZnjs5oCY4OzmILguo2En6rwibZ2ALgxEs0u8sKJOerDj5RXCSJJKdCjRuRp0I57B1eepLlI+pao6rxUI99XyFv5A1C8WAz7g/pfNsWmsoyJeOQieiTM0ekHpH6jSI1dNMjRI8Q/VYhSsZOB6dP7wV/Gc/emVwnX+V6EN52qEkVegdJvPr63O09JXj/2qKcAN6XVSc/9SX7JeUtHnfGcR01lqMQgXv55+yY2Wcye1j7PaZ0Z0pJ7cdtNOIKN4StV7EbsMhU2KW1xoYaIHcZXV/UXLOtRf2IlYy8x5GMLwySUn4XiFsgvkMeVTzQRcWGm69p8QHZt3XRmc3nol93uSiw56ioSPQ6yivjLoRVUv3cYjb5wvvMDaMIKVlfkJFYmTzpx2bJiTk5iHMr/SponCOFxmoNJ7PmqxsCVImZWmCTdrL+hNRdUpICRf/t4y0rdZg396D7Na0j3XlprFc9vKsRgkoho1KnJriqqlSm4GKZUe5lDJtsjKss9c8y+SSYTlrs19vbMdHPqZ7qkflHKyOSsIM3gi0spD9PeYTY0ZjFqJ47nNTV6dPRm3LmhcWaoujfcyX0/ZS/ZdeoQ6w2lQreROIthlcTXCSv/UF/QLebzDi/FOH0VgS6hZjWhjapb3yi0EQodlGhaVJPFUh72Jz1bACFz21IkR9CE2k8zmbyeoy0MHS3mfCiCF9Zq9ZrWi5ZPWEnkY6OXbL5PN/DqjlQCXceXOA0JtghXM1Quoi2xiZdFDaTki7C9Sjkedkv6rK5Pjw71dhavdJre2ry6HtGf6wsu9q2VO8M5Lv31QzsFes6y9saX31N1atmYF/UAgHz/9LUiO5lk74DYq4hvp6h6AJEEvpeUb09i2PImgBomp41evgvl9Sr/gNxzGtt +api: eJztWEtv2zgQ/ivEnHYBxUrT7B6EtkASp7vpPmI0KXqIjcVYGtlsKFIhKW8NQf99MXo4duMkWqeHHnyyRc2LMx9H/KYEjzMH0Q18cmQdTALI0WJGnp+imxI0ZgQR5NZ8odhfJBCA1LyAfg4BJORiK3MvDS9+0vKuICET0l6mkqwwqfBzEmd/jcSoMTGAACzdFdJSApG3BQXg4jllCFEJfpmzO+et1DOoqmAVQTJFdM/4H54iXgmpnUcdk4iN9ii11LM6iAQ9TtGRKHivwhHaeM4vU2N3jSqVypPtgroryC6hn6Yz1u+i11aCN7yDtklTR8/7ldrTrN5XamyGvll6fbRhS8lMfidTmMuDBVm3ZVebFb6ek+A6kfOUiJPRhbhXe2z/bCPFQrHrV1BVEy61y4125Fj66PCQfzYdXf4BATCASPvaJH31Ya6QYysfujJTLgoEXJ6crJeNaW88qmeT8esxVAE4Uum24HWhFE4VNbCs2AUteglq+up7CabSun6SCnsKLlAVbQ4aUbQWuZ7SU+aezxyf0QYcPZzFlpDrNkS/VWGV7AQ9HXiZ0aNWKDld9vBZBYBJItkpqtFa5CkqRwF46VkWhty1hm3j4R77sUXe0Buodjfj/pTOb9oKAPNcybjORPjFmT1S90j9QZFad9M9RPcQ/VEhysaOD48f3gv+Nl68N4VOvsv1oH7boyZt6D0knUdfuGdPyeujbcoJeZSql5/ukv2S8pb3O4ORNVNF2bCOwL38c7bP7BOZ3a397lP6aEpZ7ZdtNOJCe269SlyRXZAV59YaW9fgZHQxvDzruOamFvcj0TDyADLyc5NABLOauNXEN4Kw5YEuLFfcvOLFhUzIuvDEFlMcdF0urNlzWLYkugqL1rirw2qofmEVRDD3PndRGGIuB8hGYmWKZBCbDJg5OYoLK/2y1jgltGQhupmsv7piQDWY6QRWaWfrD0jdOSeppugfPl+LRkd4c0t60NE61p02xoL2z/sOIR8+X9cZlTo1tau2Sk0KzrKccy9jWmVj1GZpcJLLB8H00hK/X1+PmH6O9VgPzb9aGUzqHbxBMbeUvh1DaHLSmMuwmzscdNUZ8NEbg/BoZ+TfjuGfqUJ9O4Z34jInzaw2lYrehPgOAugIbgSvBoeDQ77d5Mb5DOvT2xLoDcRsbGiV+rVPVBU0xS5bNN10UwXWjtZnPStAQQCbkGI/jCbWuJ/NFN0YaW74bnMDZVl/Za2qKl5uWD1jJ5GOj12y+jzf0nJ9oFLfeSAC4DHBI8LtDKWP6MbYpI/CalLSR7gbhTwt+01dVteHJ6caW6vXeN2cmtz7nvCDlU1X25bqRwP56WM7A/tZ9J3lbY2vu6bq5Xpg39TiIvmfaVqL7mWTvh1i7iBeTaoA5oRJ3ffK9u1JHFO+DoB105O1Hv7bOfeq/wBxzGtt sidebar_class_name: "get api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/restore-database-backup.ParamsDetails.json b/docs/documents/database/restore-database-backup.ParamsDetails.json new file mode 100644 index 0000000..895b821 --- /dev/null +++ b/docs/documents/database/restore-database-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the DBaaS Backup","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/restore-database-backup.RequestSchema.json b/docs/documents/database/restore-database-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/restore-database-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/restore-database-backup.StatusCodes.json b/docs/documents/database/restore-database-backup.StatusCodes.json new file mode 100644 index 0000000..14812b4 --- /dev/null +++ b/docs/documents/database/restore-database-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/restore-database-backup.api.mdx b/docs/documents/database/restore-database-backup.api.mdx index 5f0cf67..3905931 100644 --- a/docs/documents/database/restore-database-backup.api.mdx +++ b/docs/documents/database/restore-database-backup.api.mdx @@ -5,7 +5,7 @@ description: "Restore DatabaseBackup" sidebar_label: "Restore DatabaseBackup" hide_title: true hide_table_of_contents: true -api: eJztVlFP20AM/iune9qk0nSMvVQMqVDQmLRRUaY90GpyE7c9SO/C3YWtivrfZ1+SklKYOsQjT00v/uzvPju2C+lh5mT3WvbBwwQcHkN8m2dy3JIZWFigR8vvC6npj+zKzJobjP15IltSaT4AP6fnBF1sVeaV4cNcq7schUpQezVVaIWZCj9HUcHFybcBgSze5cpiIrve5tiSLp7jAmS3kH6ZcTTnrdIzuVq11gTUCyP3jwGGorrey0JDpvbuSQ+OVHGgWHa5ReKK4nEAdB4T0RuciwfYc4HYxxTy1NPRBwo7Zo4uM9qhY+v9zj7/bAbqxTFmFEOuWvKgc7Bt8N14cWZyzaLFRntSJYTGPz7KUuA7FNuUzISTRBBKV4bWq5JC+XabuM7TFCYplloSFa98upul8+DzhnNS1eMMLdlOjV2AL48+7j8FTtCDSneKozRF0vEupMgakkSxgJAOmgI83EzSOSEW/cDAyQDKslTFwLjoxpk3ZV9N2VCtb5K+nqQM+9TpbLeLc7qQJU9iiJZalji11tiQA2pi/YuTultuoi6pzxlLLXZzhrQkjY+5SbhVGxcyxB27K6NqCrioWI+TFR/eU9u2LurZfALt2ls0Ce7IWJGVLWNxIw0Uy+GUW1JWzr3PXDeKqE+3gX3EqcmTdmwWktupwzi3yi8D4hjBUua61+PmqyEXV1k/tcE6Bex9q9OfsmBhvnz9eSVKjPDmFnW77vWMnZTOWtXDWV0tBArqKj01IVSVsVKBk0XGeVAxrsUYVCK1e5naIrMTSny5uhrwTBrpke6b3zo1kIQbHIKYW5x+HsmI6kiTilFSOdirk9Pmz3AkhQc7Q0+mvyYp6NuRPBIXhOFRN1UpHkZwRPTqqUcTrd1pd3hKcSUsIHzJ1VR9tno2LrdOQ2N0kbuQ+KIqrOt6O3GE7jY3lXVt0fNmdXFOyvpiTFgu6hKjuphz3ZLfomDbHzZdrfi4nPpcRoly/DVSjU8hdY+/jOJh5v5zJ3jyare43No57iHN2TLU8z1YVbaC/yLy7rJafd6LHde0J+lVh6CXTV417QfxeX96XXKPNrkXsKM0r8ZkNUdIQhMoqhflPtWANL2OGw1tcDHkL/cvCunhmg== +api: eJztVk1vGzkM/SsCT7uA6nGz7WXQFnDiFpsC2xiNFz3ERkGP6FiNLCmSxltjMP+94Hw4TpwW3iDHnmYgieTT4xPJChJeR8ivYIwJFxjpFIub0sNcgseAa0oUeL8Ci2uCHHxw36hI5wokaMsLmFYgQVEsgvZJO14srb4tSWhFNumlpiDcUqQVic5cnP0zAQmBbksdSEGeQkkSYrGiNUJeQdp6jhZT0PYa6lruAOgnRh6fIl6K7npPC41ev9hQiBypw3BbUtgegJiuSHAAiomUGE3OxZ3ZzwKxjyWWJkEOL6Gu54wxemcjRT59Mjzhz/1Ao6Ign0hBLeHV8NXhgU8uiQ+utExa4Wwim5rQ9D1l3iDfoTqE5BacJJCcbU8h6RZCu3sI3JbG4MJQy2UtIelkjjsZE6Zyzzlom+iaAkhYurDG1C79dfKYsaKE2hwVR9uY0BbHgKoloFKaCUQz2Sfg7mYwCW5haD1uEERojLw3ukC2y75F95vZZ2O2UetvSp+PUjZ7PRwelotzmyhYNOKSwoaCeB+CC00ORpPz8cVZXy3vW32mmFwg8aCHSFhTWjnFpdrFJkNcsXPIui4Qs2rXTmpe3GhFIWajUC5w0HvLFo27mFVa1VloY3EhbSC2zakMBnJYpeRjnmXo9QDZR2FcqQaFWwOX00hFGXTaNhanhIEC5Ffz/a1LFlern/7ALgXs/aDSv2fCmv7y8ctUtDYiuRuyg77Ws+2idSa7nw+9Wj5+mTbsart0TaguYy0DZ2vPedAF7ciYdCQNRl4fgDnKSvw9nU64J83szI7df9Y4VM0N3qBYBVq+nUHmPFn0OlOdgxd9cgb8DGcgEoZrSm9n8HVh0N7M4J248GS51S21oTcZvgMJfdfL4eVgOBhyl2IlrLF5yV1X/al67l1ul4a91lXLNvFVJ6yrfjqJICHfn1R22gIJ99XFOWn1xTbNcNFLbC5hxbrNr6Cq+Oy/wdQ1L7ddn2WkdOTXqCBfookPX0Z113N/ORM8erUb2h7MHBs0JZ9s9LzBoNtS8L+A/PG5G33+FEeOaY/C6xbRbvdx9bDvyOf56XnBPZjknoBOK6jntYQVoWqKQNVttPPUnsm+1/leQZtcXPLL/QEK6eGa sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/restore-scheduled-backup.ParamsDetails.json b/docs/documents/database/restore-scheduled-backup.ParamsDetails.json new file mode 100644 index 0000000..810b0ed --- /dev/null +++ b/docs/documents/database/restore-scheduled-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database to read.","required":true,"schema":{"type":"string"}},{"name":"databaseName","in":"path","description":"The database to read.","required":true,"schema":{"type":"string"}},{"name":"backupName","in":"path","description":"The backup to read.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/restore-scheduled-backup.RequestSchema.json b/docs/documents/database/restore-scheduled-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/database/restore-scheduled-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/database/restore-scheduled-backup.StatusCodes.json b/docs/documents/database/restore-scheduled-backup.StatusCodes.json new file mode 100644 index 0000000..14812b4 --- /dev/null +++ b/docs/documents/database/restore-scheduled-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/restore-scheduled-backup.api.mdx b/docs/documents/database/restore-scheduled-backup.api.mdx index 5b24417..52465c5 100644 --- a/docs/documents/database/restore-scheduled-backup.api.mdx +++ b/docs/documents/database/restore-scheduled-backup.api.mdx @@ -5,7 +5,7 @@ description: "Restore Scheduled Backup" sidebar_label: "Restore Scheduled Backup" hide_title: true hide_table_of_contents: true -api: eJztVk1v2zgQ/SsET1vAldxsezG6BZK4RbNAG6NJsYfYWIylccyGJlWSyq4h6L/vDCXZcp1mXTfHnmzT8/E48zhvKhng1svRjRxDgDl49HI2kAU4WGFAx39V0tAPOZKFs18wCxe5HEhl+ADCkr7n6DOniqAsH3426muJQuVogloodMIuRFiiOP8wEZMmREJeDr+WymEuR8GVOJA+W+IK5KiSYV1wOh+cMreyrgcbBPkcwP9P/vEZwJVQxgcwGYrMmgDKUKQIIm+vKYIVDiE/Gkkb5yP/fAzO9RMmnUN2VxYHpWxMfzYhFOr5PbGA47YZqbdu/WBKToA+YC5OJxdi6/a9RBxjAaUOdPSC0s4Yoy+sYRKS9cnwhD92E51mGRaUQ9YD+XL4ct/gow3inS0Nk4R7TyyMqfHfkBYa+A7VPiQ7Z1qSC3G8QBdUA6H5dx+4KbWGucamlgQlqKAPsyRahrIXnKoa8BYd2S6sW0Fojn4/ecg5R+KyPihP9wAOMCZryHPFBQQ96RdgezNJ5+SxGkcEXkanotAqA/ZLv3j7q7JPVtnI1l8lfbqSstur4XB/XFzQhRxFElfoaGSJt85ZF3tAQ2x8ed5Ny12vTzTnrENxRa3JS00j7yzOW4JLsrm0OY9m62OPeEKPZNqKp0+rjYzWfHhPQul8eurKOSSdCKdR6NKq1bs67RSEz3rKU6fNnPep75Ck1VYl6tQ1QHkKx/s1el46aotchlD4UZrSkE+A02falnmS2ZXkWewxK50K6+hxhuCo7aObWf8vvv6qIV9nsOkfR9+Tibdc7ajDf/51LRof0qg7NEknFFHnmmCD9su7jmrkFFujzMLGVG27m+KdrwpuospwU8dJW9/ktFB7YA7yEu+vrycsaFMzNWP7j9EW8niD1yCWDhd/TGVKJDRUxU2Xnnd9TfgNT6UI4G4xkOnfcw3mbirfiEvyYZ1cKI2vU3hD8DrJJDlMhsmQJY5JtII4BlpJfoR6O9fbNKKnfBQwtr5qWXnTrXSevEf99W5DTPq+S03Ow6xkj+06tuFnPN7djVqKtg2OmNlqZ5npeErkWvK7IWhVxTE+O13XfNzsHczFXHmeB/TGFqD9t2+z2qr+o1vJg9W5w/Xe1nMPumTL+CjuwalmGP0QkN8+tcvXM3HoevwgvvYQzLoPrMO9bSCvcEeh+/Hl+QicHW2ORvm9nfoYLH2u/hSg/Y37CDi9R1HPyHpJoeLcrVqDZv/tufajz3ryM7m84mH5H7whxoc= +api: eJztVlFv2zYQ/ivEPW2AarlZ9yK0BZy4xVJgjdG46ENsDGfxbLORSIWkvBmC/vtwlGTLc5q5bh77FOfEu/t49/G+q8DjykFyB2P0uEBHDuYRFGgxJ0+WP1WgMSdIoLDmK6X+WkIESrMB/RoikORSqwqvDBs/a/VQklCStFdLRVaYpfBrEld/TsSkCTGACCw9lMqShMTbkiJw6ZpyhKQCvy04nfNW6RXUdbRDIBeI7n/yjy8Rb4XSzqNOSaRGe1Ra6VUAIdtrCm+EJZRnI2njfOR/n4IzfcakC0zvy+KklM3RH02IhXqxIes4bpvxoSS7fTQlJyDnSYrR5Frs3b6ViGMsscw8JPAS6nrOGF1hNJMwqeBieMF/DhON0pQKTxLqCF4NXx0f+Gi8eG9KzSTh3pP2ITX94+MiQ75DdQzJLJiWEDHHC7JeNRCar8fAdZlluMioqWUdgVc+O+2k8+jLXnBQ2tOKLESwNDZH35h+u3jMWZJHlZ2Up3sAJxyuI0ApFRcQs0m/APubwcSaRUb5OCBwEJyKIlMpsl/81ZmflX22yga2/izp85WU3X4fDo/HxbX2ZDVm4pbshqx4Z62xoQejyfX45qqbloden8h5Y0ncpmuSZUZSXIZ5CxHk5NdG8mg2LvSIJ3QCcSueLq52MlqzcaMkWRePbLnAQSfCcRC6uGr1ro47BWFbT3nquJnzLnYdkrjaq0Qd2wYoT+Fwv0bPS5tBAmvvC5fEMRZqgJw+zUwpB6nJgWexo7S0ym+DxyWhJQvJ3bz/ia+fN+TrDuz6x9GPZOIdVzvo8IcvU9H4CG/uSQ86oQg61wSL2h/vO6p9+DINrVF6aUKqtt1N8a7ygpuoUtrVcdLWdzAq1BGYk7zEH9PphAVtpmd6bP7WmUEZbvAaxdrS8s0MYlOQxkLtuvSi6+uA3/AMhEe7Iv9mBn8tMtT3M3grbgrSrJNLldHrGN9CBJ1kJvByMBwMWeKYRDmGMdBK8hPUO7jerhE95aujpvVVy8q7bqVzEEHSX+92xIQIDqnJeZiV7LFfx3b8DObD3ailaNvggJlPHSwzHU/nEaz53SR3UFUc47PN6prNzd7BXJTK8TyQkCwxc/99m9Ve9Z/cSh6tzj1tj7aeDWYlnwyPYoNWNcPou4D88qldvn4Vp67Hj+Jrjai3fWAd7n0DeYU7C933L89n4OxoczbKb+3U52Dpc/WHAB1v3GfA6T2Kel5HsCaUYe5W7YFm/+259qPPe/IzubnlYfkvvCHGhw== sidebar_class_name: "post api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/set-password.ParamsDetails.json b/docs/documents/database/set-password.ParamsDetails.json new file mode 100644 index 0000000..39f4e87 --- /dev/null +++ b/docs/documents/database/set-password.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"Unique identifier of the CMP Project.","required":true,"schema":{"type":"string"}},{"name":"dbaasId","in":"path","description":"DBaaS instance containing the database user to update.","required":true,"schema":{"type":"string"}},{"name":"username","in":"path","description":"The username to update.","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/set-password.RequestSchema.json b/docs/documents/database/set-password.RequestSchema.json new file mode 100644 index 0000000..5fc2e0d --- /dev/null +++ b/docs/documents/database/set-password.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"password":{"type":"string","description":"The password to assign to a database user."}},"additionalProperties":false,"description":"Parameters required to update the password of an existing database user.","title":"DatabaseUserPasswordRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"password":{"type":"string","description":"The password to assign to a database user."}},"additionalProperties":false,"description":"Parameters required to update the password of an existing database user.","title":"DatabaseUserPasswordRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"password":{"type":"string","description":"The password to assign to a database user."}},"additionalProperties":false,"description":"Parameters required to update the password of an existing database user.","title":"DatabaseUserPasswordRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/set-password.StatusCodes.json b/docs/documents/database/set-password.StatusCodes.json new file mode 100644 index 0000000..44f3e27 --- /dev/null +++ b/docs/documents/database/set-password.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/set-password.api.mdx b/docs/documents/database/set-password.api.mdx index 4a7e669..7b7379a 100644 --- a/docs/documents/database/set-password.api.mdx +++ b/docs/documents/database/set-password.api.mdx @@ -5,7 +5,7 @@ description: "Set Password" sidebar_label: "Set Password" hide_title: true hide_table_of_contents: true -api: eJztWN1vIjcQ/1csP7VXskuvdy/oelIScmoqtYcSoj4EVA1rA74s9p7tTYJW/O+d8X6wBJISTvdwEnkgxjtfnvnt4N8U3MPM8d4tv3HSOj7u8AwsLKSnb73bgmv8wns8s+aLTPyl4B2uNG2An+NaSJdYlXllaPNGq6+5ZEpI7dVUScvMlPm5ZOd/DdigNBGhlpVfc2Wl4D1vc9nhLpnLBfBewf0yI3fOW6VnfLXqNBGICYD7H//9M4BrprTzoBPJEqM9KI2WQhACPEzASZbjWZk3LM9wSx4aEFkJy5ciGs5LdyT47S4hUyf3WBmyXXnFfNvlTrfkQDovBTsdXLK12nOOyMYU8tTj1q/odlzGiCbOjFiSPOUTK0tLyLJUJUDu4i+OfBbbhs2ECo6GET2ZtF5JR08zcO7BWLE7hKfHqKUpe7hUMx1Wm9WMKE0chFCkCemg5XAKqZNPLQ8alLO6EOvyBLQ0fhHCoJl8VM4Tkp747XCvfEpn6FcP6E0aVMpXZQL73oQAvXz0x3Ttna42yN78cszbfnmjEK10mdGuTMTb7jv6txnZ34adV68zyr/rdrdFzkCwyjL6b738AcZZCupV9SifbtdC52kKEzobNcJVc9I9JLHP+7xlHFuilzNpUXZq7AJ8ufXb213KQuKPQ7qXn/oXZQ/hZ/FRrE/GcR81Fv0QgdvC+muRfszsS5k9qOkeU/p8SlehYezsKZ59MrkWx3ZxbBc/amaP7eI7tIv3u+4Xl3ggJEYpu5YW6Qm7sNbYUAMkLP3P5zUz2tS6lp7V9x4MEW9XcyOIfuWhLETCejyu+KqLi4a5rmjzHrmpdfGpzScQ1VepOHDLuKgo5iqmOxd+r4kbaq4duhBsSY5ziznmc+8z14tjZGcRkOEkNbmIErPgRKKcTHKr/DJonEmwWMPe7bj96JpgViKpFmiKQda3bqwXlLpwf/zznyErdfBieSd1VDM80p2UxjrV4lONG1QKeSaYX6053sUjLLISnuvLc8NDCSpTEyKrSl1m8XyRUQFVIpuEDqpER6eZ2op9Ly32x3A4IOI60iPdNw86NXgbpQN/ADa3cvr7iMcIQI1Jj+u78kld4IgONuLMg51Jj6L/TlLQdyP+kX1GHeLDU5XKDzF8xPBqaoy0N+pGXTppZpxfQGgBFfV+AruNIzW1av3SoZGAjqKC5G09QnGo3WuPUxpU4noTl+SHIEka6/FHACdttQYQTbkQVHOMnfwVRaAJNl2taLscFBAGhXL0UovdnKVF818cI+w88p1cbo0p7iHNSTK8DPdgVdlRXhXIT1cVe/qZ7Ttj2hlftQl62Q6sjntdFZq5HBTdwROoA8KtIXFwsM8Ppw6IpkHjaoyycwki9LmielyRzZMhGVmrb91j6DClxmmSyMy3ZNvRjFudf3AzpBZXDakWRpCwhQcasuFniNGETIQOG/YKjg1hlsOMZEvH9Pcf5NxY8Q== +api: eJztWE1v2zgQ/SvEnPZDsdJuexHaAkmcYlNgt0bioIfYWIylsc1GIlWSSmII+u+LoT6sxE7W8WIPCziXKBRn5nHmacI3JThcWIhu4NqSsTANIEeDGTn+K7opQWFGEEFu9HeK3UUCAUjFC+iWEEBCNjYyd1Lz4rWSPwoSMiHl5FySEXou3JLE2R8jMapdDCAAQz8KaSiByJmCArDxkjKEqAS3yjmcdUaqBVRV0CFIZoj2H+IPTxGvhFTWoYpJxFo5lEqqhQeRoMMZWhKFJSOcFkWeoKN9AbEX//gSovGyDscb/31IzOXRHRnLvpuoPwoyq61hOQBZR4k4GV2ItdlzgdjHHIvUQQRvoKqmNUay7lQnK97P+STl+BHzPJUxcrjwu+WY5aZjPeOCQ8Dsyck4SZbf5mjtvTbJdghPj9Hu5uyhtXKh/NPjag44TYBJItkS01Ev4BxTS089jzqWi7YQ6/J4tnRx9VygEvQgrWMmPYkbgJMu5TMMmxf8JY0a48s6gUOnPUBHD+6Qrp3T1SfZL78e8rZb3hiiIZtrZetEvD1+x78eI/tTi7Pmc64CeHd8vLnlFBPReIag//F7GucpylfVo367WQtVpCnO+GzcCKvupDvstA5d0XMOUjlakIEA5tpk6Oql395uM07IoUx3itP+R9lh87P8KNcng5HRs5SyoUdgN7j+WqYfMvtSZvdquoeUPp/SyjeMrT3Fic+6UMmhXRzaxf81s4d28R+0i/fb7hcXyrEwSsUVmTsy4twYbXwNTkYXw69nrTJ6bHVFTrT3HgggI7fUCcuvwpeFRVgEYaNXbVh2yrXixTuZkLHhiSlmOGivUqHXlmHZSMwq5DuXDctWuFVhvg5oPdhaHBcmhQiWzuU2CkPM5QDZcZzqIhnEOgMWUZbiwki38hanhIYMRDfT/qsrplnNpHZDVwz2vnFjPefU+fvjl29jUdsIp29JDVqFx7az2lnQPHxuefPl29jnmWl+udZ45w+Y5TU915fnTocyVebaI2tKXWfxLMu5gDKmLqGjJtGDk1xuYN/JSvw+Ho9YuE7URA31vUo1Jv7AH1AsDc0/TiDUOSnMZdjelY/aAg/4YBMQDs2C3McJ/DVLUd1O4JP4mpNiPTyXKX0I8RME0ErjCN4MjgfHfNJcW5ehbwGN9H5Cu0dH6mrV+09XBTU7yoaSN+0IxUIAUX+c0rESAnjMS47DlGSL9fjDk5OXegOIrlzTAJbaOo5Xll4mmLSqeLkeFDAHE2n5o062a5aezH9xjLD1yLe02hhT3GFa8E7/MdyhkXVHeRWQny4b9fSz2HXGtBVfs4hq1QfW4l5XhWcue6HbewK1B9yWEnuDfX44tQeajo3VtApgSZj4Plc2rxuxeTRmJ2vzjXsMH6a2OIljyl1vbx/NtNf5R9djbnHNkCrTCW82eM9DNryvMWqfCd9h/VoJKapFgQveWwfmn78B5NxY8Q== sidebar_class_name: "put api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/database/sidebar.ts b/docs/documents/database/sidebar.ts index 7d1831a..fa53cdd 100644 --- a/docs/documents/database/sidebar.ts +++ b/docs/documents/database/sidebar.ts @@ -1,212 +1,210 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/database/aruba-cmpservice-databaseprovider-api" + type: "doc", + id: "documents/database/aruba-cmpservice-databaseprovider-api", }, { - "type": "category", - "label": "DatabaseBackup", - "items": [ + type: "category", + label: "DatabaseBackup", + items: [ { - "type": "doc", - "id": "documents/database/create-database-backup", - "label": "Create DatabaseBackup", - "className": "api-method post" + type: "doc", + id: "documents/database/create-database-backup", + label: "Create DatabaseBackup", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/delete-database-backup", - "label": "Delete DatabaseBackup", - "className": "api-method delete" + type: "doc", + id: "documents/database/list-database-backups", + label: "List DatabaseBackups", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/list-database-backups", - "label": "List DatabaseBackups", - "className": "api-method get" + type: "doc", + id: "documents/database/delete-database-backup", + label: "Delete DatabaseBackup", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/database/generate-database-backup-download-link", - "label": "Generate DatabaseBackup download link", - "className": "api-method post" + type: "doc", + id: "documents/database/generate-database-backup-download-link", + label: "Generate DatabaseBackup download link", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/restore-database-backup", - "label": "Restore DatabaseBackup", - "className": "api-method post" - } - ] + type: "doc", + id: "documents/database/restore-database-backup", + label: "Restore DatabaseBackup", + className: "api-method post", + }, + ], }, { - "type": "category", - "label": "Databases", - "items": [ + type: "category", + label: "Databases", + items: [ { - "type": "doc", - "id": "documents/database/create-database", - "label": "Create Database", - "className": "api-method post" + type: "doc", + id: "documents/database/create-database", + label: "Create Database", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/get-database", - "label": "Get Database", - "className": "api-method get" + type: "doc", + id: "documents/database/list-databases", + label: "List Databases", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/delete-database", - "label": "Delete Database", - "className": "api-method delete" + type: "doc", + id: "documents/database/delete-database", + label: "Delete Database", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/database/list-databases", - "label": "List Databases", - "className": "api-method get" + type: "doc", + id: "documents/database/get-database", + label: "Get Database", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/list-scheduled-backups", - "label": "List Scheduled Backups", - "className": "api-method get" + type: "doc", + id: "documents/database/restore-scheduled-backup", + label: "Restore Scheduled Backup", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/restore-scheduled-backup", - "label": "Restore Scheduled Backup", - "className": "api-method post" + type: "doc", + id: "documents/database/generate-scheduled-backup-download-link", + label: "Generate Scheduled Backup download link", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/generate-scheduled-backup-download-link", - "label": "Generate Scheduled Backup download link", - "className": "api-method post" - } - ] + type: "doc", + id: "documents/database/list-scheduled-backups", + label: "List Scheduled Backups", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Dbaas", - "items": [ + type: "category", + label: "Dbaas", + items: [ { - "type": "doc", - "id": "documents/database/create-d-baa-s", - "label": "Create DBaaS", - "className": "api-method post" + type: "doc", + id: "documents/database/create-d-baa-s", + label: "Create DBaaS", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/get-d-baa-s", - "label": "Get DBaaS", - "className": "api-method get" + type: "doc", + id: "documents/database/list-d-baa-s", + label: "List DBaaS", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/update-d-baa-s", - "label": "Update DBaaS", - "className": "api-method put" + type: "doc", + id: "documents/database/update-d-baa-s", + label: "Update DBaaS", + className: "api-method put", }, { - "type": "doc", - "id": "documents/database/delete-d-baa-s", - "label": "Delete DBaaS", - "className": "api-method delete" + type: "doc", + id: "documents/database/delete-d-baa-s", + label: "Delete DBaaS", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/database/list-d-baa-s", - "label": "List DBaaS", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/database/get-d-baa-s", + label: "Get DBaaS", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Grants", - "items": [ + type: "category", + label: "Grants", + items: [ { - "type": "doc", - "id": "documents/database/create-grant", - "label": "Create Grant", - "className": "api-method post" + type: "doc", + id: "documents/database/create-grant", + label: "Create Grant", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/get-grant-by-database", - "label": "Get Grant by Database", - "className": "api-method get" + type: "doc", + id: "documents/database/list-grants-by-database", + label: "List Grants by Database", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/get-grant-by-user", - "label": "Get Grant by User", - "className": "api-method get" + type: "doc", + id: "documents/database/delete-grant", + label: "Delete Grant", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/database/delete-grant", - "label": "Delete Grant", - "className": "api-method delete" + type: "doc", + id: "documents/database/get-grant-by-database", + label: "Get Grant by Database", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/list-grants-by-database", - "label": "List Grants by Database", - "className": "api-method get" + type: "doc", + id: "documents/database/list-grants-by-user", + label: "List Grants by User", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/list-grants-by-user", - "label": "List Grants by User", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/database/get-grant-by-user", + label: "Get Grant by User", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Users", - "items": [ + type: "category", + label: "Users", + items: [ { - "type": "doc", - "id": "documents/database/create-user", - "label": "Create User", - "className": "api-method post" + type: "doc", + id: "documents/database/create-user", + label: "Create User", + className: "api-method post", }, { - "type": "doc", - "id": "documents/database/get-user", - "label": "Get User", - "className": "api-method get" + type: "doc", + id: "documents/database/list-users", + label: "List Users", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/delete-user", - "label": "Delete User", - "className": "api-method delete" + type: "doc", + id: "documents/database/delete-user", + label: "Delete User", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/database/list-users", - "label": "List Users", - "className": "api-method get" + type: "doc", + id: "documents/database/get-user", + label: "Get User", + className: "api-method get", }, { - "type": "doc", - "id": "documents/database/set-password", - "label": "Set Password", - "className": "api-method put" - } - ] - } - ] + type: "doc", + id: "documents/database/set-password", + label: "Set Password", + className: "api-method put", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/database/update-d-baa-s.ParamsDetails.json b/docs/documents/database/update-d-baa-s.ParamsDetails.json new file mode 100644 index 0000000..117b082 --- /dev/null +++ b/docs/documents/database/update-d-baa-s.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"the id of the dbaas to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/database/update-d-baa-s.RequestSchema.json b/docs/documents/database/update-d-baa-s.RequestSchema.json new file mode 100644 index 0000000..6ca59f4 --- /dev/null +++ b/docs/documents/database/update-d-baa-s.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the new dbaas payload","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"engine":{"type":"object","properties":{"id":{"type":"string","description":"Type of DB engine to activate.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Engine.","title":"EngineRequestPropertiesDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"flavor":{"type":"object","properties":{"name":{"type":"string","description":"Type of flavor to use.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"description":"Dto Flavor.","title":"FlavorRequestPropertiesDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","description":"Size GB to use.","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Storage.","title":"StorageRequestPropertiesDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"Type of billing period to use.","nullable":true}},"additionalProperties":false,"description":"Dto Billing Plan.","title":"CmpBillingPlanRequestPropertiesDto"},"networking":{"type":"object","properties":{"vpcUri":{"type":"string","description":"The URI of the VPC resource to bind to this DBaaS instance.\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"subnetUri":{"type":"string","description":"The URI of the Subnet resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"securityGroupUri":{"type":"string","description":"The URI of the SecurityGroup resource to bind to this DBaaS instance.\r\nIt must belong to the VPC defined in Aruba.CmpService.DatabaseProvider.Api.v1.Models.NetworkingRequestPropertiesDto.VpcUri\r\nRequired when user has at least one VPC (with at least one subnet and a security group).","nullable":true},"elasticIpUri":{"type":"string","description":"The URI of the ElasticIp resource to bind to this DBaaS instance.","nullable":true}},"additionalProperties":false,"description":"Dto containing the network information to use when creating the new DBaaS.","title":"NetworkingRequestPropertiesDto"},"autoscaling":{"type":"object","properties":{"enabled":{"type":"boolean","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Dto Autoscaling","title":"AutoscalingDto"}},"additionalProperties":false,"description":"Dto properties request Dbaas.","title":"DbaasPropertiesRequestDto"}},"additionalProperties":false,"description":"Dto request Dbaas.","title":"DbaasRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/database/update-d-baa-s.StatusCodes.json b/docs/documents/database/update-d-baa-s.StatusCodes.json new file mode 100644 index 0000000..a0a9d19 --- /dev/null +++ b/docs/documents/database/update-d-baa-s.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"}},"engine":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"EnginePropertiesResponseDto"},"dataCenter":{"type":"string","nullable":true,"description":"For more information, check the documentation."},"privateIpAddress":{"type":"string","nullable":true},"flavor":{"type":"object","properties":{"name":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"cpu":{"type":"integer","format":"int32","nullable":true},"ram":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Engine response class.","title":"FlavorPropertiesResponseDto"},"networking":{"type":"object","properties":{"vpc":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"subnet":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"securityGroup":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"},"elasticIp":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ResourceReferenceResponseDto"}},"additionalProperties":false,"description":"Network response class.","title":"NetworkingPropertiesResponseDto"},"storage":{"type":"object","properties":{"sizeGb":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"description":"Storage response class.","title":"StoragePropertiesResponseDto"},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"description":"BillingPlan response class.","title":"BillingPlanPropertiesResponseDto"},"autoscaling":{"type":"object","properties":{"status":{"type":"string","nullable":true},"availableSpace":{"type":"integer","format":"int32","nullable":true},"stepSize":{"type":"integer","format":"int32","nullable":true},"ruleId":{"type":"string","nullable":true}},"additionalProperties":false,"description":"Autoscaling","title":"AutoscalingPropertiesDto"}},"additionalProperties":false,"description":"Dto properties response dbaas.","title":"DbaasPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response dbaas.","title":"DbaasResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/database/update-d-baa-s.api.mdx b/docs/documents/database/update-d-baa-s.api.mdx index cb8c790..18ae881 100644 --- a/docs/documents/database/update-d-baa-s.api.mdx +++ b/docs/documents/database/update-d-baa-s.api.mdx @@ -5,7 +5,7 @@ description: "Update DBaaS" sidebar_label: "Update DBaaS" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/database/aruba-cmpservice-databaseprovider-api custom_edit_url: null diff --git a/docs/documents/metering/create-alert-rule.ParamsDetails.json b/docs/documents/metering/create-alert-rule.ParamsDetails.json new file mode 100644 index 0000000..9b1c39c --- /dev/null +++ b/docs/documents/metering/create-alert-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string","default":"*"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/create-alert-rule.RequestSchema.json b/docs/documents/metering/create-alert-rule.RequestSchema.json new file mode 100644 index 0000000..c1e7b18 --- /dev/null +++ b/docs/documents/metering/create-alert-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}}}}} \ No newline at end of file diff --git a/docs/documents/metering/create-alert-rule.StatusCodes.json b/docs/documents/metering/create-alert-rule.StatusCodes.json new file mode 100644 index 0000000..40249f0 --- /dev/null +++ b/docs/documents/metering/create-alert-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Server Error"}}} \ No newline at end of file diff --git a/docs/documents/metering/create-alert-rule.api.mdx b/docs/documents/metering/create-alert-rule.api.mdx index ae6952d..bd464e5 100644 --- a/docs/documents/metering/create-alert-rule.api.mdx +++ b/docs/documents/metering/create-alert-rule.api.mdx @@ -5,7 +5,7 @@ description: "Create Alert Rule" sidebar_label: "Create Alert Rule" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/delete-alert-rule.ParamsDetails.json b/docs/documents/metering/delete-alert-rule.ParamsDetails.json new file mode 100644 index 0000000..bd34702 --- /dev/null +++ b/docs/documents/metering/delete-alert-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string","default":"*"}},{"name":"alertRulesId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/delete-alert-rule.RequestSchema.json b/docs/documents/metering/delete-alert-rule.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/metering/delete-alert-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/metering/delete-alert-rule.StatusCodes.json b/docs/documents/metering/delete-alert-rule.StatusCodes.json new file mode 100644 index 0000000..55ee562 --- /dev/null +++ b/docs/documents/metering/delete-alert-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/delete-alert-rule.api.mdx b/docs/documents/metering/delete-alert-rule.api.mdx index 7857bca..deaaaf6 100644 --- a/docs/documents/metering/delete-alert-rule.api.mdx +++ b/docs/documents/metering/delete-alert-rule.api.mdx @@ -5,7 +5,7 @@ description: "Delete Alert Rule" sidebar_label: "Delete Alert Rule" hide_title: true hide_table_of_contents: true -api: eJztWN9v0zAQ/lciPwEqzTb2VI1JHR1igNi0deJhrZCbXBtvrp3Zl8KI8r9zl6Rtug5UpII0qU9Nzvfz8/nSz7lAOfGicyO6GhxeZhq8GLZEKp2cAoLjtVwYehEdkTp7CxGexaIllGGBxISeY/CRUykqy0ISOLjPlINYdNBl0BI+SmAqRScX+JCyJ49OmUlpOpaZRhK9EkXRWoSSi3S2F23Ff6pez6g8dlK7v8/APaz57ycQcADwCHHQvTgLlmablLXf3qPAQ87Sp9Z4wpf0D/b2+Gc11FUWReC9KFri8Kn1ExkHl1UqFCKyBsFgGR1+YJhqyWXk61nZEe8amdD+pQSrqnKoVtdzN5nWcqShgpOSQYV6M02PErOGcwIWYQKOdMfWTSVWojcHTxnHgFLpjeIoQ5FMtElSpC3jWDGEUl80AVhWJkhOFtNemYEXpVGaahVJtgtvvd0huzVky27dQbo9SItyYOyvD4xrIzNMrFM/Id5NjN3EeK7I7ibGP5kYh+sT44vF4L3NzG5c7MbFs0V2Ny62Pi5olahP7/zdnGOtjo0eaCKLQckhA2ZtFJnoY2KJk5EqLzLgzN86IqxppA/zBaEsWDhTMVGrsOuykWyfGa8mCYZLIhjmTVJYMP8CN5tT1MwRWCJBTH0nDInetSX7ibTN4nZkp4I5mIcocwofSosTkI42o3MzbC5dcb9ULTFXWKBKXj/BOkWkVLnuj1/7Ado7YGZYs8xu/ferPOVznpmApDrLTlVmbEv/NfIrpbcJ8bVYaxrBh37/gnnpwAxMz3432hJNRGKtRzJIHIzfDkRI+2wo+bCk9NQYbT4dAxGgdBNA0vg20tLcDcRxcE6q7HasNByF8pgymBPemszSRlqPU1ker7rQpxpgJfEFho1PCXkqdy2vO+NmfsHgybrTvGxYNAc9ryBA78umYKuVewPa1oRSZc95PpIerp0uChZXXJ+7IFaezwc16lhq/7iz8+VX8I83AU8Wd0e98vimYSZ1xpplO86kU9Xh/KtEXlzWFx4vg9+FnjeseWjGnKe0hJZvRP5j4JXdKYakXx8GBqBS6UYRpNgwbvofNsZK7/Tzaf+UjtEvBbB/vg== +api: eJztWE2P2zYQ/SvCnNqCtTZpTkISwIm3qNuiMTYOelgbxVgaW8zSJEOO3LoC/3tBybLlaFNsgE2AAD4ZIDlfj8Mnv6mBceMhu4WxIsc3lSIPSwEWHW6JycW9GjRuCTKwzrynnKcFCJA6LiCXIKAgnztpWZq4CAIcfaikowIydhUJ8HlJW4SsBt7b6Mmzk3rTmK6xUgwZ/AAhiGMoPKbzeNHO/Fv5446cj04O7j9U5PYD//OSkhiAPFORjGfT5GT2kLKejK4ghGXM0lujPfl4/unVVfw5D/W2ynPyHoKAZ/ftv8IiuWlTAQG50Uyam+j0D6dWYSyjHmZlVvHWQMT7s+RYtjm0u8PcdaUUrhS1cAYBLFk97KRn5KrnHKRm2pADAWvjtsjt0k9P7zMuiFGqB8WR2jPq/CFJBQFYFDJCiGrWB+BUGcycWSnaTpoMPDRG1iqZY7RL33tzQfbRkG269QLp40EaGsJ4MiSMdxorLo2T/1JxYYwLY3yryF4Y44swxrMhY/xhOPnZVPpCFxe6+GaRvdDFo9NFEDCeTSdvXnca65w2JqSIKWk0ZBJVGwjYEpemgAyKZjMCHvVbBulBRvq0PgrKEBd3siDn07GrVjiaai83JacnIZjWfVEYov4it+skauUUZFAyW5+lKVo5wugnV6YqRrnZQtRgnvLKSd43Fq8IHTnIbpf9rbexX9qW6A4cUUUrf6OhRJxqH+v+9c95wuaOojI8qMzx4e9X88o7nVkSFuSaTpV6bRr/B+TPSh+NZ9NBrMGJ5Jf5fBZ16UIv9MT8rZXBIuGSkueYlI7WLxaQGksarUwbSS/1ZhRfxwISRrchfrGAv1YK9d0CXiZvLOnodi0VPU/xJQjoBO9BzAqwxvMWm+d1KPS+BjhL/Ihh71MSRHtr9aEzbrsBgwcBWX/YcGwOEOcIgOhNCqLV2dxgKaA0nqPnul6hp3dOhRCXW60fu6CQPr6PArI1Kv9xZ9enr+D/TgLuLe6O9oNJww5VFU827bhDJ9vH+VmJfHdzGHh8n3wqdNewet+P2aV0gjZORL5i4LPbCcsguscQAWiPjPOcLPeM+/6XPVqZXP9+Pb+GEP4DBbB/vg== sidebar_class_name: "delete api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/get-alert-rule.ParamsDetails.json b/docs/documents/metering/get-alert-rule.ParamsDetails.json new file mode 100644 index 0000000..86db58b --- /dev/null +++ b/docs/documents/metering/get-alert-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"alertRulesId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/get-alert-rule.RequestSchema.json b/docs/documents/metering/get-alert-rule.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/metering/get-alert-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/metering/get-alert-rule.StatusCodes.json b/docs/documents/metering/get-alert-rule.StatusCodes.json new file mode 100644 index 0000000..fe8ebab --- /dev/null +++ b/docs/documents/metering/get-alert-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/get-alert-rule.api.mdx b/docs/documents/metering/get-alert-rule.api.mdx index cdb996a..b90fdf7 100644 --- a/docs/documents/metering/get-alert-rule.api.mdx +++ b/docs/documents/metering/get-alert-rule.api.mdx @@ -5,7 +5,7 @@ description: "Get Alert Rule" sidebar_label: "Get Alert Rule" hide_title: true hide_table_of_contents: true -api: eJztW91v2zYQ/1cEPm2AG7ddsQejK+A0WZd9tEHitA9JMNDS2WJDkSpJuXUN/+87irItxVZM2+mAFnyyTd0X745H/ijfjBg61qR3TfoclLkoOGhy2yE5VTQDA8o+mxGBP0iP5Ep+hNicJaRDmLAD1KT4PQEdK5YbJu0gDij4VDAFCekZVUCH6DiFjJLejJhpbiVpo5gYk/m8sxROlwZ8I/k5ezLBCVkhlfhPBajpmvxBCpFVANpAEvXPz6IVW5siK2NEC25w6NnRU1R8a63UuRQaPYr0z58+tR9NVZdFHIPWyB5LYUCYUjJ8Md2cU2vibF2jHNoYIAtGI0eXMSefJZusEgXndMjBOWrecV7+RybAt4tETuB6Ex1NEmanQPl5g+Oe9zfpF0IaankfWbA2VBndN15eAJH4ko5BgKJGqquLv70Y0BBTbJzcvYCJlA0ZptjxtEZMlaI2JfFBZsk2TpVxEPE+jGgaeExi3haIEeUal5thxtKSSzdVJB+hHFA5ivPz6mcYplLebfdSofgjGvyhUuvN0F8tl7krO1gVtlvtSo6HH1z1bQ2iR943CoqHxkKD8jcPBPWMaCyznIqp3xIBNWExvMZsHEu1E89gmksux348MS+whqt9eHah9XanwEQ6l9Ino5cTfltkw4Y5uMQA1xqyjKTKqHFDvzzfJAN3IFmoGM6Sw5JsIedtc6YHSNopJpMk9qPLDjMOTzyK+aniVJsLiKF14S2Dk2CWPzEMHdciph8bNqGHyYkVlBJOkKikOciiU6yM+0vAYgkLW/aXogruWaNS0KnkydYl8uuLjfUw89KSFKo1RHvvs3gQySirl4MhVgegopX0PeWFn2TdSPoH5CKhv1Qs8eBpb8qSBIQfbXkqteugeSxsW8Ituy4tBQxKmhme8Wxor8lbadiIxWX0zkvzO+QSD4Cnpevd98vMnsH7hZE6phznfjKktARC9z2yPBisdM2bcOnxDrU7HVKcQYdKORMjSWpl+n2FfHxyY8Fz5QtFDo33HfhtHwnT9nfiuc6+QFwYN7Sd3te7F/Kzi9DxaLRx79m6oTQ5rLtp8k7w6Q57iZeItuK/hXmnNCth/omR7iCe57xan92PWgbUG1BvQL0B9QbUG1BvQL0B9QbUG1BvQL0B9QbUG1DvD4R6y7e8Ae4GuBvgboC7Ae4GuBvgboC7Ae4GuBvgboC7Ae4GuPsjwV3L+GLTH6CPaRJdVAfuR/gTtKnKwvb9xBm6D9Lb5WiWgGmW/nY9TKAmBHyHAKHZamYEx5EjOykt0Ae/aA+efcize13mBJe2u9QVjGfrBeNK0MKkUrGvkISKESrG9+rZUDG+ScV4sV4xEBpEv8tChHIRysV369lQLh69XODT/vnZybvXC6zTLBtvwEQljIksjiHlvWEqEV6SMZSutq2pPdKtemJ1d7bsjp3bwQlLEFZ3+6oY0qMzodk4Nd1Vj2t3Vu93nRN3Fbzoty1fiJDUmFz3ul2asyNq5cRcFslRLDNi20s1QljFzLTkOAaq7A3y9W390aXNFJcMC4IVDs/ZX7De/Yqm2kn/+WEQGXkHJRp2DbT96uDlkGfVQpsiQESx8zJmI1nKX4DA+tSP0NdrutYooj8Gg3PbcnsjbsSJ/Cy4RIBoUohe0ihVMPrthnQxwgKN75Z3MZgSR3Zd3JDIUIWhQYp/h5yKuxvyKnqHpFbsiHF42aWv0IJFL2/Vp4uBlNpktFxY1UTXQr/59UttB7FXjO4dlkuL60WrtL1x6tXbppeZYa+i6tMnnVoHtOVq9ENjTFNpX0pdk9lsSDVcKT6f22HXw2xTYHUDUqHxe2YvN78HO5w3Tq68hLnXQT1x94mkzMUJVcytyZ0M+emiauT+OWpTvchWMa3rXJi0cq3t9P4fFTeiM7+1V6FuJVgHOJJ+bC96asx1+be1gvLmdIAL6D8MCTs4 +api: eJztW91v2zYQ/1eEe9oANW67Yg9GW8Bpss77SI3EaR+SYKDFs8WGIlXy5NQz9L8PlPwhx3ZMx+mAFnyKI98X745H/k6+KRAbWWhfQUeiofNCooWbGHJmWIaExn03BcUyhDbkRn/GhLocYhDKPWCUQgwcbWJETkK7hxCDwS+FMMihTabAGGySYsagPQWa5E6SJSPUCMoyXghnCwO+kfxcPBujsU7ITPyXAs1kTX4/xcgpQEvIo06vGy3ZtilyMoaskARteHH0HMryxllpc60sWkf/8vlz92dV1UWRJGgtxJBoRaiokoxfqZVL5kycrmvUAxcDiF00cjQkavmCb7JKFVKygcTaUWVce/lvzVHuFinZAKXdRMc4F24JTPZWOO55f5N+pTQxx/vEgi0xQ7ZDXl5AxX1JR6jQMNLm8vwvLwZLjIqNi7sXMJWKgSDkx5MGMTOGuZQUhJkj27hUIVElj2EkRuixiHJbIIZMWoyBBDlauKiXWsYwFGqEJjdC+Xn1Dgep1re7vVQY+YQGf5qp9WboLLdLWZcdtLTb6rrkePihrr5bg+iR9ysFxUNjYdH4m4eKeUY00VnO1MRvi6AZiwTfMcKRNnvx9Ce5lnrkx5PIwhKax/DsQ+vtTqU59rT2yejFgs+KbLBijlCEIzQQw1CbjFH96JeXm2QYtLowCXb5YUk2l3O2utIDJO0VkzFP/Oiyw4zLkIzwUyWZpXNMcOvGWwSHM8JnJDLcJqaTkBizw+QkBisJJ4ywojnIolMuNm56PwkcJc5tebwUU0jPGpWiTbXkO7fIr6821sPMSwsvzNYQPfqcjQEzJprlYKC1RKa2kn5ksvCTbFeS/gG5NrP+UnOm0NPeVHCOyo+2upW6fbB6Ldy2hbecuqwS0K9opoDKhfYKzjSJoUiq6PUq82O4QMVPK9fXny8ydwfvFKRtwqRQo5MBYxUQuu+RxcVgqatchUtPd6nd65JSG3SolK4aamiU6Y8z5OOTG3OeS18ocmi8b9Hv+ODCuv+55z77iklB9aPd9L7ePdd3dYSOh8ONZ8/OA2WVw7mb8Q9KTvY4S7xEbCv+O5j3SrMK5p+Qri/ieS5n+7P12eqAegPqDag3oN6AegPqDag3oN6AegPqDag3oN6AegPq/YFQb/WWN8DdAHcD3A1wN8DdAHcD3A1wN8DdAHcD3A1wN8DdAHd/JLjrGF9t+gH0MePR+ezC/QQ/gqZZWdh9ntSGPgbp7XM140irpX+7HqEsMZUchNymy5VBz+iBxOykssAe/KI9ePYhzz6qmRNcut2ldcF4sV4wLhUrKNVG/Is8VIxQMb5Xz4aK8U0qxqv1inGmKfpNFyqUi1AuvlvPhnLx5OWijKHT6558eDfHOqtl4z1SVMGYyOEYqPqGqebQhhFWrnajqW1ozWZibWu6mI4t3cOx4Ghsq2OKATvqKitGKbWWM66taXPetYS6FTyft61eiEBKlNt2q8VyccScnETqgh8lOgM3XmoxKYygScVxjMy4DvLVTfOrC5cpdTLMCZY4PBd/4vr0a1dZt+g/PvUj0rdYoeF6gLYzu3jVyHM2Qpsi42iqHBWureDkz0Fgc+lHnV53TdcaRfR7v99zI7fX6lqd6DslNeMRpRi9ZlFqcPjmGlo6R8Vy0ap6MUKNjty+uIaImBkhvbmGfwaSqdtreBt9yFE5sUMh8XWLvYUY5rO8szndGHJtKWPVxpotdC30m1+/NE4Q12Ks32HVaXE1H5V2Had2c2x6kRmuFdVcPsSNCWjHtTIPfRNDqt1LqSuYTgfM4qWRZeke1zPMLgWWHZAZGr9n9uLwe3DCeePiqibMvQnqcd1PhCoXx8yIek/uZchP57NB7p+jbarn2aomTZ1zk5audZPe/6PileiUN64VWu8E54CapJO4Rk+DuSn/plFQ3p/2oSz/AwwJOzg= sidebar_class_name: "get api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/list-alert-rule.ParamsDetails.json b/docs/documents/metering/list-alert-rule.ParamsDetails.json new file mode 100644 index 0000000..eaeb552 --- /dev/null +++ b/docs/documents/metering/list-alert-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"projectId","in":"path","required":true,"schema":{"type":"string","default":"*"}},{"name":"serviceTypology","in":"query","schema":{"type":"string","default":""}},{"name":"serviceName","in":"query","schema":{"type":"string","default":""}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/list-alert-rule.RequestSchema.json b/docs/documents/metering/list-alert-rule.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/metering/list-alert-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/metering/list-alert-rule.StatusCodes.json b/docs/documents/metering/list-alert-rule.StatusCodes.json new file mode 100644 index 0000000..09d0f1d --- /dev/null +++ b/docs/documents/metering/list-alert-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"alertModel":{"type":"object","properties":{"labels":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"annotations":{"type":"object","additionalProperties":{"type":"string"},"nullable":true},"startsAt":{"type":"string","nullable":true},"endsAt":{"type":"string","nullable":true},"generatorURL":{"type":"string","nullable":true},"status":{"type":"object","properties":{"inhibitedBy":{"type":"array","items":{},"nullable":true},"silencedBy":{"type":"array","items":{},"nullable":true},"state":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Status"},"fingerprint":{"type":"string","nullable":true},"webhook":{"type":"object","properties":{"url":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Webhook"}},"additionalProperties":false,"title":"AlertModel"},"request":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"description":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resourceId":{"type":"array","items":{"type":"string"},"nullable":true},"resourceName":{"type":"array","items":{"type":"string"},"nullable":true},"resourceTypology":{"type":"string","nullable":true},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"lastActivation":{"type":"string","format":"date-time","nullable":true},"creationDatetime":{"type":"string","format":"date-time","nullable":true},"lastEdit":{"type":"string","format":"date-time","nullable":true},"deletionDate":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"email":{"type":"boolean","nullable":true},"emailValue":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"smsValue":{"type":"string","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"alertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"parameters":{"type":"object","additionalProperties":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertAction"},"nullable":true}},"additionalProperties":false,"title":"AlertInfo"},"resourceVersion":{"type":"string","nullable":true},"resourceUid":{"type":"string","nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"lastReception":{"type":"string","nullable":true,"readOnly":true},"lastActivation":{"type":"string","nullable":true,"readOnly":true},"lastEdit":{"type":"string","nullable":true,"readOnly":true}},"additionalProperties":false,"title":"AlertRulesDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertResponse"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/list-alert-rule.api.mdx b/docs/documents/metering/list-alert-rule.api.mdx index 9c2e3da..ecab573 100644 --- a/docs/documents/metering/list-alert-rule.api.mdx +++ b/docs/documents/metering/list-alert-rule.api.mdx @@ -5,7 +5,7 @@ description: "List Alert Rule" sidebar_label: "List Alert Rule" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/list-alerts.ParamsDetails.json b/docs/documents/metering/list-alerts.ParamsDetails.json new file mode 100644 index 0000000..ac6b84a --- /dev/null +++ b/docs/documents/metering/list-alerts.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"serviceTypology","in":"query","description":"","schema":{"type":"string","default":""}},{"name":"serviceName","in":"query","description":"","schema":{"type":"string","default":""}},{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/list-alerts.RequestSchema.json b/docs/documents/metering/list-alerts.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/metering/list-alerts.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/metering/list-alerts.StatusCodes.json b/docs/documents/metering/list-alerts.StatusCodes.json new file mode 100644 index 0000000..6a1a979 --- /dev/null +++ b/docs/documents/metering/list-alerts.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"eventId":{"type":"string","nullable":true},"eventName":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"serviceName":{"type":"string","nullable":true},"resourceTypology":{"type":"string","nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"thesholdExceedence":{"type":"string","nullable":true},"component":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"email":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"executedAlertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"success":{"type":"boolean"},"errorMessage":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ExecutedAlertAction"},"nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"isParentName":{"type":"boolean"}},"additionalProperties":false,"title":"AlertsDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertReceivedResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"eventId":{"type":"string","nullable":true},"eventName":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"serviceName":{"type":"string","nullable":true},"resourceTypology":{"type":"string","nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"thesholdExceedence":{"type":"string","nullable":true},"component":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"email":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"executedAlertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"success":{"type":"boolean"},"errorMessage":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ExecutedAlertAction"},"nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"isParentName":{"type":"boolean"}},"additionalProperties":false,"title":"AlertsDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertReceivedResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"eventId":{"type":"string","nullable":true},"eventName":{"type":"string","nullable":true},"username":{"type":"string","nullable":true},"tenant":{"type":"string","nullable":true},"company":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"serviceName":{"type":"string","nullable":true},"resourceTypology":{"type":"string","nullable":true},"metric":{"type":"string","nullable":true},"lastReception":{"type":"string","format":"date-time","nullable":true},"rule":{"type":"string","nullable":true},"theshold":{"type":"integer","format":"int64","nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"thesholdExceedence":{"type":"string","nullable":true},"component":{"type":"string","nullable":true},"clusterTypology":{"type":"string","nullable":true},"cluster":{"type":"string","nullable":true},"clustername":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true},"sms":{"type":"boolean","nullable":true},"email":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"hidden":{"type":"boolean","nullable":true},"executedAlertActions":{"type":"array","items":{"type":"object","properties":{"actionType":{"enum":["NotificationPanel","SendEmail","SendSms","AutoscalingDbaas"],"type":"string","title":"ActionType"},"success":{"type":"boolean"},"errorMessage":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ExecutedAlertAction"},"nullable":true},"actions":{"type":"array","items":{"type":"object","properties":{"key":{"type":"string","nullable":true},"disabled":{"type":"boolean","nullable":true},"executable":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"RowActionBff"},"nullable":true},"isParentName":{"type":"boolean"}},"additionalProperties":false,"title":"AlertsDto"},"nullable":true},"metadata":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"type":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"AlertFilterValues"},"nullable":true}},"additionalProperties":false,"title":"AlertsBody"}},"additionalProperties":false,"title":"StandardAlertReceivedResponse"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/list-alerts.api.mdx b/docs/documents/metering/list-alerts.api.mdx index 6b19fdf..52ede73 100644 --- a/docs/documents/metering/list-alerts.api.mdx +++ b/docs/documents/metering/list-alerts.api.mdx @@ -5,7 +5,7 @@ description: "List Alerts" sidebar_label: "List Alerts" hide_title: true hide_table_of_contents: true -api: eJztG9tu2zb0VwQ+bUAat12wB6Mr4DTpll1aI3G3hyQYjqUjiw1NqiTl1jX87zuk5FtkJ3SSPbTgUyzp3G88ZHhmzMLIsO4l6wnU1rDrA1aChjFa1O79jEl6YF2Wc0Gv2AHjkp4+Vain9GDSAsfAujNmp6UDM1ZzOWLz+cES0yhtH4JXavURU8uVfAi2ynOD9/Pl0uLI65UrPQZbv/rp5QYtwcf8iUgZ1BOe4mBaKqFG09tEMzSp5qVXusvuUNWB5lAJx2Ubg3fu6cmJNy45yxakS7AF/db4qeIaM9a1usIwB0HJn00oyLb4d1PQQYGJY4DGYpb0+mfJCi1EgxeHz4nxtZPSlEoaNA7+5fPn7s8mq4sqTdEYQk8VeVNaTxm/2E4pwIk4a3NUQ2cSQiHjlJRDvKZvlQVxb3T8fMTmpAWKfJsOshIChgJrs84dC5wEAUqSOQgw59qEQQoIBJyAqBob1KCgNfhItzg291uOZ0FscEL+OdsD1qdECHRFOSRDgSlKQIYZJlXjEuQ0CLZJ4zdAUaP0XjjL2hKCQzmhKp1ioCHXq8s+5PeSiRYfzdPgoDzHFJsEbmMsky0jSz6z3FfFtpiVCPR2gaZQIgtJ7G2RNQ7iklUadim0U6TTLylihjIN08QFo5IYGrqiouqr93Jjg7MPbHDWSZVhXykRFrQbVWdIaAhya5kYAxdhoJTIGAha8IzcEijBF0wrWuZ8N9bzzc8jKil4AgMPM2MoXfhdsnfK8pynPsL6Xo0DdoEyO/Xa178vxm4R7FVWmRQE2fVkCOC7w9vWttw6+VlvxcuZvFlI20o7JbVW+i/6DKMQbxMGZBl35EH01xTMQRhcSXDatp3j1rIxPNasNxiWABk37jnbx/X1q/vhQ41yrj7XpjjO863W4KYPur06Lt0VyqjeP5xYtZULlXSgChzQN92C2tM1ton1p2tSFp3rgz3gDfPW757+rpk+kpY5Vtk03DEXFmQGuk4Lt1byCWbnTStckylL0dSDzkejYpsb29zY5sY2N7a5sc2NbW5sc2ObG9vc76HN9ee4sb+N/W3sb2N/G/vb2N/G/jb2t7G/jf3td9HfOkJH2+40HEOWnNfXJ9hT3GsIdU0jeEhht2CrdWftvEmzLTspJHnYAsIlcQpbWHd6ZbbSjNF7whifeAnM44/So2XvsOzDdm/RpDtNWheMF+2C8UFCZQul+VfMYsWIFeNbtWysGP9LxThqVwzaiiRvVSVjuYjl4pu1bCwXT14u6Guvf3by/k1N5/bF7j+5sUkzd+D3loWiTTYb+Wv7/mZ5l3WaK+emM1tePp+7lxOeoTadnq6GcHgmDR8VtgMLYu6AczHAUGkyCCusLU2304GSH4JDSoWqssNUjZm7G25o1665nXqMY6S9tKaf1+ufLlxM1G5fAKy2nSX/A9tX10kuEij5/Z9BYtUN+gOA+vZ7r2mxYH2+oUAgpXw0cpkrT3+xZVzX85Cs2uLVgkh+Gwz67r78lbySJ+qzFIq2grbA5BUkhcb8lyvWIV9KEr7jBz7I+YcuA65YYkGTHwji36EAeXPFXifvCdSRzbnAVx14TRIsLuI3l+zJa8rYMfgUahTddPKGyEvrrS0U7nRV+wCuA+ByMXPgsLvr8wfLGHAnXOu60zMsh1kK5f7dcclmsyEY/KDFfO5e15MGzter051mw+2PhVbjLv6Egbk5iIOdwM2ESwjoxlBLCMJyjiUEeDGoEiR0axJlD6xmvORujFvOXnYGd050bA2JmvfmxMiK97V70LwuWNtculOQH86bwZUfk12sFwkuNyx0y50UkPNrd0ZcJ7ATov7eS90/NdYw14lfrxW9X08HlPf/Aa5Iq6A= +api: eJztW91v2zYQ/1cEPm2AGrddsQejLeA06eZ9pEbibg9JMJzFk8WWIlXy5MYz/L8PpOSv2E7oJHtowafE8vG+efqRvpsxgrFl3UvWk2jIsuuUVWCgRELjns+YghJZl+VCEhqWMqFYl32p0UxZymxWYAmsO2M0rRyZJSPUmM3n6XKl1YYesq4y+hNmJLR6yGqd5xbvlysU4djblWtTAjWPfnq5wUuKUjwRK4tmIjIcTist9Xh6mylHmxlReaO77A5THWkOtXRSdgk4c5+enHkbkj5fsK6ACpYyg19qYZCzLpkawwIElXg2QWN3xHdT0WGBiROAlpAnvUE/WS0LseDF0XM2n187LW2llUXr6F8+f+7+bIq6qLMMrWUpy7QiVOQ54w11KglOxdm2RD1yLmGpc06FhkTDnzSBvDc7fn7F5imzKPNdNqhaShhJbNw6dyJwEkSo8IaCCHNhbBilhEDCCci69UFDCsaAz3TC0t7vOcGDxOAElcvEYFq/JUKoa4tGhRITKlBhjsl0WYGaBtG22/gdEI61OWjNsraErDFodW0yDHTkenU5hP1BOpVIRmTBSXmOGbYbeHvFcrNxIHxGwlfFbTVrGRjtAm2hJQ/Z2LsyqwySwmsD+wzaq9LpTYbIUWVhlrhk1ApDU1fWltAcFMZ2zSG0wbtOaY4DrWVY0m5UnZHWEkHtLBMlCBlGWoHCQNJCcI4qUIMbzGpC7tFYz4OfR1RS8AyGnmbGULn0u2RnmkQuMp9hA29Gyi5Q8VNvffP/Relegr2atM1ACjU+GQF4dHjb2yTI6c96K1nO5e2LdNtoZ6Qx2vyJ1sI4JNrzlAHnwrEHOVgzMAdpcaXB6bbvnLQtH8Nj3foZwzYAF9Z95oeEvnl0P32oU87118YVx3m+0xvCDsBsvx2X4QoV1JwfTkjvlFIiAQcKwE23qA4MDbW5/nQgZYFcHxwB75j3/vT0VyP0kbzssebT8MBcECgOptkW7l0pJsjPWyjcsKkq2daDzierI8yNMDfC3AhzI8yNMDfC3AhzI8yNMPd7gLn+Hjfi24hvI76N+Dbi24hvI76N+Dbi24hvvwt86xi92tXTcAw8OW/aJ56kryE0NK3iIYWdgOr1YO3tpNm1O5E2q/1+OUJZgrAX696ozFaWsYHRI4nlidfAPv4qPXr2Ds8+7PQWXbrXpU3BeLFdMD4qqKnQRvyLPFaMWDG+Vc/GivG/VIxX2xXjTFPyXtcqlotYLr5Zz8Zy8eTlYp6y3qB/8uFdw+d2Y/cfwlLSzh34s2WhOeuysW/b953lXdZpW85tZ7ZsPp+7hxPB0dhOz9QjOOorK8YFdWDBzF1wLgYYaiNZlxVEle12OlCJI3CLMqlrfpTpkrnecItZbQRN/YpjBONuvC6v17+6cDnRhH1BsDp2VuJ33G5d7yuLhpLf/h4mpD+jvwBout97LcSC9fmGAoGj8dkoVK49/8WRcd3Oo96gvyVriyL5dTgcuH75K3WlTvRXJTXwhApMXkNSGMzfXLGOrlBBJTp+4EOo8ZHbAVcsITBjpDdX7J+RBPX5ir1NPlSoHNtcSHzdgbcsZYtG/LbJPmWVtlSC30KtoZtB3lB56b21F4W7XTU+gZsEuFzMHLjV3fX5g2UOuBuuddtZymA5zFJo93PHJZvNRmDxo5HzuXvcTBq4WK9ud9oDt78WWo27+BsGPweR7iVuJ1xCSDeGWkIWLOdYQogXgypBSm9Nohywqh0vuXvFrWAvkcGdEx07U6KRvTkxspJ97T4Y0RSsXSHdq8gP5+3gyo/JPtGLDa42PHQrnH3O5tfujrjZwE6J5vte5n7UWFu5zvx6rej9cjpk8/l/rkiroA== sidebar_class_name: "get api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/list-metrics.ParamsDetails.json b/docs/documents/metering/list-metrics.ParamsDetails.json new file mode 100644 index 0000000..b508de0 --- /dev/null +++ b/docs/documents/metering/list-metrics.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string","default":"*"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/list-metrics.RequestSchema.json b/docs/documents/metering/list-metrics.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/metering/list-metrics.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/metering/list-metrics.StatusCodes.json b/docs/documents/metering/list-metrics.StatusCodes.json new file mode 100644 index 0000000..f046926 --- /dev/null +++ b/docs/documents/metering/list-metrics.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/list-metrics.api.mdx b/docs/documents/metering/list-metrics.api.mdx index d83b4f2..21f07ee 100644 --- a/docs/documents/metering/list-metrics.api.mdx +++ b/docs/documents/metering/list-metrics.api.mdx @@ -5,7 +5,7 @@ description: "List metrics" sidebar_label: "List metrics" hide_title: true hide_table_of_contents: true -api: eJztWV1v2zYU/SsCn9Yhs9Iu2IPRFnCbrfO2tkHsYg+xMVxLVxYbilRJyltm+L/vkpIdKbZjwfGAFtCTLel+nksemT5LZmFuWP+GvUereWTY9IzloCFDi9o9WDJJF6zPEi7oFjtjXNLVlwL1HV2YKMUMWH/J7F3uzAyFkXO2Wp1tPI3S9hi/XKvPGFmu5DHeKkkMHs7LpcW57ytROgNb3vrxRSOW4Bk/UaiqqWG8DpeDTel7jCbSPPfd9hnd0Pil4Bpj1re6wP09O9cECuHSfd9IBTn/YUFT3AFgM9s4xcClQ2MxDgZXw+DerU3a571zSjx1NZtcSYPG2b84P3cfzVSjIorQGHKPFMElrY+M/9gwF+BKXG5nVDOHGLkQdjlqy8v4VlkQB+H/6YKtqAsUya4eZCEEzASWIK9cCly0MpRUcyvDhGvTzlJAS8MFiKLCoDQFrcGNlVvMzGHkMr/XD9tpTFCjjJBWaytM/LprYbgJ/KGtB5UMMVg4vumEo2jXhoe3hSWZQhxzt7JBXNWSJSAM7VjLrbNltUero4O8TUHbEdUhcCj9Atd+S5H/03CxvPUIwBT6lMC805CnI9RPQ2ZkQcag4+oNdunQOFm064rRmA+Q54JH4GKEn43q2Kpjq46tOrb6StnK/6rqaKqjqY6mOpr6WmnKhbjYdVB8A3FwXZ5JT3JY9E9bDKQquYWlsWALc5Ar6fy/wzmmrcdFqzxcUiba1k9ZI8tVY+eQR3bpKzBP/2HbIfsIsse9hDtI90JaEsbzbcL4JKGwqdL8X4w7xugY41tFtmOM/4UxLrYZ44OywS+qkB1ddHTxzSLb0cXJ6YKeDq6Glx/frqW3Jm38wY0Nskou9YfoVNEZmM292ujlvD4LK53PhMuN4rdyNxc8Rm3CgS5m0BtKw+epDe+jGdSLtfBaaIKEpdbmph+GkPMeOK9IqCLuRSpjTnIzGBWa2zvv8QZBE+T9m2n90citinLwa4P7c23Of8dtRZAKI7CC3/4cB1bdohMCK1FxUP3IgroumyJQV349cjpHlyfgEt9Goz3CdSvXlkXw63h85WTIiZzIS/W3FIoOgzbF4CUEqcbk1YSFNE1JxYdeqKbx99wemLDAgqZBkMVfMwHydsJeBx/J1IVNuMCXIbymCtb6ZqVd0tiUsRn4TVQ1+mDMjZo38NXeFRTED2xZLYGbtdTrvPt12XezCuh7o/lyNa1l+FS5f65u2HI5A4OftFit3O1SwnXTjrlxqz3eHLdvaZI1ob76y4UxpwnvMa60+TamDTm+jcNGgW9jvJbYH7d9MIXNW/tRCXvnrMqsTYn8PvfUXWhekskuqPcW8t11pds/C/alXm89eVfP+QBmWimrKRlXW8sVUT4fRBHmdaTqwac1Pnr385h25H8Tm8o+ +api: eJztWW1v2zYQ/ivCfdoGzUrTYh+EtoDbbJ330gZJin2IjeEsniw2FKmSp6yZof8+UJIdKXYSIcmAFtCnIOK98J47PhL9rIFx5SA+hz+JrUwcLEIo0GJOTNYvrEFjThBDKhWThRCkhhg+l2SvIASXZJQjxGvgq8KbObZSr6Cqwq2nM5Yf4ldY84kSlkY/xNukqaP780rNtKrrSo3NkZtHzw97sZTM5ROFaouaiU24AjmDEAS5xMqirjYGCMHS51JaEhCzLen2mr1riqXy6X7opcJC/nhJ1u0BsJ/tLKPApyPHJILp8Sy4dhuS9tnkAKpq4ffsCqMdOW9/eHDg//RTnZZJQs5BCInRTJrryPSFo0Kh3+J6N6NZesQg9NgVZFk28dkwqnvh/+kFVCE4Uum+GnSpFC4VNSBXPgVdDjLU9IUHGabSumGWCgcaXqIqWwwaU7QWfVslU+7uRy6vz/r9dpZSsqQTmolhmNRzN8BwG/j9UI+cGAUyPrzoVJIaVkYN7wDLKgQUQvrJRnXcSZaichQCS/a20FmqHhzkbYaWT6VeKZrpesBtfaSqEB6HC8vBLUBX2qcE5p3FIjsl+zhkThm1QCvaN9iRR+PJop20jAZ1gKJQMkEfI/rkzMhWI1uNbDWy1VfKVvVX1UhTI02NNDXS1NdKUz7Ei30XxTcogpPmTvokl8V6dUBD2i0PsHSMXLp7ufL54T5nQYxSDcojtWPUyaNmZF31Ts5SUX5U78A9/sN2RPYOZB/2Eh4hvRXShjCe7RLGR40lZ8bKf0mMjDEyxreK7MgY/wtjvNhljPeGg19MqUe6GOnim0V2pIsnp4sqhOnx7OjD24301qeNP6TjIG/l0voSnRkBMaxqtbGW82KIWp3PReut4lf5h5dSkHXR1JZLnMy0k6uMo+tojuzlRngtrYIYMubCxVGEhZyg90qUKcUkMTl4yc1RUlrJV7XHG0JLFuLzRXfp1E9F0/iNwfW9tpC/064iONOOLAe//XUWsLkgLwS2ouK0/cjCri6bEQqy9TxKnZrmBtzg2yt0Mj2e7eTasQh+PTs79jLkXM/1kflHK4Mi4IyClxhkltJXc4hMQRoLGdVCtdSriT8DcwgY7Yr41Rz+XirUF3N4HXwoSPuwqVT0MsLXEMJG32y1yxAK4zjH+hC1hd5oc2/PW/g674oqbBq2bkfgfCP1eu+4K/tupwDCfvHNNG1k+Mz4X67OYb1eoqOPVlWVf9xIuL7bQjo/7WJ73b6gq65Q3/7kAuA14VuMW21+iGlPjh/isFXghxhvJPa7bW90YfvWvlPC3turJmtfIr/OvfD/WNmQyT6ob93Idyetbv99cFvqzdHTV92cN2CeCagWVbg5Wn4Tzfo0SajoItUNvujw0bufz6Cq/gMTm8o+ sidebar_class_name: "get api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/metering/sidebar.ts b/docs/documents/metering/sidebar.ts index 5d1480b..7edee0d 100644 --- a/docs/documents/metering/sidebar.ts +++ b/docs/documents/metering/sidebar.ts @@ -1,74 +1,72 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/metering/aruba-insight-api" + type: "doc", + id: "documents/metering/aruba-insight-api", }, { - "type": "category", - "label": "AlertRules", - "items": [ + type: "category", + label: "AlertRules", + items: [ { - "type": "doc", - "id": "documents/metering/create-alert-rule", - "label": "Create Alert Rule", - "className": "api-method post" + type: "doc", + id: "documents/metering/create-alert-rule", + label: "Create Alert Rule", + className: "api-method post", }, { - "type": "doc", - "id": "documents/metering/get-alert-rule", - "label": "Get Alert Rule", - "className": "api-method get" + type: "doc", + id: "documents/metering/list-alert-rule", + label: "List Alert Rule", + className: "api-method get", }, { - "type": "doc", - "id": "documents/metering/update-alert-rule", - "label": "Update Alert Rule", - "className": "api-method put" + type: "doc", + id: "documents/metering/get-alert-rule", + label: "Get Alert Rule", + className: "api-method get", }, { - "type": "doc", - "id": "documents/metering/delete-alert-rule", - "label": "Delete Alert Rule", - "className": "api-method delete" + type: "doc", + id: "documents/metering/update-alert-rule", + label: "Update Alert Rule", + className: "api-method put", }, { - "type": "doc", - "id": "documents/metering/list-alert-rule", - "label": "List Alert Rule", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/metering/delete-alert-rule", + label: "Delete Alert Rule", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "Alerts", - "items": [ + type: "category", + label: "Alerts", + items: [ { - "type": "doc", - "id": "documents/metering/list-alerts", - "label": "List Alerts", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/metering/list-alerts", + label: "List Alerts", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Metrics", - "items": [ + type: "category", + label: "Metrics", + items: [ { - "type": "doc", - "id": "documents/metering/list-metrics", - "label": "List metrics", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/metering/list-metrics", + label: "List metrics", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/metering/update-alert-rule.ParamsDetails.json b/docs/documents/metering/update-alert-rule.ParamsDetails.json new file mode 100644 index 0000000..ec95d2f --- /dev/null +++ b/docs/documents/metering/update-alert-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"alertRulesId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","required":true,"schema":{"type":"string","default":"*"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1.0"}}]} \ No newline at end of file diff --git a/docs/documents/metering/update-alert-rule.RequestSchema.json b/docs/documents/metering/update-alert-rule.RequestSchema.json new file mode 100644 index 0000000..c1e7b18 --- /dev/null +++ b/docs/documents/metering/update-alert-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"alertInfo":{"type":"object","properties":{"ruleInfo":{"type":"object","properties":{"name":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"RuleInfo"},"note":{"type":"string","nullable":true},"serviceCategory":{"type":"string","nullable":true},"serviceTypology":{"type":"string","nullable":true},"clusterDetail":{"type":"object","properties":{"aggregation":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nodePool":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ClusterDetail"},"serviceNumber":{"type":"integer","format":"int32","nullable":true},"resource":{"type":"object","properties":{"id":{"type":"array","items":{"type":"string"},"nullable":true},"name":{"type":"array","items":{"type":"string"},"nullable":true}},"additionalProperties":false,"title":"Resource"},"vdc":{"type":"string","nullable":true},"vm":{"type":"array","items":{"type":"string"},"nullable":true},"metric":{"type":"object","properties":{"name":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Metric"},"rule":{"type":"string","nullable":true},"theshold":{"nullable":true},"um":{"type":"string","nullable":true},"duration":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"notify":{"type":"object","properties":{"email":{"type":"boolean","nullable":true},"sms":{"type":"boolean","nullable":true},"panel":{"type":"boolean","nullable":true},"autoscalingDbaas":{"type":"boolean","nullable":true},"autoscalingDbaasValue":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"Notify"}},"additionalProperties":false,"title":"AlertRulesRequestDto"}},"additionalProperties":false,"title":"AlertRulesResourceProperties"}},"additionalProperties":false,"title":"AlertRulesResourceDto"}}}}} \ No newline at end of file diff --git a/docs/documents/metering/update-alert-rule.StatusCodes.json b/docs/documents/metering/update-alert-rule.StatusCodes.json new file mode 100644 index 0000000..f046926 --- /dev/null +++ b/docs/documents/metering/update-alert-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"Success","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metric":{"type":"object","properties":{"referenceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"referenceName":{"type":"string","nullable":true},"metadata":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Properties"},"nullable":true}},"additionalProperties":false,"title":"ChartSingleInformartion"},"data":{"type":"array","items":{"type":"object","properties":{"time":{"type":"string","nullable":true},"measure":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GraphSeries"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsData"},"nullable":true}},"additionalProperties":false,"title":"StandardMetricsResponse"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}}}} \ No newline at end of file diff --git a/docs/documents/metering/update-alert-rule.api.mdx b/docs/documents/metering/update-alert-rule.api.mdx index 6a6abb2..2803daf 100644 --- a/docs/documents/metering/update-alert-rule.api.mdx +++ b/docs/documents/metering/update-alert-rule.api.mdx @@ -5,7 +5,7 @@ description: "Update Alert Rule" sidebar_label: "Update Alert Rule" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztXN1v2zYQ/1cE7mXrlDjtij0YbYF8rJ23Ng2ctHtIguEsnSU2FKmSlFPP8P8+UJQsyXISOkkLFGVfmkjH++LdTzrqcguiIVFkeE72GUo9LhgqchmSHCRkqFGaewvCIUMyJLCiGcUkJJSTIclBpyQkMapI0lxTYS6SkEj8XFCJMRlqWWBIVJRiBmS4IHqeG2ZKS8oTslyGK/65FJ8w0j3mrryMGlMomCZD8qTDGXK6M0OpjHoV788FynlP87MUAyMOlcY42D8ZBc0yF7FPd/fIcnlpdUalD0Q8NysiwTVybX6EPGc0AiNw8EkZqYs+azExniCh8UmOUlNU5m6GGmLQDpTW8E2qts09hgwDMQ10abYShYyQLEPChFXwbjkzYIWDoI+GrJGUUMEDyoPrlEZpR3pwTRkLJhiUKmC8eyEv+P4MKIMJq5eqAHSQS1TI9dAQ7ASjs4M3OwcoE8jEBb/gr4UMMiExoHwqZFZaEwZRitFVKe8FBKnE6csLMohFpAa1Zwc/1bbvAI93zKWdCLlGeUECDTJB/fKC/DthwK8uyKtYREWGXJcrXgzg1a6JOwJxTM0VYCctb02BKVz3zKHgGihXbUUDmIhCl3qOra/ENIBmh0KiqWbG3W8rZY+0MPtms3m1GSAlmBinGjO1IffWdXlLlS43CRIVTIXsxkVIeMHKbbCJuKWh7yoP9+KtsaYmqazpRtrtccgov8J4XPF0ccINjApJ7w7nD5KumxFoERglHuqmt6UhG/e6Y2LlozVZoQXpEZ+Ku02VBUM3ypvQpCd96wDc0le1L8a16oaF0G7KKZQzGuEhaEyEnG+z5myeCyYStzURK5RGeYQaKLvbuZAkEpN1vL2ZPY2dyJz3jIsYT4RgDsSu23PY8UDjxuMim6BsCaJcY4KShMSCn73027NNeq5S4k6Pdjy0dQz2XPf1orj1yJ3FkdNuzbKH2ZahljR6zJQvCR4tdN5Z/cx+F8xRgxRVKli56b2bRebEIy6kewYqDY6Qw4Wm0/nd3sasCxUTIRgC3yi8s9O3EObA0ZEnFFqoCBjlydEEwFHA+qqPa++C7sntGhzH1p3O9E1VM7bv4+VT8z6rbaK2iB/ApVZC4xftSwBfAvgSwJcAvgTwJYAvAXwJ4EsAXwL4EuCHKQHaHwOe/OprAV8L+FrA1wK+FvC1gK8FfC3gawFfC/ha4MeoBZYW0nLBlY2BZ3t75r/u68BpEUWoFAnbHUXld4ScAd2qeNBCA7tze35/bvGaTZ0CPJc4c8sE/KKdCKdUKjdKBo6EZZHygHdCV8yUOEWJPMLRIz+iV4yPXVdsqBS3NHpKkbmZcWMNeM8sb2fZ/V9BUpD6lPLEvijKDGSZUgbrH+QXTZ23AFQhH9MxbyTk6SnKh3nmVAOPQcb2SauOjDcejdu4QrTeYce2Rx0erTxaebTyaPXt0Ope3RkepjxMeZjyMPWtYMqweL6pUDyAOKiK3EcpFt1OdVYqO56aFOpOrNx8+BevH6becj7KlQYePShGFstO5kwYZvYwUz38xdZ79hbP3u8h7F16o0stYDztA8YHDoVOhaT/YewRwyPG9+pZjxhfBTGe9xHjWOjgtSi4hwsPF9+tZz1cPDpcLEOyfzI6en9o+fSaZfIYNAbld7DAfAgjZSWditj8xX9Retv83f+QDKqBAGqwWI0GWJqLMxqjVIN9WUxgd8QVTVI9aKYTDBbtSQVLYvsN6mEGhWRkSFKtczUcDCCnu2D4REwU8W4kMmL+fF9hVEiq5+WKAwRp2hTOL9u3Tk2w2HioCZpyN6d/Y3+6wIgrY/Rf/5wFWlxh+RXVDijYr9697EfnakRBihCjLMPUROi4GSnwxxfIchtZ7UOIitlqQ9t9e9UBQqsXoB79UF257LVY9Zqozqt+qBWTy7UGo3YL0boyG8TZVp2GpNeR07vVNN40t3r9NZ0OmobOtIG0gn1NvabtpeWitT6VvW7XiWHY2FOz7FhYtnE0Qky3RntFc+jV81YnN1ftDw2BaWRo9aOt+hVaLrNtCW0T6+6Dqr/ApmfZQWB/rHoE7C/9LoDN16vv/Hs29WndQVZ/724n6e7+yaiXFT2K4M+zsxMzfMN0bh6Ja84ExOttmiJHDjkdlGNKKE92TYpsbMoM3ufIDdspZWiaMs1GVFM9qokdIcmF0hnw1lZswqmO4qtsb73xmA4TWQahxbDzeqiJ+WQ/bA84WcEYCbseIGFr0IpZ1Rm7chmSVJgj2XOyWExA4QfJlktz2Q40MTkaU2VgPN7cUtgaRnLruJONxl3hvDdOpUaWEg5mIKl9hmylyM/jasbLL8FNomto5fO2zJVKbSeZyS/fUHazrUuT8xVsGwfY+4dW1M6Z4dKs773UGbXtiv0owly3aNvqXLaelycfzkhIJtWUmUzEhljCtZmaA9dWSVHabA/PzbUFYcCTAhJDawWbf/8DiYVJqQ== sidebar_class_name: "put api-method" info_path: docs/documents/metering/aruba-insight-api custom_edit_url: null diff --git a/docs/documents/network/create-elastic-ip.ParamsDetails.json b/docs/documents/network/create-elastic-ip.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/network/create-elastic-ip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-elastic-ip.RequestSchema.json b/docs/documents/network/create-elastic-ip.RequestSchema.json new file mode 100644 index 0000000..a59f6ca --- /dev/null +++ b/docs/documents/network/create-elastic-ip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"instance of the elastic ip to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-elastic-ip.StatusCodes.json b/docs/documents/network/create-elastic-ip.StatusCodes.json new file mode 100644 index 0000000..e80e408 --- /dev/null +++ b/docs/documents/network/create-elastic-ip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-elastic-ip.api.mdx b/docs/documents/network/create-elastic-ip.api.mdx index 072ce05..241263e 100644 --- a/docs/documents/network/create-elastic-ip.api.mdx +++ b/docs/documents/network/create-elastic-ip.api.mdx @@ -5,7 +5,7 @@ description: "Create ElasticIp" sidebar_label: "Create ElasticIp" hide_title: true hide_table_of_contents: true -api: eJztWd1z4jYQ/1c06ks/AOeu7QtzvRlI0pbeR5iEtg+B6Qh7AV1syyfJ5FKG/727ko0NOBeS9OXmyEMmkXe1u7/9afWxK27F3PDuNT+PhbEyHGR80uKZ0CIBC5o+rXiK//Auz7T6AKEdRLzFZUoDwi7w7whMqGVmpaLBPJUfc2AygtTKmQTN1IzZBbBCnZ2+G6KSho+51BDxrtU5tLgJF5AI3l1xe5eRNWO1TOd8vW5tHBCZbC/RKTJUuICm9N2eDyM0RwbAWIhYbzhgldp9hmiOmchji0Mv0OzE+4hT9FV0R/LbNmRqrEhDKMMDDyCTGbOKhRqEBZw0VKlFJEhfZFksQ0H6wQdDk6xq3og4vpg5uAu/1JTgwikQuAy0lWBIDvMiImHrEdwj6VFrirMex3uUKmPQYFSuQ+DrFo+Vd/VhO0sR5wcY+ovEKktzHGUyZbcLGS62rLNbGcdsCsy5AFFnrMdpbylkLKZxqWqYsEgpMAhulwTabDDq/9bug56LRI3Tcfqr0ixRGrmYzpROXDQthoCHN87eK8EWGma/jHkQqdAEJbLBN2XsbZFGbRpqh2gG9JgzK/QcLOr8M41FejPmr1E3T/Cz03gViNcdIi0XUSRpRMTDGlozERvYReYUOSKQT3VHmZiq3Do/Lz1WiJyoMtTiVtqY4H5bOHtmFeXNL+hNMoTWghaItJCYhuW168tbaaxLEk7D0JttXrR4mscuDX7dPjLQdwXCe3yroilFimi2mXboGpkigTC6IWboKWqgpYqaCP3I4MuY+pU7LqzJLi6FAMvI4UdiWgnsV6Iarpv6Xsk3+/LAfE+EYGPeGyU9C5/ssQ4e6+CxDh7r4NdcB+vHwu9/OBbEY0E8FsRjQfxqCyJpYvozXMke/JcnL/Zv36fufh1tX7DdiRKhkjsV9PC6uRNECzMsbG4aP+3U1GeGf1mE7GDY2RX294QvMaJ7zvtfXiik/9PJyT4p+yLCmuzejP4PYvqvDxabjb8HSFaIFaISfZyDRlm/wfihH182KUeYCxkfZKd8HHtOrVxVkVHtQY3kzHlgnr1Ajsh+DtknLdQjpPdDSmo/NxWMAZ0dcSZ2BXoJmp1rrbTLQW84OLs4LR/Hm/Y+Vr3Yt6hMLuhkwjPlao97me/yoHhzN8Fq83i/psGljECboKfzqei8B3ur9E0A5YSGnsmdR/79P9cIJF9Ym5luEIhMdgQphrHKo06oEndYMBDmWto7p9EHoTFR3etJ/dMVccnTpRSojqOZfAP7L/kDrLrasj/+HjGrboAe8ItmQC/HkLX8199FinbAAgQG5hAkAl9WD/jnn0SSeeJt7Sl+sk2+65eb4vpSOxGXzZJiZLK30eycL3fOjVVPw7Fuplz8BWu2ctHpZXIPiz0J9vtoNKT2Bl1qztRtGivcgXZuMOheiuAGqddrl9nvEECN9xZ2gSrUNJnJGOjegp6U/ZMuf9E56Zy4EzhSLfFxFig2EHMrgk2ya/shTuTotSo4e122mYiE3XrLaUNb/HsLCvy/Rl3k24IWAc60Wk2FgT91vF7TsO8VET0jaWhRR80n51W1dX+2k9QYzA2SeLdTVRLJrZOl0NJXlEc58u1l0TD7jh3YYWt0r1xt6V3dr9LtCu41cbtYTeSo/37q3WmPaJZKf28rpp6d1+iFIWS2Jlt3Z1IrXMOLqxGKTYteW6IiktbilnqF+Nt5qRwwbqW5sRVHys5zMSdZb5l+/gPmpyzU +api: eJztWUtz2zYQ/iuY7aUPSnLS9sJJMiPbaas2iTWO2h4sTWdFriTEIEADoB1Xo//eWYIUqYcTP3rJRDyCu9hvP+wuHrsEj3MH8QW8Vui8TAY5TCLI0WJGniz/WoLGjCCG3JoPlPhBChFIzQPoFxBBSi6xMvfS8GCh5VVBQqakvZxJssLMhF+QqNTFydshRGDpqpCWUoi9LSgClywoQ4iX4G9ztua8lXoOq1W0BoC57FyTdWyognBVkL3dwTBakGAD5Dyloj8ciEbtLkM8xwwL5SGGZ7BaTQJGcv7YpLcsv2lDaudRJ1S7R4FAIXPhjUgsoSeIIDHak/asj3muZIKs3/vgeJJlCw0qdTYr6a5wmSnTBRHznpP1khzLZeQxRd/24A7JwNo+P9t+vMNs7YMlZwqbEKwiUCZA/byda1TFPQz9xWKNpbk0WkgtbhYyWWxYFzdSKTElUUKgtDu2Y92/RqlwqmpVJ9CL3JIj7WMW6IjB6PjXzjHZOWZmrMf6F2NFZiwJqWfGZqU3kUgWlFyW9l6gWFiavRxDLzWJ69XM9r6pfe+gTjs81ElIe7JjEB7tnPzLMfwzVagvx/AqNUmRkfalxosevupy0AKmqeQRVMMWWzNUjraZOTHao9SuDVTg1BS+xHkeuDIzgc0KReClV0z3mwrsqTe8biGh14uB1iIniPSUuT3ptY3ljXS+XCScOzEzdjMuItCFKpch5O0DHX1bMbwTb403tUjlzWak3TdHplIpqedDhfoxamSlSfcF9AOdr306buCUbk22eakERM6AH8hpI7BbiVq8rut7I78fy2fmeyQFa/PBKOt5+ugPdfBQBw918FAHv+Y62D4Wfv/DoSAeCuKhIB4K4ldbEFnTksuNdoH850fPdm/fJ+X9Ot28YJcnylyh3Kqg96+bW05E4Dz6wu39tVVTn+j+eeVyScPWrrC7J3yJHt1x3v/yXGH9n46OdoPyGFNxHt6M/o/ADH8/W2zWeO8h2TBWiUrtaU4WIggbTBj68fk+5ZQ8SnUvO/Xj2FNq5bLxjGvPVFF2WiJwT06QA7OfYvZRiXqg9G5KWe3nfQVjwGdHjUq8J3tNVry21thyDfrDwenZSf04vm/vE82LfcRlcsEnE8hNWXvKl/kYetWbu+st14/3Kx68lilZ1+vbYordd+RvjL3sUT2h42fyElF4/y+sghgW3ucu7vUwl11kxUSZIu0mJisPC46Swkp/W2ocE1qyEF9M2r/ecyyFcKkFmuNoLv+g3Zf8gXZkvfj975Hw5pL4Ab9qBvQLvzBW/hvuIlU7YEGYUmCQA/i8ecB//RGzPATexp4SJluvd/tyU11fWifiullSjUx2Npqt8+XWubHpaZRRNzOl/1XUbKxFt5/LHS52JMRvo9GQ2xt8qTk1N1oZTLdvMCYnjbns6aDXqVe/ywTtvbeIs5w0N01mUhHfWyCCun8Sw7PuUfeoPIEb57PgZ8XinsDc8GC92K39cBWF8FpWMXtRt5k4CON2y2kdthBtUgERtEJ3EsGCkyC+gOVyio7+tGq14uHQK+LwTKXjpE73n5yXzdb9yU7SXmcu6XanU1UHUpkn12hlqCgPAvLtedUw+07cs8O2F16dbfq2jauG3dC94tiusomBhv8nAU5nxLM0+jtbMffsgkY/SSj3Ldk2nEmrcA3P3o8ggmnVa8tMytIWb7hXiDcBpSmJKTOtHFuCQj0vcM6ywTJ//wHmpyzU sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-security-group.ParamsDetails.json b/docs/documents/network/create-security-group.ParamsDetails.json new file mode 100644 index 0000000..e8b6e94 --- /dev/null +++ b/docs/documents/network/create-security-group.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-security-group.RequestSchema.json b/docs/documents/network/create-security-group.RequestSchema.json new file mode 100644 index 0000000..d84924b --- /dev/null +++ b/docs/documents/network/create-security-group.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"instance of the security group to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."},"preset":{"type":"boolean","description":"If true, create securityGroup with default security rules","default":false}},"additionalProperties":false,"description":"Properties of a security group to create","title":"SecurityGroupPropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"SecurityGroupDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."},"preset":{"type":"boolean","description":"If true, create securityGroup with default security rules","default":false}},"additionalProperties":false,"description":"Properties of a security group to create","title":"SecurityGroupPropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"SecurityGroupDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."},"preset":{"type":"boolean","description":"If true, create securityGroup with default security rules","default":false}},"additionalProperties":false,"description":"Properties of a security group to create","title":"SecurityGroupPropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"SecurityGroupDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-security-group.StatusCodes.json b/docs/documents/network/create-security-group.StatusCodes.json new file mode 100644 index 0000000..b24768b --- /dev/null +++ b/docs/documents/network/create-security-group.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-security-group.api.mdx b/docs/documents/network/create-security-group.api.mdx index 38bbf22..ac5e380 100644 --- a/docs/documents/network/create-security-group.api.mdx +++ b/docs/documents/network/create-security-group.api.mdx @@ -5,7 +5,7 @@ description: "Create SecurityGroup" sidebar_label: "Create SecurityGroup" hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/isE92UvtpV02xejK+AkXeetbYzE2z7EwUBLtM1GIlWScuoZ/u+7I/Vq2ZmTBgUKOB+ChLojn3vu4ZHSrallc0P7N/Sah5kWdvVGqyyltx2aMs0SbrnGx2sq4R/ap6lWH3hohxHtUCFxgNkF/B1xE2qRWqFwMJPiY8aJiLi0Yia4JmpG7IKT3J2cvxuBk+YfM6F5RPtWZ7xDTbjgCaP9NbWrFFczVgs5p5tNpwSwTMOnLg6uREhyvxDhwg2YPGYyx6DJvYhjMuUk1JxZHj0RIEtFdwmsIZgcJsDRqxbOMSDABbiBxchgNCSV276FcI4Zy2ILQ6ew7K3HCFOcqWiF9s01hDSWyZAXFGxFbFUeLEwcKmmBMZyDpWksQoZzBB8MTrSuIWJxfDlzmsixqSnmFKaA7KZcW8EN2oF4WMRsPYo9lp65XbHWY3kPVkUcmhuV6ZDTTYfGykP9/3WWLM4OWOgvNKtWmsNoUzfF6qViHAQe9SZ6IgdLJmI2jQtXQ5gF3XMD5PbRoEuG47M33TOu5yxREzmRvypNEqVBs3KmdOKi6RAgPLxz671kZKH57JcJDSIVmqBgNvimiL3LZNTFoW4Iy3A9ocQyPecWfP6ZxkzeTegr8M0SeOw8XgbsVQ+FS1kUCRxh8ajG1ozFhm8zcw4aYaCpOlDCpiqzDueV5wqYY1WGOtQKGyPdb3OwF1Zh3nzlKZPBtGa4SYTlidmxxbaxvBXGuiTBNATQNHXRoTKLXRr83n1koO9yhlt6q6IpTPJomko7dI+Uu7k0nCoVcyZbohzKCLckB+53buUkAzpAiozkcxKTTSW3TpOXMl4RJXn1rOmM9LnqCGKNEmGMAOJ6PiwQ7kH4ABXWyLyglCu8yUurXbQX11kMNNRqmsvFI1NVGXjhPVDiitQ1zrrK32Xy9jPmf6TkdsLxINDX8k/2WH6P5fdYfo/l91h+v3j5rV+Cv//hWIePdfhYh491+FiHv2wdRm/gPoUC4qXy4uS0/ZnjvPxiU/uK4e7PaczEVuE+vFxvBdKBTchsZnY+2irlz0DBVR62o2LrQGofR19rVHvecr7OcHCOn05O2gI9YxEcC+5D3XOI1D9tH+CtgHPMB1hWrOWmAjDOuQZbf8b5oR9f7HKOIB8iPmid4ovkAcZ7E7KuIsO6BB7JhUNgPnujHJl9iNknbdYjpfspRbefdxWMIV5fYSZyzfWSa/Jaa6VdDgaj4cXledGR2HUOkmYvp4PlcqEi7JcoV39c26RPg7wbY4J12dbZ4OBSRFybYKCzKeu95/Ze6bsALkZg6Novm6BxrcG7i3Ewfaso08AuXVibmn4QsFT0GM4UxiqLeqFK3O2imMF5nHGmIXv9m9v6o2sUmNdQYVBdk1PxB2/3VIZQirUlv/89hhvJHcf7Wd6WGWTAgRb/+nekvDGz4AwidbSiqq+qVsrrTyxJvRobh42frBRB/aUrf62q3dSL3lo+cts6gcobn09mccss73/4fuGCzvXTyEhvkIoWAS0L8tt4PMLuEr5hXah7GSs4i7ZepwCTBEYD6f26hQZ6yMrOlyhyCS7Ys5qJmONLFCAp2ld9eto76Z24ezMILmGyRt0eiTaiKLNcOx1hMqerda7em6IVierr19uSpYDh7wYdCBFEjPZFF3FLxyC+BW4RmH29njLD/9TxZoPDvoWHWo2EwW0f7b6Hr6vD/cEG384A70DR2w3EQlVu0yyZFr7mPArIt1d5H/M7cmBndie8YuvJVR1XAbtKATZDnxfc4zu3TwjAa2KDuzSvC8iyf3bu4XbHOEPl27ppYOjeYxCGPLU12zqU21pNHl1ej8FsmvdvExWhtWb32H+G3w6hcsS5muHG1hT24Txjc7T1K+PPf6s7RcE= +api: eJztWdtuGzcQ/RWCfellJTlp+yIkAWQ7TdVcbNhq+2AJxWh3JDHmkhuSK0cV9O/FkHuTVk5lJwgQQHrkDskzM4eHQ82aO5hb3r/h1xjnRrjVK6PzjE8inoGBFB0a+rzmClLkfZ4Z/R5jN0x4xIWiAXALHvEEbWxE5oSmwVyJDzkykaByYibQMD1jboGsmM7O3l7yiBv8kAuDCe87k2PEbbzAFHh/zd0qo92sM0LN+WYTVQCWWfzYzZdZzIRidwsRL/yALXxmc3Ka3Qkp2RRZbBAcJo8ECJnoLNFYAlPA/JCjWbVwjhbIaAO0DhM2uByyetp9G9EaM8il433+hG82k4ARrTvVyYrst/cQyjpQMZYh2PHY6cJZHvFYK4fK0RqQZVLEQGv03ltaaN1ABFJezDwnCmx6SjnlEZEjQ+MEWrJL0UECrunFPZYhcvt8bfryDtLKD4NW5yZGvom41AHq/++zBJkfsNFfZFbvNBdabfOm3L1ijIeASXdsxmqwBCFhKsuploFjmUGLyvXJoMOGo9NXnVM0c0j1WI3Vb9qwVBtkQs20Sb03EYsXGN/6/Z4BWxicPR/zXqJj2ysj2/uu9L0DKunQUCdG5dCMOXNg5uiej/k/UwnqdsxfJDrOU1TOz3jWgxddIi6HJBE0AvKyEa0ZSIu7kTnTyoFQtgmUwVTnzuO8CrHSMwZ1hiLuhJMU7jcF2HOnKW9BeapkgDFAh0Q4TO2eI7aL5Y2wzicJ5pbNtNnmRcRVLn0awtl9oKNviwi3+FZ7U5oU3mwz7dAzUp3mynCqtURQLVIOVUJHEi0Te49ymltHVARWrMlsPlXoPCcvlFwxrbD+tj2ZwufV0TJIUmGtmErsBrfQ4kH4ZsxrZCEo1Q6vCml1i/bmJpdom5rmc/HAVNUGgXifkLgydVt3XT3fZ3LyGes/kHJ74QQQNNfhR3eU36P8HuX3KL9H+f3q8tssgn/86ajDRx0+6vBRh486/HV1mGYbtJlWNlDl6cmT9t8cZ9U/No1/MXz9nEkQO8J9uFzvOBJx68Dldu+nHSn/AiG4Ktz2odi5kNrX0bfq1T2vnG/THVrjl5OTNkFPIWFX4Y+6L0HS8LV9gbccLjAfYFlHrTAVyuEcDY94uOPC0M9P901O0IGQB+1T/iN5gPG9CVnXnpEuTSWm5x6B/eyDcozspyL7qMN6DOn9IaVpv+4TjCGVrwoku0azRMNeGqONz8Hgcnh+cVZ2JPbdg2y7lxORXC50Qv0S7fXHt036vFd0Y2xvXbV1NjS4FAka2xuYfArdd+jutLntLbPY9ta+/bLpbZU1VLtYDzO0inIjeZ8vnMtsv9eDTHSBVoqlzpNurFNfXZQr+BmnCAYN799Mmp+uiWCBQ6VBXSZn4jW2eypDZdE49sffI+b0LVJ9VrRlBrlbaCP+DW+kojGzQEgwhJVYfVW3Ul5+hDQLbNy6bMJiFQmaj67iWdWo1MveWjEyad1AVcUXkllWmVX9R+8L73TBn62MdAeZaAWgZcF+H40uqbtEL6xzfaekhmT3OaUzVJCJngrzOiUHuhSVvY8odpGhop7VTEikRxSPeNm+6vMn3ZPuia+btXUpqEbo7qHolhdVlhu34yYKvFoX7L0pW5HEvn6zLVkRmEfb4SCIWeztyy7iDo8nEV/QEenf8PV6Chb/NHKzoeHQwiOuJsLSsU/21+Hr+nL/ZINvr4O3uGo1EEtW+UOzBCOC5jwIyPdXRR/zB3ZgZ3YvvPLoqVUTVwm7TgE1Q78suId3bh/hQODEhk5poQsU5fDtLMDtjGiFem6r0iDXw4xBHGPmGrZNKJOGJl9eXI94xKdF/zbVCVkbuKP+M9wFhNoHzmuGH1tzCWqew5xsw870+w+rO0XB sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-security-rule.ParamsDetails.json b/docs/documents/network/create-security-rule.ParamsDetails.json new file mode 100644 index 0000000..a7302bc --- /dev/null +++ b/docs/documents/network/create-security-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"securityGroupId","in":"path","description":"unique identifier of the security group in which the security rule will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-security-rule.RequestSchema.json b/docs/documents/network/create-security-rule.RequestSchema.json new file mode 100644 index 0000000..32f694d --- /dev/null +++ b/docs/documents/network/create-security-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the security rule to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"direction":{"allOf":[{"enum":["Ingress","Egress"],"type":"string","title":"RuleDirection"}],"description":"Direction of the rule.\r\nAdmissible values:\r\n- Ingress\r\n- Egress"},"protocol":{"type":"string","description":"Name of the protocol.\r\nAdmissible values:\r\n- ANY\r\n- TCP\r\n- UDP\r\n- ICMP"},"port":{"type":"string","description":"Port can be set with different values, according to the protocol.\r\n- ANY and ICMP must not have a port\r\n- TCP and UPD can have\r\n - a single numeric port. For instance \"80\", \"443\" etc.\r\n - a port range. For instance \"80-100\"\r\n - the \"*\" value indicating any ports"},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.\r\nAdmissibile values.\r\n- Ip\r\n- SecurityGroup"},"value":{"type":"string","description":"Value of the target.\r\nIf kind = \"Ip\", the value must be a valid network address in CIDR notation (included 0.0.0.0/0)\r\nIf kind = \"SecurityGroup\", the value must be a valid uri of any security group within the same vpc"}},"additionalProperties":false,"description":"The target of the rule (source or destination according to the direction)","title":"TargetDto"}],"description":"The target of the rule (source or destination according to the direction)"}},"additionalProperties":false,"description":"Properties of a security rule","title":"SecurityRulePropertiesDto"}],"description":"Properties of a security rule","nullable":true}},"additionalProperties":false,"title":"SecurityRuleDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"direction":{"allOf":[{"enum":["Ingress","Egress"],"type":"string","title":"RuleDirection"}],"description":"Direction of the rule.\r\nAdmissible values:\r\n- Ingress\r\n- Egress"},"protocol":{"type":"string","description":"Name of the protocol.\r\nAdmissible values:\r\n- ANY\r\n- TCP\r\n- UDP\r\n- ICMP"},"port":{"type":"string","description":"Port can be set with different values, according to the protocol.\r\n- ANY and ICMP must not have a port\r\n- TCP and UPD can have\r\n - a single numeric port. For instance \"80\", \"443\" etc.\r\n - a port range. For instance \"80-100\"\r\n - the \"*\" value indicating any ports"},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.\r\nAdmissibile values.\r\n- Ip\r\n- SecurityGroup"},"value":{"type":"string","description":"Value of the target.\r\nIf kind = \"Ip\", the value must be a valid network address in CIDR notation (included 0.0.0.0/0)\r\nIf kind = \"SecurityGroup\", the value must be a valid uri of any security group within the same vpc"}},"additionalProperties":false,"description":"The target of the rule (source or destination according to the direction)","title":"TargetDto"}],"description":"The target of the rule (source or destination according to the direction)"}},"additionalProperties":false,"description":"Properties of a security rule","title":"SecurityRulePropertiesDto"}],"description":"Properties of a security rule","nullable":true}},"additionalProperties":false,"title":"SecurityRuleDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"direction":{"allOf":[{"enum":["Ingress","Egress"],"type":"string","title":"RuleDirection"}],"description":"Direction of the rule.\r\nAdmissible values:\r\n- Ingress\r\n- Egress"},"protocol":{"type":"string","description":"Name of the protocol.\r\nAdmissible values:\r\n- ANY\r\n- TCP\r\n- UDP\r\n- ICMP"},"port":{"type":"string","description":"Port can be set with different values, according to the protocol.\r\n- ANY and ICMP must not have a port\r\n- TCP and UPD can have\r\n - a single numeric port. For instance \"80\", \"443\" etc.\r\n - a port range. For instance \"80-100\"\r\n - the \"*\" value indicating any ports"},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.\r\nAdmissibile values.\r\n- Ip\r\n- SecurityGroup"},"value":{"type":"string","description":"Value of the target.\r\nIf kind = \"Ip\", the value must be a valid network address in CIDR notation (included 0.0.0.0/0)\r\nIf kind = \"SecurityGroup\", the value must be a valid uri of any security group within the same vpc"}},"additionalProperties":false,"description":"The target of the rule (source or destination according to the direction)","title":"TargetDto"}],"description":"The target of the rule (source or destination according to the direction)"}},"additionalProperties":false,"description":"Properties of a security rule","title":"SecurityRulePropertiesDto"}],"description":"Properties of a security rule","nullable":true}},"additionalProperties":false,"title":"SecurityRuleDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-security-rule.StatusCodes.json b/docs/documents/network/create-security-rule.StatusCodes.json new file mode 100644 index 0000000..5e0a485 --- /dev/null +++ b/docs/documents/network/create-security-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-security-rule.api.mdx b/docs/documents/network/create-security-rule.api.mdx index 7aa26a2..d0956ae 100644 --- a/docs/documents/network/create-security-rule.api.mdx +++ b/docs/documents/network/create-security-rule.api.mdx @@ -5,7 +5,7 @@ description: "Create Security Rule" sidebar_label: "Create Security Rule" hide_title: true hide_table_of_contents: true -api: eJztWm1v2zYQ/iuE9qXt/JK+DBiMtoATZ523tjESd8NQBwMt0TYbWVRJymlm+L/vjqTe5TRx86EolAKNQ93xnjs+Rx7l23qaLpU3+OhdMD+RXN+cJyHzLjteTCVdM80kPt16EfzhDbxYik/M1+PA63g8wgGqV/A5YMqXPNZc4GAS8c8JIzxgkeYLziQRC6JXjDh1cvJuAkqSfU64ZIE30DJhHU/5K7am3mDr6ZsYrSktebT0drtOBmAT+4caB1XCI3K94v7KDCjnMllKkcRkRRWZMxYRXzKqWXAgwnTWNzjpoVgr0JphS1gqcs3DEGB/I2ga8+4G1hphOcAATN7UEE8BABpgCoyR4WRMcrV9hnCOBU1CDUNPweylxQhTHIvgBuXLNupOauH8g7l8EWkIF6rROA65T1Gt/0mh7rYAgobh2cKQ18ERcyQfTAE0jJnUnCmUA5bTgOoi8D2SNlhN7hXhvwepdB0lUyKRPvN2HS8UFurX7WxomNzB0F8olltawmiZKan1jCQGAgt6MzmLhhvKQzoPU1VFqIYEZQqCO0CBLhlPj990j5lc0rWYRbPoNyHJWkggbLQQcm286RAIuH9l7L2kZCXZ4tXM6wfCV/00sv2fUt+7NAq6ONT1wQyTM49oKpdMg86/85BGVzPvNegma3hsNF726esectWjQcBxhIaTQrQWNFSsGpkT4Ajl4FIBKKFzkWiD89zGCiJH8xXqeJrrEMP91oEdaYHrZnfIbDGolBTzgmu2Vg1ZVcXylittFgmmIYCmzIuOFyWhWQabrvd09J2LcI1vuTepiPOmzLS75kgAG4qfkjdXYlGyxsNjHC3BsgK1U/sBUrzK3RQPHjCjbDrcDMouZc8yn0DBMjZYc6U4UtZkiEppaq3bPxwA66kWvgjvl7Gp1q0Wh+//sR+mJxP74cPIfRjj2YbWhdRftzwBKeLTCJNTMQ2Jqlck4IsFk5AAzmiHUN8XMoAJcCesoTR4CGSWMU7WCRAuEhoOtA0DhiOSDK0R+zAZGaMogE8I/HRBUoEFcBUWlUnuG8UewaSHVNI0go1k5v16NPM68PvFi+eQvEz7veIMqEIkjZasQbH79AiUc3F0ZOY9gWmMnyAcmN0c3KTRjZlL2QTEHeI+dL2CqfYwNQbhi+IRfRtXT6MgFjzSU3hu8qfGVnySUsfiLBGHZ8xxKzWO7e8yBHDykD2/YHC8IOg0eQURBRuwRKbkMdKGEHOkAvzNAxIxfS3kFYF9BnMFz4yT8egcOWN3ykc88sMkgAP+qGf+9Y8eV42UHLjdHsiZvRbWtFLXIN3BujnwMQehRLvvVj/N4lDcL8gjd/IBB0EeOOXOgGoiZRvb48KyT818exb8wezd09FcwB5cpQqpAL5YyOc6zc58bc57nk1NEKxhVNXsi27LtLZMa8u0tkxry7S2TGvLtLZMa8u0765MK75Ue/JzW6+19Vpbr7X1WluvtfVaW6+19Vpbr31f9RoqA9tiKDRsjj47elr/RvUk+3K48O2peR8Xh5RXCry7l3UVPzqQXVQnqvFRpeSrPt4z5SGhOXfhMCGqFLT1cvZH83bPW9Yfy02c4sXRUZ3oxzSAMtT0FjwE2e3T+uFR89RBvoNkHk0nCucgWzIJsramtkPPnzUpB7BOvLHyqommJcIdhPeuxzb3DPc00FiPDAL1zYnVRva2yB6UxG1I94cU1X5p2jDGeF2GmaBylBsmyamUQpo1GE7Go7OTtImq6TzNqk1ybs912EZXAipkuKWY/cf0fA28vmt7U/1t1j+3w8END5hU/aFM5rT33paPfSjWQND0ue36pWYyGK40l+UCiAAvisq4YXv2EgnR91Zax2rQ79OY9yha8kORBD1frE3lkk5gNI4ZlbC6g4+XxUcXSEDLsVQgv7bH/E9WbxMbw1YNV5Y//p5ChXbFsDvMdZoNE4iR5P/Zdzau12zFKETChB1Zf553h51+oevYsrV0SLleu5QkxZdAruQvvDlIexzdyGXt5CrcwwuX7vymmxuy98/ClSa7RNnLkb0JVSHsDMcXwgTOcbS06r1hzGtBrEmQ36fTCTbd4VujkbiOQgHnXeUVEfgVwar03XWkm/Ksh5FtfDFEzkAFW/kWcK/CF0PogevqG3hP8aZir95Kr2lUCP+eNCh5kTGlcALDZIabW5chH9O+Uoz6oNhjmiUJfC6FAyFCoqB82hJazhV8Um/FLKcLcHyFmQoAtts5VeyDDHc7HLbNj5gSAVe4+wTN14dtXmPc2hrZGIMrSJxq62XKHJObGyq53fruBeTRuesAfUzu2InbCC/N8OimiCuFna8StpE+LLgDOnUP8MDy5uHRf0vv7gFuVEm+w+3NbajIGyt1Yl3o4ouVwiy1Eg7DYTWGvs9iXZAtgrosHHaTs4spiM1dL+9aBCgt6TUM4v8GqzDBNJutGdt6sPksE7pEWWsZf/4HvvBOAA== +api: eJztWttuGzcQ/ZUB+5K0K8lpU6AQmgK+pK16SQRHaVFERkEtRxLrXXJDcuWqgv69GHJv0kqOreShKNZ+sEwOOWeGZ8ghNRvm+MKy4Tv2BuPcSLe+zhNkNxHLuOEpOjTUu2GKp8iGLDP6L4zdSLCISUUN3C1ZxATa2MjMSU2NuZLvcwQpUDk5l2hAz8EtEYrhcPnrmEXM4PtcGhRs6EyOEbPxElPOhhvm1hlps85ItWDbbVQBWGXxqcpXWQxSwd1SxkvfYAuTYWF0nsGSW5ghKogNcofiRITlrD/QpKdi3YN2GLbJE4Q7mSQww48EzTPZW6GxBKsA/D5Hs24hniwRSAFahwLOxyOohx1TRHPMeZ44NmTP2HZ7EzCidRdarEl+V0fbSKcL+1jEYq0cKkfDeJYlMuY0bPCXpbGbBgieJK/nnrwFHD0j8rGIWJyhcRItyaXouOCuCfyIZHDWIfOa8F/xFMt1NGh1bmJk24glOkD9sJ4VT/IHKPqNxGpNC6nVLlNK7RVJPAQU/amZqvMVlwmfJeVQC9xBZtCickMS6MFocvFD7wLNgqd6qqbqe20g1QZBqrk2qbcmgniJ8a3X9y2HpcH5iykbCB3bQenZwWel7T2uRI+aejEqh2bKwHGzQPdiyv6cJVzdTtl3Qsd5isr5Ed8O+Hd94irjQkhq4cm44a05Tyzue+ZSK8elsk2gwGc6dx7ndfCVngOvVyhiTrqE3P1LAfbKaVq3sENWi8GN4RQX0mFqD0TVPpZfpHV+kfjCwlybXV5ETOWJX4YQro809NfCwy2+1daUIoU1u0x7aIwIaTAuyVsPQpWndHiM1MKgtSxiL8OHm6jF3RIPHTBX1XS0GeyaVPVVNuUJBsaKVForibI+QmxJ06A9/FMACJY6HevkcRFbjrpX4/mrP8KHyeU4fHh7VXwY0dlG2rVxH9Y81sZBzBUFp0UHd9ItQcj5HA0qVyiNgMexNkKqBe2ELZQeD3AlvHJIc+tAaQdLvkLgQEgqtF7s7fjKKyUB6gEA6AEHK9UiQVB5ikbGfmAfKOilso6rGGHKvjmbsgim7Pnzr6YM0MX95gw0BAxXCzwwsPfs7GzKanEyZMo+n7JgJ0gl/G6uFsDV2s9lQwDSDvEYut5KJY4wNWNRlev4I/o+rr5UItNSuck6Qx8/LbZST0mdgHOHOLJiTrFSoyz83YWwjU7a8xsKR3Mgo+EFTNkooyXyKY+X9oSYERVWPJECFLo7bW6BC0GxQmfG5ejqmjgTdsonUsVJLlDAWd//Ds6e7ivZMeB+fbmRfq9V6/28huguVchqKAZXWfzYrX5S+aG5X8CT4uTTBgRaJ1VxBuwHUrWxPW0s+8TPd2TBP5m+RxpaC4SDaydDaoBvJvL1mMPGfGjOR55NhyAExTTU4d+uS9O6NK1L07o0rUvTujStS9O6NK1L0/5zaVrzUe3zL7p8rcvXunyty9e6fK3L17p8rcvXunztv5Wv0WCDNtPKhhj98uxZ+xvVy+rL4ca3p/49Lku43EvwHp7W7dkRMeu4y+3Brr2Ub7/7yJSnuOa6cId30V5C205n/2/WHnll/X+ZSVM8PztrE/2CC7gOtQWfguyht314tCwtID9AsvZmISqVwwUaFrGQU4emr748NFig4/Jg5tUSLVOEBwgfXY9NbRntabME0yuPwH50YHWevc+zJwVx59LjLqVhXx/aMEZ0XVY8gTdoVmjgpTHa+DU4H4+uXl+WRVSHztMq24TrcK6n6JZaULGX9vuPr/kaskFR9mYHm6p+bkuNKynQ2MG5yWe8/yqkj4NVFtvBxte5bQc7xWR2sNkrLqsFCAFdFK03I9Ts5SZhQ7Z0LrPDwYBnss9JU5zoXPRjnfrMpZzAj7hAbtCw4bubZtcbImDgWClQX9sz+TO2y8RGyqJx8NPvE3D6Fqk6rKg0O8/dUhv5T3izKWrNlsgFBrcT66/r6rCXf/M0C2zdOaSKWruSJM1HoCLlb7wclDWORctN6+Rq3MMbl+76plsrCvfPxpWmukSFy1G4Ce1D2HqOz7V3XMHRnVXvn2ey5cSWBPw4mYyp6I5eja70nUo0F/tPRDpDxTM5KK4jvZJnffLswYcheJ2holK+uUyQHobIgqKqb8ie0U0lXL2tS7lquP9IGOxYUTGlcQJvo8DNTREh78q6UvL6sFljWgUJi3bdQRCz2MuXJaG7sUI97VLM3XC5idiSInX4jm02M27xrUm2W2oOxY8UEkJa2n3E4evDps4x7i2NPOiDW1y3Si9L5vjYXHEjw9b3KCBProsK0KfwwErcg/DKCFfrJq4Sdr1KVEb6acGdUKl7ggWBN58e/cfU7p5gxj7Jt7S9FRsq8SZIXQYTevSw0pillcKRO8KI8zjGzDVkm6BuGofd+PWbCYvYrKjlTbUgacPvqBaZ3wWs2jvTb7a+bcMSrhY5X5Bs0Ew//wK+8E4A sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-subnet.ParamsDetails.json b/docs/documents/network/create-subnet.ParamsDetails.json new file mode 100644 index 0000000..e37dcfe --- /dev/null +++ b/docs/documents/network/create-subnet.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the subnet will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-subnet.RequestSchema.json b/docs/documents/network/create-subnet.RequestSchema.json new file mode 100644 index 0000000..d96b35e --- /dev/null +++ b/docs/documents/network/create-subnet.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the subnet to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"Type of the subnet.\r\nAvailable values:\r\n- Basic\r\n- Advanced\r\n\r\nWith Basic type, every configuration settings of the subnet will be automatically handled by the CMP.\r\nWith Advanced type, configuration settings must be evaluated by the user."},"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation.\r\nThe IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"}},"additionalProperties":false,"title":"NetworkDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if you want to enalbe the DHCP"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"Starting ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"}},"additionalProperties":false,"title":"RangeDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteDto"},"description":"List of routes","nullable":true},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns (ip addresses)","nullable":true}},"additionalProperties":false,"title":"DhcpDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"description":"Properties of a subnet to create","title":"SubnetPropertiesDto"}],"description":"Properties of a subnet to create","nullable":true}},"additionalProperties":false,"title":"SubnetDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"Type of the subnet.\r\nAvailable values:\r\n- Basic\r\n- Advanced\r\n\r\nWith Basic type, every configuration settings of the subnet will be automatically handled by the CMP.\r\nWith Advanced type, configuration settings must be evaluated by the user."},"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation.\r\nThe IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"}},"additionalProperties":false,"title":"NetworkDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if you want to enalbe the DHCP"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"Starting ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"}},"additionalProperties":false,"title":"RangeDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteDto"},"description":"List of routes","nullable":true},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns (ip addresses)","nullable":true}},"additionalProperties":false,"title":"DhcpDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"description":"Properties of a subnet to create","title":"SubnetPropertiesDto"}],"description":"Properties of a subnet to create","nullable":true}},"additionalProperties":false,"title":"SubnetDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"Type of the subnet.\r\nAvailable values:\r\n- Basic\r\n- Advanced\r\n\r\nWith Basic type, every configuration settings of the subnet will be automatically handled by the CMP.\r\nWith Advanced type, configuration settings must be evaluated by the user."},"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation.\r\nThe IP range must be between 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16"}},"additionalProperties":false,"title":"NetworkDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if you want to enalbe the DHCP"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"Starting ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"}},"additionalProperties":false,"title":"RangeDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteDto"},"description":"List of routes","nullable":true},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns (ip addresses)","nullable":true}},"additionalProperties":false,"title":"DhcpDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"description":"Properties of a subnet to create","title":"SubnetPropertiesDto"}],"description":"Properties of a subnet to create","nullable":true}},"additionalProperties":false,"title":"SubnetDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-subnet.StatusCodes.json b/docs/documents/network/create-subnet.StatusCodes.json new file mode 100644 index 0000000..8f380d6 --- /dev/null +++ b/docs/documents/network/create-subnet.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-subnet.api.mdx b/docs/documents/network/create-subnet.api.mdx index fbe1385..fd64e2c 100644 --- a/docs/documents/network/create-subnet.api.mdx +++ b/docs/documents/network/create-subnet.api.mdx @@ -5,7 +5,7 @@ description: "Create Subnet" sidebar_label: "Create Subnet" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-vpc-peering-route.ParamsDetails.json b/docs/documents/network/create-vpc-peering-route.ParamsDetails.json new file mode 100644 index 0000000..0b9d5d7 --- /dev/null +++ b/docs/documents/network/create-vpc-peering-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpc peering has been created","required":true,"schema":{"type":"string"}},{"name":"vpcPeeringId","in":"path","description":"unique identifier of the vpc peering in which the vpcPeeringRoute will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering-route.RequestSchema.json b/docs/documents/network/create-vpc-peering-route.RequestSchema.json new file mode 100644 index 0000000..4b3bccc --- /dev/null +++ b/docs/documents/network/create-vpc-peering-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpcPeeringRoute to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a security group to create","title":"VpcPeeringRoutePropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a security group to create","title":"VpcPeeringRoutePropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a security group to create","title":"VpcPeeringRoutePropertiesDto"}],"description":"Properties of a security group to create","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering-route.StatusCodes.json b/docs/documents/network/create-vpc-peering-route.StatusCodes.json new file mode 100644 index 0000000..8080090 --- /dev/null +++ b/docs/documents/network/create-vpc-peering-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering-route.api.mdx b/docs/documents/network/create-vpc-peering-route.api.mdx index 66c32a5..9b495ac 100644 --- a/docs/documents/network/create-vpc-peering-route.api.mdx +++ b/docs/documents/network/create-vpc-peering-route.api.mdx @@ -5,7 +5,7 @@ description: "Create VpcPeeringRoute" sidebar_label: "Create VpcPeeringRoute" hide_title: true hide_table_of_contents: true -api: eJztWktz2zYQ/isY9NKHJDppetGkmZHspFWT2BpZTQ+WpwORkISYJBgAlONq9N+7C5AiRdKJpDSHTuiDxwZ3sd8+geVyQw1batq/oe8Sf8y5EvFyIlPD6W2HJkyxiBuukGBDY/iH9mmi5Hvum1FAO1TEuMDMCv4OuPaVSIyQuJjG4kPKiQh4bMRCcEXkgpgVJxk7OX87BibFP6RC8YD2jUp5h2p/xSNG+xtqHhKUpg1CotttZwdgnfinCgdWImJyvxL+areQOLXJimky5zwmvuLM8OB0eJkhvwRlDqqKtuwjci/CECB/IWCWiO4anIyoMryASz3UAE8BAgrgGoSRwXhECrbHBOEeC5aGBpaegNhbhxG2GMrgAen3ZTSpaWSmIezmy9iAvZCRJUkofIaM3nuN3JsSDBaGVwsbtxkgOce4gy0gAhOujOAa6SDAWcBMGfojlM5cTQqWFbgEqtyRimuZKp/TbYeG0kH9vJw1C9MDBL1DskLSElb3oyWXvgsTC4EHvZmaxYM1EyGbhzmrJsxAbnINxu0jQZeMpsPfukOuliySs3gWv5KKRFJBxMYLqSKrTYeAwf07K+85IyvFF7/OqBdIX3u5Zb3vct27LA66uNT1QQxXM0oMU0tugOfvecjiuxl9AbxpBI8tx3OPvehhtFIWBAJXWDguWWvBQs2rljmHGGECVCoBJWwOsWRxTpytwHKs8FCHGmFCNPebDOyFkeg3Vx93zmBKMcwMYXikG/KqiuWN0MY6CbYhgGY/Ljo0TkPrBpewRyr6NrNwLd4KbXKSTJv9SDs0R9B/4SU391LdDYIAxDSoXtMcmUjsuAhzbBih56OLCYmlc3DdBFggImn4sfImluskgXNIENhyDBF4jFlyNihVMmgCeKRzc58NCzjWbbdVVTMCkiDgI2OmIHAZoLmfKmEeyFLJNNmrtTmeytWg2KEZ3RESTjRQBZCDgdyGfzTtWdCeBe1Z0J4F7VnwbZ8F5fbgx5/aQ6E9FNpDoT0U2kPhGz4UtjZ2dALVzDno6dmT+iuo8+xtGhA/OzurPx+yAEqEfYe1/0LKdh9gclE5aT4dJO7pZ2Njp9wBlBoiOS1nhACMS66A1tU7t/Tz0ybmAAqCCA+SAyXUsNg/BNSjntsUmmFgAEd0YRFoWj3F62d4a9nTLftIr9ya9FSTbm3BeFYvGJfSkFcyjYO2XLTl4v9q2bZcfIVy8UvT/WKEnQ/sRK65WnNFXiollfXBYDy6uDrPZ3tNtxZSHeN2sH9d4e2TJtJeWOwssk+9bBCrvc1uorvFxbUIuNLeQKVz1svu2N46gX5tYyevW6+Yz7m13biz/MiK1zgZtFq4EXKqwPh0ZUyi+57HEtFjKMYPZRr0fBnZy2J+HbQcQ84UOLd/c1t+dI3x50IsJygasES85vXh5QjufMqQP/6awgXzjttrvpt/DlIwkBL/5Ld/OwFdcQZmsFbHoJ8UM8uXH1mUuGAtvxrINtvFSLmdzxr2Ug+YT92zldta59XYURW7N3dAxfNKw1JpRIopsA30hbTmywJ1z/G9QSJqpqxRkN+n0zEOhPEtwIW8j0MJd+RKyw/axeAbL+u/unmo9dC+jY0+uQIWHDMvRMix0Qck+cS5T5/0znpntmWFuI6cnpkTHs2FPT12EVM6iGE7G6ObLE1u8s8dMJL75U8fdpkCf+8ZBEFCtiB9/qVCKWGy5fIXArWcgUBfYa6C9M1mzjT/U4XbLS67uTzmRSA0VqCguYnbFPeMT07tGw1wB9lT/Sogj2CboGumhCt/RwH5fpJ9nPADOfDrkEZ4eZrHD2VcOezCRfiFw38L7tivR06A7yLm60A/8ZOS07QoAnyLxS0rpxgwjuTcwe9OcaNii9r9DU3hOAa+zxNToi0jui2dc+Or6ymWwOz7kkgGSK3YPdZN+G2BSmtIW2rtGlRcFi9TtkRaJxl//gUb5Re8 +api: eJztWt2T2jYQ/1c06ks/DFzS9IVJMsPdJS1tkmMITR8OpiPsBZSTJUWSuVwZ/vfOSjY22JccpHnoxH6Ud72//dCu1qsNdWxpaf+avtPxCMBwuRyrzAGdRVQzw1JwYJBgQyVLgfapNuo9xG6Y0IhyiQvMrWhEE7Cx4dpxhYuZ5B8yIDwB6fiCgyFqQdwKSM5OLl6PaEQNfMi4gYT2nckgojZeQcpof0PdnUZp1iEkut1GOwBrHZ8qfK1jwiW5XfF4tVvQQW2yYpbMASSJDTAHyenwckN+CcoC1CHaqo/ILReCzOELATPNO2swFlHleD9kYO5qgCcrICgArIOEDEZDUrLdJwi/sWCZcLRPH9HtdhYwgnXnKrlD+n0ZTWo6lWtIIxor6UA6ZGRaCx4zZOy9t8i9qcBgQlwtfNzmgNQc445GGMAajONgkS4FxxLmqtDvoQzmalKwqsAblkLhSANWZSYGuo2oUAHq5+WsmcgeIOgdkpWSllzJ/WgppO/CxEOApDs1UzlYMy7YXBSsljBHtAEL0vWRoEOGk/NfO+dglixVUzmVL5UhqTJAuFwok3ptIhKvIL7x8p4ysjKweDalvUTFtldYtvddoXuHyaSDS50YpAMzpcQxswT3bEr/ngsmb6b0eaLiLAXpPMfTHnvexWilLEk4rjAxqlhrwYSFQ8tcKOkYl7YKlLC5ypzHOQ62UgvCSg9F1HEn0NyvcrCXTqHfQn7cOYMZw3BncAepbdhXh1heceu8k9jSkoUy+3ERUZkJ74awYY9U9HVu4Vq8ldoUJLk2+5H20D2C/hNvwN0qczNIEgO2QfWa5shEZOAiLLBhhF4ML8dEquDgugkwQaTKwbHyxp7rJIFzLgSXy5Fg8hizFGxguEqaAB7p3MJn5yUc77bZoao5AdEI+MiYKQnCDrAQZ4a7O7I0KtN7ubbAc3A0KL/QjO4ICSca6ABQgIHcDj66tha0taCtBW0taGvBt10Lqu3Bjz+1RaEtCm1RaItCWxS+4aKw9bFjtZI2OOjx2aP6L6iL/G/aNqJPzs7q789ZQsbhH9b+DynffWjB+EGl+XSQhLefjY2dcg+gtI65rLojuHSwBEMjGvJdWPr5cRNzAo5x8SA5XFrHZPwQUPd6blNqhoExF5BeegSWHlbxeg1vLXu6Ze/plVuTnmrSrU8YT+oJ441y5KXKZNKmizZd/F8t26aLr5Aufmk6Xwyx85FMkLdg1mDIC2OU8T4YjIaXVxfFbK/p1EIOx7gR9q8rPH1SrfyBxc8i+7SXD2Jtb7Ob6G5xcc0TMLY3MNmcdfMzdm+tY9vb+MnrtlfO58LabtxZfeXFW5wMei3CCDkzgvbpyjlt+70e07zLUEwsVJZ0Y5X6w2JxHPQc58AMGNq/nlVfvcX4CyFWEJQNmOZ/QH14OZQWjCO//zUhTt2AP+aH+ecgcytl+D/F6d9PQFfAEghWx6AflzPLFx9ZqkOwVn8N5B/bxUi1nc8b9koPWEzd85VZrfNq7KjKrzd3QOX7g4bloBEpp8A+0BfKmy8P1D3Hdwea10xZoyC/TSYjHAjjX4BLdSuFYslhy680SKZ5L++/OkWoddG+jY0+udIgccy84AKw0acRLSbOffqoe9Y98y2rsi4NeuZOuHcv7Omxi5hKId5GIUY3+Ta5Lq47YCT3q1cfdjuFRvsGQZA69vTFTYXKhsmXqzcEantmFtEV7tX+Nd1s5szCn0Zst7gc5vK4LxJuMQMlzU3cpjxnfHJq32iAG7ir3QooIthv0DUzPKS/o4B8P84vJ/xAHng7pBFesc3lXRVXAbt0Ed5w+G/BHXt75AT4IWK+DvQTr5ScpkUZ4FtMbnk6xYAJJBcBfmeCHyo/UTu/oSkCxyCOQbsKbRXRrFLnRldvJ5gC8/slqUqQ2rBbzJvsNgBV3pA+1fq1DRVMLjO2RNogGZ9/ARvlF7w= sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-vpc-peering.ParamsDetails.json b/docs/documents/network/create-vpc-peering.ParamsDetails.json new file mode 100644 index 0000000..93f34af --- /dev/null +++ b/docs/documents/network/create-vpc-peering.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpcPeering will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering.RequestSchema.json b/docs/documents/network/create-vpc-peering.RequestSchema.json new file mode 100644 index 0000000..e44afca --- /dev/null +++ b/docs/documents/network/create-vpc-peering.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpcPeering to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesDto"}],"description":"Properties of the vpcPeering","nullable":true}},"additionalProperties":false,"title":"VpcPeeringDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesDto"}],"description":"Properties of the vpcPeering","nullable":true}},"additionalProperties":false,"title":"VpcPeeringDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesDto"}],"description":"Properties of the vpcPeering","nullable":true}},"additionalProperties":false,"title":"VpcPeeringDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering.StatusCodes.json b/docs/documents/network/create-vpc-peering.StatusCodes.json new file mode 100644 index 0000000..44d2927 --- /dev/null +++ b/docs/documents/network/create-vpc-peering.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc-peering.api.mdx b/docs/documents/network/create-vpc-peering.api.mdx index f3fdec2..c14ea7a 100644 --- a/docs/documents/network/create-vpc-peering.api.mdx +++ b/docs/documents/network/create-vpc-peering.api.mdx @@ -5,7 +5,7 @@ description: "Create VpcPeering" sidebar_label: "Create VpcPeering" hide_title: true hide_table_of_contents: true -api: eJztWU1z2zYQ/SsY9JK2kmin7UWTZka201RtEmtk1T1Ymg5EriTEJMGAoBxXo/+eXYAUKYmOJTu3MIeMDe7H27eLBeBdcSPmKe/e8OvEHwBoGc/5pMUToUUEBjR9W/EYf+Fdnmj1EXzTD3iLy5gWhFngzwGkvpaJkYoWs1h+yoDJAGIjZxI0UzNmFsBydXb+foBKGj5lUkPAu0Zn0OKpv4BI8O6Km/uEvKXGolmvWxsAy8R/qnNUZTJmdwvpL4qFPGB2J8OQTYH5GoSB4IngRCLbS2SMgOQQEYq+38M4Qu/kAFJ0xnqDPivVHnJENmYiCw0unaLbicOIJs5UcE/y2z52IjQqDw4N+So2yA7piCQJpS9Ix/uYkuKqgkCE4eXM5j/HoqaUPzSBmUxAGwkpyWGhiECYKuoHJB1TdbFVsX9AqSJtGlKVaR/4usVD5aA+7mcpwuwAR9ckVnqa4+p2jRTeNxViIUDQGetx3FsKGYppWKimTBiscUiR3C4JtFl/dPa2fQZ6LiI1jsfxH0qzSGmsz3imdGSjaTEk3L+1/l4JttAw+33MvUD5qVcw6/1QxN4WcdCmpbaPbkCPOTNCz8Ggzn/TUMS3Y/4adbMIP1uNV5543aFC5SIIJK2IcFBhaybCFHaZOccaERJDqgBlYqoyY3EOHVfInCgz1OJGmpDofpeDvTCK8uZazCYZQmtBm0IaiNKaLbWL5Z1MjU0SmmGIZrsuWjzOQpsGt1ePDPR9zvBevZXRFCJ5NNuVduge0RApA9hkj1HKtKwr4iMDLuJ4CzE2A3+YR2jDmezyMUScS9cti66dnwrPJLoUqHTkwcZ2AbI8hkqFeqSPGHwiSaV/55UUDXw2TXts2mPTHpv22LTHvfZYvUT+9HPTJ5s+2fTJpk82fXK7T5IqVkWCG9xl5eXJ6f6z/XzzF4jKK93eP5NQyJ3Geng73YmihUUgTJbWftq28hyykOp6/8ezOMyZs2zunDn7J853TMwDb5XvlhEy8OvJyT6+MxHg+WP/gvYtdpv7+miT3QA+QLIkPheViHEOGmXdYeqWfnlZSyemVIYH+cHz2YjYPwTUg9lYlZFR5lEjurAI0mdv14bZrzH7pP3eUPowpaT2W13D6NM9GS2xK9BL0OyN1krbHPQG/YvL82JUUHegs+tq78N2u1ABTTCUbT52kNHlXj4fSb3VZtCypsWlDECnXk9nU9H5AOZO6VsPuykK2oHI2itba0ozBAvQTW4yjbzyhTFJ2vU8kciOIDN+qLKg46vI3ohS8PGOaO6txhkIjXnr3kyqn66otFz1FALlTTyRf8P+mKOPTVgb9te/I2bULdB0I5+U9DIkQMv/3TMsn5UsQGCYllCq52E53XjzWUSJq8Otk8oZ26S/+q7LX26Vx0Ax58pXJnvH19bV2l6ZyyGPLbyZsjHnhbOVjU4vkXvx70mwP0ejAc176A13oe7iUOEhtPNgQ0gxEurFTq9d5L9DpNQ+09glqtAUaSZDoGcaIikGSl1+2jnpnNgHBxZbJOIKc3W1uRXCJsOVMxEt2Zpa5WV7U0wFqfK61QnhpnLx5y0uCB9WL8kXA71qAWPVLWhjoOnVaipS+EeH6zUtu3EaFWkgU9rpQf0rYVWe518dttVGd4ulvDvMK8rJ7pal0NK1maOAvBjmM8Uf2YET0lp4xZ6L76u4Ctgl/zSY/LbgjpugPgG8K4Y1bc28GRDD7tu5g9oekYVSd+9iQWE7jZ7vQ2IqslUok0oXHlxejVBsms9RIxWQtBZ3NAfG/y1CZUlzjYLWVhx33zwTc5J1nunfFwM2DRw= +api: eJztWU1z2zYQ/SsY9NIPSnTS9sJJMiPbaermwxpFdQ+WprMiVyJiEmAAUI6r0X/vLECKlEQnspNbpCO4C7x9u1gAeituYWF4dM2viniIqIVc8GnAC9CQo0VN31ZcQo484oVWHzC2FwkPuJA0ADblAU/QxFoUVigaLKX4WCITCUor5gI1U3NmU2SVOzt7O+QB1/ixFBoTHlldYsBNnGIOPFpxe1fQasY6NOt1sAGwLOLHLr4sYiYku01FnNYDVcDsVmQZmyGLNYLF5JHgoBC9JWpDQCqIH0vUd3sYxykyWgCNxYQNhhescbtvIZpjDmVmecSf8PV66jGisacquSP77TV2IrSqCo4HPFbSorTkA0WRiRjIJ/xgyHHVQgBZdjl3+a+wqBnljwdUCAVqK9CQXY4WErBt1PdYeqa6Ymtjfwc51mnTaFSpY+TrgGfKQ/3yOkvIygMWuiKzZqWFUHK7RurVNxXiIGDSn+iJHCxBZDDLalfDwLJCo0FpIzLosYvx6aveKeoF5GoiJ/IPpVmuNDIh50rnLpqAxSnGN269Z8BSjfPnEx4mKjZhzWz4Qx17D2TSo6FejNKinnBmQS/QPp/wf2cZyJsJf5GouMxRWufxLIQXfSpUDkkiaASyYYutOWQGd5k5U9KCkKYNlMFMldbhHHmu1JxBk6GAW2EzovtNBfbcKsqbbzGbZIDWQJtCWMxNx5baxfJGGOuSBAvD5kpv10XAZZm5NPi9+sBA31YM79VbE01tUkWzXWmH7hGNubJ4VcQPcSq16CriBwZcx/EKJWoRj6oIXTjTXT5GmKul75Z1165Oha8kujFodeThZu4aZHMMNQ7dSL8w4SNJatb3q5KjxU/22B6P7fHYHo/t8dge99pj+xL58y/HPnnsk8c+eeyTxz653SfJVaMplDQ+K09Pnuw/2882/0C0Xunu/llkIHYa6+HtdCeKgBsLtjSdn7Zn+RqyAn7P+g9ncVQx59jcOXP2T5zvmJh73irfLSM0wW8nJ/v4TiFhI/8P2rfYbf7rF5vsBvABlg3xlamQFheoecD9YeqHfn3aSSdaENlB6whpLMj4EFD3ZmPVREaZn2WYnzsE5qu365HZzzH7qP1+pPR+Ssnt966GcUH3ZAkZe496iZq91Fppl4PB8OL88qyWCroOdHbV7n052lQlpGAo13yckBHxsNJHTLjaCC1rGlyKBLUJB7qcQf8d2lulb8JlEZtw5QSRddi0VkMaggPolZtSZzziqbWFicIQCtEHmibOVJn0Y5W7G5HBuNTC3jmPUwSNmkfX0/an91Ravnpqg+YmXojXuC9zXEiD2rK//hkzq26Q1I1KKRmUNlVa/OefYZVWkiIk6Amleh416sbLT5AXvg63Tio/2Sb97Xdd9XJrPQZqnasame4dX1tXa3dlbkQeV3hz5WKuCmcrG/1BIfbi37Ngf47HQ9J76A13rm5lpiDZfbCpAiUUIpTer1fnv0+kdD7T2GWBklSkuciQnmk84LWgFPEn/ZP+iXtwKGNzkC3mumpzK4RNhltn4jrwNbWqyva6VgWp8qK2QripXB5sc0H4itjZ14Jeu4CnAU9pY0TXfLWagcG/dbZe07CX06hIE2Fopyfdr4RVc55/VmzrjO4G7/bEvLqc3G5Zgha+zTwIyI+jSlP8iR2okHbCq/ecvGvjqmE3/JMw+W3BPUxBfQR4Xwxr2ppVMyCG/bczD7U3phka372LBYXtPQZxjIVt2bahTFtdeHj5fswDPqt01FwlZK3hlnRguPUIlSPNNwoaW/EM5KKEBdn6len3PwM2DRw= sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-vpc.ParamsDetails.json b/docs/documents/network/create-vpc.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/network/create-vpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-vpc.RequestSchema.json b/docs/documents/network/create-vpc.RequestSchema.json new file mode 100644 index 0000000..2412e23 --- /dev/null +++ b/docs/documents/network/create-vpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpc to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc.StatusCodes.json b/docs/documents/network/create-vpc.StatusCodes.json new file mode 100644 index 0000000..cf9e897 --- /dev/null +++ b/docs/documents/network/create-vpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpc.api.mdx b/docs/documents/network/create-vpc.api.mdx index 3fd2802..63bb948 100644 --- a/docs/documents/network/create-vpc.api.mdx +++ b/docs/documents/network/create-vpc.api.mdx @@ -5,7 +5,7 @@ description: "Create Vpc" sidebar_label: "Create Vpc" hide_title: true hide_table_of_contents: true -api: eJztWdtu4zYQ/RWCfenFl2TbvhjbBZxku3X3EiNx04c4KMYSbXMjkVqSctY1/O+dISVLtpyts70ACzgPgU3NcM7MnBlSnhV3MLO8d8tvsojftXgGBlLhhKHFFVf4hfd4ZvR7EblBzFtcKloAN8fPsbCRkZmTmhZzJT/kgslYKCenUhimp8zNBSvU2fnbISoZ8SGXRsS850wuWtxGc5EC7624W2ZkzToj1Yyv160NAMhke4GgyFABAU2ZZQPDCM2RAWGdiFl/OGCV2mOGaI8p5InDpVM0excw4hZnOl6S/LYNcmmRRcxpFhkBTuAOkVYO3SZhyLJERkDC3feWNFY105Akl1Mf2wKEnlBscAuMUiaMk8KSHCYBYnB1uI9IhhDtc6oO+h1KlfkwwurcRIKvWzzRAerf21lAkh9g6IbEKkszXGVSsYe5jOZb1tmDTBI2EcxDEHFnbMaqvwCZwCQpVS0Dh/wRFoPbI4E2G4zOXrXPhJlBqsdqrH7WhqXaIPHUVJvUe9NiGPDo3tt7DmxuxPSnMe/GOrLdMrLdr0rf26DiNi21IzQjzJgzB2YmHOr8MUlA3Y/5C9TNU3zsNZ534UWHGMohjiWtQDKsRWsKiRW7kTlHjoBEl2pAGUx07jzOqxArjBxUGWpxJ11C4X5TgL1wmvIW6naTDDAGqBqkE6ndU0u7WN5I63yScBuGaLZ50eIqT3waQpE+0dG3RYQbfKu8KUUKb7aZdmiNbMp2IzjROhGgGqQcqJhKUmDsAySq3zTHGCD/gBUb0apn4aVKlkwrUX/go1TyGWkZp9JaiSHq1BuIjxbhRMYeBAzhUBdEEDafKOEYcpG+iCg30i1fGZ1nWCluvsGCrWYqZ7kJ/CmLKHQiVM2dJmpFGMSlV8TiKzyuA/WJe2JeK4Eys2HTMql4hlQiPrN3h27xRL7VLAY7pOHER3fsuMeOe+y4x4577Lj/R8etX3W//e7Yeo+t99h6j6332Hr/89ZLOhj1DHtGYMezk9PmDxXnIUzbP0/4W3KWgNzp1Yd36B34Law7cLnd+2ine3+241eFsz4AOydP89z5snx55L3lS3KCNH84OWlS8Axi7PX+x7R/g4bhafNUbrhZID1AsopVISoR40wYlA0HV1j6/tk+5RizIJOD7OBZ6EBFh4B6NA2ryjNqLqiRXngE9h8XxTGyn4rsZ5XoMaSPh5TUftzXMAZ0J8Wd2LUwC2HYS2O08TnoDwcXl+fl1GDfScdu/PGKrXGuY5pSaN91/LCix7vFGMJ2V5t5xpoWFzIWxnb7Jp9A551wD9rcd/GktjQz8CjCMCQ3GDw+dy6zvW4XMtkBUokSncedSKf+BlDeZbzGmQCDyend3tUfXRN/AkVKgepqm8nXojnWGGCnNY79+vuIOX0v6GpVTEb6OTpr5J/hvaaYjcwFoEs+akTaq2qa8fIjpFkg29YJEjbb5Lj+olS8CtVu1+XMqFi5axwrWzfE6oK4uYbRO4F3uqDHVug7/Uw2AtCQYL+MRkMa8NBb0YV+UInGo2bnFQgxKYxoVwW9dpnsDkVl74sPu0QVGhtNZSLoxQeRlBOkHj/tnHRO/BUemZWCqoVui4Fb2De5rR15uIVn06og5205YiPO9erjtg0/8fNWEAgYcRSJNSee4x6r1QSs+M0k6zUthwkZ8TCWlio23n/VXVXn8ifnZ3vduEe27s7nSsb4gliAkaFdPAnI11fFmPAbduBccS+8sqzUso6rhF0Fek0kLsqGgIbn5wFOe0S7VPqNc5YmlUGjH0UiczXZOpy7Wm8aXl6PUGxSTBhTHZO0gQeakOJ/j1L7wPiS8msrjjSd5TAj2WCZ/v4C3oGAvA== +api: eJztWW1v2zYQ/isE92Uvsp122xejLeAkXeetbYLUyz7ExnCWzhYbilRJyq5n+L8PR0qWbDmd070ABZxvoe54z909dyR9a+5gbnn/jt/mMZ9EPAcDGTo0tLjmCjLkfZ4b/R5jN0x4xIWiBXApj3iCNjYid0LTYqHEhwKZSFA5MRNomJ4xlyIr1dnFm2secYMfCmEw4X1nCoy4jVPMgPfX3K1ysmadEWrON5toCwBy0VmgsWSohPChQLNqYRilyMgAWocJG1wPWa32kCHaYwaFdLzPn/DNZhIwonXnOlmR/K4NcmmRx8xpFhsEhzzisVYOlSNhyHMpYiDh3ntLGuuGaZDyauZjW4LQU4oNjyjIORon0JJchg4ScE24D0iGEB1yqgn6LWRY5cOg1YWJkW8iLnWA+vd2FiCLIwzdklhtaS60YkKxZSridMc6Wwop2RSZh4BJd2zGarAAIWEqK1XLwLHcoEXl+iTQYcPR+avOOZo5ZHqsxuonbVimDTKhZtpk3puIxSnG997eM2CpwdnzMe8lOra9KrK9ryrfO6CSDi11YlQOzZgzB2aO7vmY/zGVoO7H/EWi4yJD5bzGsx686BJDOSSJoBWQ141ozUBa3I/MhVYOhLJNoAymunAe502IlZ4xqDMUcSecpHC/LsFeOk15C3W7TQYYA1QNwmFmD9TSPpbXwjqfJJhbNtNmlxcRV4X0aQhF+khH35QRbvGt9qYSKb3ZZdqxNbIt263gVGuJoFqkHKqEShItEwES1W9WWEf8A1ZuRKuehVdKrphW2Pzgo1Tx2TJIMmGtmErsNhuIjxbhRItHAZsx3wUZMFtMFToGKqF/MC6McKtXRhc5WwqXbrHEWs3EvDCBP1URhU6UMCicJmrFIOXKKwpVedwE6hP3yLzWAlVmw6ZVUm/zuBbxmZ0cu8Uj+dawGOyQhsOP7tRxTx331HFPHffUcf+Pjtu86n773an1nlrvqfWeWu+p9f7nrZd0DNpcKxvY8fTsSfuHiosQpt2fJ/wtOZcg9nr18R16D37ErQNX2IOf9rr3Zzt+UzrrA7B38rTPnS/LlwfeLV+SE6T5w9lZm4LnkLCb8GPav0HD8LV9KrfcLJEeIVnHqhQVyuEcDY94OLjC0vdPDykn6EDIo+wIZR2o+BhQD6ZhXXtGzWUqMbv0COw/LopTZD8V2c8q0VNIHw4pqf14qGEM6U6qQLJ3aBZo2EtjtPE5GFwPL68uqqnBoZOO3frjNUOX6oSmFNp3HT+s6PNeOYawvfV2nrGhxYVI0NjewBRT6L5Ft9TmvrfIY0szA48iDEMKI3mfp87ltt/rQS66QCqx1EXSjXXmbwDVXcZrnCMYNLx/N2l+ekf8CRSpBOqrbS5+xfZYY6gsGsd++X3EnL5HulqVk5FB4VJtxJ/hXVPORlKEBEPUiLQ39TTj5UfI8kC2nRMkbLbNcfOhVD6FGrframZUrkxax8rODbG+IG6vYfQm8E6X9NgJfXeQi1YAWhLs59HomgY89Cq61EslNST7TyCdo4Jc9FTQ61TJ7lJUDj582FWOisZGMyGRHj484tUEqc+fdM+6Z/4Kr63LQDVCt8PAHezb3DaOvE0U2LQuyXlXjdiIc/3muG3LTx7tBoGAEUcnEU+J5/07vl5PweJvRm42tBwmZMTDRFiq2OTwVXddn8ufnJ8ddOMeV635XMUYXxALMCK0i0cB+fqmHBN+w46cKx6EV5WVWjVxVbDrQG+IxGXZENDw/SLA6Yxol1q/dc7SpDJoDOIYc9eQbcKZNHrT9dW7EY/4tJwwZjohaQNLmpDCMqDUPjC+pPzamktQ8wLmJBss099f3oGAvA== sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-vpn-route.ParamsDetails.json b/docs/documents/network/create-vpn-route.ParamsDetails.json new file mode 100644 index 0000000..a28e123 --- /dev/null +++ b/docs/documents/network/create-vpn-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpnTunnelId","in":"path","description":"id of the vpnTunnel in which the vpnRoute will be created","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-route.RequestSchema.json b/docs/documents/network/create-vpn-route.RequestSchema.json new file mode 100644 index 0000000..a836222 --- /dev/null +++ b/docs/documents/network/create-vpn-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpnRoute to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"cloudSubnet":{"type":"string","description":"Cidr of the cloud subnet","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"cloudSubnet":{"type":"string","description":"Cidr of the cloud subnet","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"cloudSubnet":{"type":"string","description":"Cidr of the cloud subnet","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-route.StatusCodes.json b/docs/documents/network/create-vpn-route.StatusCodes.json new file mode 100644 index 0000000..dc37669 --- /dev/null +++ b/docs/documents/network/create-vpn-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-route.api.mdx b/docs/documents/network/create-vpn-route.api.mdx index 7f69a7d..8f36b09 100644 --- a/docs/documents/network/create-vpn-route.api.mdx +++ b/docs/documents/network/create-vpn-route.api.mdx @@ -5,7 +5,7 @@ description: "Create VpnRoute" sidebar_label: "Create VpnRoute" hide_title: true hide_table_of_contents: true -api: eJztWk1z2zYQ/SsY9NIPSbTT9KJJMyPbSes2sTW26h4sTwciIQkxCTAAKMfV6L93FyBFUpRi2cn04NAHjw3uYt++XSwBLJfUspmh/Wt6lcoLlVlObzo0ZZol3HKNT5ZUwj+0T1OtPvDQnka0Q4XEAWbn8HfETahFaoXCwUyKjxknIuLSiqngmqgpsXNOcnVy/H4ISpp/zITmEe1bnfEONeGcJ4z2l9Tep2jNWC3kjK5WnTWARSpHmZQ8fgCCiAqbaw0iJLmbi3BeDDtfyZ2IYzLhJNScWR49ERdLRXcBZKH1HBdQoO8bwEZgGw1wA8bIYHhKSrVdhnCOKctiC0OHYPbGY4QpjlR0j/J1GzX/rMpdg2lCJS3EBDVYmsYiZKgRfDCotqzYZ3F8PnWBz5GoCQYOpoAQplxbwQ3KQYawiNkq5h2SnqdtnlWRn4FUETjNjcp0yOmqQ2PloT5sZ8HibA9DVyhWWprBaD0/Cuvr/HAQeNQb67EcLJiI2SQuVA1hFpKbGyC3jwJdcjo6+q17xPWMJWosx/Kt0iRRGlaFnCqdOG86BAgPb529V4zMNZ/+OqZBpEITFMwG3xW+d5mMujjUDcEM12NKLNMzbkHnn0nM5O2YvgbdLIHHTuNVwF73ME0piyKBIyweVtiastjwTWaOIUeYAJcqQAmbQC45nBeeK2COlRHqUCtsjHS/y8GeWIVx85VlHQymNcMlISxPzJYFtYnlnTDWBQmmIYCmnhcdKrPYhcGv1Ec6+j5nuJFvpTeFSO5NPdP2XSNhrLLoMptIbh/Oy2MRraulUyTGazac7VAlh5onT5nZa+6c+nE8lgKVkuvfIyWTxaulFHac3jxqskfC3LTtLaKa5Z9sW/XaqtdWvbbqfTtVr7rl+/Gntvy15a8tf235+0bKHypCsFNYtz5CLw4Omyfn4/UlQOWo7HaLaczERr3cv0o2omhgrWZm66P6LP8fURc5OY6wjbdF813xvH3fcT54zk6j+suDgyaEIxZB/Xe3TV9jWfinzbrVoCWHu4dkyW0uKgDjjGuQ9S8zP/Tzi23KEURNxHvZgfejZTLcB9TOWCxLzzC4oJGcOATmixddy+znmH3Skm4p3U2pLxgvmwXjTFnyVmXyq7xF2wi05aItF8+AUlT7Zdv+4hSPtTATueR6wTV5o7XSLgaD4enJ+XHRhdu2USdX5W4Itl9zFcGjVLmdimsL9mmQ9xxNsFw3L1c4uBAR1yYY6GzCemfc3il9G6ybhSBeaTWugmLbZbBN54D6vmimgV86tzY1/SBgqegxnNCd4nqhStxpx/Aw08LeO40jzjTEr399U310iSnms6gQKA/QqfiTNzuJp7B305b88feIWHXLsYGYNyMHGVChxb/+9iRvR845A4cdsZjXF2UD8c0nlqQ+H2t7WD/ZOg2q1zH5hUvlDF/0kPORm8bGtnYiLmetn2crrVWKVxGOhTylapHqDVLRYKQhQX4fjYbYZMXLmBN1J2MFu9mNmxcAKYHiQHq9bpEbPaRp630LOQcVbN1ORczxvgWQFF3cPj3sHfQO3M0BJGLCZIXLZtbWHFhHvPKuhHlcji3zhL4uevCYif1qP36d0/B3jQlEt85r1Ko30cvUhnyc4+IBI8vlhBn+l45XKxz2vWxM30gYrAXR9nuBZfnG/2yne6uft5Dkm530ItHcOlowLXwhehSQ7y/yhv4PZM8vE7bCK1ajvK/iKmCXkcCvAp4E7ku+WXgC4moWrHC95hUCyfUSxx5ld4TzlDM0dh3osdcYhCFPbUW2CuimUqSH55cjEJvk3y8kKkJpze5gEH87nMrx5aqHG1tSWICzjM1Q1lvGn/8A7dFApQ== +api: eJztWktz2zYQ/isY9NIHJTppetEkmZHtpHXzsMZW3YOl6azIlYiYBBgAlONq9N87C5AiZcqx7GR6SKgjtIv99tvF4rFccQsLwweX/CKXZ6qwyKcBz0FDhhY1/bPiEjLkA55r9QEjexLzgAtJA2ATHvAYTaRFboWiwUKKjwUyEaO0Yi5QMzVnNkFWqrOjdyMecI0fC6Ex5gOrCwy4iRLMgA9W3N7kZM1YLeSCr9fBBsAyl+NCSkzvgSDiyuZGgwnJrhMRJdWw85VdizRlM2SRRrAYPxIX5KK3RG3IeonrY4H6pgVsnCAjA2gsxmw4OmG12l2GaI45FKnlA/6Er9dTjxGNPVTxDclv29jyz6rSNR7wSEmL0pIG5HkqIiCN8IMhtVXDPqTp6dwFvkSiZhQ4HlAG5KitQENyGVqIwTYx3yHpedrlWRP5e8iwCpxGowodIV8HPFUe6v12lpAWexi6ILHa0kIouZ0flfVNfjgIGPcneiKHSxApzNJK1TCwLNdoUNoBCfTYyfjw994h6gVkaiIn8rXSLFMamZBzpTPnTcCiBKMrZ+85sETj/MWEh7GKTFgxG/5Q+d4DGfdoqBehtKgnnFnQC7QvJvyfWQryasJfxioqMpTWaTwP4WWf0pRDHAsagXTUYGsOqcHbzBwpaUFI0wTKYKYK63Ceea7UnEEdoYBbYVOi+20J9tgqipuvLJtggNZAS0JYzMyOBXUby1thrAsSLAybK72dFwGXRerC4FfqAx19VzLcyrfam0qk9GY70/ZdI1Gqivi8mEm09+flkYg31dIpMuM1W84GXMmRxuwxM3vNO6d+GI+1QKPk+n2kZrLaWmphx+n0QZM9EOZt294iqVn8ZLuq11W9rup1Ve/7qXrNI9/Pv3Tlryt/Xfnryt93Uv5IUaPJlTQ+Qk8PnrRvzkebR4DGVdmdFvMUxK16uX+VbEXRWLCF2fnX9iz/H1FnJTmOsFu7RXuv+LZ9v+N+8C07TerPDg7aEA4hZmf+telrLAv/b7tutWgp4e4hWXNbigppcYGaB9xvZn7o16e7lGO0INK97AhpLMhoH1B3xmJVe0bBnaWYHTsE5osXXcfs55h91JLuKL2bUl8wnrULxntl2WtVyK+yi3YR6MpFVy6+AUpJ7bdd54sTutZKSNk56iVq9kprpV0MhqOT49Ojqgu366DOLurTUIY2UTH1A5U7qbi24ICHZc/RhKtN83JNg0sRozbhUBcz6L9He630VbhpFppw1Wg1rsPq2GWoTeeA+r5ooVM+4Im1uRmEIeSiDzShu8X1I5W5247BqNDC3jiNQwSNmg8up82/zinFfBZVAvUFOhdvsN1JPJEGtWV//j1mVl0hNRDLZuSwsInS4l//elK2IxOEGD2xlNdndQPx1SfIcp+PW2dYP9kmDZrPMeWDS+MOX/WQy5Fp62C7dSOuZ92+zzZaq5yeIhwLZUptRao/zEWLkZYE+2M8HlGTlR5jjtW1TBXEt19eVI4SchFKr9ercqNPNO18b2GnOUpq3c5FivTewgNedXEH/En/oH/gXg6UsRnIBpftrN1yYBPxxl65DnyOrcqEvqx68JSJg2Y/fpPTPNhmgtBt8pq0tpvodWpPA57Q4hlc8tVqBgb/0ul6TcO+l03pGwtDtSDe/S6wqnf8z3a6d/p5hTetTnqVaG4dLUELX4geBOTHs7Kh/xPb88uEnfCq1Shvmrgq2HUk6KuAR4H7km8WHoG4mQVrWq9lhSByvcSRR9kb0zz1DK1TB3nsNYZRhLltyDYBTRtFenR6PuYBn5XfL2QqJmkN1/T9BVx7nMrx5aqHG1vxFOSigAXJesv0+w/t0UCl sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/create-vpn-tunnel.ParamsDetails.json b/docs/documents/network/create-vpn-tunnel.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/network/create-vpn-tunnel.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-tunnel.RequestSchema.json b/docs/documents/network/create-vpn-tunnel.RequestSchema.json new file mode 100644 index 0000000..7483189 --- /dev/null +++ b/docs/documents/network/create-vpn-tunnel.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpnTunnel to create","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"name":{"type":"string","description":"Name of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a vpnTunnel","title":"VpnTunnelPropertiesDto"}],"description":"Properties of a vpnTunnel","nullable":true}},"additionalProperties":false,"title":"VpnTunnelDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"name":{"type":"string","description":"Name of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a vpnTunnel","title":"VpnTunnelPropertiesDto"}],"description":"Properties of a vpnTunnel","nullable":true}},"additionalProperties":false,"title":"VpnTunnelDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"name":{"type":"string","description":"Name of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of a vpnTunnel","title":"VpnTunnelPropertiesDto"}],"description":"Properties of a vpnTunnel","nullable":true}},"additionalProperties":false,"title":"VpnTunnelDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-tunnel.StatusCodes.json b/docs/documents/network/create-vpn-tunnel.StatusCodes.json new file mode 100644 index 0000000..4592896 --- /dev/null +++ b/docs/documents/network/create-vpn-tunnel.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/create-vpn-tunnel.api.mdx b/docs/documents/network/create-vpn-tunnel.api.mdx index ec7f86f..75bed7f 100644 --- a/docs/documents/network/create-vpn-tunnel.api.mdx +++ b/docs/documents/network/create-vpn-tunnel.api.mdx @@ -5,7 +5,7 @@ description: "Create VpnTunnel" sidebar_label: "Create VpnTunnel" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-elastic-ip.ParamsDetails.json b/docs/documents/network/delete-elastic-ip.ParamsDetails.json new file mode 100644 index 0000000..55a7c46 --- /dev/null +++ b/docs/documents/network/delete-elastic-ip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the elastic ip to delete","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-elastic-ip.RequestSchema.json b/docs/documents/network/delete-elastic-ip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-elastic-ip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-elastic-ip.StatusCodes.json b/docs/documents/network/delete-elastic-ip.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/network/delete-elastic-ip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-elastic-ip.api.mdx b/docs/documents/network/delete-elastic-ip.api.mdx index f837320..e7128c8 100644 --- a/docs/documents/network/delete-elastic-ip.api.mdx +++ b/docs/documents/network/delete-elastic-ip.api.mdx @@ -5,7 +5,7 @@ description: "Delete ElasticIp" sidebar_label: "Delete ElasticIp" hide_title: true hide_table_of_contents: true -api: eJztV9tuEzEQ/RXLTyCFbCjwEkGlQIII1wqCeGgi5OxOGlPHXuzZlrLaf2dmL8mmCahU5QEpT9l453LmeOw9k0tUZ0H2T+XIqIA6Hqdy1pGp8moFCJ5f5dLSH9mXqXffIMZxIjtSW15QuKTnBELsdYra8WJm9fcMhE7Aol5o8MItBC5B1O7ixbsTcvLwPdMeEtlHn0FHhngJKyX7ucSrlLMF9NqeyaLorAHoW2aGqjahU4FOJGCotFtCUKl+cEG8cMYaC+X0VztgJpSXE0BASMTgZCw2br9LxDEWKjNISw8p7YwxhtTZAIGtj3pH/LOdaBDHkFIOWXTk415v1+C5SsTHCglliJ1F4qdMDj8wSo3iKvJdUG7O20UutHEpeNQViOrtLnSbGaPmBio2CQxqNDezDKgwawUnXhHOwJPtwvmVwmrp0dE+5wRQaXOjPNpSJhvfBBRZqyTRTKEyJ20CNpVJWieP1bBEEGTplKZGx4r9om/BHZi9M2bLbj1QeneUFuWF8Xj3wnjvULx0mU0O18XhuvhfmT1cF//guniyT1+MqSBPkcQn8KRxxMh758s9INUz/PCikVfbXsNShYmN7OxIUpxLR2pMrhVaKfP6MqqlY4jytQYtePGCtJ4P0cBnc9V9D3jp/HkETUgy10nBeqsEVmnZzBOfcomYhn4UkZzrKvaOjcuSbuxWklVXgDjzGq9Kj+egPO1X/3TWfvWJW6rqmsZgTTxFfQO7knBMOs6jeP1lQjL0HFgJ1qpykFHlXv8sL4JGVy5BUXUlkdouXBm/3pytgruDVO/k2rEQryaTE9ahUzu1Q3dpjSNdyOr4qRJLD4tnUxlRK1gCH9nK70FDcZcP0lQKVP4MkCy/zo2y51N5LD6QC6vbhTbwNFLHhKQRuiRiu71uj4Vp6gKuVHkW65L37P9WBWsyW58dClRuX143xmkzkgTy7rfHk3Vv0PMWFfR/0x/sRTMF7eqS8HG8PJ+rAJ+9KQperqQ9N0GiA58g6s6FMuF6N+eb7+Qfhf/eks6pVa4PFhfKZGxZduOF8ro6vn8F5N7Her65L244k+2F1/S0vWrjamBvSOch6W7B/WZsuwVK2uRiRlb1kWIeqxfV8NRyaUedta6k4ejtaDKiw/gLl1ZCig== +api: eJztV02P2zYQ/SvEnFqAsZxtehGSAE7soO5HYiQuelgbBS2OV8zSJJccOXEE/feAkmXLlVNsF9tDAJ8EkDOcN4/D0ZsSSNwESK9hokUglU0dLDk44cUGCX3cKsGIDUIKztuPmNFUAgdl4oKgHDhIDJlXjpSNi4VRdwUyJdGQWiv0zK4Z5cj27uz1HzPg4PGuUB4lpOQL5BCyHDcC0hJo52K0QF6ZG6gqfgCgHhgZm9yYcowsk6iR8IEQhFNPtuhDjLjHcleg3/XAzHNkMQAGQslGsyk7un0rUDxjLQpNkMJTqKplxBicNQFDtL4aXsXPaaBRlqEjlFBxeDYc9g1eCcneN0iAQ2YNoaE6OH6mxGkRsyj7oOwqXhfweO8OPakGRLPbh24KrcVKY8NmxYEU6ftZBhJUdA4HZQhv0AOHtfUbQc3ST1fnnCWSUPpecZQJJEx2H1AVByGlihQKPesScMwMZt6uNG7GNYIAtZNzWmUi+iUfg70w+2jM1tV6ofTxKK3qhvGs3zDeWmJvbGHkpV1c2sX3yuylXfwP7eLnc/piagi9EZp9QL9FzybeW1/fwWg2Hb973cqrU69xrcLYUXZy2CDlVkIKB4VWy7wUkr10DEl50KBVXNwqiT4kI1+sxOAt0ifrbxNsjwxJqWQV9VYNrNGyhdeQQk7kQpokwqmBiN6ZtoUcZHYDUXUFzAqvaFd7vELh0UN6vexufYgl1VRNa3AgXjj1G/Yl4dQE9MR+/WvOyN5iVIJ7VTkqKLdefakbQasrcxQSGyKVWdv6/P3lnCQ8GDnVi9WzYL/M57OoQxdmYcb2k9FWyFodPxcs97h+sYDEOjTCqcQ0fk9aigfxIS2AkfA3SC8W8PdKC3O7gJfsnUMT1e1aaXyeiJfAoRW6KTwdDAfDKEydDbQR9Vvcp3zm/k8yOJDZ+e1UvLm+cl8Y1+1IEoBD2h1PDrUB/JQK4HCsj+ilZBx4chsonleWKxHwT6+rKi430j4WgVQhviAJ6Vro8M9qLo//yX8V/mdTusVdb7DYCl1Ey7oat8Kr5vn+JyA/vN/PNz+ye85kZ+G1NW12XVwt7CPpcUh6XHDfGNsegFJJqJYVb59U5LHZaIanjkv31GWnJY0nv0/mE6iqr5dWQoo= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-security-group.ParamsDetails.json b/docs/documents/network/delete-security-group.ParamsDetails.json new file mode 100644 index 0000000..8de8c4a --- /dev/null +++ b/docs/documents/network/delete-security-group.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security group to delete","required":true,"schema":{"type":"string"}},{"name":"newDefaultSecurityGroup","in":"query","description":"if a default security group is going to be deleted, it's the uri of the security group to set as default for the vpc to replace the deleting one","schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-security-group.RequestSchema.json b/docs/documents/network/delete-security-group.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-security-group.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-security-group.StatusCodes.json b/docs/documents/network/delete-security-group.StatusCodes.json new file mode 100644 index 0000000..c844d67 --- /dev/null +++ b/docs/documents/network/delete-security-group.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-security-group.api.mdx b/docs/documents/network/delete-security-group.api.mdx index 1adc9c8..fe04818 100644 --- a/docs/documents/network/delete-security-group.api.mdx +++ b/docs/documents/network/delete-security-group.api.mdx @@ -5,7 +5,7 @@ description: "Delete SecurityGroup" sidebar_label: "Delete SecurityGroup" hide_title: true hide_table_of_contents: true -api: eJztWVtv2zYU/isEX7YBruWk3YvRFXDrdPO2tkbjYg+xMdDSscVGJlWScpYZ+u87h5JsOUoM10iABdCTZfJcvnPhkfRpw51YWt6/4pcQZka621+NzlI+6/BUGLECB4a2N1zhH97nqdFfIXSjiHe4VLQgXIzXEdjQyNRJTYuZkt8yYDIC5eRCgmF6wVwMrFRn7z6MUcnAt0waiHjfmQw63IYxrATvb7i7TcmbdUaqJc/zzhbAOg1PdY6qTCp2E8sw9gu2jJktKWgWC8vmAIqFBoSD6ESE8kR4d9A4zSJIsAAnwlBwM4SFyBK3X9oSG2Iwtw1wcsEEuvVqdwFJy5YavRCyOZTgog6T7gfrA0Dhh2Ox4Bjmt7K90GZbE9w1kCYiBL/kDZMfrSj2Y2IVqXyxxk6lIA7GN0H7lEywCJ0NxiO2U3vIEdnwoHHpDN3OqB421cqCJenz3jn97DsahCGk1EN5h7/q9ZoCb0XEPhdI0EOolcN+8M7hHxdgNiiKTROUntMBQhU8SikYJwsQxW4TusqSRMwTKDoHwTjpkuMkrRMuqxnHvDpYgkFZrN5KuGLp5fl9yhE4IZOj/EiFnlR4DCiUFlEkKYUiGdcTsIuM4zpqrIYegeVeKU0TGQrSC75a3Wb20TLru7VN6eOlNPcD46w5ML4okblYG/mvvzO1E6OdGM8ys+3EeJKJ8bI5Md5rM5cRPme246IdF881s+24eJJx8ao5Lj5qx97rTLVPF+24eLaZbcfFE4yLn+8jMEYYkEFL7BLMGgy7MEYbX4PBeDT89K7iqva1hp41YncpqRXgq02E+1vKy3NnfR6UjKENNlvqMafFtYzA2GBgsrnofgR3o811sE5DFPQUYR7Yug9cllFOLI9HW3CamcEk89i51PaDQKSyK8hcmOgs6oZ6xYnrqcx4jbcgDBaxfzWrb11SnxWtVAlsq4FW/4AmETVSCMSx3/+aMKev/SNayWUNyrc8Px0qNisGgeH67Eq10N5+WbG9DHQHqWz4akiw3yaTMbFfUzVVQ32jEi0iz729Fiw2sPhlygPsD4XgA1Xovahy3qXTNeXMCbMEh5J/zxOhrqf8DfuEKsSpLWQCrwPxBpFU9Fqfn3V73R7RYam2biX8AS1DfqAp9qLYJrR2P0JjvoSbsluuKnraona/TlVvGwav99JBELFpSL5ilvf7hnZkRIR4jLjJx2YzFxa+mCTPabkgGqk5ImnpuGEbL0Ri77b+ZndT/T/SrPdm9xo79xCTvBZJRlqcuNjjwz/Ewh7Asc/y7nzP6I+Rxaj7rjr8+Lkk1n9iR36yuBdeddTVbR1XBXvXh9+XpWPAnfBJ44QIipPx+OgPfPE4ASWe0nyGUuWspE4oNgouvqZStzqr3XyGF39eTC5wyv4HjRxwog== +api: eJztWdtu2zgQ/RViXrYLqJaTdl+EtoBbp7vZS2s0KfoQGwtaHFtsZJIhR85mBf37gpTkS5wErpEAG0BPhkkO58zh8Mg+KoH43EFyAWeYFlbSza9WFwYmERhu+QIJrZ8uQfEFQgLG6u+Y0qmACKTyA5wyiECgS600JLUfLJS8KpBJgYrkTKJlesYoQ9aEsw9/jSACi1eFtCggIVtgBC7NcMEhKYFujM/myEo1h6qKVgCWJj00+dKkTCp2nck0CwOuqZnNfdEs445NERVLLXJCcSBCeSC8W2hIM4E5Eh4IQ+H1EGe8yGn7aBtsVwXamx1wcsY4E3XYbUDSsbmWau6RTbEBJyIm6ScXCiisvL8Wh8S4W+0903Z1JqSZRZPzFMNQ2Njn0crXvk+t3MiXS7TOF/FgfecZMk8mOkLBBqNTtg67L5HfI4CGBI6gqib+PJzRyqHzq4/7x/5jO9EgTdH4HqoieN3v7y54zwX7UiOBCFKtCBWF5PgPxSbnvopyF5Se+gsEkb+JBi3JGkQ9uwtdFXnOpznWnVNFQJLy/VY64lRsbA5SEc7RQgQzbRec6qFXx3cFCyQu873ySOWIq3QfUFUEXAjpKeT5aJOAdWUwsnqa42IYEDgIQcbkMuU+Lv7udMfsozEburWj9PEorYJgHO0KxlfFC8q0lf+GJ1OnGJ1iPEtmO8V4EsV4tasYH7WdSiFQdXLRycVzZbaTiyeRi9e7cvFJE/uoC9X9uujk4tky28nFE8jFL3cZGKeK0CqeszO0S7TsxFptwxkMRqfDzx9ar2o7ahhcI3bbklogZVpAAivLK3hnCcSNY+jicmU9Vn5wKQVaFw9sMeW9T0jX2l7GS5O6uAwWYRW7zRwuLqWovMsT0NaeZmFzSCAjMi6JY25kj/vt0lwXopfqBXivp90mRLxHbtFCcjHZnDrzfVa3UrtgdRrcyD9w14g6VQ4tsd+/nTPSl+EnWuNlDZp/eUEdWjcrQy6wZleqmQ77Nye2xUBvYOROrp0V7Lfz85F3v8ZqrIb6WuWai+C9veEsszh7O4ZYG1TcyFjVcS9bznv+do2BEbdzpLdj+Huac3U5hnfss0HlPbWZzPFNzN9BBK29lsBRr9/rezvMaEcLHi5oU/I9TbFVxYrQjedRFdVHWDbdctHa0w4iSDat6lXDQLRNh4do0rC+dZa3+8bPSOEN8Uw78jnKcsodfrV5Vfnh2mj0zSGk89dNQDLjubvd+uX6ofp/tFnvZPcSbx50kpc8L3wUeC92//IfcmEfwLHt8q5zT/wXK2up+6FzePGlMdZ/Znu+srgTXnvV1c0mrhb2ug9/jKV9wB3wSuOACuqb8fjoH3jjcQBKKaCaVFGrlb4T6onai98I2dx1svHwGZ78eXJ+AlX1H40ccKI= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-security-rule.ParamsDetails.json b/docs/documents/network/delete-security-rule.ParamsDetails.json new file mode 100644 index 0000000..a6410d7 --- /dev/null +++ b/docs/documents/network/delete-security-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"securityGroupId","in":"path","description":"unique identifier of the security group in which the security rule has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security rule to delete","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-security-rule.RequestSchema.json b/docs/documents/network/delete-security-rule.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-security-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-security-rule.StatusCodes.json b/docs/documents/network/delete-security-rule.StatusCodes.json new file mode 100644 index 0000000..c844d67 --- /dev/null +++ b/docs/documents/network/delete-security-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-security-rule.api.mdx b/docs/documents/network/delete-security-rule.api.mdx index e5db9e2..892c449 100644 --- a/docs/documents/network/delete-security-rule.api.mdx +++ b/docs/documents/network/delete-security-rule.api.mdx @@ -5,7 +5,7 @@ description: "Delete Security Rule" sidebar_label: "Delete Security Rule" hide_title: true hide_table_of_contents: true -api: eJztWV1v2zYU/SsEnzbAtZy0ezG6Am6dbt5HayQu9hAbAy1dW2xkUiUpp5mh/757KcmWLXfIXOchgJ7ikPfj3MvLI/l4w51YWt6/5TcQZka6h+ssAT7r8FQYsQIHhnY3XOE/vM9Toz9D6EYR73CpaEG4GD9HYEMjUyc1LWZKfsmAyQiUkwsJhukFczGw0p29+3OMTga+ZNJAxPvOZNDhNoxhJXh/w91DStmsM1IteZ53tgDWaXhqcnRlUrH7WIaxX7BlyWxpdJayWFg2B1AsNCAcRCcirKL+QkFPxXoA7Thsg0d1LtTye4F6ME6zCBKcmhNRiFS+WOPIUdISDqY1Dw08E0xNCcBiyWwwHrGd27cSUYyFyBKHSxeYdkYYbaqVBUvWl71L+rOfaBCGkFJb8w5/1es1Dd6KiF0XSDBDqJXDFvnk8NUFaSKoik0TlJ7TTUAXvBMpGCcLEMVuE7rKkkTM8Wr6biIYJ13yOEvrhMtqwbGvDpZg0HahzUq4Yunl5THnCJyQyaPySIWZVPgYUGgtokhSC0UyrjdgVxnHdfRYDT0Cy71TmiYyFOQXfLa67ezZOuuntW3p+Vqae8K4aBLGJyUyF2sj//Fk3TJGyxjPsrMtYzwJY7xsMsZ7beYywlevli5auniunW3p4kno4lWTLj5ox97rTLVvFy1dPNvOtnTxBHTx0zEBY4QFGYzEbsCswbArY7TxZzAYj4Yf31X6zb7X0Ms8rFINmZcNO3wF+NUmwv2tDOTlpD4PSunPBputhpjT4lpGYGwwMNlcdD+Au9fmLlinIRp6rS8P9gQ1XD4Q2HYGhAH3ZZSTCuSrKcTLzOAh8Ni51PaDQKSyKyhdmOgs6oZ6xUkLqqJ4j7cgDB5y/3ZW37qhOSxGrTLYnhZG/R2aQtVIIRDHfvtrwpy+869wpdY1KL8Fevao1K4YBLbDd1+qhfbxyxPd61B3kMpGroYF+3UyGZM6NlVTNdT3KtEi8rLda8FiA4ufpzzA+VEIPlCF34vqTLp0+6acOWGW4NDy73ki1N2Uv2Ef0YU0t4VM4HUg3iCSSn7r84tur9sjuSzV1q2Ev8Blyd8Ymr0qtg2tPa8wmD/CTTlNt5UObdG7X9ektwOFn/faQRBxqMi+kpD354p2mtLt3miRiYxIHI+xNIKx2cyFhU8myXNaLrRKmp9IWrqxeBMWIrGHt2ezey7/p5J5tBN3OGWHSulaJBlZ+kFeCyMLuvhfQH64LgXbH9kj9fuj8KrroB7quCrYu7Mi1fe84E7Q90+ooJie86P/LsX/hDoOZ/0JK2r8NHACXLx3+QytSoKk0S42CoG+5lKPOqs9kYZXf1xNrpBa/wXS72VV +api: eJztmU1v2zgQhv8KMactoFpJ2r0IbQG3SXezH62RpNhDHCxocRyxoUmGHDnrFfTfF6Qsf0RukXWTQwCdDFAk553h8JX9uALi1x6ySzjHvHSSFmelQrhKwHLHZ0jowtMKNJ8hZGCd+Yo5nQpIQOowwKmABAT63ElL0oTBUsvbEpkUqElOJTpmpowKZMvl7MOfI0jA4W0pHQrIyJWYgM8LnHHIKqCFDdE8Oamvoa6TlYC5zfcNPrc5k5rdFTIv4oBfpsyunSktK7hnE0TNcoecUOypsN31l7DpvlrvSdst25UKH0u1/FGhUQwZJlAh4Z4quJUv5+h8CLqUc1uiW3T0XBTIQgD0hIINR6dsvexbgcIeU14qggwOoa6vgkZvjfbow+yjg6PwsR1omOdoQ1nrBF4fHHQnvOeCnTVKIIHcaEJNMTj+Q6lVPGRRdUWZSbgJkIQrZdGRbEQ0T7vSdakUnyhsqlknQJLUw2Z64lRubA5SE16jgwSmxs04NUOvjnYtFkhcqgfFkdoT1/lDRNUJcCFkKCFXo80CrDODkTMThbPjqMBDXGStkjkP69Kv3vSVfbTKxm7tS/p4Ja2jYRx2DeOL5iUVxsl/o1n3jtE7xrOsbO8YT+IYr7qO8dG4iRQCdW8XvV0818r2dvEkdvG6axefDLGPptT9t4veLp5tZXu7eAK7+HkXwDjVhE5zxc7RzdGxE+eMi2cwHJ0ef/7Q8pvtVccR87CWGrKIDROYIRVGQAYrDBRxUgbpEv35tFoxxDoMzqVA59OhKyd88AnpzribdG5zn1aR9dXpFlDzaXUPsK0nBA0+raSoAwWK2TTwsnQKMiiIrM/SlFs54CFcrkwpBrmZQWBB7S5xxXvkDh1kl1ebj85DHzat1k5YnRa38nfsgqpT7dER++2vC0bmJn6FW7Ku4fJXYHSPlnYVyAU21Zd6auL+yxPdqtBgaGUnVmcG+/XiYhTo2FiP9bG508pwEbHdG84Kh9O3Y0iNRc2tTHWz7mV7JoNw+8bAiLtrpLdj+HuiuL4Zwzv22aIOzG0qFb5J+TtIoMVvGRwODgYHAZdZ42nG4wVepvyNptnKYlXQjfdVnTRHWC276bLl0B4SyDaZ9KqhINkuR5Bo8zi/RcjbfRWedNHtVmuFKVIEOF4YT0FGVU24xy9O1XUYblhl6B8hfbixArIpV/7+7anW7+XvksydlbjBRYeUzrkqw8zYyHPuZGMX/0vIT2dLYPuCPZDf75TXXge92NTVyl6fVaC+jytuD76/RwZN9zy++h8i/nvkcb/XnzCjzl8De8iVAuqrOmkNMrR286AB9BtLNne92ngjHZ/8cXJxAnX9H9LvZVU= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-subnet.ParamsDetails.json b/docs/documents/network/delete-subnet.ParamsDetails.json new file mode 100644 index 0000000..1c4e90b --- /dev/null +++ b/docs/documents/network/delete-subnet.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the subnet has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the subnet to delete","required":true,"schema":{"type":"string"}},{"name":"newDefaultSubnet","in":"query","description":"if a default subnet is going to be deleted, it's the uri of the subnet to set as default for the vpc to replace the deleting one","schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-subnet.RequestSchema.json b/docs/documents/network/delete-subnet.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-subnet.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-subnet.StatusCodes.json b/docs/documents/network/delete-subnet.StatusCodes.json new file mode 100644 index 0000000..81bf284 --- /dev/null +++ b/docs/documents/network/delete-subnet.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-subnet.api.mdx b/docs/documents/network/delete-subnet.api.mdx index a3114a3..6e113c8 100644 --- a/docs/documents/network/delete-subnet.api.mdx +++ b/docs/documents/network/delete-subnet.api.mdx @@ -5,7 +5,7 @@ description: "Delete Subnet" sidebar_label: "Delete Subnet" hide_title: true hide_table_of_contents: true -api: eJztWF1v2zYU/SsEX7oBruWl7YvRFXDrFEs/0qDxsIfYGCjpymIjkypJJc0E/ffdS0m2XHmBY6TACvjJNnU/Dg8vr3xuyZ1YWj6+4pdFqMDxxYDnwogVODC0XnKFP/iY50Z/gcidxXzApaIF4VL8HoONjMyd1LRYKPm1ACZjUE4mEgzTCXMpsMadvfl4gU4GvhbSQMzHzhQw4DZKYSX4uOTuLqds1hmplryqBmsAN3l0aHJ0ZVKx21RGqV+wfrMsFZaFAIpFBoSD+EBk8kBYDQqnWQwZEn5gegW3U0hEkbnmDBswmNTc9dDIhAnM5+1bBNKypcawBCWEBk08YNI9sR5pYWQftMUPJLCNlWizJhufGsgzEYFf8gEpvla0yX02JXL59AZLkEDfu58ZxifWwCJkNrk4Yxu3/0pEMTxoXPoN0y6IeJtrZcGS9cnohD62E02iCHIqkmrAn49GfYPXImafaySYIdLK4YH75PDNBcgG7aLsg9Ih3Qx0wTuSg3GyBlE/7UNXRZaJMIO6RBCMky7bz9I64YpOcOTVwRIM2uLprYSrl56d7HKOwQmZ7ZVHKsykon1AobWIY0kUiuyiS8BmZxzX0WM19Qgs9055nslIkF/wxeojs4/GrK/WI6WPR2nlG8azfsN4q00oY3wtHNvFsV38rMwe28UPaRfP++3iXDv2VhcqPraLY7v4WZk9tosf0C5e7JIjZ7ghg5HYJRiUROzUGG38GaBImn5600rMba+p135srSRX4FKNcpSvJarXuGMeNIreBuV6NFDR4g0KXWODiSlCMTwHd6vNdYCiEA29hK+CWkLibxlXpNI8vnrYUBiklafO5XYcBCgCh4LiRJku4mGkV5y0moUIBam78x6vQRg8tvHVovvokiqrLp7WYM0/Rn0PfSF5hurPOPburxnK12v/p6zRopMCOTDyH98PWjWagsB9ej6lSrSP35zR1taHk1z2cvUs2B+z2QWp17maq6m+VZlGNUna+aVgqYHk9zkPsCIUgg9U7fe0JXtI92nOmRNmCQ4t/w4zoa7n/BX7hC6kiROZwctAvEIkrTxG6TscDUckZ3Nt3Ur4K9ls+fsy2IK/ZrLz6sEo/uzKpj6u2oGRRe9xd3i0LhH8vsUDYcMyIft21tNUCi3JmGZTKSKl4GUZCgt/mqyqaLkeDVA5xNLSlcKKTURmvy/vcvPi/D8MQnbSeI21uXOocyOygsw5jUn23+d9A5J7AGwPYDa5F/TDyLpvPYjwXz43w61f2Z5jwp3w2lus7rq4WtibSnsYS/uAe8AY8QDkdc0/PuodU8YD0OH1qxZo1bQ9Ovn6QT0W67h0oy46L5Dp6YfT2Sk2zH8B+IDKHw== +api: eJztWG1v2zYQ/ivEfdkGqJabdl+EtoBbp1j20hpNhn2IjYEWzxYbmmTIk9NM0H8fSEl+qb3AMVJgBfwpyIl399yj48nPVUB87iG7hstyqpFgkoDlji+Q0AV7BZovEDKwznzGnC4EJCB1MHAqIAGBPnfSkjTBWGp5WyKTAjXJmUTHzIxRgax1Z+/+GEECDm9L6VBARq7EBHxe4IJDVgHd25DNk5N6DnWdrAAsbX5s8qXNmdTsrpB5EQ0+FssK7tkUUbPcIScURyKTR8JqUZBhAhUSHple490QZ7xU1L7DFsxtie5+B42cMc5Ec75DID2bG6nnAcoUWzQiYZJ+8BFp6eQuaI/EuF/Fmhm3IpsMc2gVzzGaYsAQ3+hQ5CFFcSufLdH5APrBeq4KZIE19ISCDUYXbO32X4lCjAgaMngOdT0JxHtrtEcfTp/1z8Kf7USDPEcbmqRO4GW/v3vgLRfsU4MEEsiNJtQUk+MXSq3ioYpqF5SZhpsBSbhiFh3JBkTzdBe6LpXiU4VNi9QJkCR12ElPnMqN4CA14RwdJDAzbsGpMb042+cskLhUB+WR2hPX+SGg6gS4EDJQyNVok4B1ZTByZqpwMYwIPEQna5XMefBLP3tzYvbJmI3deqL06Sit48B4sTsw3hs3lUKgPo2L07j4Xpk9jYtvMi5e7o6LD4bYe1NqcRoXp3HxvTJ7GhffYFz8vE+OXGhCp7lil+iW6Ni5c8bFdzAYXQw/vusk5rbXMGo/tlKSC6TCCMhgJVGjxs0gbRW9T6vVaqAOxqUU6Hw6cOWU9z4g3Rl3ky5t7tMqSvg6bSSkTysp6qDSIr5m2VA6BRkURNZnacqt7PEQJ1emFL3cLCBoNY956STdR4+3yB06yK4nm48uQ2c1zdMdWPHPrfwNd4XkhfboiP361xUjcxN/lLVadFBSYZz8J86DTo0WyAU2fEo9MzF++462Su8NrNzJtXOC/XJ1NQrqdazHemjutDJcRO38irPC4ez1GFJjUXMrU934PevI7oX7NAZG3M2RXo/h76ni+mYMb9hHizpo4plU+CrlbyCBTh5n8LzX7/WDnLXG04LHK9mW/HUbbMFfMbnx6amT5t1VbX9cdwsjDwlkm8ujVYtAss1DwGbzeL7b9bSdEkxShN1UYTyF4FU15R7/dKqug7lZDYR2ENKHKyUgm3Hlv27vav3h/D8sQvbSeIP3+5c6S67KcBzCmuTwOh9akDwAYHsBs849Cf842cytRxH+46d2ufUTO3BNuBded4v1/SauDva60x7H0iHgHrFGPAJ50/NPj3rPlvEIdFJAPamTbuyFN988aNZiGy6bUScbH5Dh+e/nV+dQ1/8C+IDKHw== sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-vpc-peering-route.ParamsDetails.json b/docs/documents/network/delete-vpc-peering-route.ParamsDetails.json new file mode 100644 index 0000000..a58fb9d --- /dev/null +++ b/docs/documents/network/delete-vpc-peering-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpc peering has been created","required":true,"schema":{"type":"string"}},{"name":"vpcPeeringId","in":"path","description":"unique identifier of the vpc peering in which the vpcPeeringRoute has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeeringRoute to delete","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering-route.RequestSchema.json b/docs/documents/network/delete-vpc-peering-route.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-vpc-peering-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering-route.StatusCodes.json b/docs/documents/network/delete-vpc-peering-route.StatusCodes.json new file mode 100644 index 0000000..c844d67 --- /dev/null +++ b/docs/documents/network/delete-vpc-peering-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering-route.api.mdx b/docs/documents/network/delete-vpc-peering-route.api.mdx index 0ee2402..f7ca3c0 100644 --- a/docs/documents/network/delete-vpc-peering-route.api.mdx +++ b/docs/documents/network/delete-vpc-peering-route.api.mdx @@ -5,7 +5,7 @@ description: "Delete VpcPeeringRoute" sidebar_label: "Delete VpcPeeringRoute" hide_title: true hide_table_of_contents: true -api: eJztWd9v2zYQ/lcIPm2Aazlp92J0Bdw6xbwfrZG620NsDLR4jtjIJEtSTjNB//uOlGTLVjKkXvwQQE9xjne8747HT/LnnDp2benwiv6p4ymAEfL6UmUO6KJHNTNsDQ6Md8ipxH/okGqjvkDsJpz2qJDewFyCnznY2AjthPLGTIqvGRDBQTqxEmCIWhGXAKnCybs/phhk4GsmDHA6dCaDHrVxAmtGhzl1d9pns85DokXR2wLY6PjY5BhKhCS3iYiTrUGXZZOEWbIEkCQ2wBzw4+FVjfw/KGtQh2ibZ/RUiMXxOPfgOEU4pDgwR+JgWrzY4LT5tBUgTGzuWohmmNwnAItFk9F0QnZhDyXye6xYljo0nWHahcdotZIWrPc+H5z7P/uJRnEM2je26NFXg0Hb4S3j5LJEghliJR02KSSHby7SKfNV5G1QaukvAYbgddBgnChBlKtt6DJLU7ZMoewmgnHCpY/ztI65rLE59tXBNRj0XSmzZq40vTy/L5iDYyJ9VB4hMZOMHwMKvRnnwreQpdNmA3aVUbRjxHocEFgagrRORcx8XPTFqq6zT9bZMK1dS5+upUUgjLM2YXyWLHOJMuKfQNcdY3SM8Sw72zHGSRjjZZsx3iuzFBxfvjq66OjiuXa2o4uT0MWrNl18UI68V5ns3i46uni2ne3o4gR08dN9AsYECzK4E/kEZgOGXBijTDiD0XQy/viu1m/2o8ZB5iGHmmGPrgG/3HD02ApBQVIa0qjS/WyUbwXEwhs3goOx0chkS9b/AO5WmZtoo2N0DEJfEe1kptK2VdeaSwEArgteeBEoFFPKlpnBM6CJc9oOo4hp0Wc+V5yqjPdjtaZeCrIQZ0a4uxDxFpjBMx5eLZpLn/wYlpNWO2wPC3f9Ddo61UQiEEd+/WtGnLoJb3CV1DWqvgQG8qjFrgQY9iI0X8iVCvtXB7rXnv5Ii1aulgf5ZTabenFsLudyrG5lqhgPut1rRhIDq5/nNMLxkQg+kmXci/pA+v7yzSlxzFyDQ8+/lymTN3P6hnzEEC+5rUQKryP2BpHU6tuQnvUH/YFXy7Sybs3C/a1KfnBm9urYtrTxwMLtwiHm1TBd1Rq0xehhU4/ezhN+3muIB4kz5f1r+bgxVpW5KdseTpZ3Edyr4glW5jHk+ZJZ+GzSovDmUqn048OF9fcVb8GKpfbw7uS7p/J/6pj3tuEGh+xQJ92wNPOeYY43zIiSLL4LyA+XlVz7I3mkcH8vvPo2yLsmrhr27qC85vu04L5X2D8Cfjk3p4F+rNp/XBm7OT9JNQ/+JnAEWrxyxQK9Kmr0U10ulMp8I6S566LxIBpf/H4xu0BS/Re1F19D +api: eJztmU1v2zgQhv8KMactoFpO2r0IbQG3TrHej9ZI3e0hNha0OI7YyCRDjpz1CvrvC+rDlqNkkXqTQwCdDFAczsvh8JX9OAfilw6iC/jTxFNEK9Xluc4IYRGA4ZavkdD6CTkovkaIwFj9HWOaCAhAKj/AKYEABLrYSkNS+8FMyesMmRSoSK4kWqZXjBJkdTj78McUArB4nUmLAiKyGQbg4gTXHKIcaGt8NkdeEhRFsBOwMfGxyTcmZlKxm0TGyW7AVNtmCXdsiahYbJETiuPl1YX8PyobUbfVts/osRTL43UeyCHNBKZIeKQObuTLDVrn09aCrjO0246iWYLMJ0BHKNhoOmH7sPsS+TVWPEsJIjiBolh4jc5o5dD52afDU/9xmGgUx2h8YYsAXg+H3QnvuWDnlRIIINaKUFGZHP+m0KTc7yLvitJLfwkg8LfJoCVZiaiedqWrLE35MsWqmkUAJCl92ExHnLLW4iAV4SVaCGCl7ZpTNfTq9K5ggcRl+qA8UjniKn6IqCIALoT0JeTptF2A/c5gavUyxfW4VOCgDDImlTH3ceF3p/vKPlply27tS/p4JS1KwzjpGsZXxTNKtJX/lHbdO0bvGM+ysr1jPIljvOo6xkdtl1IIVL1d9HbxXCvb28WT2MXrrl180sQ+6kz13y56u3i2le3t4gns4ue7AMZEEVrFU/YF7QYtO7NW2/IMRtPJ+POHht8cRo1LzMNuM8MA1kiJFhDBDgSVSCmCsOZ+Lsx3ALHwgxsp0LpwZLMlH3xCutH2KtyY2IV5CfqKcI+ZqrEdXWs/KgW4MJei8BCo3EyFLTObQgQJkXFRGHIjB9znilOdiUGs1+BRkMM4s5K2ZcR75BYtRBeL9qMvvg2rTmsm7A6LG/kbdjnVRDm0xH79NmOkr8pvcDXqGtU/AkvzaGBXglxgVXypVrpcvz7Qg/IMRkZ2cnVmsF9ms6mHY3M1V2N9o1LNRcnt3nCWWFy9nUOoDSpuZKiquJfNgQz85ZsDI24vkd7O4a9lytXVHN6xzwaVR24rmeKbkL+DABr6FsHJYDgYelpmtKM1L+9vveV7e+ZgH7uStl5YRVAdYl4300XDoB0EELV59K6fIDgsiBdp4nJ+g49bbVUPt7Ht7c7yU6TwVDzRjryGPF9yh19tWhR+uCKVvn2EdP6+CohWPHW3706+fyv/J8e8swxXuO1w0g1PMz+z7OMNt7Iyix8S8tN5jWtfsAeC+zvlNbdBbdu6Gtn7g/LM93HF/SjYP0J+1TdPI/1Y2n/cNvZ9/iS7ufc/gSPUSgHFoggaa/RdXT2oyHwrpL3qovUiGp/9fjY7g6L4F7UXX0M= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-vpc-peering.ParamsDetails.json b/docs/documents/network/delete-vpc-peering.ParamsDetails.json new file mode 100644 index 0000000..520cd68 --- /dev/null +++ b/docs/documents/network/delete-vpc-peering.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpcPeering has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeering to delete","required":true,"schema":{"type":"string"}},{"name":"newDefaultVpcPeering","in":"query","description":"","schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering.RequestSchema.json b/docs/documents/network/delete-vpc-peering.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-vpc-peering.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering.StatusCodes.json b/docs/documents/network/delete-vpc-peering.StatusCodes.json new file mode 100644 index 0000000..81bf284 --- /dev/null +++ b/docs/documents/network/delete-vpc-peering.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc-peering.api.mdx b/docs/documents/network/delete-vpc-peering.api.mdx index 6991b28..7fb5cff 100644 --- a/docs/documents/network/delete-vpc-peering.api.mdx +++ b/docs/documents/network/delete-vpc-peering.api.mdx @@ -5,7 +5,7 @@ description: "Delete VpcPeering" sidebar_label: "Delete VpcPeering" hide_title: true hide_table_of_contents: true -api: eJztWEtv00AQ/iurPYEU4lDgEkGllBRRnhEEODQR2tiTeulm1+yuW0rk/87M2k4cnKIQ0QNSTk3G8/jm4Um/WXIvLhzvn/PPWTwCsFJf8GmHZ8KKBXiw9GzJNX7hfZ5Z8w1if5bwDpeaBMKn+DkBF1uZeWlImGv5PQcmE9BeziVYZubMp8Aqc/b87QiNLHzPpYWE973NocNdnMJC8P6S+5uMojkf0BRFZwXgKov3DY6mTGp2nco4rQVVwiwVjs0ANIstCA/Jnujk/tBqJN6wBBQWfk8IGq6HMBe58o1+VqAwuL1poeK7ORaZfHCF40BGf/Q3xoQIOTgsJBuMztja7LZA5COARtFDDDul5F1mtANH2ke9I/qzGWgQx5BRs4oOf9zrtRVORMI+lEgwQmy0x8KH4PDDR5kSlMWyDcrMaErRBOc1A+tlCaJ82oauc6XETEHZJgTjpVe7aTovfN5wjnX1cAEWdefGLoQvRY+Othkn4IVUO8WRGiPpeBdQqC2SRFIJhRo1C7DOjKMcLRbDgMDxYJRlSsaC7KJvzhwq+88qG6b1UNJ/V9IiLIxH7YXxwtiZTHA9H9bFYV38r5U9rIs7WReP2+vinfHshcl1clgXh3Xxv1b2sC7uYF082UZHzjAhi57YR7BIidiptcaGHiBJGr5/XtO8TathYINsg80hMU8N0kK+ooqBb/Z5VDFsFy1XVL0g4RWSTuuigc1novsO/LWxlxHSTlQMlLqI1hwUZTIpiK0FnOUBILdYXp56n7l+FCEZ7AryFSuTJ93YLDhxNgdxbqW/CRYnICy2r38+bT76SBNWDlGtsOoDen0NbUJ5hizQevbqyxjZ8WX456zipIMc62Dlz7AXalaagsBcQ12lnpvgv+rVRvrdQSZbsVoa7OV4PCIWO9ETPTTXWhlklUTanwqWWpg/m/AIJ0Mj+EiXdg/qgnfpvZpw5oW9AI+aX2dK6MsJP2bv0YS48VwqeBqJY0RS02SkwN1et0e0NjPOL0R4NauUt43DRgqrajZ+htBT6N+ympPz+pDj0LrfPOqsRgU/b9SC8OG4kH59g2lMDIllQnejFBFTgOVyJhx8sqooSFyeCmgsEunoFcPpnQvlcNwvseW33i2uhMopGU6XiJbpb4mvfoP/eIPYWp4SxOaNYx17Sl+sLFfDthxuBXLvQ3XDuc92vIpthVe/IPqmiauGvW7g31VpF3B/eTXbA305TneCfNtRbQ+EONnFFLWqzUITUD4oL1ANk6bXaWNPD0/fnI5PcSf9AqfJbwg= +api: eJztWN+P2jgQ/lesebqTUkK37UvUVqJlq+Ou16KWtg8LOpl42LhrbK89YY+L8r9XTgiEC1tR1H2oxBPC9ni++eGB7yuA+LWH5Ao+23SM6KS+hlkElju+REIX9grQfImQgHXmK6Y0EhCB1GGBUwYRCPSpk5akCYu5lrc5MilQk1xIdMwsGGXINubs9d9jiMDhbS4dCkjI5RiBTzNcckgKoLUN3jxVaMoy2gJY2fRU5yubMqnZXSbTrFnYBMwy7tkcUbPUIScUJ6KTp0NrkJBhAhUSnghB490QFzxX1KrnBtRtjm7dQQXHXcytfLRC54PRd++bZMgCcvSEgg3GI7Yzu89RuKMCDQk8hrKcheC9NdqjD6cv+hfhY9/RIE3RhmKVETzt97sHXnHBPtRIIILUaEJNlXP8l2KreIii6IIy89ClEIV2t+hI1iDq3S50nSvF5wrrMpURkCR13ElPnPLW5SA14TU6iGBh3JJTvfTk4pCxQOJSHeVHak9cp8eAKiPgQsiQQq7G7QTsIoOxM3OFy2GFwENlZK2SKQ928Vdvzpn9aZmtuvWc0p+X0rIaGE+6A+ONcXMpBOrzuDiPi181s+dx8SDj4ml3XLwzxN6YXIvzuDiPi181s+dx8QDj4tkhOjLShE5zxT6iW6Fjl84ZV9VgMB4N379uaN6+1bBig2yPzS2RMiMggS1VrPhmAvGGYfu42FL1MiyupEDn44HL57z3DunOuJt4ZVMfFxWlLuMdB/VxIUUZ2FqFsxYAcqcggYzI+iSOuZU9Hu5KlclFLzVLCJzNY5o7SevK4hVyhw6Sq1l762PosLqJmgPbOnAr/8IuoRxpj47Yn18mjMxN9edsw0kHOWXGyf+qudCw0gy5wDqvUi9Mdf+mVnvh9wZWdnx1TrA/JpNxYLFTPdVDc6eV4aIi7c85yxwuXkwhNhY1tzLWtd2jJuG98K6mwIi7a6QXU/hnrri+mcJL9t6iDtx4IRU+j/lLiKChyQk87vV7/UBrrfG05NXT3IR8qB32Qthms/UzVEZ1/YpNn1w1Qo6HCJK2qLNtFYj2cxHw2bQ632gwrY4Jy1IE3SgznoKDophzj5+cKsuwXEsFoS2E9OGJCUgWXHmM4AbX9+sWK67yEAwEJaJj+r/At7/B39UgDqanBrGvcex8z8IXJ+vRcCiGe4H89mGj4fzOjlTFDsJrHohet3E1sHcF/LEsHQPuB1WzE9DX7fQgyA+JaicglALKWRk1kyV0QL1RK1Atk/ats9acHl6+vZxcQll+A6fJbwg= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-vpc.ParamsDetails.json b/docs/documents/network/delete-vpc.ParamsDetails.json new file mode 100644 index 0000000..2ce837c --- /dev/null +++ b/docs/documents/network/delete-vpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpc to delete","required":true,"schema":{"type":"string"}},{"name":"newDefaultVpc","in":"query","description":"if a default vpc is going to be deleted, it's the uri of the vpc to set as default for the region to replace the deleting one","schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc.RequestSchema.json b/docs/documents/network/delete-vpc.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-vpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc.StatusCodes.json b/docs/documents/network/delete-vpc.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/network/delete-vpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-vpc.api.mdx b/docs/documents/network/delete-vpc.api.mdx index 5c710a8..a9cd780 100644 --- a/docs/documents/network/delete-vpc.api.mdx +++ b/docs/documents/network/delete-vpc.api.mdx @@ -5,7 +5,7 @@ description: "Delete Vpc" sidebar_label: "Delete Vpc" hide_title: true hide_table_of_contents: true -api: eJztV21v2zYQ/isEv2wDXMvLui9GV8CtMyx7aYPW2z7ExkBLJ5sNTarkKVkm6L/vjpJtOcoCN+gwDPAn29S9PPfciX6ukqhWQY6v5G9FKhcDWSivNoDg+bCSln7IsSy8+wApXmRyILXlA4Vr+p5BSL0uUDs+LK3+WILQGVjUuQYvXC5wDaJ1F69/uSQnDx9L7SGTY/QlDGRI17BRclxJvCs4W0Cv7UrW9WAHQD8x802RCnQiA0M1PTG3hdsp5Ko0yBy1MCidv+vh0LlQlCwax9w6iJWjgAxiCS2ObCA0fhEiwNLre1gDoFBhFyV3Pj71sKIcbOChMCqFeBoDcnxnubxjylGFfnZD/WXEjxYzi1npWSDIYnJ5IfZu/5SIY0TcdPQ1pV0w5aFwNkBg67PRGX8cJpqkKRSUQ9YD+Xw06hu8Upl41yChDKmzSH2OyeFPTIgNrqLqg3JLHjtyoQEswKNuQDRP+9BtaYxaGmiGg8CgRnOcZUCFZSc48YqwAk+21MCNwubom7OHnDNApc1RebSlTDY9BhRZqyzTTKEyl10C9pVJOiePzTQiCDI6FYXRqWK/5ENwJ2Y/G7NxWk+Ufj5K63hhPO9fGG8ciu9dabPTdXG6Lv6vzJ6ui3/huvj2IX1xQQV5iiTegyeNI869dz72gFTP9O3rrVo89JpGMScaUUiaee1IVsqd1IxCdSyTVvyGpNqp6JoPb0it+pBMfLlUwzeAt85fJ6QByVBnNWusCKbR4aUnDuUasQjjJCEJN1TslxpXZsPUbSQrrQApyUm8ix6vQHnq0fhq0X30nseomZStwY5sivoT9GXgBWk3j+LH32ckPq+B1V+rJCcl1ez1X/Hl32rJNSiqK5Knbe5i/LYhB6UOJ4Xu5epZiB9ms0vWnnM7t1N3a40jLcjK94USaw/5d3OZUPstgU9s4/dsS+6QX565FKj8CpAs/1gaZa/n8qV4Sy6saHNt4EWiXhKSrbgl4TocDUcsRgsXcKPi+9eWfNDzA+w7Gjt/MhQiNq5qh+Fqu0gF8h53l6rdPND3AxIYGM0E29MORJ1cEyaOVFVLFeBXb+qajxsJz43PdOA3hWYxVybcn9pq/3/4n28rDxJ2TSPY37lulCnZVvIic3yFj60wj2Q/XJH2uRf8w+vmIvokqr981y6eX4kjt+QH4W3fVHvXxbWFvR+oT2PpGHD3F+knwKP5rRdk1d4QTGDzoNn/Oi7dqIvO3To9//l8dk53y98Uf8eT +api: eJztV22PGjcQ/ivWfGkrbVhyTb+skkgkXFX6kqCEth8OVJn1AM4Z22fPcqVo/3s1Xl4PeiKnVFUlPiHsGc8zj8ezz6yA5DRCcQO/+RJGGXgZ5BwJAy+uwMo5QgE+uE9YUk9BBtrygqQZZKAwlkF70o4XK6vvKhRaoSU90RiEmwiaoVi7i7e/9CGDgHeVDqigoFBhBrGc4VxCsQJaeo4WKWg7hbrOtgD0EyMvfCnICYUGCZ8Y2+J9FyeyMsQcrWHcVRiWRzj0REihGuMUW0cxddpOGcQY1zhUJjR9FRPAKugHWCOSkHF7ysSFtBtwqp1lg4DeyBLTajqQz3eW0zsnHen1swWGyIgfTWaQot5VGAmV6PR7Yuf2T4H4jIQbCngOdT1iyqN3NmJk66v2Ff8cBuqUJXpCBXUGL9rtY4M3UokPDRLIoHSW0FIKjn9S7o3kLFbHoNyYyw4yrl+PgXQDotk9hm4rY+TYYFMcdQakyZxnGUlStXc4aEs4xQAZTFyYS2qWvr065ayQpDZnxdE2krTlOaDqDKRSmimUpr9PwC4z6Ac3NjjvJgQRkpP3RpeS/fJP0V2Y/WLMpmq9UPrlKK1Tw3hx3DDeORLfu8qqS7u4tIv/K7OXdvEvtIvvTumLniUMVhrxEcMCg7gOwYV0B51+r/v+7UYtHnp1k5gTjSicI82cggK2UjMJ1QLytfiN+WqromteXGiFIeadUI1l6x3SvQu3+cKXMV9pVbPGSmAaHV4FAwXMiHws8lx63ZLsVxpXqVbp5sBKK2JZBU3L5PEGZcAAxc1of+sjl1FTKRuDLdnS65/wWAb2bMRA4sffB4LcLbL6WyvJTkUzF/Rf6fFvtOQMpcKGPG0nLp2/vpCDVFsdr49iHVmIHwaDPmvPoR3arru3xkmVlO9LKWYBJ6+GkDuPVnqd28bv2YbcFj+eIQiSYYr0agh/jI20t0N4Ld57tKxoJ9rgy1y+hgw24raA5612q81i1LtIc5ne3zrlgzs/wL6lce8jU2fNxa3WxXCzGaQiZFDsD1XbeoDskAQG5stkrxUPaDMXiU9arcYy4q/B1DUvNxKeL17pyC9FQTGRJj6s2tXue/ifTysnCbvF5YmZayFNxbbAg8z5GT42wjwS/XBE2sUe8Z+gm0b0WVR//WE9eH4jzpyST8LbvFS73Me1gb0rqM9j6RxwDwfpJ8DTCupRnW06BBPYbDTz357L/qmjvd7avf75enANdf03FH/Hkw== sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-vpn-route.ParamsDetails.json b/docs/documents/network/delete-vpn-route.ParamsDetails.json new file mode 100644 index 0000000..6196c18 --- /dev/null +++ b/docs/documents/network/delete-vpn-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpnTunnelId","in":"path","description":"unique identifier of the VpnTunnel containing the vpnRoute","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpnRoute to delete","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-route.RequestSchema.json b/docs/documents/network/delete-vpn-route.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-vpn-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-route.StatusCodes.json b/docs/documents/network/delete-vpn-route.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/network/delete-vpn-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-route.api.mdx b/docs/documents/network/delete-vpn-route.api.mdx index be4874c..199b029 100644 --- a/docs/documents/network/delete-vpn-route.api.mdx +++ b/docs/documents/network/delete-vpn-route.api.mdx @@ -5,7 +5,7 @@ description: "Delete VpnRoute" sidebar_label: "Delete VpnRoute" hide_title: true hide_table_of_contents: true -api: eJztV99v2zYQ/lcIPq2AY7lZ+mK0Bdw6w9J2bZB66UNsFLR0jpnQpEJSblNB//vuqB+WK2/wjOxhgJ8sk3e8j3efTt/l3Itbx4c3/DrVVybzwGc9ngorVuDB0k7ONf7hQ55acwexv0h4j0tNC8Iv8TkBF1uZemloMdPyIQMmE9BeLiRYZhbML4FV7uztH5foZOEhkxYSPvQ2gx538RJWgg9z7h9Tiua8lfqWF0WvAbBO9STTGtShEK7rA1hstBdSY4Swsa4vfxgweSCeOizzhiWg4GAAIpUnaywXxauQYET72IEywagUAJyHhI0uL9jG7e8C0RkLkSmPS88x7IwwutRoB46sTwen9LMdaBTHkGIMXvT42WDQNXgjEnZVIsEIVA/MTggO332UKkG3yLugzJxYhC7IpxSslyWIcrcLXWdKibmCMpsIxkuv9rN0XvisdTjm1cMtWLRdGLsSvlz69XSXcwLIL7VXHKkxko73AYXWIkkkpVCoy3YCNjfjuI4eq3FA4HhwSlMlY0F+0Z0zx8w+WWYDW48pfbqUFqFhnHUbxkfj2W8m08mxXRzbxf81s8d28R+0ixe79MUFXsjiSewzWNQ47NxaY0MNUPWMP72t5dW21zioMHa90YOog5cGxRhvBFrQeEMeVYLWRXmjjAtaXKPQsy4a2Wwu+h/BfzP2Pmq0K5q3dGwR1RoQ12VSkAwLeEvlnVlMM196n7phFKHK6ws6NVYmS/qxWXESYw7izEr/GDzegLBYxuHNrL31mZhWkqk2aOqBp76HrlK8QHlnPXv3ZYLq9B5IIFZic5RhRqz8EfpDLTeXIPDWIb9SL0w4v6rZViL6o1R2YnUs2O+TySXJ06me6rH5ppVBuUiS+aVgSwuLV1MeIUM0go906XdSp75P79eUMy/sLXi0/DpXQt9P+Wv2CV1I9C6kgpeReI1Iav2L2rY/6A9Ir6bG+ZUIr2h15S4tti7Q5LL1McJzQvXyii839fzk0HvYnqUayuDzViYIXUMb8toegBrm0BaOIFjvJSKnUHk+Fw7+tKooaLmcBYgeiXT0yiGfF0K5n+mfbz6s/zgp7LztPZLo50lkLVRGloGna2Fl+b7/KyC/XFUD0TO252y5E17Ndv3YxlXD3tSDpqqnBbfP1HkA5DYZnh70ztH0AJTIy2KGVlV/oNKXG+WA2HJpnzpr9d3x+YfzyTl2lr8AhQHJkw== +api: eJztV02P2zYQ/SvEnFpAsZxtehGSAE68Rd2PxNi428PaKGhxbDFLk1xy5NQV9N8LSpYsV27hGttDAZ8EkBzOm5nH0ZsCiK89JA9wb/WdyQlhEYHljm+Q0IWdAjTfICRgnfmMKU0ERCB1WOCUQQQCfeqkJWnCYq7lU45MCtQkVxIdMytGGbK9OXv/8xQicPiUS4cCEnI5RuDTDDcckgJoZ4M3T07qNZRl1ALYWj3LtUZ1KYT75gKWGk1caqnX1ca2Cf4yYPJCPI1bRoYJVHgxAG7liy06H/ztkTzl6HY9KLMMWXCAnlCw0XTCDmZ/5yjcseK5IkjgJZTlImD01miPPpy+Gd6Ez7GjUZqiJRRQRvBqOOwfeMcFu6uRQAShHqipco6/U2wVD1EUfVBmGVgEUaCjRUeyBlHv9qHrXCm+VFhns4yAJKnzTnrilHcuB6kJ1+gggpVxG0710jc3p4wFEpfqLD9Se+I6PQdUGQEXQoYUcjXtJuAQGUydWSrcjCsEHioja5VMebCLP3tzzeyzZbZi6zWlz5fSsmoYr/oN44Mh9p3Jtbi2i2u7+L9m9tou/oN28e0pfTHRhE5zxT6h26Jjt84ZV9VgNJ2MP75v5NWx1bhSYez+oAc3SJkRkEAr0CqNl0C8F7Q+LlplXIbFrRTofDxy+ZIPPiB9Me4xbrWrj4uOji3jRgP6uJCiDDKswlsr79wpSCAjsj6JY27lgIdbU2VyMUjNBoIY85jmTtKusniH3KGD5GHR3foUmFaTqTnQ1oNb+SP2leJEe3TEfvh1xsg8YhCIe7E5yikzTv5R9YdGbmbIBdb5lXplqvv3NTtKxGBkZc9X7wT7fjabBnk613M9Nl+0MlxUkvk1Z5nD1Zs5xMai5lbGurZ70aR+EN7XHBhxt0Z6M4fflorrxzm8ZR8t6iB6V1Lh65i/hQga/ZvAy8FwMAx61RpPG1490X3IfVocBdDmsvMzKqO6esWeLw/N/OQhgqQ7S7WUgeg4EwFdS5tgdTwAtcwJW1KEwS0znoKrolhyj784VZZhuZ4FAj2E9OHJCUhWXPm/0r84/Fj/cVI4Ge0j7nqTyJarPJyseLrlTtbv/V8B+epuPxB9zc6cLU/Ca9iud11cDexDPcJU9bzgzpk6L4DcJcPzgz45ml6AUgooF2XU9IdQ+nqjHhA7Jt1bF52+O7796XZ2C2X5J4UByZM= sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/delete-vpn-tunnel.ParamsDetails.json b/docs/documents/network/delete-vpn-tunnel.ParamsDetails.json new file mode 100644 index 0000000..a82ff94 --- /dev/null +++ b/docs/documents/network/delete-vpn-tunnel.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpnTunnel to delete","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-tunnel.RequestSchema.json b/docs/documents/network/delete-vpn-tunnel.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/delete-vpn-tunnel.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-tunnel.StatusCodes.json b/docs/documents/network/delete-vpn-tunnel.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/network/delete-vpn-tunnel.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/delete-vpn-tunnel.api.mdx b/docs/documents/network/delete-vpn-tunnel.api.mdx index 8f658cb..c8350c0 100644 --- a/docs/documents/network/delete-vpn-tunnel.api.mdx +++ b/docs/documents/network/delete-vpn-tunnel.api.mdx @@ -5,7 +5,7 @@ description: "Delete VpnTunnel" sidebar_label: "Delete VpnTunnel" hide_title: true hide_table_of_contents: true -api: eJztV01vGjEQ/SuWT61EWJqmF5RGIoGq6UeCEtoeAqrM7gBOjL2xvaTpav97Z/YDlkCrNEoPlTixeGc8b96MvW9S7sXU8fYV/xrrQaI1KD5q8FhYMQcPll6lXOMf3uaxNdcQ+tOIN7jUtCD8DJ8jcKGVsZeGFhMtbxNgMgLt5USCZWbC/AxY6c5OPvfRycJtIi1EvO1tAg3uwhnMBW+n3N/HFM15K/WUZ1ljCUA+MfKiyo15wyJQmNkTEYhY7i2QFgpYQsGQ9n4DywDDUgBwHiLW6Z+yldvvAtEeE5Eoj0uvMOyIMLrYaAeOrPdb+/SzHqgThhBjDJ41+EGrtWlwLCJ2USDBCKHRHunJg8MPH8RKUBbpJigzpmqhC9YtButlAaJ4uwldJ0qJsYKCTQTjpVePs3Re+KS2OfLqYQoWbSfGzoUvll7vb3OOwAupHhVHaoykw8eAQmsRRZIoFKpfJ2CVGcd19Jh3cwSO505xrGQoyC+4dmbH7LMxm3frjtLnozTLL4yDzQvjzHj2ziQ62l0Xu+vif2V2d138g+vizTZ9cYoJWdyJXYJFjcN61hqb1wBVT/f8pJJX617dXIWxlepscBScM4NqjC8VWq7y2jwolaML0qUEzWhxgVLPuqBjk7FonoG/M/YmWIo9NJdRRnorB1ZI2cQin3zmfezaQYByrinIO1QmiZqhmXNSXQ7CxEp/n3scg7BYr/bVqP7qklqq6JrKYEk87voRNiXhKeo469mHbwOUoTdASrBUlZ0EM7fyZ34RVLpyBgKzy4mUemLy/cvirCXc7MRyI9aGBXs/GPRJhw71UHfNnVYGdSGJ40PBZhYmb4c8wFbQCD7Qhd9eRXGTDtKQMy/sFDxafh8roW+G/Iidowup24lUcBiII0RSCV0Usc1Ws0XCNDbOz0V+FsuUt9R/LYMlmbXPDm6Uly8tG+Oqmkgcerfr08myN/B5jQqCt+wP8sKRAqs6Q3y0X5qOhYMvVmUZLRfSnpogko5OEHbnRCj3sJvT1Xfyj8J/a0o32CoPB4uFUAlZ5t24EFYWx/evgLy4KOebl+yRI9lWeFVP6/s6rgr2inQakp4X3Pap7QkgscbZCK3KE0U0Fi+K2anmUt91VLuRur1PvUEPz+IvBxhDPg== +api: eJztV02P2zYQ/SvEnFpAsZxtehGSAE68Rd2PxEjc9rA2irE4XjFLk1xy5MQV9N8LSpYt126xXWwPBXwSQM5w3jwOR28qYLwNkN3Ar87MSmNIwyIBhx7XxOTjVgUG1wQZOG8/Uc4TCQkoExeQC0hAUsi9cqxsXCyNui9JKEmG1UqRF3YluCCxcxdvf55CAp7uS+VJQsa+pARCXtAaIauAty5GC+yVuYW6TvYA1CMjb7rcBFshSRPTIxGgU8825EMMuINyX5LfnmCZFSRiAApMUoymE3Fw+7tA8YwVlpohg+dQ14uIMThrAoVofTW8ip/jQKM8J8ckoU7gxXB4avAGpfjQIoEEcmuYDDfB6QunTmPMojoFZZfxtiCJ1+7Is2pBtLun0E2pNS41tWzWCbBi/TDLwMhl73BQhumWPCSwsn6N3C59c3XOWRKj0g+Ko0xgNPlDQNUJoJQqUoh62ifgkBlMvV1qWo8bBAEaJ+e0yjH6pZ+CvTD7ZMw21Xqh9OkorZuG8eK0YbyzLL6zpZGXdnFpF/9XZi/t4j9oF9+e0xcTw+QNavGR/Ia8uPbe+uYORtPJ+P3bTl4de40bFSYOqjOBNXFhJWSwV2iNyssg3SnHkFZ7CVrHxY2S5EM68uUSB++IP1t/l+7FXkgrJeuotxpgrZQtvYYMCmYXsjRFpwYYvXNtSznI7Rqi6gqUl17xtvF4Q+jJQ3az6G99jCXVVk1nsCcenfqRTiXhxATyLH74bSbY3lFUgjtVOSq5sF790TSCTlcWhJJaIpVZ2eb83eUcJTwYOXUS68RCfD+bTaMOnZu5GdvPRluUjTh+iaLwtHo1h9Q6MuhUalq/Zx3Fg/iQ5iAY/S3xqzn8vtRo7ubwWrx3ZKK6XSlNL1N8DQl0QjeD54PhYBiFqbOB19i8xV3KZ+7/KIM9mb3fTp2011ftCuOmm0gCJJD1p5N9bUByTEWEt6+P6KVknHcKGzieV1VLDPSL13Udl1tpH4tAqhBfkIRshTr8tZqrw3/yH4X/2ZTuaHsyWGxQl9GyqcYNetU+338F5KsPu/nma/HAkewsvK6mzbaPq4N9ID0OSU8L7vzU9giQSkK9qJPuRUUa2412duq59E9d9DrS+Pqn69k11PWfBxhDPg== sidebar_class_name: "delete api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-elastic-ip.ParamsDetails.json b/docs/documents/network/get-elastic-ip.ParamsDetails.json new file mode 100644 index 0000000..abba64a --- /dev/null +++ b/docs/documents/network/get-elastic-ip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the elastic ip to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-elastic-ip.RequestSchema.json b/docs/documents/network/get-elastic-ip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-elastic-ip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-elastic-ip.StatusCodes.json b/docs/documents/network/get-elastic-ip.StatusCodes.json new file mode 100644 index 0000000..11d9750 --- /dev/null +++ b/docs/documents/network/get-elastic-ip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-elastic-ip.api.mdx b/docs/documents/network/get-elastic-ip.api.mdx index 556e960..481607e 100644 --- a/docs/documents/network/get-elastic-ip.api.mdx +++ b/docs/documents/network/get-elastic-ip.api.mdx @@ -5,7 +5,7 @@ description: "Get ElasticIp" sidebar_label: "Get ElasticIp" hide_title: true hide_table_of_contents: true -api: eJztV9+P2jgQ/lcsP10lSrhe7wX1KtGy7XHVdVddTvewoJNJJuCusdOxs+0W8b/fjJNAWGBFt1Ufqj5B4vnxzTdj+8tKBjX3sn8lz4zyQaejQk47slColhAAeWklLT3IvizQvYc0jDLZkdryCxUW9D8Dn6Iugnb8srT6QwlCZ2CDzjWgcLkICxC1u3j59wU5IXwoNUIm+wFL6EifLmCpZH8lw23B2XxAbedyve5sAOgHZoaqNqELEZxAoMhwAw8FMbcOYQiG+Mkugwqlb1BRdrzdg6UrEAjelZgSmk/aBy+0FT56i4mso01kh9GVaL1468IrV9pMqDR1mBEKxs6BbpShKmNp2ovcqLk8gHzmnAFlI5pclSbIfq6Mh3YpqtCPb6jJjPPeEsYRP615QikGFyOxdTvGWSux/JUYnDLdvnDWg2frJ70e/+wmOn9DfqmzgVoYQ8KnkBRGMbbVfio344kiF5qtAjDoKjSNrspUiJa2NEbNDFQtXhPeqmWHlnaj3FmmdZVlmoEqc9GyjLR2ZNCBbbcb6V1d7TA4Gb2LwuhUcYDkvXc/QEWxOz9CKez/tPd0fx5pF4q4Db/FWFar+/tkr9Qa7QmWW75qU00Y54BkmztcqlC9+u3JIeeMOqHNSXm0pUw2PQXU0VastpVJek8ey2FE4L96e/xk9j5mH7RNf1J6nFJ2+/3Q9TWigpAiiUtAuiHFGaLD2AO6M4fnLxudsev1GoLYyq8On5ALR5pEziH2hbVOXya1fvLJaiPE1vzyhgQP+mSA5Ux130L46PA6gSYemetszfd0hFQJuhKJSbkIofD9JCEZ0FXsnRpXZt3ULSXf1h7SEnW4jR4vQCF1qn81bS9d8jBV89IYbCinqG9gX0qM6NDFIP76d0x65hpYQdRqZFBS2ag/xyOg0SMLUFRdpFDb3MX4dVt2Cu4OCr2Xa89C/DkeX7B+mdiJHbqP1jiVRVH1TIkFQv7HRCY0BJbAJ7bye9xQ3OUtNJEiKKTGkOV/M6Ps9UQ+F+fkwqoo1waeJeo5IWkEEomfbq/bk3yDOR+WKu7CuuS7nd+Bv2GyddtQlNi7VT0VV40oZw3abwv0zWDQ/x0e6Hk7HOxFqppauiBwHG+1mikP/6BZr/l1pQd5AjLteeNkmzv1DtjN9fh9BO9Bbq5p4I4p9BiFViUL4NOLuU/63oNhV1pvc0/5AXV1BH0Rq7+8qz9WHokTP7EOwmt2p71t42pgbyfoy1g6BdzRr7AH4KSZXU/Jqj4emMlqYZCmUISWSzvqtHW2vj4b06nyP8QMOt0= +api: eJztV9tuGzcQ/RVinlpgo3XS9GWRBFBjN1WD2kLsog+WUFDLkcSYItfDWSWOsP9ezF50sWRDcYs+BHkSRM7lzOEMeXYFrGcRsms4czqyzQcFjBMoNOkFMpJsrcDrBUIGBYWPmPPAQALWy4LmOSRgMOZkC7ZBFktvb0tU1qBnO7VIKkwVz1G17urtH0NIgPC2tIQGMqYSE4j5HBcashXwXSHZIpP1M6iqZA3APjEzNrUpWygOipDJ4hKfCmLmA+EpOmQ0l6y5jB2q2xLpbg+WbUAQxlBSjgo/28hRWa9i7a1G0EYbQSLoSvJRnQf+NZTeKJ3ngYz1M8EugZbaldiUZqOaOj2DA8gnITjUvkYz1aVjyKbaRdwuRRf22RIpCs5HS7iq8d+WGBmN6g8HauP2EGdbieE5VNVY6I5F8BGjWL84OZGf3UQX7yGBPHhGz3VI/Mxp4bRgW+2nChPpKEikNQsktk3oBbI2mmtLXzqnJw6bI64SaEg/uLUb5d52lYA2xgpQ7YZbljWtCbBlsd0M0oe22lMOUHsXhbO5lgDpxxi+gYrq0/kWShH/lycv9/vxPLCqx/C/aMtmd39O9kpt0R5hueGrNbWecYYECUwDLTQ3Sz+9OORskLV1R+WxPrL2+TGgHjyK1aYyGFKYOFyc1gjivx6P78w+xuyTxvQ7pQ9TKm4/H3q+Bp6RvHbqEmmJpM6IAtVn0B8OTi/edjpj1+sdstrIr0RuyHkwkMEM63MRrZNB2uqnmK7WQqySxaU1SDHtUznRvXPkT4FuUuzixXRlTSXvdA2pEXQlOchgzlzELE11YXtavHMXStPLwwLktY6Yl2T5rvb4BTUhQXY93t66lGZq+qUzWFOuC/se96XEwEckVr//daU43KAoiFaN9EueB7Jf6iug0yNz1AYbCq2fhjp+eyw7Bff6hd3LtWehfru6Gop+GfmRPw2fvAva1KLqlVZzwunrEaShQK8Lm/rG71lHcU9GaASKNc2QX4/g74nT/mYEb9RFgV5U0dQ6fJXqN5BAJ5AyeN476Z2AvGAh8kLXU9iWfP/kd+Cvmdx6baqkObtV2xXXnSgXDZptC/R1Y0CyywMksGkO8bJGJP88RJZ4q9VER/yTXFXJcqMHpQOMjTI4Zv2m3gO7fh7/H8F7kJsbvHtQoddRIAMQAXx8MY9J30cw7ErrTe6x/CHbXEFfxeoPH9qPlR/VkZ9YB+F10+nvtnF1sDcd9HUsHQPuwa+wJ+C0BqpxlXTXgzDZbPTzHAvectmOOt66W9+dXUFV/QPEDDrd sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-load-balancer.ParamsDetails.json b/docs/documents/network/get-load-balancer.ParamsDetails.json new file mode 100644 index 0000000..864ffb8 --- /dev/null +++ b/docs/documents/network/get-load-balancer.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the load balancer to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-load-balancer.RequestSchema.json b/docs/documents/network/get-load-balancer.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-load-balancer.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-load-balancer.StatusCodes.json b/docs/documents/network/get-load-balancer.StatusCodes.json new file mode 100644 index 0000000..2b1fb38 --- /dev/null +++ b/docs/documents/network/get-load-balancer.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-load-balancer.api.mdx b/docs/documents/network/get-load-balancer.api.mdx index 5fcad32..e45dfdd 100644 --- a/docs/documents/network/get-load-balancer.api.mdx +++ b/docs/documents/network/get-load-balancer.api.mdx @@ -5,7 +5,7 @@ description: "Get LoadBalancer" sidebar_label: "Get LoadBalancer" hide_title: true hide_table_of_contents: true -api: eJztWFFv2zYQ/isEnzbAtbK2ezG6Ak7ddlm3Jkg87CE2Blo62WxoUj1SaVPD/313lGxLtWO42VaghZ9skbzjd98dT/y0kEFNvexdy9+dyk6VUTYFlOOOLBSqOQRAnl1ISw+yJwt07yANZ5nsSG15QIUZ/c/Ap6iLoB0Plla/L0HoDGzQuQYULhdhBqI2Fy/+uCAjhPelRshkL2AJHenTGcyV7C1kuCt4Nx9Q26lcLjtrAPqBOxsKT0zq+ERwAoGcwy08FMfUOoQBGKIouwoqlH4FjADg3RYyXeFA8K7EFAR81D54oa3w0VqMZO1tJDuMrkTrxVsXXrnSZkKlqcOMUDB2dnSrDAUao9Ne5EZN5Q7kE+cMKBvR5Ko0QfZyZTw0Q1GFfnRLeWace0MYRvw05wml6F+ciY3ZfZw1NpY/EYNjptsXznrwvPrxyQn/tDc6f0N2qbOBshhdwseQFEYxtsX2Vm7CRUUmVF4FYNCVa6pelakQV9rSGDUxUKV4SXirlO2aanv5bJrmVZZpBqrMRWNlpLUjgw68tnWcLuuAB8HJ6KAojE4V+0jeefd9BBVz9J1Ewy6e7irMU2oil9UJ+C8qtJrdPjJb8daQD1i5Ia1eqgnjlFp6R+YO5ypUQ08e7zLOKB3aHLSPtrQTMXfA4nvzsdhEJmmcLOaDiMD/62NyZHYfsw86q0dK76e0ahhPtxsGvb9FfIEf28WxXXyrzB7bxf/QLn7edb84o4CQPIkrQLpbi5eIDmMO6LY9OH+xUihtq9cQREu+dfhiNXMkaOQUYmpYK/VkUusvnyzWQm7Jg7ckmNAnfSwnqvsWwgeHN4lpuCQLnS35nh+BVZqwROJTzkIofC9JSEZ0FTtIjSuzburmkm/7HtISdbiLFqegkPD1rsfNqSsuqapqVgvWxJPXN7AtRc7oroZB/PbXkPTQDbACqdVMv6TIUX+KjWClZ2agKMBIpLa5i/7r5LRi7vYLvbXX1grx63B4wfpnZEd24D7YKC5ZlD1TYoaQ/zKSCZWCJfCJrewerVju8kEaSREUUm5o5d8TovhmJJ+LczJhVZVrA88S9ZyQrAQWiafuSfdE8t3X+TBX8SzWIe/IfyuCNZmN1w45iulb1LVxvZL2LGN7TZm/Lg/636KCnlslwoYkzymxM4LILheLifLwJ5rlkocrVcl1kGnPhyhb38k/w7t+VX4d2byTnhsqu/t0fvRCs5Jl9OHB7BPQezC0Bfpm7zE/oK7a0Rex+sNl/cnjR3Hgt5qd8FZn1N41ca1gb4roy1g6BNy+zzkPgEpluxzTqrpPMJnVRD9NoQgNk6bXcaPPvn45pPbyD5/vvRY= +api: eJztWN9v2zYQ/leIe1oB1Uq77kVoCzhN12XdEiPJ0IfYGM7i2WZDkwp5cpsa+t+Hk2RHrp3AzX4AK/JkmLw7fvfxeOLHJTBOI2SX8JtHfYgWXU4BRgkUGHBOTEFml+BwTpBBEfxHyvlYQwLGyQDyDBLQFPNgCjZeBktnrktSRpNjMzEUlJ8onpFq3dWb3weQQKDr0gTSkHEoKYGYz2iOkC2BbwpZLXIwbgpVlawBmAeubD1qNW7zU+xVIA6GFvRQHFPnAx2RJSZ9zshlXAG7LincbCEzDY5A0ZchJ0WfTeSojFOx9lZDaKMNIRF0ZXBRnXj+2ZdOK8xzH7RxU8EugRZoS2qyM1FNLE5hB/Kx95bQ1WgmWFqGbII2UjcVLMzTBYUoOO9N4aLGf11SZNKqPzhWt253cdZZGJ5BVY2E7lh4FymK9fODA/nZXOj0PSSQe8fkuA5JnzktLAq25fZSfixFBYlUZ0GBTRN6TowaubZ0pbU4ttRscZVAQ/rOqc0oX01XCaDWRoCiHXQsa1oTYMNiu3GcztqEj9hDHaAorMlRYqQfo/8+kqr36DvJRkK82FWYh6jVWXMC/okKbWa3j8xWvi3kPSxvSWtNjWOaUoAEJj7MkZuhH5/vctbEaOxe6xgXWZjbw/jO/VjeZgaD4MeW5kc1gvi3j8kjs/cx+6Cz+kjp3ZQ2DePFdsM48azqD/hju3hsF/9XZh/bxb/QLn7adb84dkzBoVXnFBYU1NsQfKj3oD84Pjp9s1Iom17viNWGfEvkYjXzGjKYUr01opUySFv9FdPlWshVMrgwmkJM+6EcY++E+JMPV6nthIzp0uhK7vk1sEYTlsFCBjPmImZpioXpoQTIrS91L/dzkNt+pLwMhm9qj0PCQAGyy1F36lxKqqmalcGaeCzMe9qWIscuUmD164cLxf6KRIG0aqZf8swH86VuBCs9MyPU1BBp3MTX8dvN2ci51y/M1lpbFuqXi4uB6J+hG7oj/8nV4lJE2UtUs0CTV0NIfUEOC5O6xu/piuWeHKQhKMYwJX41hD/HFt3VEF6r04KcqKqJsfQyxdeQwEpgZfCsd9A7ALn7+shzrM9im/KO/d/IYE1m57NTJc32LdvauFxJe5GxWVfmr8sDkk0qIIGNEhFHo+XtYOYjS8jlcoyR/gi2qmS4UZVSB9pEOUR6fSf/Cu/6U/nfyOad9FzRzZ06v44CGYDI6P2TuU9A34NhU6Dfrj2SP8E07eibWP3hrH3yeKL2fKvZCW91Rt1NF9cK9m0RfRtL+4C77znnAVCNhmpUJas+IWQ2E/08p4I7Lt2oo06ffff2AqrqL5/vvRY= sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-security-group.ParamsDetails.json b/docs/documents/network/get-security-group.ParamsDetails.json new file mode 100644 index 0000000..164f75d --- /dev/null +++ b/docs/documents/network/get-security-group.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security group to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-security-group.RequestSchema.json b/docs/documents/network/get-security-group.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-security-group.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-security-group.StatusCodes.json b/docs/documents/network/get-security-group.StatusCodes.json new file mode 100644 index 0000000..baa877a --- /dev/null +++ b/docs/documents/network/get-security-group.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-security-group.api.mdx b/docs/documents/network/get-security-group.api.mdx index 439f7e6..c90890a 100644 --- a/docs/documents/network/get-security-group.api.mdx +++ b/docs/documents/network/get-security-group.api.mdx @@ -5,7 +5,7 @@ description: "Get SecurityGroup" sidebar_label: "Get SecurityGroup" hide_title: true hide_table_of_contents: true -api: eJztV1tv2zYU/isEnzbAtdyufTG6Al7dZWmxJmg87CE2Blo6ttjIpHpIJc0E//edQ0m2FDuG6xZ7KPpkmTyX79zIj6X0aunk8FpeQVyg9vdnaItcznoyV6hW4AF5u5SG/sihzNF+hNifJ7InteEF5VP6TsDFqHOvLS8WRn8qQOgEjNcLDSjsQvgURK0uXv95SUoInwqNkMihxwJ60sUprJQcltLf5+zNedRmKdfr3gbAbR6f6pxUhTbiLtVxGhZcHbNYctAiVU7MAYyIEZSH5ESE+kR4D9B4KxDIOtzCqUCWxiKMIaMqJlde+cI1yAgB3u9A0xUQBGcLjEHAZ+2845y5oC2msrY2lT1GV6Bx4r31v9vCJELFscWEUDD2kHCVUaQhPO3EIlNLuQf53NoMlAloFqrIvBwuVOagHYrK9ZNbakXGeTCEScBPe45QitHludiqPZazlmP5lDI443S73BoHjqWfDQb803V08Y70Yms8lTGYhM8+yjPF2MpdV3bOfU8qNAE5oNeVaRowlSgfJE2RZWqeQVXiNeGtSrZvq2vlwTbtqyTRDFRlly3JkNae9NqzbHfkP9QRj72VwUKeZzpWbCT66Ox3ElWo0vcSDtt4Pni+25s0kSKM5Ldo0Wp3d2Z2wq0RHyG5zVktqgnjEpBkFxZXyldLvzzbp5xQNXR2lB9tyJOJjwH1aDnKbWSS1kljNQ4I3FePyY/MHsrsSaP6I6WPp5TVXuy7ys4pICRL4gqQbkvxBtFiqAHdn+OL1w3n6GqdgRdd0tjjkzK1xFHkEkJtmP8MZVSzPheVG/q45sVbIkHoohEWc9V/D/7O4k1ELI0EA81bR67tgJZ1suaLPOCseGmBlF6Zep+7YRQRT+grNhdntkj6sV1Jvs4bM0HjN1BI5Rtez9pbV9xhVRM1Aps6kNV3sMs1zukkRi/e/j0hwnMDTDFqujIqKA+o/w3nQkNYUlAUbsirNgsb7Ne16mSgP8r1jq8dCfHHZHLJBGdqpmZs70xmVRJY10slUoTFr1MZUWcYAh+ZSu9Jk/M+z9VUCq+QKkWS/8wzZW6m8pW4IBWmTQudwctIvSIkDYMidtQf9AeSrzbr/EqF0axD3tcOnRA22WxdQ2Qp1K+sW+W6eV8wUR223xqbbqHvTi4YH3UMyzdPg27T8A5Rcip1SqDZR1nOlYO/MFuvebkiktwZiXY8ZcnmEn4QwOYu/X+Y8t583VAjPkbtgxXalcycjw/mEGc+gKHLybe+Z/wHdXVefVFWf/pQv3J+Fke+IPfCa6bW3LdxNbC3XfVlWToG3AkvzBMiqPr826M/+AA9ASdN3XpGUvXBx71QbYziGHLfUmlbnbWukbM3Ezov/wPuh9Hh +api: eJztV99v2zYQ/leIe1oB1Uq77kVoC7hNl2XFEqPJsIfYGGjxbLGRSYY8Oc0E/e/DUZJjx07gesUeij4ZJu/Hdx/vxI81kJwHyK7gAvPKa7o78bZyMEnASS8XSOh5uwYjFwgZOG8/Y06nChLQhhckFZCAwpB77UhbXqyMvqlQaIWG9EyjF3YmqEDRuYv3f4wgAY83lfaoICNfYQIhL3AhIauB7hxnC+S1mUPTJCsAS5cfmnzpcqGNuC10XsSF0NUs5ly0KGQQU0Qjco+SUB2IUB8I7wEassIjeY1LPBTI3FiPx1giobogSVXokd1U6O+2oOkWiMdgK5+jwC86UGDOQvQWY+iijSFhdJU3QZxZ+tVWRgmZ59YrbeaMPRIuywrb8nQQs1LOYQfyqbUlShPRzGRVEmQzWQZcL0U6/XyJPjDOJ0u4jPhvKgyESgxHp+Le7THO1hLDC2iaCdMdnDUBA1u/PDrin81E5x8hgdwaQkMxJH6h1JWSsdXbqeyU+x4SHiCHnnQbeoEklaRoaaqylNMS2yNuEmhJ37m1GeXBdpOAVEozUFmO1iwjrQmQJrbdHPlPXcXHZCFGcK7UueQg6edgv5Oq4il9L+VwjFdHr7Z788ySiCP5LVq03d2ema1yO8R7WN5z1plqQzhHDwnMrF9Iapd+frnLWSFJXe6VR5tA0uT7gHr0OOr7ymDk7bTExXFEEP7zmPxg9ilmDxrVH5Q+Tim7/bLrKjs1hN7IUlygX6IXH7y3Pp7BcHR6fP6+1xybXidIYlM0JvylLKyCDOYYz4b1TwZpp/pCWq/kY8OLS63Qh3Toq6kcnCHdWn+dLl0e0jrKvCYN6wlCWmvV8EUecba6tPIlZFAQuZClqXR6IDlcXtpKDXK7AL7O+zDR4x1Kjx6yq8n61gV3WNtEvcHqHKTTH3Fba5yagJ7E739dCrLXyBKjkyvDigrr9T/xu9ALlgKlwpZXbWY2xu/OaoOBwdDprVxbFuK3y8sRC5yxGZtje2tKK1VUXa+lKDzO3owhtQ6NdDo1rd/znvMBz9UYBEk/R3ozhr+npTTXY3grzh0alk0zXeLrVL6FBHoFlcGLwdHgCPhqs4EWMo5mV/KudtgoYcXm2jXUJO351V2rXPXvCxaq2fpbY9UtkGxywfhcHu37p8Fm0/COVvyiKWwgzlHXUxnwT182DS+3QpI7Q+nAU6ZWl/CDAlZ36f+jlHfydY13j0r7GAUyAFbO+xfzlGZ+AsOmJr/PPeE/Xrffq69i9adP3SvnmdjzBbkTXj+15m4dVw/7vqu+jqV9wB3wwjyggrbPvz36Jx+gB+DUCppJk/QfPu6FdmOY5+hozWU96mTtGjn5cAlN8y/uh9Hh sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-security-rule.ParamsDetails.json b/docs/documents/network/get-security-rule.ParamsDetails.json new file mode 100644 index 0000000..7aef832 --- /dev/null +++ b/docs/documents/network/get-security-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"securityGroupId","in":"path","description":"unique identifier of the security group in which the security rule has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security rule","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-security-rule.RequestSchema.json b/docs/documents/network/get-security-rule.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-security-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-security-rule.StatusCodes.json b/docs/documents/network/get-security-rule.StatusCodes.json new file mode 100644 index 0000000..4728a7b --- /dev/null +++ b/docs/documents/network/get-security-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-security-rule.api.mdx b/docs/documents/network/get-security-rule.api.mdx index 967adf7..f6e8a78 100644 --- a/docs/documents/network/get-security-rule.api.mdx +++ b/docs/documents/network/get-security-rule.api.mdx @@ -5,7 +5,7 @@ description: "Get Security Rule" sidebar_label: "Get Security Rule" hide_title: true hide_table_of_contents: true -api: eJztV1tv2zYU/isEnzbAtbyuezG6Al7TZVmxJkg87CE2Blo6ttjIpHpIJc0M//edQ0m2FNmB62R7KPpkmTyX79zIjyvp1cLJ4bW8grhA7e8viwzktCdzhWoJHpB3V9LQHzmUOdqPEPuzRPakNrygfErfCbgYde615cXC6E8FCJ2A8XquAYWdC5+CqNTF2z8uSAnhU6EREjn0WEBPujiFpZLDlfT3OXtzHrVZyPW6twFwm8fHOidVoY24S3WchgVXhSwWaItcpMqJGYARMYLykByJsLZ6ykaPxfoA2m7YSKV6LtT6qUAZzLG+F8YinEBG7ZZceeULV4Mhp3jfQaNL3wjOFhiDgM/aecdZckFbTGRlbSJ7JOYLNE58sP5XW5hEqDi2mBAK4W3ZGSqj4EJE2ol5phZyB/KZtRkoE9DMVZF5OZyrzEEzFJXrF7c0M4zz0RDGAT/tOUIpRhdnYqu2L2cNx/IHyuCU0+1yaxw4ln45GPBP29H5e9KLrfFUuWASPvsozxRjW3Vd2RkPKKnQqOaAXpem6SRQifJB0hRZpmZU7VDiNeEtS7Zrq22ls73HJO2oJNEcgcouGiZCvnvSa8+yrTPrssrEibcyGMjzTMeKbUQfnf3Kow1V/drDZBOvBq+6PU6TLcJoP0erl7vd2evEWQE+QHKby0pUE8YFIMnOLS6VL5d+fLlLOaEq6ewgP9qQJxMfAmpvNVbbyCStk8byJCBwTx6rb5l9LLNHjfC3lO5PKav9tOtKPKOAkCyJK0C6dcU7RIuhBnQPn5y/rblLW+sUvKjPJnFZsh06QVNLXEcuINSGqdNQRhXNddFqw5fXvHhL/AldNMJipvofwN9ZvImIlpJg4LXrqEUeafkBmdwKMADa18maCUOIoyTqBVL6Zep97oZRRHykr9hdnNki6cd2KZk21FaCxi+gkMo7vJ42t664A8smqwU2dSKr76HLac7opEYvfv9rTMTqBpjKVLRoVFCeUP8Tzo2aGKWgKB0h79rMbbBf1bKVof4o1x1fHQnx23h8wURqYibmxN6ZzKoksLvXSqQI858nMqLOMQQ+MqXei7omfZ67iRReIVWSJP+eZcrcTOQbcU4qTM/mOoPXkXpDSGqmRiysP+gPJF+J1vmlCqNbhbyrXVohbLLZuKbIUqjfqmql6/rBxYR42Hx8bbqJvlu5YHzUUSxfv5XaTcU73TdKq69YhB4E1A0pxcUwVquZcvAnZus1L5eclpsn0Y4HNdlc4w9i3FzH/w9p35nSG+rVfa+MYIV2JZP4w4N5jL4/gqH9PNj6nvIf1OWR90VZ/e6yenB9Lw58de+EVw+2uW/iqmFvG+/LsnQIuCNe5UdEUI7C86N/0jv9iDgeDu5/GFH1oD8CJB0d6ylJVQc8N3S5MYpjyH1DpWl12rhOT9+N6V74F6NjhFs= +api: eJztV1tv2zYU/ivEedoA1Uq77kVoC3hNl2XFGiPJsIfYGGjx2GJDkwx55DQT9N8HUpJtxU7gOtkeij4ZJs/lOzfxOxUQn3vIruAC89JJujsvFcIkAcsdXyChC7cVaL5AyMA68xlzOhWQgNThgFMBCQj0uZOWpAmHpZY3JTIpUJOcSXTMzBgVyFp19v6PESTg8KaUDgVk5EpMwOcFLjhkFdCdDd48OannUNfJCsDS5oc6X9qcSc1uC5kX8cC3IbO5M6VlBfdsiqhZ7pATigMRdlZPgtFDsd6Dthu2KxU+F2r5VKABzKG+59o4PEaFhOKCOJW+A3NTorvbQiMb3w69KV2ODL9ITz5kyUdtNobW2hgS5pBKpz37ZOhXU2rBeJ4bJ6SeMzJNZ3BVYhOR9Gym+Bx2IJ8ao5DriGbGS0WQzbjyuBkKt/LFEp0POB8N4TLivynREwo2HJ2ytdpDOdtwDC+hrich3d4a7dEH6VdHR+Gn7+jsIySQG02oKZrEL5RaxQO2atuVmYYBhSRMukVHsjG9QOKCU5TUpVJ8qrApcZ1Ak/SdV30rW9cPmKwT4ELIEAFXow0TMd8JkKQg2/tmnbeZOCYD0YC1SuY82Eg/e/ONRxur+q2HGUy8Pnq93eOfDLE42s/R6s3t9uxtxdkC3kNynctWVGrCOTpIYGbcglNz9NOrXcoCiUu1lx+pPXGd7wPqwWpU68hg5MxU4eI4IvBPHqvvmX0ssweN8PeUPpzSoPbzrifxVBM6zRW7QLdExz44Z1yswXB0enz2vuMufa0TJNZ9m9h5w3YWSIURkMEcY20CdcogbWmuT6sVX67D4VIKdD4dunLKB5+Qbo27Tpc292kVeW2d9sijT6t7ZHItEAD4tJKiDoQhxtEQ9dIpyKAgsj5LU27lgAd3uTKlGORmAYE2dFaixi/IHTrIriabVxehA5sm6wRWdeJWfsRtTnOqPTpiv/91ychcY6AyLS0allQYJ/+J342OGBXIBTZ5l3pmov22lr0MDYZWbvnakmC/XV6OApEa67E+NrdaGS4iu3vDWeFw9nYMqbGouZWpbvRedDUZhLkbAyPu5khvx/D3VHF9PYZ37MyiDvRsJhW+Sfk7SKBjahm8HBwNjiA8icbTgsfRbUPe1S69EFbZ3Him6qSpX9W20lW3cAVCnG0uX6tugqSfi4DP5lG+25X6TRVutneUXl8FESnCFlgYTwFGVU25xz+dqutw3HDa0DxC+jCoYvWM34tx9Rz/P6R9Z0qv8e7BLSNagQwgkPj9g3mMvj+Cob8erH1Pwh8nm0/eV2X1h/N24fqR7bl174TXDba+28TVwV433tdlaR9wB2zlB0TQjMLzo3/Snn5AHPcH9z+MqF3oDwApBdSTOuk+8KGhm4thnqOlDZVNq5ON5/TkwyXU9b+jY4Rb sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-subnet.ParamsDetails.json b/docs/documents/network/get-subnet.ParamsDetails.json new file mode 100644 index 0000000..5f50293 --- /dev/null +++ b/docs/documents/network/get-subnet.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the subnet has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the subnet to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-subnet.RequestSchema.json b/docs/documents/network/get-subnet.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-subnet.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-subnet.StatusCodes.json b/docs/documents/network/get-subnet.StatusCodes.json new file mode 100644 index 0000000..a4d7edd --- /dev/null +++ b/docs/documents/network/get-subnet.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-subnet.api.mdx b/docs/documents/network/get-subnet.api.mdx index b923ae1..7b3cd1d 100644 --- a/docs/documents/network/get-subnet.api.mdx +++ b/docs/documents/network/get-subnet.api.mdx @@ -5,7 +5,7 @@ description: "Get Subnet" sidebar_label: "Get Subnet" hide_title: true hide_table_of_contents: true -api: eJztV1tv2zYU/isEn1bAtbyuezG6Al7ddVmxJmg89CE2Blo6stjIpHpIJc0E/fedQ0m2XDuB4xUDCvTJFnku37mRHyvp1crJ8ZW8LJcGvFwMZKFQrcED8nolDX3IsSzQfoTYnyVyILXhBeUz+p+Ai1EXXlteLI3+VILQCRivUw0obCp8BqJVF6/+vCAlhE+lRkjk2GMJA+niDNZKjivp7wr25jxqs5J1PdgAuCniU52TqtBG3GY6zsKCC8GKTDmxBDAiRlAekhOR6RNhtSi8FQhkFW7gVAArYxGmkFPVkkuvfOk6ROQZ7/Yg6QYAgrMlxiDgs3becY5c0BZz2VqbywGjK9E48c7632xpEqHi2GJCKBh7SLDKKcIQlnYizdVKHkC+tDYHZQKaVJW5l+NU5Q76oahCP72h1mOcD4YwC/hpzxFKMbk4E1u1+3LWcyx/pAwuON2usMaBY+lnoxH/7Do6f0t6sTWeyhdMwmcfFblibNW+K7vkPicV6vgC0OvGNA2USpQPkqbMc7XMoSlxTXibkh3a2rXyxTbtqyTRDFTlFz3JkNaB9NqzbDvb79tQp97KoFoUuY4Va0cfnf3Wwwl1+ebjYOXno+f7bUjDJ8L0fY1ubHb3x2MvzhbqEZLbZLWimjCuAEk2tbhWvln66dkh5YTKoPOj/GhDnkx8DKh761BtI5O0ThrraUDg/vNgfM/sQ5k9aUa/p/T+lLLaz4durTMKCMmSuASki1G8RrQYakBX5fT8VUcvdrXeEB1pieCAz8bMEg+Rq/AZuM1YRi2Tc1G1oYQ1L94QwUEXTbBcquE78LcWryNiXiQYqFsdNXyHvnVS8y0dkDUks0RKqMy8L9w4iogEDBXbiXNbJsPYriXf1Q7iErW/Cxq/gkIq2Phq0d+65J5q2qYT2GSerL6FfSJxRmcvevHHhxmxmWtg/tBykUlJCUD9TzgJOjaSgaI4Qya1SW2w31ZnJ/ThpNB7vvYkxO+z2QWzl7mZm6m9NblVSaBUL5TIENJf5jKiXjAEPjKN3tMu2UOepLkUXiGViCT/XubKXM/lS3FOKsyJUp3Di0i9JCQdPSLqMxwNR5JvMev8WoVhbEPeaYAd7Js09m4cMhEKV7XNcdW9Eph+jvsvhk1/0P+dJDAw6hGW7wh+2ya8RMyaipsRTDZeVUvl4C/M65qXG17IvZBox5OUbG7YL5Bv7sv/h/geTNQ1td59TD1YoV3JRPj4YB6iwA9g2KXYW98L/kDdnEmPyuoP79tHyxNx5APwILxuTs1dH1cHe9tOj8vSMeAe8UA8AXnT2F8f9cH34wn4aMrqBUm1RxvXvtmYxDEUvqfSt7ro3RBvXs/oRPwX7XGtcQ== +api: eJztV99v2zYQ/leIe9oA1Uq77kVoC3hN12XFEqPJsIfYGGjxbLGRSeZ4cuoJ+t8HUpJj107geMWAAn0yTN6P7z7eiR9rYDn3kF3DZTU1yDBJwEmSC2SksF6DkQuEDBzZT5jzmYIEtAkLkgtIQKHPSTvWNixWRt9WKLRCw3qmkYSdCS5QdO7i7R8jSIDwttKECjKmChPweYELCVkNvHIhm2fSZg5Nk6wBLF1+bPKly4U24q7QeREXfCxWFNKLKaIROaFkVEci00fC6lCwFYRMGpd4LIC5sYSnWCKjumTJle8R3VZIqx1IugVA6G1FOQr8rD37wJGP3mIMXbQxJAFdRcaLc8u/2sooIfPcktJmHrBHgmVZYVuW9mJWyjnsQT61tkRpIpqZrEqGbCZLj5ulSKefLZF8wPloCVcR/22FnlGJ4ehM3Ls9xNlGYngOTTMJdHtnjUcfrF+cnISf7UQXHyCB3BpGwzEkfubUlTJgq3dT2Wnoc0jCwDgk1m3oBbJUkqOlqcpSTktsj7hJoCV979Z2lC+2mwSkUjoAleVowzLSmgBrDrbdbH/sSj1lC9HVuVLnMninn7z91suJ5/LN1xGcX5683G3Dc8siTt/X6MZ2d3c8dursoB5geU9WZ6oN4xwJEphZWkhul356sc9ZIUtdHpRHG8/S5IeAevAc6vvKYER2WuLiNCLw/3kwvjP7GLNHzeh3Sh+mNLj9vO/WOjOMZGQpLpGWSOIdkaV4BsPR2enF215ebHu9RxadEEzCt7GwCjKYx79R22SQdkrOp/VaEjZhcakVkk+HVE3l4Bz5ztJNunS5T+so3Zq01Ts+rbVqwi0dkbUis6ISMiiYnc/SVDo9kCFOXtpKDXK7gHBXe8wr0ryKHr+gJCTIriebW5ehp9q26Q3WzEunP+CukDgzHonF739dCbY3GPRDp0WGFReW9D/xS9CrkQKlwpZJbWY2xu9OZ6v0wdDpnVw7FuK3q6tRUC9jMzan9s6UVqooqV5JURDOXo8htQ6NdDo1rd+znuxBmKQxCJY0R349hr+npTQ3Y3gjLhyaoIlmusRXqXwDCfTyKIPng5PBCYRbzHpeyDiMXclbDbCFfU3jxo3TJO3B1V1zXPevhCA/s80Xw7o/INkmIQBzebTvBX7XJmFJq/AgKaznELyup9Ljn1Q2TVhudWHoBaV9mCS1vmG/QL6+L/8f4buXqBtcPajUYxTIAIIQPryYxyTwIxi2JfZ97kn4Q7r9Jj2J1R8+do+WH8WBD8C98Po5NatNXD3s+3Z6GkuHgHvCA/EI5G1jf33Ue9+PR+DTCppJk/SftnD27cYwz9Hxhstm1MnGDfH+3RU0zb/tca1x sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpc-peering-route.ParamsDetails.json b/docs/documents/network/get-vpc-peering-route.ParamsDetails.json new file mode 100644 index 0000000..b05ef8d --- /dev/null +++ b/docs/documents/network/get-vpc-peering-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpc peering has been created","required":true,"schema":{"type":"string"}},{"name":"vpcPeeringId","in":"path","description":"unique identifier of the vpc peering in which the vpcPeeringRoute has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeeringRoute","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering-route.RequestSchema.json b/docs/documents/network/get-vpc-peering-route.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpc-peering-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering-route.StatusCodes.json b/docs/documents/network/get-vpc-peering-route.StatusCodes.json new file mode 100644 index 0000000..b7424e5 --- /dev/null +++ b/docs/documents/network/get-vpc-peering-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering-route.api.mdx b/docs/documents/network/get-vpc-peering-route.api.mdx index dd064b4..5e69985 100644 --- a/docs/documents/network/get-vpc-peering-route.api.mdx +++ b/docs/documents/network/get-vpc-peering-route.api.mdx @@ -5,7 +5,7 @@ description: "Get VpcPeeringRoute" sidebar_label: "Get VpcPeeringRoute" hide_title: true hide_table_of_contents: true -api: eJztV1tv2zYU/isEnzbAtbyuexG6Al7ddVmxxki89iE2Blo6ttjQpEpSSTND/33nUJItW07guO0eij5ZJs/lOzfy45p7sXQ8vuLv8mQMYKVeXpjCA5/1eC6sWIEHSwJrrvEPj3luzQdI/FnKe1xqWhA+w+8UXGJl7qWhxULLjwUwmYL2ciHBMrNgPgNWq7OXf41RycLHQlpIeextAT3ukgxWgsdr7u9y8uY8QeJl2dsAuMmTU52jKpOa3WYyyTYLeRU2y4RjcwDNEgvCQ3o6vDqRn4OyAbWPtl2jL4VYno5zp2VO9L7UxsIIFHZaeumFL1wDB93auw4eWXm34ExhE2DwSTrvKFMuaLMpr61NeQ/FfGG1Y2+N/90UOmUiSYxNKbfeVGEIheGFmKRjCyWW/ADyuTEKhA5oFqJQnscLoRy0QxG5fHKD40I4HwxhEvDjnkOUbDg+Y1u1+3LWcsx/wgzOKN0uN9qBI+mngwH97Do6f4N6idEeaxdMwicf5UoQtnXXlZnTbKIKTmkO1svKNB4CIhU+SOpCKTFXUJW4RLxVyQ5t7VrpbNcmMYNcpKkkyEKNWzohwT3upSet/SPqoo5+5A0PNvJcyUSQmeiDM99ghKF632JoZOXZ4Fm3f3FqWRjbL9HG1W53rjqx1ZiPkNzmrxaViHEJFmUXxq6Er5Z+fnpIOcXKSHWUH6nRk06OAXVvQdbbyDiuo8ZqFBC4zx6f75l9KLMnje33lN6fUlL75dB1d4YBWbTELsHijcpeWWtsqAHesaPzlw0v2dV6DZ7t098enZuZQSbDlxCqQ9Qo5lHNX1203hDhkhZvkB9ZFw1tMRf9t+Bvjb2OkCGhYCCsZbSlS9XahiW2t4J33JdpSVwghFHR78Ji9nnmfe7iKEKq0RfkK1GmSPuJWXFiBA6Swkp/FzR+A2GxuvHVrL11SQ1Y9VgjsCkTWn0DXbpyhge19ezP9xPkTNdALKVmPMMCk2Tlv+HYaDhPBgJzEdIu9cIE+3Upd9LTH+ay46sjwf6YTMbEkaZ6qkfmVisj0kDcnguWWVj8OuURNo5G8JGu9J40BenT2E0588JiGVHyn7kS+nrKX7BzVCHmtZAKnkfiBSJpSBgSrP6gP+B0CxrnVyJMbh3y4W7ZCWKTz9Y9hbZCBdd1J101Dyliu3H7UbVpJvzeyQYhxIYi+eYN1Oqpern99thvKxJBso/NkGFYhGG9ngsHf1tVlrRcsVXqnVQ6GtN0c4/vBbi5jP8fOn4wn9fYqve9H4IV3OVEz48P5iFi/gCGXeK/9T2jP1ZWB96jsvrDRf2U+pEd+ZQ+CK+Za33XxtXA3nbd47J0DLjHPrVPgF8NwdeBfur7+7QwtkP7VaLZO6tOwIinRjlDqfpop16uNoZJArlvqbStzlq36OtXE7wR/gMWnXDY +api: eJztV1tv2zYU/ivEedoA1XK77kVoC3hN13nFEiPJtofYGGjx2GIjkwx55NQT9N8HUpItXxI4bruHok+GyXP5zk38TgnE5w6SG/jLpCNEK9X8UheEMInAcMsXSGi9QAmKLxASMFZ/xJSGAiKQyh9wyiACgS610pDU/rBQ8q5AJgUqkjOJlukZowxZo87e/jGCCCzeFdKigIRsgRG4NMMFh6QEWhnvzZGHBFUVrQEsTXqq86VJmVTsPpNptj4wddgs445NERVLLXJCcTq8JpGfg7IFtYu2W6MvhViejnOrZU70Plfa4hnmSCiuiFPhWjh3BdrVHh5Ze7fodGFTZPhJOnI+Uy5oszE01sYQMYtUWOXYuaZfdaEE42mqrfC5JV2HwfMC65ikY7Ocz+EA8qnWOXIV0Mx4kRMkM5477IbCjXy2ROs8zkdDuA747wp0hIINRkO2UXsoZx3H8ByqauLT7YxWDp2XftHv+59tRxcfIIJUK0JFwSR+otjk3GMr913pqZ9NiPyQG7Qka9MLJC44BUlV5Dmf5liXuIqgTvrBq20re9eNyaqKgAshPWSejzo6IcERkCSvtfuJumyiPyMNwYYxuUy5NxN/dPobjDBU71sMzVt52X+537/nmlgY2y/RxvXt/lztxdZgPkJyk79GVCrCOVqIYKbtglN99NOLQ8oCicv8KD9SOeIqPQbUgwUpN5HByOppjouzgMB99vh8z+xjmT1pbL+n9OGUerWfDz13Q0VoFc/ZFdolWvbOWm1DDQaj4dnF25aXbGu9R2K79Dfy381MC0hgjqE6nholEDf81cXlmghX/nApBVoXD2wx5b1zpHttb+OlSV1cBsJaxRu6VJ+tWWL3Knh3cSlF5blACKOm34XNIYGMyLgkjrmRPe59pbkuRC/VC/CMwGFaWEmroPELcosWkptJ9+rKN2DdY63AukzcyA+4T1eGyqEl9vvf14z0LXqW0jCeQUGZtvLf8NloOU+GXGCddqlmOthvSrmVnt7AyD1fexLst+vrkedIYzVWZ/pe5ZqLQNxecZZZnL0eQ6wNKm5krGq9Z21Ben7sxsCI2znS6zH8M825uh3DG3ZhUHnmNZM5vor5G4igJWEJPO/1e33wr6B2tOBhcpuQD3fLVhDrfHbeqSqqK1g2nXTTLlKe7SbdpWrdTBBtZ8MjNGmQb3egTk81x93dY7etvIgUfrXLtCOPoSyn3OGfNq8qf1yzVd87Qjo/pmL9ju8EuH6M/x86fjCft7h6cH8IViAB8PT8+GAeI+aPYNgm/hvfE//HyvqD96Ss/nDZrFI/siNX6YPw2rlWqy6uFvam656WpWPAPXXVPgF+PQRfB/qp+/dpYWyG9qtEs/OtOgGjFFBNqqj9tPteri8GaYqGOipdq5POK/r+3TVU1X8WnXDY sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpc-peering.ParamsDetails.json b/docs/documents/network/get-vpc-peering.ParamsDetails.json new file mode 100644 index 0000000..faef0bf --- /dev/null +++ b/docs/documents/network/get-vpc-peering.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpcPeering has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeering to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering.RequestSchema.json b/docs/documents/network/get-vpc-peering.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpc-peering.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering.StatusCodes.json b/docs/documents/network/get-vpc-peering.StatusCodes.json new file mode 100644 index 0000000..cececd5 --- /dev/null +++ b/docs/documents/network/get-vpc-peering.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpc-peering.api.mdx b/docs/documents/network/get-vpc-peering.api.mdx index 73cdce5..6d1eef9 100644 --- a/docs/documents/network/get-vpc-peering.api.mdx +++ b/docs/documents/network/get-vpc-peering.api.mdx @@ -5,7 +5,7 @@ description: "Get VpcPeering" sidebar_label: "Get VpcPeering" hide_title: true hide_table_of_contents: true -api: eJztV0uTGjcQ/isqnZIqzBDHuVCOq4hxnI0rXspLnMNCpcRMw8g7SOOWZtdriv+ebs2DIQNbLHmc9sQg9ePrh1qfNtKrlZPDa/kxjycAqM1KznsyV6jW4AF5byMN/ZFDmaP9BLG/SGRPasMLyqf0nYCLUedeW14sjP5cgNAJGK+XGlDYpfApiEpdvP5tQkoInwuNkMihxwJ60sUprJUcbqS/z9mb8wHNdttrANzm8bnOSVVoI+5SHaf1QhWwSJUTCwAjYgTlITkTnT4fWo3EW4FAluEWzgWxMhZhDBlVL7nyyheuRkXe8b4DS5cgEJwtMAYBX7TzjnPlgraYycraTPYYXYHGiffW/2wLkwgVxxaTCnuIRmUUZQhNO7HM1EoeQL6wNgNlApqlKjIvh0uVOWiHonL97JZakHE+GMI04Kc9RyjFaHIhdmrHctZyLL+jDM453S63xoFj6eeDAf/sO7p8R3qxNZ5KGEzCFx/lmWJsm64ru+B+JxXq/BzQ69I0HSyVKB8kTZFlapFBWeIt4S1Ldmhr38o+skmz1+0qAtCxdcQ/7agk0WxUZZOWv1CcnvTas2xrWnyokjb2Vgb1PM90rNhC9MnZp8TUiQm98pSRJiNs4MXgRRcfjRYRZsu/cdbK3e7h70RZwT1Bcpf2SlQTxhUgyS4trpUvl75/fjCZVFCdneRHG/Jk4lNAHa3FZhcZ15001uOAwP3jw/qU2Ycye9Zpf0rp8ZSy2g+H7uQLCgjJkrgCpGtfvEG0GGpARGB8+bomT/tab8GLj+2xR5M2tcS05ApCYZjBDWVUcVYXbRryu+XFW6Jx6KIRFgvVfw/+zuJNRHOUBANJ3Ua7oUprOtkyFwkIS0pdICVWpt7nbhhFRHX6im3FmS2SfmzXkhmJg7hA7e+Dxk+gkAo3vJ63t664t8r2qQWaCpDVd9ClSxc0g9GLX/+YEme7AWZJFeMaFZQE1F/DRKg5VwqKYg0Z1WZpg/2qSnvh90e57vjqSIhfptMJc7SZmZmxvTOZVUm4hV4qkSIsf5zJiHrCEPjIlHrP6oT3+UTNpPAKqUwk+eciU+ZmJl+JS1Jh5rfUGbyM1CtCUpNAInj9QX8g+V60zq9VOJRVyJ1G2MPfpLJ1+5CZULxN1STX9buIifaw/UZq+oS+9xLB4KhXWL5+0rTahZfpLUFFTgkuO9hsFsrB75htt7xcsmDuiUQ7PllJc+v+DX1zf/4/NP9gsm6oBY+9S4IV2pVM+08P5iHC/wCG/QfFzvec/6AuZ9SjsvrNh+qJ9q048dl7EF59Xs19G1cNe9dSj8vSKeAe+Sw+A33Z4P8J8sOv5jMw0mnbzkmqGnXcA+XGKI4h9y2VttV569Z4+2ZKE/IvYi8Kyw== +api: eJztV99v2zYQ/leIe9oA1Uq77kVoC3hN12XFGqPJuofYGGjybLGRSYY8OU0F/e8DKcmWJydwvB9PeTJM8e6+++5IflcB8aWH7Ao+WzFBdEovYZaA5Y6vkNCFbxVovkLIwDrzBQWdSUhA6bDAKYcEJHrhlCVlwmKp1U2JTEnUpBYKHTMLRjmy1py9/W0CCTi8KZVDCRm5EhPwIscVh6wCurMhmqeIpq6TDYC1FccGX1vBlGa3uRJ5t9AmzHLu2RxRM+GQE8oj0anjoXVIyDCH5BSu8VgQS20cnmKBhPKCOJW+Q3VTorsbwFINCIfelE4gw6/Kkw9c+WjNptB6m0IS0JVOe/bR0M+m1JJxIYyTLfaYDS9KbFJTni0KvoQ9yOfGFMh1RLPgZUGQLXjhsZ8Kt+rZGp0POB9M4TLivynRE0o2npyxrdl9nPUCw3Oo61mg21ujPfqw+8XJSfjZDXT+ARIQRhNqii7xK6W24AFbNQxl5qHfIQkHx6Ij1bheIXHJKe7UZVHweYFNiesEGtL3ftr1sotssvk27CpIhr7uiV8nwKVUwSkvJr14sTgJkKKwt3dbfGpJOyUD0dzaQgkePKRfvHkipiMm9soTIxtGgoOXJy+H+D4aYvFu+TfOWvN1ePgHWbZwD9i5pb3dqjThEh0ksDBuxalZ+uHFXjKRuCoOiqO0J67FIaDurUW1zSzUfV7g6jQi8P/4sD4x+xCzR532J0rvpzSY/bjvTT7ThE7zgl2gW6Nj75wzLtZgPDk7PX/biaddq/dI7HP/2lsh5UZCBkuMhQkKLoO01aw+rTbitw6LayXR+XTsyjkffUS6Ne46XVvh0yqK1DrdXqo+rZSsgxaJCBtJXboCMsiJrM/SlFs14sGXKEwpR8KsICgSj6J0iu6ixU/IHTrIrmb9Txeht5r26TZsKsCt+oBDuXSmPTpiv/5xychcY1BJreIal5Qbp77FG6HTXDlyiQ2jSi9M9N9WaSf90diqQazBDvbL5eUkaLSpnupTc6sLw2V8hV5xljtcvJ5CaixqblWqG7tnHeGjcKKmwIi7JdLrKfw5L7i+nsIbdm5RB+W3UAW+SvkbSKATgRk8H52MTiC8i8bTisdD2aY8aIQd/Bsqe69PnTTFq9omuermoiC0s/6MtOkTSHaJCOCsiPu7kabXLmFZyTCG5cZTCFBVc+7xd1fUdVhuVHDoCal8OFly8+r+Df3m/fx/ZP5esq7x7t65JHqBDCDI/sOTeUjwP4Bhd6DYxp6FP041d9SjWP3uUzuifc8OHHv3wuvOq77r4+pgb1vqcSwdAu6RY/ER6JsG/0+Q75+aj8CoJNSzOumuutADzYexEGipZ9L3Ouu9Gu/fXUJd/wViLwrL sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpc.ParamsDetails.json b/docs/documents/network/get-vpc.ParamsDetails.json new file mode 100644 index 0000000..d8b8ee5 --- /dev/null +++ b/docs/documents/network/get-vpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpc to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpc.RequestSchema.json b/docs/documents/network/get-vpc.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpc.StatusCodes.json b/docs/documents/network/get-vpc.StatusCodes.json new file mode 100644 index 0000000..28eca94 --- /dev/null +++ b/docs/documents/network/get-vpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpc.api.mdx b/docs/documents/network/get-vpc.api.mdx index b93e427..2a9e2b2 100644 --- a/docs/documents/network/get-vpc.api.mdx +++ b/docs/documents/network/get-vpc.api.mdx @@ -5,7 +5,7 @@ description: "Get Vpc" sidebar_label: "Get Vpc" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEnzbAtbKuexG6Am7ddVmxJki89iE2Blo6stnIpHpIpc0E//edQ0m2XDmBm12AAH6yTJ7Ldy484qdKerVwMr6S74tEzgayUKhW4AF5sZKG/shYFmg/QuJPUzmQ2vCC8kt6TsElqAuvLS+WRn8qQegUjNeZBhQ2E34JolEXr34/JyWET6VGSGXssYSBdMkSVkrGlfS3BXtzHrVZyPV6sAGgH+j5pkiEtwKBTMINPNT7wliEMeSUmPTSK1+6Fg65xdseHl17R3C2xAQEfNHOO6GNcEFbTGVjbSoHjK5E48Q763+xpUmFShKLKaFg7CEMlVN4ISbtRJarhdyDfG5tDsoENJkqcy/jTOUOuqGoQj+5oeoyzntDmAT8tOcIpRidn4qt2l056ziWP1AGZ5xuV1jjwLH005MT/tl1dPaW9BJrPNUumIQvPipyxdiqvis751YiFWqqAtDr2jT1rEqVD5KmzHM1z6Eu8Zrw1iXbt7Vr5att2ldpqhmoys87kiGtA+m1Z1k+OxdNnGNvZdArilwnilWjj84+6lhCRR53EKz5bF/3vVSpuKjb/N9ow3q3fy56YTZID5Dc5qoR1YRxAUiymcWV8vXSj0/3KadUBZ0f5Ecb8mSSQ0DdWYZqG5mkddJYjQMC948PxTGz92X2QUf0mNK7U1oPjGf9gUEvaRHe0sdxcRwXjzWzx3HxH4yLn/bdL04pICRL4hKQLtDiNaLFUAO6Uo/PXrU0ZFfrDXjBhGzA16ilJbIiFxAqwuwnllHDqFxUbajZmhdviAKhi0ZYztXwHfjPFq8jIkEkqNM1X90DjJrclUjZk0vvCxdHETGDoWK9JLdlOkzsSvIF3kFSova3QeMlKKTqxFez7tYlN1DdI63AJs1k9S302cUp3czQi98+TIjiXAOTioagjEoKGPVf4di3FGUJiuIKadMms8F+U4qdUIejQvd89STEr5PJOVOaqZmasf1scku3QOZZz5VYImQ/T2VEhTcEPjK13pM2uUM+NlMpvEIqCUn+Oc+VuZ7KF+KMVJgoZTqH55F6QUhazkR8aHgyPJF8wbXOr1Q4eU3I22rvAN/ksPNuIf1QtarphKuWmjMhjbs0fdMM9LyTAUZFDcHyxKqpjEsCxJaqaq4c/IH5es3LNS3kqqfa8QFJN9fsr2BuXoP/D+/dm5VrarK7iHqwQruSefDhwdzHgO/BsMuwt75n/Ad1PWq+KavfXTTfLL4XB35i2QuvPZHmtourhb3tnW/L0iHg+l9hHgCQmnU9I6lmFnAK641RkkDhOypdq7POCH3zekIj5G8IhppA +api: eJztWNtuGzcQ/RVinlpgo3XS9GWRBFCiNFWD2oLttg+WUFDLkcSYImlyVokr7L8Xw13dItlQ3AtgwE+CuDOcM2dmuDy7BJLTCMUV/O5LGGXgZZBzJAy8uAQr5wgF+OA+YUl9BRloywuSZpCBwlgG7Uk7XqysvqlQaIWW9ERjEG4iaIaidRfvfh1ABgFvKh1QQUGhwgxiOcO5hGIJdOs5WqSg7RTqOlsD0A+MvPClICcCUtC4wIdGn1oXsIcGCdUFSariCs5NheF2D49uogeMrgolCvyiI0WhrYjJWwyh3W0IGaOrgo3i1NFPrrJKyLJ0QWk7ZewpDWkqbHLSUUyMnMIB5GPnDEqb0ExkZQiKiTQRt1ORXj9bYIiM894ULhP+mwojoRLdQV9s3O7ibCswPIe6HjHd0TsbMbL1i5MT/tkNdPYRMiidJbSUtsQvlHsjGdtyP5QbcytBxj3pMZButp4jSSUpWdrKGDk22JS4zqAh/eCj3V2+elxnIJXSDFSawZZlojUD0sS2PDvnbZ49cpD8vDe6lOyaf4ruUeeSKvK4k2DPl4e6761U4rxp83+jDZun+3Oxl2aL9AjLDVetqbaEUwyQwcSFuaRm6YcXh5wVktTmqDjaRpK2PAbUnWVYbjKDQXBjg/NeQhD/8VA8MXsfsw8a0SdK76a0OTBe7h8Yp45Eeks/HRdPx8VjZfbpuPgPjosfD90v+pYwWGnEBYYFBvE+BBdSDbqDfu/s3UqG7Hp9QBIsyDK+Rs2cggKmmCrC6qeAvFVUMV+upVnNiwutMMS8G6qx7JwifXbhOl/4MuZLrWq+uicYjbirgoECZkQ+Fnkuve5I9iuNq1SndHPgC3zEsgqabpPHW5QBAxRXo+1HF9xATY+sDNY0S68/4r666NuIgcQvf1wKctfIoqIVKN2KZi7ov9LYryTKDKXChjZtJy7t35ZiJ9VO1+u9WHsW4ufLywFLmqEd2p77bI2TKumsV1LMAk5eDyF3Hq30OreN37MVuR0emyEIkmGK9HoIf46NtNdDeCPOPFoWShNt8FUu30AGK81UwPPOSecE+ILrIs1lmrw25U21d4CvOdx6t9RZU7Vl2wlXK2nOgrTYlunrZoBslwFG5ctkrxVL/pmLxDstl2MZ8bdg6pqXG1nIVVc68oCo9TX7K5jr1+D/o3sPsnKNt3cK9bQLFACsg49P5j4FfA+GXYW9iT3iP0E3R803sfrdefvN4ntx5CeWg/BWE2lvt3GtYG9659tYOgbc/leYBwDUCupRna3OAqawedAtS/S05bK962jrCP3w/hLq+m8IhppA sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpn-route.ParamsDetails.json b/docs/documents/network/get-vpn-route.ParamsDetails.json new file mode 100644 index 0000000..4f168a1 --- /dev/null +++ b/docs/documents/network/get-vpn-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"vpnTunnelId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-route.RequestSchema.json b/docs/documents/network/get-vpn-route.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpn-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-route.StatusCodes.json b/docs/documents/network/get-vpn-route.StatusCodes.json new file mode 100644 index 0000000..9ee91c1 --- /dev/null +++ b/docs/documents/network/get-vpn-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-route.api.mdx b/docs/documents/network/get-vpn-route.api.mdx index b87d952..5450c21 100644 --- a/docs/documents/network/get-vpn-route.api.mdx +++ b/docs/documents/network/get-vpn-route.api.mdx @@ -5,7 +5,7 @@ description: "Get VpnRoute" sidebar_label: "Get VpnRoute" hide_title: true hide_table_of_contents: true -api: eJztV1mP0zAQ/iuRn0AqTbleIkAqlGNBYle7BR62FXKTaWvWtYPtFJYo/50Z52iyaVfL+QJPbe05v5nxfM2Z4yvLonP2PlWnOnPA5gOWcsM34MDQTc4U/mARS43+BLE7StiACUUH3K3xewI2NiJ1QtMhHhj4nAkDCYucyWDAbLyGDWdRztxlSpasM0KtWFEMGuPbVE0zpUD+GfPiz1hdKW1gAhKxSs4cd5mt3XzOwFzu89Ozu9BaAldedskz6Vi05NJC2xFPxZ0tloOsXOtguoaAMgGLEQXjk6Ngp3Yoo5ZjdhfzmxMYNtXKgiXpe6MRfXQdHb9BvVgrB8p5k/DVhankFFved6UX1Dqogk2UgnGiNI1NxhPuvKTKpOQLCWUBCoy3BHTfVddKN7KT5i7Qy8AhINu6tQdXLaEpniSCNLk8aRn1FRgwJxzJNsNxWuEycZp55TSVIuakH36y+p/K3Vf830qa1B+MHvRDeKtd8EJnKvkdQ1He9qe0B0oV7A0kd8hWogJjXIFB2aU2G+7Ko/v39iknWDMhb+RHKPSk4psEdbAS+S4zKi1qbCY+AvvLI/cf2euQ/amB/g/pYUhJ7eG+5XmECRm0FJyBwf0cPDdGG18D3NiT42c1B+lqvQQXvN+9bPiUrjXSFbYCXxbiNRELK5Zmw7zhawUdbkWCTCAcm2zBh2/BfdHmImxYF4q3GFgR1i8onoukIPLgIy35YGYQYLZ2LrVRGCI3GXKyGkudJcNYbxhRCAtxZoS79BpPgRssYHQ+b1+dUY+VbVQLNJVAq2+gz2+O8C02Lnj9YRo4fQFEayqKNM4QDiO++ZehJklr4Ji1R1aopfb2q2p1gBiOU9Hz1ZMIXk2nJ0SqZmqmJvqLkponfuE84sHawPLxjIXYGwqDD1Wpd6eGfkiTNWOB4wYLhpIfF5Krixl7EhyjClG1pZDwKORPMJKatSEjG46GI0YrUFu34X44q5SvNEQn+gbI1g5CI750edUs5zWlJ9Yatel90y/4vQMDhdb0DGl1eXvTNnSFnBuLvcawyVWeL7iFd0YWBR2X9JV6IxGWJi1pdvAF1v0Qt95ymVFWjMhxT/MKAs0mvpYW78WpjKFLu3e+5/TDiPKB2JfCwUBunVZ/M24Hh1zXA6Au2z7rkHZV+jEEftlxu9B/2TU2UjFHqWqaCfHyYhzHkLqWStvqvPVEvnw+xUfgOwuXLqQ= +api: eJztV02P2zYQ/SvCnBpAsZw0vQhJAKdO022ArLHrpoe1UdDi2GKWJhly5MQV9N+LkSxZXtuLbdP0kpwMc77fzJBPJZBYBUhv4L0zV7YghHkMTnixRkLPkhKMWCOk4Lz9gBldSIhBGT4QlEMMEkPmlSNl+RBi8PixUB4lpOQLjCFkOa4FpCXQ1rGnQF6ZFVRV3DnfODMtjEH9ddyrr+N1ZazHMWoklNckqAhtmI8F+u2pOEd+F9ZqFKbWXYpCE6RLoQP2AwmnHm/QB/Zyb4BpjhFXgoFQRqPJRbQ3O1dRLzA8gaqaMxjBWRMwsPbT4ZB/DgNdvoUYMmsIDdUu8TMlTgvOrTwOZRc8OhDzEDn0pBrXayQhBdWaptBaLDQ2DahiCA2gp0SHXg4zm3SyyC4jyjHatKMd3/VUxSCkVGwp9KTntO5ADKSIdbvluNrhMiYLtbFzWmWC7ZMPwX5Ttdcd/7aKZvNnw2fHKbyzFP1iCyP/i6VopMdbegTKLtkHaO6R3akqQ7hCDzEsrV8Lao5+fHrKWCIJpR8UR5lAwmQPSepsJ8p9Zdzahcb1uM4gfPHKfUf2PmT/1UJ/h/Q8pGz206nH88IQeiN0dI1+gz567b31dQ9Gk4vx5c8tBzm0eoMUvd/fbGuk3EpIYYV1W5jXpJDsWFpIyo6vVXy4URJ9SEa+WIjBO6RP1t8mHesKSdljYFXS3qAhKZWsmDzUmTZ8sPAaUsiJXEiTRDg1EOw107aQg8yugSlEwKzwira1xSsUHj2kN/O+6JpnrBmjVqHrhHDqLR7zmwsT0FP02x/TiOwtMq3ZUaRRQbn16q/6ZmhJUo5CYoOsMktb+9916wCIwcipo1hHGtGv0+mESdXMzMzYfjLaClk/OM9FlHtcvphBYh0a4VRiGrvHLfQD3qwZRCT8CunFDP5caGFuZ/AyunRomKotlcbniXgJMbSsLYUng+FgCPwE2kBrUS/nruQ7A3GQfQdk7w2q4qZ15W5YblpKz6w17dP7bl4gPoSBU+tmhq0OeXs3NixSkr8lchuIQ5XlQgT83euq4uOGvvJsSBV402T3Bt/i9iy33ghdcFXA5PjI8g4C3Ut8Ly0+iVOTwyHt3see8x+vmgviVAlnE/nhaveZ8Sg6F7pdALPtx2xT2nfpnyHwxYH7jf6fQysJ1byK221mxBvBKMvQUc+k73XeuyLfvJ5CVf0NC5cupA== sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpn-tunnel-connection-state.ParamsDetails.json b/docs/documents/network/get-vpn-tunnel-connection-state.ParamsDetails.json new file mode 100644 index 0000000..d2f0a75 --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel-connection-state.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpnTunnel","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel-connection-state.RequestSchema.json b/docs/documents/network/get-vpn-tunnel-connection-state.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel-connection-state.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel-connection-state.StatusCodes.json b/docs/documents/network/get-vpn-tunnel-connection-state.StatusCodes.json new file mode 100644 index 0000000..0d5221d --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel-connection-state.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"ikeStatus":{"type":"string","description":"IKE status of the VPN tunnel","nullable":true},"vpnStatus":{"type":"string","description":"VPN status of the tunnel","nullable":true}},"additionalProperties":false,"description":"Properties of VpnTunnel Connection State","title":"VpnTunnelConnectionStatePropertiesResponseDto"}],"description":"Properties of VpnTunnel Connection State","nullable":true}},"additionalProperties":false,"description":"Response DTO for VpnTunnel Connection State","title":"VpnTunnelConnectionStateResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"ikeStatus":{"type":"string","description":"IKE status of the VPN tunnel","nullable":true},"vpnStatus":{"type":"string","description":"VPN status of the tunnel","nullable":true}},"additionalProperties":false,"description":"Properties of VpnTunnel Connection State","title":"VpnTunnelConnectionStatePropertiesResponseDto"}],"description":"Properties of VpnTunnel Connection State","nullable":true}},"additionalProperties":false,"description":"Response DTO for VpnTunnel Connection State","title":"VpnTunnelConnectionStateResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"ikeStatus":{"type":"string","description":"IKE status of the VPN tunnel","nullable":true},"vpnStatus":{"type":"string","description":"VPN status of the tunnel","nullable":true}},"additionalProperties":false,"description":"Properties of VpnTunnel Connection State","title":"VpnTunnelConnectionStatePropertiesResponseDto"}],"description":"Properties of VpnTunnel Connection State","nullable":true}},"additionalProperties":false,"description":"Response DTO for VpnTunnel Connection State","title":"VpnTunnelConnectionStateResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"422":{"description":"Unprocessable Content","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel-connection-state.api.mdx b/docs/documents/network/get-vpn-tunnel-connection-state.api.mdx index 9d77e5a..0177dc3 100644 --- a/docs/documents/network/get-vpn-tunnel-connection-state.api.mdx +++ b/docs/documents/network/get-vpn-tunnel-connection-state.api.mdx @@ -5,7 +5,7 @@ description: "Get VpnTunnel Connection State" sidebar_label: "Get VpnTunnel Connection State" hide_title: true hide_table_of_contents: true -api: eJztWd9v2zYQ/lcIPm1AaiVp9yJ0Bdy47bxijZG47UNsDLR0jtjIpEpS7jLB//vuKFmWIifLsuQhgJ5sk/fj43enT5au4E5cWh5e8C+ZmuZKQcrnBzwTRqzAgaGtgiv8wUOeGf0NIjeO+QGXihaES/B7DDYyMnNS02Ku5PccmIxBObmUYJheMpcAq9zZyR8TdDLwPZcGYh46k8MBt1ECK8HDgrvrjLJZZ6S65JvNQQ1APjDzuj7bw/KKTL5YIxmUpgKAicx1B8EUk1ECsA5iNpyM2c7ttkQUYyny1OHSEaadE0abaWXBkvXx4SF9tBOdfkS/SCuHR/Uh4S8XZKkgbEU3lV4Q8+iCNcjAOFmGxhKLWDhvqfI0FYsUSl42iNcJl9u9W+0obWSTeo/Yr7uKnWj8iMiInWNkQDA34mJgEceSTEQ6aaRYitTCTarPKo7YaHrKltrcncpJR3l2Xb6z8SbbaCOnuQeSZamMBO0H36zuWX0UVn2X9nQ+Dp0E5dU+bXgrYnZWitBjiES521WtDuEV/HtY7qpWmUrEeAkGbZGklXDl0svjfc4x9oNM75VHKsykovuAurWuxe5k1DbosRp5BPZ/C0XP7F3MPkgsekpvp7QUjKOuYHxWIneJNvJviHvF6BXjuTLbK8aTKMbLrmK812YhY3zO6uWil4vnymwvF08iF6+6cvFJO/Ze56r/d9HLxbNltpeLp5CL4+N9zyNIYgTWUgp6UeIFo5eOXjqeKbO9dDyBdPyy793nGA9kMBI7B7MGw94Zo42vwXAyHp2ebKc+ba8P4O5+M7sCl+gYLS/BF4qmTyEPqomWDYp6NLahxbWMwdhgaPKFGHwC90Obq6AeQqG5RLuo/XKXJkQeczlyyw1SzRPnMhsGgcjkQFC0KNV5PIj0itOcyEKUG+muvcdbEAZLGV7Mm1vn1G1lQ20N6ppg1I/QHWKNFQJx7PevU+b0lX/Gq+Zgw+o1kdcIXk3CEhB4Ws+xVEvt41d1axEwGGayk6tjwX6bTic0OZupmRrpHyrVIvZDvNeCJQaWv854gF2iEHygSr8XW8oHdI3NOHPCYKHQ8s9FKtTVjL9hp+hC87ilTOF1IN4gku1oLuRHg8PBIaeZgbZuJfxlWh35X1ujdZ6a2sb9CcP6YhZV21xs56gWvcPmTLXuHPzeIobA1t1DXrL6J91qIKx6gvgpQ1EshIXPJt1saLkcVlKTxNLfVOP984pid4u9c5S595BX2Eo3R6VrkeZk6bt1LYwsr/z/BOSns2pi+zO752h5L7xtz6vrJq4t7F0ZaOz7uOCa0+cHQMNab+ZoVV1nRF65MYwiyFzDpRl13hCtD++meHn+A6kFL2E= +api: eJztWV1v2zYU/SvEfdoA1UrS7kVoC7hx22XFGiNxt4fYGGjx2mIjkwx55dYT9N8H6st25WRZljwE0JMB8pL38NyrI5knB+JLB9EV/GHUJFMKU5gFYLjlKyS0fioHxVcIERirv2JMZwICkMoPcEogAIEuttKQ1H4wU/ImQyYFKpILiZbpBaMEWb2cnf4+hgAs3mTSooCIbIYBuDjBFYcoB9oYn82RlWoJRRG0AOQDM6/bsz0sLzfyxRqt82lqADcZ2k0HwSRB5hOgIxRsOD5j22W3JfJ7LHiWEkRwDEUx8xid0cqh89EnR0f+Zz/R+ScIINaKUFG5JX6n0KTcY8u7qfTcMw+BL6FBS7LaeoXEBacyUmVpyucpVrwUATjilLmDU/u77CMbt3Oe/bar2KlWCmMfxC6JE0Lw475FAFwI6UN4Ot5JseCpwx+pvqg5YqPJOVtoe3cqkuTzbLt8G1OGNLuNSEMJxJhUxtzPh1+d7ll9FFbLLu3pfBw6PZRXh7ThHRfsohKhxxCJararWh3Ca/j3iNxWrQ6VinCJFgJYaLviVA29PDm0WCBxmd4rj1SOuIrvA+rWuubbk/m2mae4GpUI3P8Wip7Zu5h9kFj0lN5OaSUYx13B+KJ4Rom28m8UvWL0ivFcme0V40kU42VXMT5oO5dCoOrlopeL58psLxdPIhevunLxWRP7oDPVf130cvFsme3l4ink4uTk0P8RY3WMzvkU/qKkFIxeOnrpeKbM9tLxBNLxy6G7zzNFaBVP2SXaNVr23lptyxoMx2ej89PG9dlf9RHp7pvZFVKiBUSwxLJQ3n2KIKwdLRfmrTVW+MG1FGhdOLTZnA8+I33T9jpsTSgX5lIUYbx/uesdohJzZbllNoUIEiLjojDkRg643y1OdSYGsV6B94kcxpmVtClXvENu0UJ0NduduvTdVjVUE9DWhBv5Cbsm1plyaIn99ueEkb4u/+PVPtiwviYqNaJxwhLkAiuOpVrocv+6bnsEDIZGdnJ1Itivk8nYO2dTNVUj/U2lmovSxHvNWWJx8WYKoTaouJGhqta9aCgf+GdsCoy4XSK9mcJf85Sr6ym8ZecGlffjFjLF1yF/CwE01lwEx4OjwRF4z0A7WvHyMa2P/K+tsXeeltqd91MRVMXM67a5anxUBwFEu55q2zkQ7BPjwbbd41fJ+kt6r4FmASTakc+Q53Pu8ItNi8IPV2albxIhy5eqOOxX5NtX7J1W5sFDXuOmY5WueZr5yLJb19zK6sn/T0B+uqgd25/ZPa3lg/CanlebXVwN7G0ZvO37uOB23ecHQJMCilkRNM+ZJ6+aGMYxGtpZsrvrbEe0Pr6fQFH8A6kFL2E= sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/get-vpn-tunnel.ParamsDetails.json b/docs/documents/network/get-vpn-tunnel.ParamsDetails.json new file mode 100644 index 0000000..b4915dd --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpnTunnel to retrieve","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","description":"if the resource exists in status \"Deleted\", returns NotFound according to the value of this flag","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel.RequestSchema.json b/docs/documents/network/get-vpn-tunnel.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel.StatusCodes.json b/docs/documents/network/get-vpn-tunnel.StatusCodes.json new file mode 100644 index 0000000..4d19172 --- /dev/null +++ b/docs/documents/network/get-vpn-tunnel.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/get-vpn-tunnel.api.mdx b/docs/documents/network/get-vpn-tunnel.api.mdx index 5c72fe3..0d568d7 100644 --- a/docs/documents/network/get-vpn-tunnel.api.mdx +++ b/docs/documents/network/get-vpn-tunnel.api.mdx @@ -5,7 +5,7 @@ description: "Get VpnTunnel" sidebar_label: "Get VpnTunnel" hide_title: true hide_table_of_contents: true -api: eJztV9+PGjcQ/lcsP7USYUmavqA0Eg1peo2aO+VI+3CgyOwO4JyxN2PvJdcV/3tmvD9YDjiRa9WHKE+APTP+5psZ+6OUQS29HF7Jv3I7KawFI2c9mStUawiAvFVKSz/kUOboPkAazjLZk9ryggor+p6BT1HnQTteLKz+WIDQGdigFxpQuIUIKxC1u3jx5wU5IXwsNEImhwEL6EmfrmCt5LCU4Tbn03xAbZdys+m1APQDT75pchPBCQQKDDfwUAxL6xDGYIie7DKoUPgGFB2Ot3uodIUBwbsCUxDwWfvghbbCR28xlXW0qewxugKtF29c+M0VNhMqTR1mhIKxx2SUoSRjZtqLhVFLeQD53DkDykY0C1WYIIcLZTx0U1G5fnRDNWac96YwifhpzxNKMbo4E1u3Y5x1DpaPicEZ0+1zZz14tn4yGPDH7kHnr8kvdTZQBWNI+ByS3CjGVu4f5ebcUORCrZUDBl2Fps5VmQrR0hbGqLmBqsQbwluV7NDWbpQ727SvskwzUGUuOpaR1p4MOrDtdo7e1tmOg5PRO8+NThUHSD549w1kFKvzLaTC/k8HT/f7kaZQxDH8L9qy2t2fk71Ua7QnWG75qk01YVwCku3C4VqFaumnJ4ecM6qENiedoy2dZNNTQB0tRbnNTNI6eazHEYH/1+Pxndn7mH3QmH6n9Dil7PbzoefrjBJCiiQuAemFFC8RHcYa0Js5Pn/R6Ixdr1cQxFZ99fiGXDnSJHIJsS4sdYYyqeWTT8pWh2148Yb0DvpkhMVc9d9A+OTwOmkVD5nrbMPvdIRU6bkCiUm5CiH3wyQhGdBX7J0aV2T91K0lv9Ye0gJ1uI0ev4JCqtTwatbduuRmqvqlMWgpp6ivYV9KnNGli0H88feE9Mw1sIKo1ciooLRR/xOvgEaPrEBRdpFCbRcuxq/LspNwf5TrvbP2LMTvk8kF65epndqx+2SNU1kUVc+UWCEsfpnKhJrAEvjEVn6PGor7PEJTKYJCKgxZvp8bZa+n8rk4JxdWRQtt4FminhOSRiCR+OkP+gPJL5jzYa3iFNYp3638DvyWyc5rQ1Fi7cq6K64aTc4adNjV521j0PcdHhhb2xzsRaKaSroicByvLOfKwzs0mw0vV3qQOyDTngcna9/UO2Db5/H/EbwHubmmhjum0GMU2pUsgE9P5j7pew+GXWm9PXvGP1BXV9BXsfrD2/rPyo/ixH9YB+E102lvu7ga2NsO+jqWTgF37E/YA2BSy25mZFXfDkxktTFKU8hDx6Ubdda5Wl+9nNCl8gVZXTwV +api: eJztV9tuGzcQ/RVinlpgo3XS9GWRBFDiNHWD2kKstg+WEFDLkcSYItfDWSWusP9ezF50sWRDcYs+BHkSRM7lzOEMeXYFrGcRsiv4s/DD0nt0ME6g0KQXyEiytQKvFwgZFBQ+Yc5nBhKwXhY0zyEBgzEnW7ANslh6e1OisgY926lFUmGqeI6qdVdvfh9AAoQ3pSU0kDGVmEDM57jQkK2AbwvJFpmsn0FVJWsA9pGZl11tioMiZLK4xMdimPlAeIoOGc0lay5jB+qmRLrdQ2UbDIQxlJSjwi82clTWq1h7qxG00UaQCLqSfFTngX8JpTdK53kgY/1MsNfFaFdiU5mNaur0DA4gn4TgUPsazVSXjiGbahdxuxRd2CdLpCg4HyxhWOO/KTEyGtUfnKmN232cbSWGp1BVY6E7FsFHjGL97OREfnYTXbyHBPLgGT3XIfELp4XTgm21nypMpKEgkc4skNg2oRfI2miuLX3pnJ44bI64SqAh/eDWbpQ721UC2hgrQLUbbFnWtCbAlsV2M0cf2mpPOUDtXRTO5loCpJ9i+AYqqk/nWyhF/J+fPN/vx/PAqh7D/6Itm939OdkrtUV7hOWGr9bUesYZEiQwDbTQ3Cz99OyQs0HW1h2Vx/rI2ufHgLr3KFabymBAYeJwcVojiP96PL4z+xCzjxrT75TeT6m4/Xzo+TrzjOS1U5dISyT1lihQfQb9wdnpxZtOZ+x6vUNWG/WVyA05DwYymGF9LiJ1Mkhb+RTT1VqHVbK4tAYppn0qJ7p3jvw50HW6VjwxXVlTyTtdQ2r0XEkOMpgzFzFLU13Ynhbv3IXS9PKwAHmtI+YlWb6tPV6jJiTIrsbbW5fSTE2/dAZrynVh3+O+lDjzEYnVb38NFYdrFAXRqpF+yfNA9u/6Cuj0yBy1wYZC66ehjt8ey07BvX5h93LtWahfh8OB6JeRH/nT8Nm7oE0tql5oNSecvhxBGgr0urCpb/yedBT3ZIRGoFjTDPnlCD5OnPbXI3ilLgr0ooqm1uGLVL+CBDqBlMHT3knvBOQFC5EXup7CtuS7J78Df83k1mtTJc3ZrdquuOo0uWjQbFufrxsDkl0eBNu6OcTLGlH88xBZ4q1WEx3xD3JVJcuNHpQOMDbK4Jj1m3oH7Pp5/H8E70FurvH2XoVeR4EMQATw8cU8JH0fwLArrTe5x/KHbHMFfRWrP3xoP1Z+VEd+YR2E102nv93G1cHedNDXsXQMuPs+wh4B0xqoxlXS3Q5CZLPRz3MseMtlO+p462p993YIVfUPWV08FQ== sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-elastic-ip.ParamsDetails.json b/docs/documents/network/list-elastic-ip.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/network/list-elastic-ip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-elastic-ip.RequestSchema.json b/docs/documents/network/list-elastic-ip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-elastic-ip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-elastic-ip.StatusCodes.json b/docs/documents/network/list-elastic-ip.StatusCodes.json new file mode 100644 index 0000000..47d429f --- /dev/null +++ b/docs/documents/network/list-elastic-ip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}}},"additionalProperties":false,"title":"ElasticIpListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}}},"additionalProperties":false,"title":"ElasticIpListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","description":"Ip address","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"ElasticIpPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"ElasticIpResponseDto"}}},"additionalProperties":false,"title":"ElasticIpListResponseDto"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-elastic-ip.api.mdx b/docs/documents/network/list-elastic-ip.api.mdx index bd02dba..819e96c 100644 --- a/docs/documents/network/list-elastic-ip.api.mdx +++ b/docs/documents/network/list-elastic-ip.api.mdx @@ -5,7 +5,7 @@ description: "List ElasticIp" sidebar_label: "List ElasticIp" hide_title: true hide_table_of_contents: true -api: eJztV9tu20YQ/RVin1JAEd0kzYOQBlBjI1FzsZGo6IMlFCNyaG282mV2h3ZdQf/eGV4k0pJj5vLoJ4m7c9s5Z4eHa0VwEdToXJ0YCKSTSa7mA5WDhxUSetlaK8sPaqRy7z5jQpNUDZS2sgC05P8phsTrnLSTxcLqLwVGOkVLOtPoI5dFtMSodo9evT9jJ49fCu0xVSPyBQ5USJa4AjVaK7rJJVsgr+2F2mwG2wIybbimJjtn8Teqn2dwnr7Hr65ZTvYd3i7LAt6fV1vCi/JcmfMroGrp6ZNOLKNX+ieFglw/vmJsD5yqC+WUUROcMBCm0fhsEu3c7jq/xMigMJL6V047F6hD7mzAINZPjo7kp5vo9C37JY6Lt1SGxH8pzg1Ibev9VG4hoLALw5OjJ12FJkdg7m3G82dqw+WjyQ4VbwtjYGGwouVGUuBVL0PLNfcyzLQP/SzlSvYyvAJT1D2oTMF7EDw14Src3zm+65AClT3eCx4IqAgHt7pRbm3zPqSpFojBnLUsMzCBbzxpEtvd5PlY8+SYHBPnm93f6UDdEBwhz41OQILEn4N7oNMDnX6ETuVceuDRA49+iEcS47dDr8EJM8Nz2OgTen7TRifeO18Sj9+9x6evGq3U9ZIE0U6+DaRtS8fCSl2U4qNUaSMV11omxOutkNvI4hVLNR/isS8WMPyAdO38ZYxNvCDv+rKcSgsWnrmslkR5GMUxS4khiGNiXJEOE7dS8sYPmBRe003p8QeCZ7qPzuftrU9yeyqAGoMdTXL9FvflyIQ76Cn68+9pRO4SRYXUimZc8Im9/g/aSm2JwAcr26dt5sr4NTidsw7Hud7LtWcRvZlOz0QDzezMHrtraxykpa59AdHSY/b7TMXMBsvFx7bye9x0dygzY6YiAs+YsOU/CwP2cqZeRqfsIsqKtS2+iOElV9KILBZQw6PhkcyF3AVaQTl26iPvod6pf9vKlpLiMCV465oR5426FYhHbXG/JQX/7zSCn1vEYDSXTkbBuVqvFxDwL282G1mu5KSAn+ogdy/d3o9LBral5MsRwQtK9OkdxrV472Pa0et9HLYSvY9xo8G/bnsLiK2s/aqcPghXlbUr13e55/LgdTXaDrX6zkIefaw/vn6Jen6tHSyvua32pl3XLSiYUJs5G9e3UQqt9sdJgnm7m+3g89YUe30y5Uv8P/WSEKE= +api: eJztV9uO2zYQ/RVhnlqAsTbp5UFIArjZReum7RqJiz6sjYKWRhazNMklR05cQ/9ejC62tPZm3aSP+2SYPHPhnOHwaAckVwGSG7jSMpBKJw4WApz0co2Enrd2YOQaIQHn7QdMaZKBAGV4QVIBAjIMqVeOlOXF0qi7EiOVoSGVK/SRzSMqMGrNoze/T0GAx7tSecwgIV+igJAWuJaQ7IC2jqMF8sqsoKrEPoFcaULfRb8r0W/hPMtgPX2JXZszn+wLrG2eB3w8rjKEq/pcufVrSc3Sdy8GvrRaq//JlXTq2QZ9OHGqIZWzAiPmCQNhFo2nk+hg9tD52UcuS82hn0NVLZjq4KwJGBj94uKCf4aBrt+CgNQaQkO1S/xEsdOSc9sdh7JLJgUE0+PQk2pckyWpHy3Gj99DJSCgzk8lb0qt5VJj05YVh8DNWUCDn+gsYK58OA/JV/Is4Ebqsq1BA5XeS+ZTEa7D45VbI8lMUl3jI+eBJJXh5NbQy73tSoDMMsUUSz3tIXOpAwogRYw9TJ53bZ9ckoXqv5v/pgINXQiQzmmVSnYSfwj2qZ2e2ulr2qmeS0999NRHX9VH7OOHU8/gxBB6I3X0Hv0GfXTlvfV1442nk8vrN51WGlpxgOgg3wSXrbAZJLCqxUet0hKIWy0T4t1eyFW8uFEZ+hCPfbmUoz+QPlp/G2PnL/BbX6fTaMHSa0igIHIhiWPp1EiyYaptmY1SuwZ+8QOmpVe0rS1+QunRQ3Kz6G+959vTENQBDm3i1Fs8liMTE9BT9Otfs4jsLbIKaRXNuKTCevWP7Cu1AmWGTfmUyW3tvyVncNbR2KmjWEeI6JfZbMoaaG7m5tJ+NNrKrNa1L2VUeMxfzSG2Do10KjaN3bOuuiOeGXOISPoV0qs5/L3U0tzO4XV07dCwssqVxpexfA0COpGVwPPRxeiC54KzgdayHjvtkY9YH+S/L2VPSVWiIW/XdsRNp26Z4qQv7vdNAWJYCBDQa4yFgMLyKLiB3W4pA/7pdVXxciMnmfxMBb572f5+3OK2r+TrEQEJAOvTB8CteD8HOtDr5xjsJfo54E6Dfx57j4i9rP2snD5JVxN1KNcPsRf8x6tmtJ0q9YOJfPOu/fj6Njrza+1ket1tNdt+XveomGRQLSrR3UZOtNkfpym6fjX7zhe9Kfbz1Qyq6l/1khCh sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-load-balancers.ParamsDetails.json b/docs/documents/network/list-load-balancers.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/network/list-load-balancers.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-load-balancers.RequestSchema.json b/docs/documents/network/list-load-balancers.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-load-balancers.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-load-balancers.StatusCodes.json b/docs/documents/network/list-load-balancers.StatusCodes.json new file mode 100644 index 0000000..ebfd6ce --- /dev/null +++ b/docs/documents/network/list-load-balancers.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}}},"additionalProperties":false,"title":"LoadBalancerListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}}},"additionalProperties":false,"title":"LoadBalancerListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"address":{"type":"string","nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"LoadBalancerResponseDto"}}},"additionalProperties":false,"title":"LoadBalancerListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-load-balancers.api.mdx b/docs/documents/network/list-load-balancers.api.mdx index 1f3fba5..5b7144c 100644 --- a/docs/documents/network/list-load-balancers.api.mdx +++ b/docs/documents/network/list-load-balancers.api.mdx @@ -5,7 +5,7 @@ description: "List LoadBalancers" sidebar_label: "List LoadBalancers" hide_title: true hide_table_of_contents: true -api: eJztWEtv2zgQ/isET10gtdJutwejLeA0xW623SZIXewhNoqxRMVsaFIlR2lTwf+9M5JsS7GcCGmOPtki5/0NHx8LiXAZ5PBCfnCQHIEBGysvpwcyAw8LhcrzbCEtfcihzLz7qmI8SeSB1JYHAOf0P1Eh9jpD7Xgwt/pbroROlEWdauWFSwXOlajVxdv/zkjJq2+59iqRQ/S5OpAhnqsFyGEh8SZjbwG9tpdyuTxYB5BqQzGtvJMXfyP7aQbn8SF6dcyc2QO0XZoGdb9fbVFdlnmlzi8Aq6E/n7dsGb3Qj2QKMv30mrDtyKoN5ZhQY5xUQJWI0dmJ2Kjtyp9tpJAbdv2M3E4Z6pA5G1Rg6eeHh/zTdnT6nvRiR8FbLE2qHxhlBji2YtuVmzEopELwZMqjrkyjQzD3FuPlC7mk8JVJu4K3uTEwM6pqyyW7UNe9BC3F3Esw1T70kzTQU/AaTF7XoBIF74Hx1KgW4f7K0VqHBLCs8ZbxgIB56JxqW7k1TfOQJJohBnPWkEzBBFrxqJFlW5vPed0qx+iodx5i4YMO2LZCRrLM6BjYTvQ1uH1T7Zvq95uq3KP23bTvpkfoJjbzoutgPIJEnFcn8KOckOVsD7TqsHtIbkp/3xWkQzkhULXp5Udb8kTV6yG8E5Nik5mkcdJYHJcRhN8/JvaVvaOyD9sr9yXdWVJW+6trwzihhDxZEp+Up8u6eOe98yUGdH0/Pn27olttLd6RRHOLChQo7bhzR/xMXpYcpiR7QxnVlChExZoPLnnwmhifD9HI5zMYfFT43fmryNyyGcqoKlaZeyqmnCNmYRhFREoGwLqxcXkyiN1CMncIKs69xptS40iBJ7CGF9Pm1Cfup6plVgKbQybT79U2sTmhndej+Pf/sUB3pZjP1NxolFPSXv+EJuebK6Dcyipqm7rSfo1MK93BKNNbvrYkxD/j8RmzqYmd2GP33XKRSob8CsTcq/T1REbUB5aCj2yl93RV4AGvookUCJ5gIckvM6ru1US+EaekwhyNWLJ6FcEbimRF14iKDQ4Hh3yryFzABZQLsU65E/xWDutyNk4dMlUCWNSNcbHiyqw9bD4VrHuD/reKQd/t/iBQ547vExeyKGYQ1Gdvlkservgp90CiA6+eZH3CXhG+jaeB8p5BA5IJ7w7h+jWgj2jrAaCPwprz9xFekfq7ZW9hsb4F3MnPOxGrvLb5/8b3lD+8rjanrlLvDOTJef2a84fo+fzTGd5q0dqbZly3oKCeWk5JuF6UHGg1P4pjlTWr2TQ+bexnf78b01r+BfNylNo= +api: eJztWN9v2zYQ/leEe9oA1Uq7bg9CW8Bpis1r1xhphj3ExnCWThEbmlTIk1vP0P8+nCQ7UuIkQppHPxkW7+d3xyM/boDx0kN8AZ8spseo0STkYB5CgQ6XxORkdQMGlwQxFM5+pYQnKYSgjHxAziGElHziVMHKysfSqOuSApWSYZUpcoHNAs4paNWD939NIQRH16VylELMrqQQfJLTEiHeAK8L8ebZKXMJVRXuAsiUZnJb79cluTUM0/TW8VP02pglsydo2yzz9LhfZZgu67wy65bIzadfXvVsabVUz2QKC/ViRc7vyapfyvOcAqkTeaY0GE8nwY3affmLjQxLLa5fQlXNpdS+sMaTF+lXR0fy03d0+hFCSKxhMlybpO8cFRolts1dV3YhRYFQylOQY9WYZsuoHwXjt9dQheBJZ/uCN6XWuNDUtGUlLmg1SNDQdx4kmCnnh0lqHCi4Ql22GDSi6BxKPRXT0j+O3JIYU+Qa4zvGPSOXfu9S38qt5SoETFMlJUY97UhmqD2FwIpFtjd8ztpWOWEL1ZMsfFKe+1ZCwKLQKkGxE3319tBUh6b68aaqZ9Shmw7d9AzdJGZe7zsYjzENzpoT+FlOyHp1QLXasAdI3kD/2BVkj3JKjEoP8qOMZ0FvgPC9NdncZAZTZxealid1BP7Hj4kDsg8g+7RZeYD0XkhF7dd9A2NimJxBHXwhtyIXfHDOuroG4+nk5PT9lm71tWQiBd0R5SGUiZvbFGK4rDlMTfZiiFpK5KPNjg9W8nGlUnI+GrtygaPPxN+su4r0LZu+jqphlaXTEEPOXPg4irBQIxTdRNsyHSV2CcIdPCWlU7yuNY4JHTmIL+bdpS/ST03LbAVuDplCfaS7xGZiPDkO/vznPGB7RcJnWm40Ljm3Tv2HXc6XE6bUoKhMZmv7bWV66Y7Ghbrj645E8Mf5+VTY1MzMzIn9ZgSkmiG/wSB3lL2dQWQLMlioyDR6L7YAj2QXzSBgdJfEb2fw70KjuZrBu+C0ICMcLVOa3kT4DkLY0rUYXo6ORkdyqyis5yXWG7FNeW/xezns4OycOlXYFHDTNsbFliuLdtx9Ktj1BoR9MCCEfn/MQ8it3CcuYLNZoKe/na4q+dzwU+mBVHnZPenuhL2idfdpoL5nQAwghPce4fY1YIho7wFgiMKO8w8R3pL6h2Vv1WJ3C3iQn++tWOO1z/9vfM/lj1PNcNoH9b2B/HTWvub8HAx8/tkb3nbTmnU3rlulmKRQzatwuykl0GZ9nCRUdNHsGp935tnvH86hqv4H83KU2g== sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-security-groups.ParamsDetails.json b/docs/documents/network/list-security-groups.ParamsDetails.json new file mode 100644 index 0000000..7d33af7 --- /dev/null +++ b/docs/documents/network/list-security-groups.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security groups have been created","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-security-groups.RequestSchema.json b/docs/documents/network/list-security-groups.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-security-groups.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-security-groups.StatusCodes.json b/docs/documents/network/list-security-groups.StatusCodes.json new file mode 100644 index 0000000..23feaa5 --- /dev/null +++ b/docs/documents/network/list-security-groups.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}},"additionalProperties":false,"title":"SecurityGroupListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}},"additionalProperties":false,"title":"SecurityGroupListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}},"additionalProperties":false,"title":"SecurityGroupListResponseDto"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-security-groups.api.mdx b/docs/documents/network/list-security-groups.api.mdx index 58377ff..32172f9 100644 --- a/docs/documents/network/list-security-groups.api.mdx +++ b/docs/documents/network/list-security-groups.api.mdx @@ -5,7 +5,7 @@ description: "List SecurityGroups" sidebar_label: "List SecurityGroups" hide_title: true hide_table_of_contents: true -api: eJztV1tv2zYU/isEnzYgtbLu8mB0Bbym6LJuTdC46ENsDMfSkcWGJlWScpYZ+u87RxdHsp1GM/KYJ0nkuZ+PRx83MsDSy/G1vMK4cCrcvXO2yOX8RObgYIUBHW9vpKEPOZa5s18wDueJPJHK8AKEjN4T9LFTeVCWFwujvhYoVIImqFShEzYVIUPRqIs3f12SksOvhXKYyHFwBZ5IH2e4AjneyHCXszcfnDJLWZYn2wDWeXysc1IVyojbTMVZteCbnMWSk/YigzWKBaIRsUMImBwZY6o01a0NkoJxd3KYprcuHKPX1JULcIS2TVOPj/tVJuCyyiu1bgWhXvrxZc+WViv1RKYgVy/WhL8DWfU7PqVecp/QU8/E5PJc3Ks9lD/bSKHQ7PoHcjvnVvvcGo+epV+envKj7+jiPenFloI3oTKJ/4Qo18CxbfZd2QU3hVSoPTm6oGrTwQbQjxbjl59kSeGjTg8FbwqtYaGxhmXJLnA9SNBQzIMEU+X8MEkNAwXXoIumBrUoOAfcTxVw5R+vHM0jSCBUNd4z7gOEwh/c6lvZ2aZ9SBLFLQZ92ZFMQXs68UEFlu1PyI8NVs6CJfAcZeJP5UPfDFnJc61iYEPRF2+fYfUMq6eAVTWnnvH0jKcnwRPb+fnQ7/GcEOLItLhCR39g8dY56yoA0j/57OJNy6H6WuxA9Fx6qijVMLPEuuSyYiYV0xvLqCE6PtpsmWjJi2uie85HE1csYPQBw611NxERPhKsGGMZ+V0PvgqyZreFI6TLLITcj6OIiMcI2FKsbZGMYruSzA9aC5XGbwiODsP4et7duuKzVbevFbgHUa7e4z55Oae6uiD++DwVwd4gc5aG/0wKKoFT/0KX12UIlGlVVGVSW9lv2tZLfjTJ1Z6vPQnx+3R6yYxpZmbmzN4abSGpuPErEJnD9NeZjAgnhoKPTK33oi33iCfKTIoAjppEkn8vNJibmXwtLkiFeRgxYXwVwWuKpKVkRLdGp6NTnhq59WEF1VBqUj6MhV4S23p2yBfZqjq4aXBy3RJi1h537yxbqNB7rxocIcGF5dsrxg5iqM2Z5QlyLTebBXj85HRZ8nLNShkVifJ8ZJPtkbqhjncuBNVkoQXJNPcB4eYOMES0R/uHKGyZ/hDhlsp/W3anOVt2/E1WfrCFtdc+67/3PecPp+qJeKjUDwby3cfmDve9GHgxPRhee4zNXTeunVYQcP5flYYEd9TF9YgcauCXcxJsxgwXut6bxDHmXTR0Dc878/rd2ylNp/8A3jusKA== +api: eJztV1tv2zYU/ivEeVoB1Uq7y4PQFvCaovO6LUbjoQ+xMdDSkcWGJhnyyKln6L8PRxfHip3GM/KYpyDkd+6fjj9ugOQiQHIFl5iWXtH6o7elg1kETnq5RELP1xswcomQgPP2K6Y0yiACZfhAUgERZBhSrxwpy4elUTclCpWhIZUr9MLmggoUrbl4/+cYIvB4UyqPGSTkS4wgpAUuJSQboLXjaIG8MguoqmibwMqlpwZfuVQoI24LlRb1QWhrFgsuOohCrlDMEY1IPUrC7MQcc6UJfZfkTYl+DcdZBuvpFLu2r9yAE6xtngd8PK4yhIu6rtz6paTm6MfXPV9aLdUTuZJOvVyhDweq6k98UqDgOWEgzMRwPBJ3Zg/Vzz5yWWoO/QqqasajDs6agIHRr8/O+E8/0MUniCC1htBQ7RK/Uey05Nw2+6HsnIcCEY/HoSfVuCZLUj/ajF9+giqCgDo/lLwptZZzjQ0tKw6Bq6OABr/RUcBc+XAcUssjgSupy7YHDVR6L3meinAZHu/cEklmkuoe7zkPJKkMB6/6Xu5dVxHILFM8YqnHO8hc6oARkCLG9jfk55Yr52ShOs3FHypQ300E0jmtUsmO4q/BPtPqmVZPQat6Tz3z6ZlPT8In9vPzoZ/HkSH0RmpxiX6FXnzw3vqagMPx6Pzifaeh+lYcQPRCBoi4h4XNIIFFrUxqpZdA3AqdEG+2SrTiw5XK0Id46Mu5HPyFdGv9dbxyaYg3tWKs4nA/QqiTbNRt6TUkUBC5kMSxdGog2VOqbZkNUrsE1gedh9riV5QePSRXs92rS/62mvF1gDsSOfUJ98XLyAT0JH7/MhFkr5E1S6t/hiUV1qt/5a6uK1Bm2DRVmdzW/tux9YofDJ3ai7WHEL9NJmNWTFMzNef21mgrs1obv5Gi8Ji/nUJsHRrpVGwau5dduwe8UaYgSPoF0tsp/DPX0lxP4Z24cGhYh+VK45tYvoMIOkmWwKvB2eCMt4azgZayXkptyYe50Cti288d8VVFzQQ3LU+uOkHM1snum2VLFYj63eAMXVrjuyfGPcbMIigsb5Ar2GzmMuDfXlcVHzeqlFmRqcCfbLb9pK5xvfsgqDcLJAAscx8At2+AY6A92X+MwVbpHwPupPz3sfeGs1XH31XlB0fYRO2r/rvYM/7Hq2YjHmr1g4n88Ll9w70QRz5MD6bXfcZmvZvXvVGMsv/ZpWOSO+nhekINDfGrWRV1a4Yb3dwN0xTdLht2Hc929vXHDxOoqv8A3jusKA== sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-security-rules.ParamsDetails.json b/docs/documents/network/list-security-rules.ParamsDetails.json new file mode 100644 index 0000000..c98911c --- /dev/null +++ b/docs/documents/network/list-security-rules.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"securityGroupId","in":"path","description":"unique identifier of the security group in which the security rule has been created","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-security-rules.RequestSchema.json b/docs/documents/network/list-security-rules.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-security-rules.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-security-rules.StatusCodes.json b/docs/documents/network/list-security-rules.StatusCodes.json new file mode 100644 index 0000000..f4826be --- /dev/null +++ b/docs/documents/network/list-security-rules.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}},"additionalProperties":false,"title":"SecurityRuleListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}},"additionalProperties":false,"title":"SecurityRuleListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}},"additionalProperties":false,"title":"SecurityRuleListResponseDto"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-security-rules.api.mdx b/docs/documents/network/list-security-rules.api.mdx index 562cb3e..97fc6af 100644 --- a/docs/documents/network/list-security-rules.api.mdx +++ b/docs/documents/network/list-security-rules.api.mdx @@ -5,7 +5,7 @@ description: "List Security Rules" sidebar_label: "List Security Rules" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPm1AamXttgejLeA1RZd1W4LExR5iY6Clk8WGJlWScpYa+t97R0mOZCuN5qZvebJE3i/efTx95w33Yun4+IpfQlxY6W8vCgV8fsRzYcUKPFja3XCNL3zMc2s+QuxPE37EpaYF4TN8TsDFVuZeGlostPxUAJMJaC9TCZaZlPkMWK3O3vx1jkoWPhXSQsLH3hZwxF2cwUrw8Yb725y8OW+lXvKyPNoGsM7jQ52jKpOa3WQyzsKCq4/MltYUOcuEYwsAzWILwkNyYISN1Xdk9NBYd0LrD9tiqR4r6lQqrHUTLAZlb/nA8xrrD9GrsUCJOEDbpKmDh/1K7WEZzpUauxK+WnrxvGNLyZV8JFMil8/WeGd6TtWt/BQLSXUChzVjk/NTdqd23/nJRioKRa5/QrdzKrXLjXbgSPr58TH9dB2dvUe92GDw2geT8J+PciUots2+K7OgoqAKlicH62Vl2hsv1IPJ+PVnXmL4oNK+4HWhlFhgdwmwLMkFrAcJaox5kGAqrRsmqcRAwbVQRZ2DSlRYK6ie0sPKPZw57KEiET7keM+488IXrnera2Vv+x6TuCOSRFLthTpvmUiFctgKvPQk2+n2FzWGTrxBUB1i4U/pfNcKGslzJWNBdqKPzjyh7Qlt3xFtoas9wewJZt8TZmTml75v7CkCx6JldgkWP+PsrbXGBlzih/3k7E1DxLpa5IA1Hhm5dJhoTG1mkLrxZaA3gTaOeVSzJRdtthS8pMU1ckfrooktFmL0N/gbY68jZLooGKhyGXX4KC7v8NM7gSYCFw5R0f7C4gXhmfe5G0cRspuRIE+xMkUyis2KEwlpDASN30BYvEPjq3l765KuZFX1RuAOe7l8D/sM6RTzbj37458p8+YaiBjVJGtSYIqs/Cza5DEDgZkISZc6NcF+XdVOckaTXO752pNgv0+n50TLZnqmT8yNVkYkgX2/FCyzkL6a8QhhpDH4SFd6z5pyjKgRzTjzwmIRUfLfhRL6esZfszNUIbKHdBteRuI1RtLwPuR0o+PRMTWb3Di/EqGX1Ufux0rnENt8thge2goV3NQ4umpYN2mP28PcFkr43MkGRYhwIvlm9uoiinb2Z54uqBAJmaHedMU3m4Vw8MGqsqTlih0TcBLp6M4n20t5jaBoDSahZ+ECJ7p9j3A9iwwR7YwfQxS2E8cQ4Wak+LrsTv22LP2r00FvlSuv3enjzvecXqysWmpfqu8N5IeLepb8kQ0c6nvDa266vm3HtVMKxM3/y9KQ4A4Y+g84QXUzHj/6b/ob4IBz7N7jco4qdWcl4FRSkziGvI3utot56xP27u0UG/IX5o9liQ== +api: eJztWEtvGzcQ/ivEnFpgo3XSx2GRBFDjIFXTxoatogdLKKjdWS1jiqTJWTmusP+9mH3IWkmOVdW5+SSInPd8HH2jFZCcB0iu4BLT0iu6uyg1wjQCJ71cIKHn2xUYuUBIwHn7GVMaZRCBMnwgqYAIMgypV46U5cPSqJsShcrQkMoVemFzQQWKVl28++McIvB4UyqPGSTkS4wgpAUuJCQroDvH3gJ5ZeZQVdE6gKVLj3W+dKlQRtwWKi3qg9CmLObelk4UMogZohGpR0mYHRlhZ/UDGz021q3Q9oftS41PFXWuNKHvgr0p0d/BgflaT8fotVjgQhyhbfM84ON+lSGc13nl1i8kNUc/vOrZ0mqhnsiUdOrFEn3Yk1W/8+MCBfcJA2Emhucjca/2UP5sI5elZtcvoaqm3OrgrAkYWPrVyQl/9B2dfYQIUmsIDdUm8QvFTkuObbXrys64KRBxexx6Uo1psiT1o8X4+UeoIgio833Bm1JrOdPYwLJiF7g8SNDgFzpIMFc+HCap5YGCS6nLtgaNqPRecj8V4SI8XrkFkswk1TXeMR5IUhn2XvWt7Fw/YLKKQGaZ4t5Lfb5hIpc6YASkiGV70/6ixdApWaiOsvC7CtS3EoF0TqtUsp34c7DPaHtG2zdEWz3VnmH2DLNvCTM289O+39iRIfRGanGJfolevPfe+hqXw/PR6dm7joj1tdiB6DwKdhkg4tIWNoME5jW9qWljAnHLlkK8WlPwig+XKkMf4qEvZ3LwCenW+ut46dIQr2qqXMU9Phri1RY/vRfoIgh1Eg3tL72GBAoiF5I4lk4NJHtKtS2zQWoXwCSkM1Br/ILSo4fkarp5dclPsul6J3CPPac+4i5DGpmAnsRvf40F2WtkYtSSrGFJhfXqH7lJHguUGTZFVya3tf22q73iDIZO7fjakRC/jsfnTMsmZmJO7a3RVmY1+34tReExfzOB2Do00qnYNHovunYMeBBNQJD0c6Q3E/h7pqW5nsBbcebQMNnLlcbXsXwLEXS8L4GXg5PBCQ8bZwMtZD3L2pT3Y6WXxLqeGwyvipoOrlocXXWsm7WTzWVuDSWI+tXgCF1ay3e7Vx9RfLO78/RBNY2gsDybrmC1msmAf3pdVXzcsGMGTqYCv/ls/Siv8W5zMalnFiQATLcfEG53kUNEe+vHIQrrjeMQ4W6l+LrsVv/WLP2r28HeLjde+9vHve8pf/GqGan7Sv1gIN9dtLvk9+LApX5veN1LN3ebcW21YpT9xyodEtwRS/8RGTQv4+mj/19/AxyRx/Y7rqZV1E1WBk4jNUxTdJvo3nQx3fgJ+/B+DFX1L+aPZYk= sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-subnets.ParamsDetails.json b/docs/documents/network/list-subnets.ParamsDetails.json new file mode 100644 index 0000000..b475908 --- /dev/null +++ b/docs/documents/network/list-subnets.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the subnets have been created","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-subnets.RequestSchema.json b/docs/documents/network/list-subnets.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-subnets.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-subnets.StatusCodes.json b/docs/documents/network/list-subnets.StatusCodes.json new file mode 100644 index 0000000..c93d074 --- /dev/null +++ b/docs/documents/network/list-subnets.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}},"additionalProperties":false,"title":"SubnetListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}},"additionalProperties":false,"title":"SubnetListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}},"additionalProperties":false,"title":"SubnetListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-subnets.api.mdx b/docs/documents/network/list-subnets.api.mdx index 151c690..b724f6b 100644 --- a/docs/documents/network/list-subnets.api.mdx +++ b/docs/documents/network/list-subnets.api.mdx @@ -5,7 +5,7 @@ description: "List Subnets" sidebar_label: "List Subnets" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPm1AamVduwejK+A2RZd2W4LEwx5iY6ClU8SGJlWScpYZ/t93R0m2ZMuJ4vbRT3Go+/HxvtORn5bci1vHhzf8uphp8Hx6wnNhxRw8WFpfco3/8CHPrfkCsT9P+AmXmhaEz/B3Ai62MvfS0GKh5dcCmExAe5lKsMykzGfAKnf2/o9LdLLwtZAWEj70toAT7uIM5oIPl9w/5JTNeSv1LV+tTtYAFnl8aHJ0ZVKz+0zGWVhwYbOOZWIBbAagWWxBeEgOxJZKhfWqwSEI+8D7eTpj/SF+VT1p4wd4mzR18HReqT3chn2lxs6FL5d+ftmKpeRcfqdQIpcvFth3HbtqMz1GDokncMgZG12es43bvv1TjFQUilL/hGmnRLXLjXbgyPrl6Sn9aSe6+Ix+sUHw2oeQ8K+PciUI23I3lZkRKeiC9ORgvSxDe+OFerIYv7ziK4QPKu0CrwulxExB2ZYrSgGLXoYaMfcyTKV1/SyV6Gm4EKqoalCaCmsF8Sk9zN3TlcM5JBLhQ413gjsvfOE6H7WjbD3G5yJJJFEs1GXDMhXK4RvvpSfbaiReVU1y5g12zfN8f5duyx/d81zJWFCE6Iszx0Y6NtJhjRRm0bGDjh10YAdRgFddh947kbCr8nT9LqdfeNqDoQpwD8tNuZ+6XnQ4J0ikVL3ySI2ZdNwH1F42lpudcVxHj/lZQOC+/Tg4VvaRyh42H48l3VtScnvdNTDOcUMWI7FrsHgRZx+sNTZwgFfzs4v3tZRqe9FEYuVwcggR52tmUHXx26BMgsIb8qgSOi5arhXoihYXKPOsi0a2mInBn+Dvjb2LUOihYVCKq8itQ7sAq5SzhcVq8sz73A2jCBXHQFCIWJkiGcRmzkkYOIgLK/1D8HgHwiJbw5tp89E1NVTZM7XB5mTJ5WfYVS3nOHqtZ5/+HjNv7oDESiV8RgXu3cr/RFPQZSBwi6GMUqcmxK+oae16MMrlTq4dC/bbeHxJUmmiJ/rM3GtlcMyTGH4jWGYh/XXCI2wEjeAjXfq9qOs8oNdowpkXFtlBy39mSui7CX/LLtCFBBhKYHgTibeIpNZiqLMGp4NTukrkxvm5CG9iteUt9lvo14VsHDgYJFC3rDrjppbA5D1sfp1YNwf+bpWBoGGDkH39MaHuESQ2M3SRuOHL5Uw4+Muq1YqWSwFKfZBIR69Qsj5g75DjhvYPFwxc4KRo9xhXcr+PaUvh93FYi/o+xrVqf9x2i5X1VeBRAd7JXZm1LfA3uaf0j5XlhOoq9V4gP1xVn2t+ZD2/PXXCq19c/dDEtUUFdszzqtQH3LO+TR2Avez01RQNq4FCBS6fjeIY8mYXNANPGyP544cxzqH/AQAw/Hk= +api: eJztWN1v2zYQ/1eIe9oA1Uq7bg9CW8Btis3r1hhJij7ExnCWThEbmmTIk1PP0P8+UB+OnTiJ4vXRT4bJ+/zd6cgfV8B46SG5gLNypolhGoFFh3NicmF9BRrnBAlYZ75RyqMMIpA6LCAXEEFGPnXSsjRhsdTyuiQhM9Isc0lOmFxwQaJVFx/+HkMEjq5L6SiDhF1JEfi0oDlCsgJe2uDNs5P6EqoqWgewsOm+zhc2FVKLm0KmRb3g62S9KHBBYkakReoImbI9Y8ulYnJdcNcluSX00/TG8T56LZ4h8T20TZ57etqv1EyXdV65cXPkZumXV1u2lJzLH2QKrXyxIOd3ZLVd6fOCRKgTeaZMDMcjcav2UP7BRo6lCq5fQlVNQ6m9NdqTD9Kvjo7Cz7ajk08QQWo0k+baJH3n2CoMsa3uuzKzUBSIQnksOZaNaTaM6kkwfnsNVQSeVL4reF0qhTNFTVtWwQUteglq+s69BHPpfD9JhT0FF6jKFoNGFJ3DUE/JNPdPIzcnxgy5xviecc/Ipd+5tW3lznYVAWaZDCVGNd6QzFF5ioAlB9l2JJ62TXLMBqpn6v4l/R39CNBaJVMMFuJv3hwa6dBI+zVSPYsOHXTooD07KBh4vevQe4+ZOG1O1x9y+tW7PSrUBtxD8hbup64XO5QzYpSqlx+pPaNO+wT1YDVWt5nB2JmZovlxHYH//8fBAdlHkN1vPh4gfRDSoPbrroEx0kxOoxJn5BbkxEfnjKtrMByPjk8+dFRqWytMJNEMJw9RmK+FySCBy5qZ1AwvgbglOj5erRloFRYXMiPn46ErZzj4THxj3FW8sKmPVzVTrGK/Nu3rsBo6WzoFCRTM1idxjFYOMJhIlSmzQWrmEIiBp7R0kpe1xntCRw6Si+nm1lloqKZnOoHbk8XKT3SftYy0J8fiz6/ngs0VBbLSEp9hyYVx8l/cJHQFYUYNjFLnprbflmYr68HQynu+7kmIP87Px4EqTfREH5sbrQxmNRl+g6JwlL+dQGwsabQy1o3eiw7nQfiMJiAY3SXx2wn8M1OorybwTpxY0oGA5VLRmxjfQQQdF0vg5eBocBSuEtZ4nmP9JbYp36n+VvRrIDcOnCpqSrdqO+Oio8BBO9l8nVg3B0TbMITQbFrLd48JXY9MIyhMuEhcwGo1Q09fnKqqsNwQ0NAHmfThE8rWB+wVLTe5f33BgAQgMNoHhFu630d0i+H3UViT+j7CHWt/XPZOVdZXgUcJ+M7aNV63Cf6t72n442QzoXZB/WAgP522zzU/i55vTzvD6z5cvdyM604pRtkzUeoT3LPepvaIven0alpF3UAJADd7wzQlu9kFm4anGyP594/nUFX/AQAw/Hk= sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-vpc-peering-route.ParamsDetails.json b/docs/documents/network/list-vpc-peering-route.ParamsDetails.json new file mode 100644 index 0000000..343fa37 --- /dev/null +++ b/docs/documents/network/list-vpc-peering-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpc peering has been created","required":true,"schema":{"type":"string"}},{"name":"vpcPeeringId","in":"path","description":"unique identifier of the vpc peering in which the vpcPeeringRoute has been created","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peering-route.RequestSchema.json b/docs/documents/network/list-vpc-peering-route.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-vpc-peering-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peering-route.StatusCodes.json b/docs/documents/network/list-vpc-peering-route.StatusCodes.json new file mode 100644 index 0000000..3045dfc --- /dev/null +++ b/docs/documents/network/list-vpc-peering-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringRouteListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringRouteListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"localNetworkAddress":{"type":"string","description":"Local network address in CIDR notation","nullable":true},"remoteNetworkAddress":{"type":"string","description":"Remote network address in CIDR notation","nullable":true},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpcPeeringRoutePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringRoute":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringRouteInternalDataResponseDto"}]}},"additionalProperties":false,"title":"VpcPeeringRouteResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringRouteListResponseDto"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peering-route.api.mdx b/docs/documents/network/list-vpc-peering-route.api.mdx index dea4d83..5a6c769 100644 --- a/docs/documents/network/list-vpc-peering-route.api.mdx +++ b/docs/documents/network/list-vpc-peering-route.api.mdx @@ -5,7 +5,7 @@ description: "List VpcPeeringRoute" sidebar_label: "List VpcPeeringRoute" hide_title: true hide_table_of_contents: true -api: eJztV01z2zYQ/SsYnNoZRXSStgdNmhklzqRu2ljjKOnB0nQgcmkihgAEAOW6Gv737vJDIiU5ZlTn5pMocD8edh/At2sexJXno0v+ycYTACf11YXJA/D5gFvhxBICODJYc41/+IhbZz5DHM4SPuBS04IIGT4n4GMnbZCGFnMtv+TAZAI6yFSCYyZlIQNWu7PXf07QycGXXDpI+Ci4HAbcxxksBR+tebi1lM0HgsSLYrABsLLxscnRlUnNbjIZZ5sFW22bZcKzBYBmsQMRIDkeXl3I/4OyAbWLtt2jh0KcSoVNbrAiJnfL+3l648IxfjUJqA5HeJs09XB/XqkDXJX7So1bilAtPX/WiaXkUj5QKGHlkxUelgO76jZ+iq2kPoHHnrHx5Ixt3e7aP8VIRa4o9VNMO6dWe2u0B0/Wz05O6Keb6Pwd+sUGwetQhoR/QmSVIGzr/VRmQU1BF2yPBRdkFTqYINS9xfjlJ14gfFDpIfA6V0osFFS0LCgFrHoZasTcyzCVzvezVKKn4UqovK5BZSqcE9RPGWDp768cXp4iEaGs8V5wH0TI/cFX3Sh7r+uQyD0ukkRSs4WatHxSoTye/SADee1e7Rc1b06DQSIdGeQP6UM3EMaxVslYUKjoszePJHsk2cOTrLzDHtn1yK7vwC6K9POhD+kZ8sVhcPYBHH6r2RvnjCvpiF/v0/PXjdrqelECtqurB1TSzKBA41eliCm14YhHtSby0XqjsAtaXKFAdD4au3whhu8h3Bh3HaESRMNSCRfRVhZWaxv52X5VZvekMMotVJI+d3gqeBaC9aMoQgEzFJQmViZPhrFZctIZHuLcyXBberwC4fDgjC7n7Vcf6BxWrW4MtoSz8h3si6AzrLoL7Pe/piyYayDtU+uocY71cfJf0daHGQgsQ1lyqVNTxq/b2qnMcGzlXq49C/bbdDoh5TXTM31qbrQyIikl9gvBMgfprzMeIY80go905fek6cWQbp8ZZ0E47CBa/r1QQl/P+Et2ji6k51BRw4tIvEQkjbRD2TY8GZ7QDWOND0tRXmD1lu9gSmcXm4K2VBwGK1u4rll02ShravSoPaltiITPnXIQRCQT2TeDVYtP9XJ7oNmjFPIgM3QdXfL1eiE8fHSqKGi5kr9Em0R6Ov/J5kxeIyVak0d5TeECJz19h3E9bPQx7cwXfRw2I0Uf42Zm+LrtTvM2Mvyr8v9gi6us3fFim3tOf5ysrtdDpb4TyA8X9bD4I+s5rh+E15xzfdvGtdMKpM63VakPuG8d54+AX52J7wP92Bn/uG1sz3AxR/v6QiXGVCbjOAbbpnU7/rz12Xr7Zor38H/l0FKy +api: eJztV9tu20YQ/ZXFPDUAIzrp5YFIAqhx0Kppa8Fx0wdLKFbk0Nx4tbveHcpxBf57MbzIpCXHiuq8+cnwci5nZ86OzqyB5EWA5Bw+unSK6JW5OLUlIcwjcNLLJRJ6NliDkUuEBJy3nzClSQYRKMMHkgqIIMOQeuVIWT4sjboqUagMDalcoRc2F1SgaN3F2z+mEIHHq1J5zCAhX2IEIS1wKSFZA904zhaIIUFVRRsAK5cemnzlUqGMuC5UWmwOXHNtUcggFohGpB4lYXY4vLaQ/wdlB+ou2n6PHgtxrjSh77BelehvYD/PYD0d4teSgOtwgLfN84AP51WG8KK+V279UlJz9P3LQSytluqRQkmnnq/Qhx23Gjb+rEDBfcJAmInxdCJu3e67P8fIZak59Quoqjm3OjhrAga2fnl0xH+GiU7eQwSpNYSG6pD4mWKnJWNbb6eyC24KRNweh55UE5osSf1gMX76AaoIAup8F3hTai0XGhtaVpwCV3sZGvxMexnmyof9LLXc03AlddnWoDGV3kvupyJchocrt0SSmaS6xlvBA0kqw85Pwyhbn9uQVRWBzDLFzZZ62vPJpQ4YASlir7uj/bTlzTFZqA4N8rsKNAwUgXROq1RyqPhTsE8keyLZ45OsnmFP7Hpi1zdgF0f6cdcP6cQQeiO1+IB+hV688976mo7j6eT45G2ntoZenEDc1dURl7SwGSRwUYuYWhsmELeaKMTrjcKu+HClMvQhHvtyIUd/Il1bfxmvXBrida2Eq/hWFjZnG/nZ/1RnD6ww6is0kr70GhIoiFxI4lg6NZKcJtW2zEapXQLrjIBp6RXd1B4/o/ToITmf9z994HfYtLozuCWcU+9xWwRNTEBP4re/zwTZS2Tt0+qocUmF9epf2deHBcoMm5Irk9s6ftvWQWVGY6e2cm1ZiF/PzqasvGZmZo7ttdFWZrXEfiVF4TF/PYPYOjTSqdg0fs+7Xox4+sxAkPQXSK9n8M9CS3M5gzfixKFhPZcrja9i+QYi6KRdAi9GR6MjnjDOBlrKeoC1V76HKYNbbAraU3FV1LRw3bLovFPW3Oikv6ltiATRsBwM0aW1fbdY9fjUHvcXmi1KzSMoLI+jc1ivFzLgX15XFR838pdpk6nA7z/bvMlLvOlvHvWYggSA9fQ9xu2ysY/pYL/Yx2GzUuxj3O0MX7a907yNDP+i/N/Z4ibrcL24zT3nf7xqxuuuUt8L5LvTdll8JvZc13fC6965uenjutOKSfaVVdoH3Neu8wfAb97Et4F+6I5/2DVu33A1r6JuoDJjGpNxmqLr07off9772frl3RlU1X/l0FKy sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-vpc-peerings.ParamsDetails.json b/docs/documents/network/list-vpc-peerings.ParamsDetails.json new file mode 100644 index 0000000..9f6ce6d --- /dev/null +++ b/docs/documents/network/list-vpc-peerings.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpcPeerings have been created","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peerings.RequestSchema.json b/docs/documents/network/list-vpc-peerings.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-vpc-peerings.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peerings.StatusCodes.json b/docs/documents/network/list-vpc-peerings.StatusCodes.json new file mode 100644 index 0000000..94eecd5 --- /dev/null +++ b/docs/documents/network/list-vpc-peerings.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}},"additionalProperties":false,"title":"VpcPeeringListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-vpc-peerings.api.mdx b/docs/documents/network/list-vpc-peerings.api.mdx index 78ec718..473fbb3 100644 --- a/docs/documents/network/list-vpc-peerings.api.mdx +++ b/docs/documents/network/list-vpc-peerings.api.mdx @@ -5,7 +5,7 @@ description: "List VpcPeerings" sidebar_label: "List VpcPeerings" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnJoZR3TStAdNmhklzrRu2ljjqM3B0mQgcmkihgAGAOW6HP737vIhkRFl02oOOehkGdj3flzgQ869uHZ8fMX/TsMpgJX6mi9OeCqsWIEHS3s51/gPH/PUms8Q+vOIn3CpaUH4BH9H4EIrUy8NLWZafsmAyQi0l7EEy0zMfAKsVmdv/pyikoUvmbQQ8bG3GZxwFyawEnycc3+Xkjfny2iK4mQTwDoND3WOqkxqdpvIMGkW6oQdS8Qa2BJAs9CC8BAdGF8sFdasCRADsXd8mKYz1h+iV9eUkj9A28Sxg4f9Su3huswrNnYlfLX04/OOLSVX8huZEql8ukbs9WTV7fYM+0h9Aoc9Y5PpOduq7cufbMQiU+T6GbpdUKtdarQDR9LPT0/pT9fRxTvUCw0Gr31pEv7xQaoExZbvujJLagqqYHtSsF5Wpr3xQj1YjJ9f8ALDBxX3Ba8zpcRSQQXLglzAepCgxpgHCcbSumGSSgwUXAuV1TWoRIW1gvopPazcw5XDWSQi4csa7xh3XvjM9W51rXR7Ot3stWZEMwN7ctjjH3dEFEkyKtS05S8WyuHc8NKTbGvAXtZwO/MG8fd4/T+k810baCJNlQwFWQk+O3OE5RGW3wMsyzl5xOMRj98FHsnIi77j/bWI2GV1j/gm53y5O6DfddADJLfNe+gi1dcShIVUg/xIjZ50OCSovR3Jt5kRelBjdVZG4P7/UXWs7D2VPWzaHku6t6Sk9lPfwDjHhCxaYh/AIuVgb601tuwBkpCzizcNaexq0URi2wHlMEyc2IlBjsmvSx5WctoxD2pa54J8w7kLWlwjsbUumNhsKUbvwd8aexPgPEbBkhsXwbpj3pXhVSQ+s1hVnnifunEQIMcaCTITKpNFo9CsOFEhB2Fmpb8rNV6DsNi18dWivfWBgFVhpxHYnlepfAe7PO0cR7D17PePM+bNDRA9q6neJMP8rfxXtClsAgLTLMspdWxK+3WLOpmPJqnc8bUjwX6bzaZEDud6rs/MrVYGxz0dZC8FSyzEv8x5gIDQGHygK72nTa1H9DnNOfPCYodQ8tNSCX0z56/YBaoQ5UTSDy8D8QojadgnMsvR6eiULiipcX4lyi+yTrkHBZ0MNsVsHT5oqGxfXiPkqiH+pD1uv8tsQIK/O6Wg8BAoJN88o7Sxgg1ODF1TrnieL4WDv6wqClquqDfhIZKOPqloc+jeYK9brx7l9QUXOHH5PcL1Q8cQ0c7bxhCFzXPGEOHmveJ+2a86s7ka3Pv00Nu/ymv3aWPre0H/WFlNrL5S7w3kh8v6oeoJG/jy1hte8wHru3ZcX7UCUfO4Kg0J7tEvcwfEXyG+WKBgPVyoyNXeJAwhbSOhbXjRGtG/vp3hTPoPBIZbVQ== +api: eJztWEuP2zYQ/ivEnBpAsTZp2oOQBHCyQeum7RqbbXpYGwUtjSxmaZJLjrzZGvrvBfWwpVjeVdwccvDJMDkvznwa8psNEF86iK7ho4mniFaoJcwDMNzyFRJav7cBxVcIERirP2FMkwQCEMovcMoggARdbIUhof1irsRtjkwkqEikAi3TKaMMWa3O3v4xhQAs3ubCYgIR2RwDcHGGKw7RBujeeG+OymiKItgGsDbxsc7XJmZCsbtMxFmzUB/YsYyvkS0QFYstcsLkyPhSIQltE+BtjvYehmk6bekYvTqn/vBHaOs0dfi4X6EIl+W5Um1XnKqlH593bEmxEt/IFDfi6Rqt6zlVt9pXGTJfJ3SECRtPJ2ynduj83kbKc+ldP4OimPtSO6OVQ+eln5+d+Z+uo4v3EECsFaGi0iR+ptBI7mPb7LvSC18UCHx5DFoSlWnSxOWjyfj5BRQBOJRpX/Aql5IvJFawLLwLXA8SVPiZBgmmwrphkpIPFFxzmdc5qES5tdzXUxCu3OOZWyHxhFOZ4z3jjjjlrnera6Vb0+l2r9Ujmh7Yc4YD/osAeJIIb5TLactfyqXDAEiQl2012MsabuekoThC/3fhqGsjAG6MFDH3VsJPTp9geYLl9wDLsk+e8HjC43eBR2/kRd/1/oYn7LJ6R3yTe77cHVDvOugBkrviPfaQ6isJEhdykB+hHHEVDwnqYEU2u5N59Cwkrs7LCNz/v6pOmX0gs8d121NKD6bUq/3U1zAmitAqLtkHtGu07J212pY1GE8n5xdvG9LY1fIdie0alIPAd+xMJxDBsuRhJaeNIKxpnQs3W85d+MW1SNC6cGzzBR/9iXSn7U24NrELNyU3LsJ1x7wrw6tIfG4lRJARGReFITdixL2ZWOo8GcV6BZ4KOYxzK+i+1HiD3KKF6Hre3vrggVVhpxHY3VdGvMd9njZRDi2x3/6+YqRv0NOzmuqNc8q0Ff/yNoXNkCdYpVOoVJf26xJ1Tj4aG7Hna0+C/Xp1NfXkcKZm6lzfKal5Ul5kLznLLKavZhBqg4obEapK72mT65H/nGbAiNsl0qsZ/LOQXN3M4DW7MKg85UyFxJchfw0BNOwzgmejs9GZf6AY7WjFyy+yPnIPCjon2CazdfkUQVW+TY2Q64b4e+2oPZfZggSCbip8eCYu5ZsxShsr8wAy7Z8p17DZLLjDv6wsCr9cUW+Ph0Q4/0kl20v3Bu/bU4/y+QIRgOfyB4TrQccQ0c5sY4jCdpwxRLiZVzws+0Vltk+DB0cPvfWrvHZHGzvfc//Hiqpj9aX6YCA/XNaDqids4OStN7zmA1b37bi+KMUk+cosDQnuqydzR8RfIb6YF0HTXHySq71xHKNpI6FteN5q0b+8u4Ki+A8EhltV sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-vpc.ParamsDetails.json b/docs/documents/network/list-vpc.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/network/list-vpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-vpc.RequestSchema.json b/docs/documents/network/list-vpc.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-vpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-vpc.StatusCodes.json b/docs/documents/network/list-vpc.StatusCodes.json new file mode 100644 index 0000000..f10c676 --- /dev/null +++ b/docs/documents/network/list-vpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}},"additionalProperties":false,"title":"VpcListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}},"additionalProperties":false,"title":"VpcListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}},"additionalProperties":false,"title":"VpcListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-vpc.api.mdx b/docs/documents/network/list-vpc.api.mdx index b6f429a..f2e5b6d 100644 --- a/docs/documents/network/list-vpc.api.mdx +++ b/docs/documents/network/list-vpc.api.mdx @@ -5,7 +5,7 @@ description: "List Vpc" sidebar_label: "List Vpc" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnNoZRXTTtAdNmhklzrRu2tjjKOnB0nRWJGghhgAGWCp1Ofrv3SUpibQom3Zz1EkSsG93sW/x8VRIhOsgR1fyUxbL2UBm4GGpUHkeLKSlH3IkM+8+qxjPEjmQ2vIA4IK+JyrEXmeoHQ/mVn/JldCJsqhTrbxwqcCFEjVcvPnzgkBefcm1V4kcoc/VQIZ4oZYgR4XE24yjBfTaXsv1erBNINWGctpEpyj+VvZDBufxKbg6Z17ZE9AuTYN6OK62qK7LdaXOLwGroR+ft3wZvdTfyBVk+tmKuO1YVZvKCbHGPKmAKhHjizOxgx1aP/tIITcc+gcKO2OqQ+ZsUIGtn5+c8Ec70Pk7wsWOkrdYulT/YJQZ4NyK/VBuzqQQhOjJlEdduUaHYB4sxs8v5JrSVybtSt7mxsDcqKot1xxCrXoZWsq5l2GqfehnaaCn4QpMXtegMgXvgfnUqJbh4crRXocEsKzxnvOAgHnonGp7uTNN85AkmikGc9GwTMEE2vGokW35zLmsO+QUHbXMI4B/6IBtMGGzzOgYGB59Du7YQscWemwLlefPsXeOvfPo3mH0i64r7jUk4rK6S7/JXVfO9uCmzraH5a7QDz0mOsAJUahNrzjaUiQb90nqIBXFbmWSxgmxPC0zCP//CjhW9p7KPu1kPJb0YEkZ9lPXgXFGC/LkSXxQnp7d4q33zpcc0EP89PzNRji1UXwiCVZxAz5VF470lbwuNUgp1kYyqiVNiIqtnlvz4IoUmw/R2OdzGL5X+NX5m2iVxYEf+2UKlRjMPVVOLhCzMIoi0hJDYEhsXJ4MY7eU/OQPKs69xtsS8VqBJ2ZGV7Pm1Adunqo/Nga7+yPT79S+HjmjY9aj+P2viUB3o1iG1JJmnNNavf4XmlJtoYCWVJZM29SV/msaWqscjjO9F2vPQvw2mVywCJraqT11X61xdKSzsH0JYuFV+stURkS6peQjW+Gebeo65C0zlQLBExtk+ffcgL2ZylfinCAsrUjcqpcRvKJMNiqLFNTwZHjCD4bMBVxCuevqJTeYbmW+LWLjYiEHJW1F3QVXG2HL5I6aun7bCPS9VQJOi5uBGFw4fhdcyaKYQ1AfvVmvebjSkEx4ogPvi2R7Zd4QmQ35Xr4XaECyKD1gXCv2PqYtkd4HsNXlfYw3wvt+2zsUbO/3ezV0J1FV1LZG38We8Q+vq2Onq9QHE/nusv7H5XvR8y+azvQ2O9TeNvO6QwW10npGxvUO5ESr+XEcq6xZzabzWePM+vXthDbuf84xbi8= +api: eJztWN9v2zYQ/leEe9oA1Uq7bg9CW8Btis3rthhptj3ExnCWTjEbmmTJk9vM0P8+nCQ7UuIkStZHPxkm7xfvO97x0wYYLwKk5/CXy2Aeg0OPK2LysrgBgyuCFJy3nyjjSQ4xKCMLyEuIIaeQeeVYWVksjfpcUqRyMqwKRT6yRcRLilr16N3vU4jB0+dSecohZV9SDCFb0goh3QBfOfEW2CtzAVUV7wIolGbyW++fS/JXMEwzWM9P0WtjlpM9QdsWRaCH/SrDdFGfq7B+hdws/fCiZ0urlfpGptCpZ2vyYc+p+lCeLSkSnCgw5dF4Oomu1e46v9gosNTi+jlU1VygDs6aQEGkXxwdyU/f0ckHiCGzhslwbZK+cuI0Smyb267sQkCBWOBx5Fk1ptky6geT8dNLqGIIpIt9wZtSa1xoasqyEhe0HiRo6CsPEiyUD8MkNQ4UXKMu2xw0oug9Cp6KaRUeztyKGHPkOse3jAdGLsPerb6VG9tVDJjnSiBGPe1IFqgDxcCKRVZ6zmlbIcdsoXqM4m8qcF85BnROqwxFPfkU7KGEDiX02BKq+8+hdg618+jaEe2X+0bcW8yj02aWfpNZV+8OwKaNdoDkdaIfekzsUc6JUelBfpQJjCYbEtSdUGyuTwZTbxeaVsd1BOH/j4BDZu/J7NM64yGld6ZU1H7c1zAmhskb1NFH8mvy0Xvvra8xGE8nxyfvtsSpryUdKRIWF0tXXdocUrioOUhN1lJIWkoTks2Oz1WyuFY5+ZCMfbnA0R/EX6y/TNYuC/LYr0NoyGDpNaSwZHYhTRJ0aoSikmlb5qPMrkCe/IGy0iu+qjXeEnrykJ7Pu1sfpXia+tgKXM8Ppz7QbT4yMYE8R7/+fRaxvSShIS2lGZe8tF79i12qtiTMqUmZMoWt7bcw9E45Gjt1y9ctieiXs7OpkKCZmZlj+8Voi3lNbF9htPRUvJ5BYh0ZdCoxjd6zbV5HcmVmEDH6C+LXM/hnodFczuBNdOLICLUqlKZXCb6BGLYsK4Xno6PRkTwYnA28wvrWtUfuIN2LfJfEzmCp4ga2TVsF51tiK+CmXV6/KwSI+ymQsKQY5jEsrbwLzmGzWWCgP72uKlluOKQAnqsg9yLfjcxLuurS9/q9ACmAkNI7hFvGPkS0R9KHKOx4+RDhLfG+X/YGBLv5fi+H3gtU47XP0a99z+WPV03b2ZfqOwP57rT94vJ9NPATzd7wtjfUXHXjugHFJIdqXsXbGyiBNvvjLCPXzWbX+LzTs35+fwZV9R/OMW4v sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-vpn-routes.ParamsDetails.json b/docs/documents/network/list-vpn-routes.ParamsDetails.json new file mode 100644 index 0000000..a66b038 --- /dev/null +++ b/docs/documents/network/list-vpn-routes.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpnTunnelId","in":"path","description":"unique identifier of the vpnTunnel containing the Route","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-routes.RequestSchema.json b/docs/documents/network/list-vpn-routes.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-vpn-routes.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-routes.StatusCodes.json b/docs/documents/network/list-vpn-routes.StatusCodes.json new file mode 100644 index 0000000..0c9afb1 --- /dev/null +++ b/docs/documents/network/list-vpn-routes.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}},"additionalProperties":false,"title":"VpnRouteListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}},"additionalProperties":false,"title":"VpnRouteListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}},"additionalProperties":false,"title":"VpnRouteListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-routes.api.mdx b/docs/documents/network/list-vpn-routes.api.mdx index e628f24..d3aaf0d 100644 --- a/docs/documents/network/list-vpn-routes.api.mdx +++ b/docs/documents/network/list-vpn-routes.api.mdx @@ -5,7 +5,7 @@ description: "List VpnRoutes" sidebar_label: "List VpnRoutes" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cIPm1AamVdtwejK+A2xZZ1a4zU7R5iY6AlKmZDkyp5cpcJ+t93py9LsRyrXtEnP1km74t3Px31u4yDuPV8fMM/JObapiD54ownwom1BOloJ+MG//AxT5z9KEO4jPgZV4YWBKzwOZI+dCoBZWkxNepTKpmKpAEVK+mYjRmsJKvU2as/p6jk5KdUORnxMbhUnnEfruRa8HHG4T4hbx6cMrc8z8+aADaJmaXGSH1sCI0BFloDQhn0UGyUJz8uqlhpzFQdEDp293yYprcOjtGrMkmHPULbxrGXh/0qA/K2OFds3VpAufTj044trdbqK5kSiXqyQcT1nKpb3RnWi+okPciITaaXbKu27/xkIxapJtc/oNsFldon1njpSfrp+Tn9dB1dvUE9AgrCqDAp/4Eg0YJiy3Zd2SUVBVWwPIl0oErTYEHog8n4+RnPMXyp477gTaq1WGpZwjInF3IzSNBgzIMEY+X8MEktBgpuhE6rHJSiwjlB9VQg1/5w5rADiUhAkeMd4x4EpL53q2ulW9Nps9fqCfXb/8ASmhJRpEhT6GnLaCy0x+YACki26ZzXFaIuwCLEvlT7D+WhawENJIlWoSAbwUdvT7g74e6b4K7odCfAnQD3bQBHJp713cAvRcSuy6v+q1zFxe6AglYhD5DcVufQt06PcoR1V3qQH2XQkwmHBLW3Htn2ZAQP1FhfFBH4/3/ZnDL7SGaPa6enlO5NKan91NcwLvFADi2xd9IhK2CvnbOuqAHyhIurVzWv62pRR2J1e/IYJDbklUUSyG8LolSQzDEPKt7lg6yhwjktbpBpOh9MXLoUo7cSPlt3FzRcE8VbxDUPNi1HvgizZNmpw+zyFUDix0GAdGgkyGCobRqNQrvmxFq8DFOn4L7QeCmFw+qNbxbtrXcEsBJDtcD2YkrUG7lLqS6xFTtgv/81Y2DvJDGpipVNUsyEU/+KNttcSYEHLtKqTGwL+1WpOjkYTRK142tHgv02m02Jx83N3FzYz0ZbbPt0Yz0XbOVk/MucBwgMg8EHptR7Umd9RK/VnDMQDmuFkn8vtTB3c/6CXaEKsUPk5/J5IF5gJDVRRBI4Oh+d05dIYj2sRfFmVkfeQUMn/iaVrSsIzRTFyyqk3NQMnbTH7bFJAxZ87iSCgmsAQ1rdWccWM1jolaXvkhueZUvh5Xun85yWS7ZMuIiUp1csaq7gO6x5a1BRfK/gAif6vUe4mk0MEe2MI4YoNBOIIcL1iOFx2Qc1aj4VHp0W9Fay9NqdRmx9L+iPU2UH60v13kC+u65mS9+zgSOy3vDqF9nct+N6UArEzJdlaUhwB4dnR8TbRnm+QPGqtVBqS4lJGMqkXf+2+UWrVf/6eoYd6T8yXTvI +api: eJztWEuP2zYQ/ivCnBpAsTZp2oOQBHCyQeum7RobNz2sjYKWRjazNKklR05cQ/+9GL0srb1rxQ1y8smwOC/OfBzymy2QWDgIb+Bjqq9NRggzH1JhxQoJLa9sQYsVQgipNZ8wolEMPkjNHwQtwYcYXWRlStLwx0zLuww9GaMmmUi0nkk8WqJXqXtv/xiDDxbvMmkxhpBshj64aIkrAeEWaJOyN0dW6gXkud8EsE71JNMa1akhNAa8yGgSUku9KBbKnZ8WVSIVoa0DusvQbqCfpjOWTtGrMsmbPUHbJInD436lJlwU+0qMXQkqP/34vGNLyZX8RqZEKp+u0boDu+pWd7JEj+uEjjD2huORt1N7aP9sIxGZYtfPIM9nXGqXGu3QsfTziwv+6Tq6eg8+MFBQU2ESv1CQKsGxbfddmTkXBXwuT4qWZGmaDAl1NBk/v4DcB4cqORS8zpQSc4UlLHN2geteghq/UC/BRFrXT1KJnoJrobIqB6WosFZwPSXhyh3P3ApJxIKKHO8ZdyQocweXula6NR03a62eUJ/+e5ZyH0QcS9YUatwymgjl0AeSxLJN57yuEHVJBvKv1v5dOupa8EGkqZKRYBvBJ2fOuDvj7rvgruh0Z8CdAfd9AMcmXhy6gd+I2Lsur/pvchUXqz0KWoXcQ3JXnWNvnQPKMZKQqpcfqR0JHfUJ6sF6bHc7Y3jMFa4uiwjc/79szpl9JLOntdNzSh9MKav9dKhhjDSh1UJ5H9Cu0XrvrDW2qMFwPLq8elvzuq4WdySvbk8OfG7ISxNDCIuCKBUkM4Sg4l0u2DZUOOePaxmjdcHQZnMx+BPps7G3QcM1XbBtEdc8WLccuSLMkmVnVkEIS6LUhUEgUjkQbDBSJosHkVkBsxaHUWYlbQqNNygsWghvZu2lDwywEkO1wO5iSuV73KdUI+3Qkvfb3xOPzC0yk6pY2TCjpbHyX9Fmm0sUMZZplToxhf2qVJ0cDIap3PO1J+H9OpmMmcdN9VRfms9aGREXN9ZL4S0tJq+mEJgUtUhloEu9p3XWB3yspuCRsAukV1P4Z66Evp3Ca+8qRc3sMJEKXwbiNfhQE8UQng0uBhf8EkmNo5UoTma15T00dOJvUtm6gnK/LN62QspNzdBZO2yPTRqwgN9NBAfXAIa1urOOHWZmPiwNv0tuYLudC4d/WZXn/Llky4yLWDo+YnFzBd/ipj2oKN4rEAIw/X5AuJpN9BHtjCP6KDQTiD7C9Yjhcdl7NWqeCo9OCw5WsvTanUbsfM/4j5VlBzuU6gcD+eG6mi098XqOyA6GVx9kvWnHda8Uo/grs9QnuKPDsxPibaM8n+V+3Vo4taXEMIowbde/bX7WatW/vJtAnv8HMl07yA== sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/list-vpn-tunnels.ParamsDetails.json b/docs/documents/network/list-vpn-tunnels.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/network/list-vpn-tunnels.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-tunnels.RequestSchema.json b/docs/documents/network/list-vpn-tunnels.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/network/list-vpn-tunnels.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-tunnels.StatusCodes.json b/docs/documents/network/list-vpn-tunnels.StatusCodes.json new file mode 100644 index 0000000..78b96f6 --- /dev/null +++ b/docs/documents/network/list-vpn-tunnels.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}},"additionalProperties":false,"title":"VpnTunnelListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}},"additionalProperties":false,"title":"VpnTunnelListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}},"additionalProperties":false,"title":"VpnTunnelListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/list-vpn-tunnels.api.mdx b/docs/documents/network/list-vpn-tunnels.api.mdx index 266f8a7..5f93e49 100644 --- a/docs/documents/network/list-vpn-tunnels.api.mdx +++ b/docs/documents/network/list-vpn-tunnels.api.mdx @@ -5,7 +5,7 @@ description: "List VpnTunnels" sidebar_label: "List VpnTunnels" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPm1AaqVdtwejK+A2RZd1a4LU7R5io6ClU8yGJlXy5C4T/L/vTpJtKZYTNemjn2yT9/s7Hvm5kKiughxeyk+ZHefWgpHTI5kprxaA4HmrkJZ+yKHMvPsCMZ4m8khqywsK5/Q9gRB7naF2vJhb/TUHoROwqFMNXrhU4BxErS5e/31OSh6+5tpDIofocziSIZ7DQslhIfEmY28BvbZXcrU62gSQakMxrb2TF38j+2kG5/EhenXMnNkDtF2aBrjfr7YIV2VeqfMLhdXSL89atoxe6B9kSmX6yZKw7ciqDeWYUGOcICAkYnR+KrZq+/JnG6nKDbt+Sm6nDHXInA0QWPrZ8TF/tB2dvSO92FHwFkuT8C9GmVEcW7Hrys0YFFIheDLwqCvT6FCZe4vx23O5ovDBpF3B29wYNTNQteWKXcCyl6ClmHsJptqHfpJG9RRcKpPXNahElfeK8dQIi3B/5eisq0RhWeMd4wEV5qFzq23l1jbtqyTRDLEy5w3JVJlAJx41sux28lzUfXKCjhrnu9X/0gHbJshClhkdKzYSfQnu0E6HdnpMO5Vz6dBHhz56VB+xjedd1+ArlYiL6r79IfdhudsDpzrmHpLbot/34OhQTghObXr50ZY82bhPUHsBKbaZSVonjcVJGUF4/NVwqOwdlX3YlDyUdG9JWe3XroFxSgl5siQ+gKenuXjjvfMlBvRYPzl7vSZXbS2eSGIznwJFSYN27oiKyauSrpS8biijmv2EqNhQvxUvLonc+RCNfD5Tg/eA35y/jpZNg6GMp2KPuacyyjliFoZRRORjoFgxNi5PBrFbSOYIAeLca7wpNV6B8gTT8HLa3PrAnVQ1y1pge7Fk+h3sEphTmrkexZ//jAW6a2DeUnOgUU4Ze/2fanK7OShKrKyftqkr7deYtHIdjDK942tHQvwxHp8za5rYiT1x36xxNN+ZCb9QYu4h/X0iI+oAS8FHttJ7sq7ugM/PRApUnjAhyc8zo+z1RL4UZ6TCXIzYMLyI1EuKZE3LiHINjgfH/JLIXMCFKo9gnfIu7K0ENrVsXDZkp0SvqFvick2IWXvY/D9g0xX0vVUJjm7rk+CcO349XMqimKkAH71ZrXi5YqCMfqIDn5hkc6VeE7IN8l++KmhBMqXdI1zz/T6iLYrfR2HD6vsIr2n73bK3gNjc/Hcy8E64Kq9thr/1PeUfXlcDqavUewP56aL+v+Zn0fMPns7w1sfV3jTjugUFNdRqSsL1ceRAq/1RHEPWrGbT+LQxxt6+GdMp/h/GH4qg +api: eJztWN9v2zYQ/leEe1oB1Uq7bg9CW8Btis3rthip1z3ExnCWTjEbmlTIk9vM0P8+nCTbUuwkWtJHPxkm7xfvO97x0xoYLz3EF/A5N5PCGNIwCyFHh0ticrK1BoNLghhyZ79QwqMUQlBGFpAXEEJKPnEqZ2VlsTDquqBApWRYZYpcYLOAFxQ06sH7P8YQgqPrQjlKIWZXUAg+WdASIV4D3+TizbNT5hLKMtwGkCnN5DberwtyN9BP01vHj9FrYpaTPULbZpmnh/0qw3RZnSuzbolcL/34smNLq6X6TqYwV89X5PyBU3WhnCwoEJzIM6XBcDwKdmp3nV9sZFhocf0CynImUPvcGk9epF+enMhP19HZRwghsYbJcGWSvnGUa5TY1vuu7FxAgVDgycmxqk2zZdQPJuPnV1CG4Elnh4I3hdY411SXZSkuaNVL0NA37iWYKef7SWrsKbhCXTQ5qEXRORQ8FdPSP5y5JTGmyFWO94x7Ri78wa2ulVvbZQiYpkogRj1uSWaoPYXAikV213nOmzo5ZQvl/1f/XXnumggB81yrBMVI9MXbYzkdy+kp5VT1pWMdHevoSXUkNl4dGoPvMA3O63n7XeZhtdsDpybmHpK7pD/04DignBKj0r38KOMZTdInqDsBWe9OBmNn55qWp1UE/umj4ZjZezL7uC55TOmdKRW1nw41jJFhcgZ18IncilzwwTnrKgyG49Hp2fsNuepqSUcKtv3JQyiNdmFTiOGyoisVr4shatiPj9Zb6lfK4kql5Hw0dMUcB38Sf7XuKlq1Dfoqnpo9Fk5DDAvm3MdRhLkaoCgm2hbpILFLEI7gKSmc4ptK4x2hIwfxxay99UkqqS6WjcBusOTqI+0TmJHx5Dj47e9JwPaKhLc0HGhY8MI69S+2ud2CMKU6f8pktrLfYNI562CYqz1fexLBr5PJWFjT1EzNqf1qtMW0YsKvMVg4yt5MIbI5GcxVZGq955vsDuT+TCFgdJfEb6bwz1yjuZrC2+AsJyNcLFOaXkf4FkLY0LIYXgxOBifyksit5yVWV7A58j7snQNsc9kaNmVYo7duSuJiQ4hFO25/D9hWBYTdTEh0O5+zEBZWXg8XsF7P0dNfTpelLNcMVNBPlZcbk25H6hXdtMl/9aqAGEAo7R3CDd/vI9qh+H0Utqy+j/CGtt8vewuI7eS/l4EfhKv22mX4O98z+eNU3ZAOpfrOQH44b77XPAt6fuA5GN7mupqbdly3oBilUM7KcHMdJdB6f5gklLez2TY+a7WxXz5MoCz/A8YfiqA= sidebar_class_name: "get api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/sidebar.ts b/docs/documents/network/sidebar.ts index c9c26ec..bcfe1be 100644 --- a/docs/documents/network/sidebar.ts +++ b/docs/documents/network/sidebar.ts @@ -1,362 +1,360 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/network/aruba-network-api" + type: "doc", + id: "documents/network/aruba-network-api", }, { - "type": "category", - "label": "ElasticIp", - "items": [ + type: "category", + label: "ElasticIp", + items: [ { - "type": "doc", - "id": "documents/network/create-elastic-ip", - "label": "Create ElasticIp", - "className": "api-method post" + type: "doc", + id: "documents/network/create-elastic-ip", + label: "Create ElasticIp", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-elastic-ip", - "label": "Get ElasticIp", - "className": "api-method get" + type: "doc", + id: "documents/network/list-elastic-ip", + label: "List ElasticIp", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/update-elastic-ip", - "label": "Update ElasticIp", - "className": "api-method put" + type: "doc", + id: "documents/network/update-elastic-ip", + label: "Update ElasticIp", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/delete-elastic-ip", - "label": "Delete ElasticIp", - "className": "api-method delete" + type: "doc", + id: "documents/network/get-elastic-ip", + label: "Get ElasticIp", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/list-elastic-ip", - "label": "List ElasticIp", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-elastic-ip", + label: "Delete ElasticIp", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "LoadBalancer", - "items": [ - { - "type": "doc", - "id": "documents/network/get-load-balancer", - "label": "Get LoadBalancer", - "className": "api-method get" - }, - { - "type": "doc", - "id": "documents/network/list-load-balancers", - "label": "List LoadBalancers", - "className": "api-method get" - } - ] + type: "category", + label: "LoadBalancer", + items: [ + { + type: "doc", + id: "documents/network/list-load-balancers", + label: "List LoadBalancers", + className: "api-method get", + }, + { + type: "doc", + id: "documents/network/get-load-balancer", + label: "Get LoadBalancer", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "SecurityGroup", - "items": [ + type: "category", + label: "SecurityGroup", + items: [ { - "type": "doc", - "id": "documents/network/create-security-group", - "label": "Create SecurityGroup", - "className": "api-method post" + type: "doc", + id: "documents/network/list-security-groups", + label: "List SecurityGroups", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/get-security-group", - "label": "Get SecurityGroup", - "className": "api-method get" + type: "doc", + id: "documents/network/create-security-group", + label: "Create SecurityGroup", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/update-security-group", - "label": "Update SecurityGroup", - "className": "api-method put" + type: "doc", + id: "documents/network/get-security-group", + label: "Get SecurityGroup", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/delete-security-group", - "label": "Delete SecurityGroup", - "className": "api-method delete" + type: "doc", + id: "documents/network/update-security-group", + label: "Update SecurityGroup", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/list-security-groups", - "label": "List SecurityGroups", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-security-group", + label: "Delete SecurityGroup", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "SecurityRule", - "items": [ + type: "category", + label: "SecurityRule", + items: [ { - "type": "doc", - "id": "documents/network/create-security-rule", - "label": "Create Security Rule", - "className": "api-method post" + type: "doc", + id: "documents/network/list-security-rules", + label: "List Security Rules", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/get-security-rule", - "label": "Get Security Rule", - "className": "api-method get" + type: "doc", + id: "documents/network/create-security-rule", + label: "Create Security Rule", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/update-security-rule", - "label": "Update Security Rule", - "className": "api-method put" + type: "doc", + id: "documents/network/get-security-rule", + label: "Get Security Rule", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/delete-security-rule", - "label": "Delete Security Rule", - "className": "api-method delete" + type: "doc", + id: "documents/network/update-security-rule", + label: "Update Security Rule", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/list-security-rules", - "label": "List Security Rules", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-security-rule", + label: "Delete Security Rule", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "Subnet", - "items": [ + type: "category", + label: "Subnet", + items: [ { - "type": "doc", - "id": "documents/network/create-subnet", - "label": "Create Subnet", - "className": "api-method post" + type: "doc", + id: "documents/network/create-subnet", + label: "Create Subnet", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-subnet", - "label": "Get Subnet", - "className": "api-method get" + type: "doc", + id: "documents/network/list-subnets", + label: "List Subnets", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/update-subnet", - "label": "Update Subnet", - "className": "api-method put" + type: "doc", + id: "documents/network/update-subnet", + label: "Update Subnet", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/delete-subnet", - "label": "Delete Subnet", - "className": "api-method delete" + type: "doc", + id: "documents/network/get-subnet", + label: "Get Subnet", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/list-subnets", - "label": "List Subnets", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-subnet", + label: "Delete Subnet", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "Vpc", - "items": [ + type: "category", + label: "Vpc", + items: [ { - "type": "doc", - "id": "documents/network/create-vpc", - "label": "Create Vpc", - "className": "api-method post" + type: "doc", + id: "documents/network/create-vpc", + label: "Create Vpc", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-vpc", - "label": "Get Vpc", - "className": "api-method get" + type: "doc", + id: "documents/network/list-vpc", + label: "List Vpc", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/update-vpc", - "label": "Update Vpc", - "className": "api-method put" + type: "doc", + id: "documents/network/update-vpc", + label: "Update Vpc", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/delete-vpc", - "label": "Delete Vpc", - "className": "api-method delete" + type: "doc", + id: "documents/network/get-vpc", + label: "Get Vpc", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/list-vpc", - "label": "List Vpc", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-vpc", + label: "Delete Vpc", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "VpcPeering", - "items": [ + type: "category", + label: "VpcPeering", + items: [ { - "type": "doc", - "id": "documents/network/create-vpc-peering", - "label": "Create VpcPeering", - "className": "api-method post" + type: "doc", + id: "documents/network/create-vpc-peering", + label: "Create VpcPeering", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-vpc-peering", - "label": "Get VpcPeering", - "className": "api-method get" + type: "doc", + id: "documents/network/list-vpc-peerings", + label: "List VpcPeerings", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/update-vpc-peering", - "label": "Update VpcPeering", - "className": "api-method put" + type: "doc", + id: "documents/network/update-vpc-peering", + label: "Update VpcPeering", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/delete-vpc-peering", - "label": "Delete VpcPeering", - "className": "api-method delete" + type: "doc", + id: "documents/network/get-vpc-peering", + label: "Get VpcPeering", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/list-vpc-peerings", - "label": "List VpcPeerings", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-vpc-peering", + label: "Delete VpcPeering", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "VpcPeeringRoute", - "items": [ + type: "category", + label: "VpcPeeringRoute", + items: [ { - "type": "doc", - "id": "documents/network/create-vpc-peering-route", - "label": "Create VpcPeeringRoute", - "className": "api-method post" + type: "doc", + id: "documents/network/list-vpc-peering-route", + label: "List VpcPeeringRoute", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/get-vpc-peering-route", - "label": "Get VpcPeeringRoute", - "className": "api-method get" + type: "doc", + id: "documents/network/create-vpc-peering-route", + label: "Create VpcPeeringRoute", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/update-vpc-peering-route", - "label": "Update VpcPeeringRoute", - "className": "api-method put" + type: "doc", + id: "documents/network/get-vpc-peering-route", + label: "Get VpcPeeringRoute", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/delete-vpc-peering-route", - "label": "Delete VpcPeeringRoute", - "className": "api-method delete" + type: "doc", + id: "documents/network/update-vpc-peering-route", + label: "Update VpcPeeringRoute", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/list-vpc-peering-route", - "label": "List VpcPeeringRoute", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-vpc-peering-route", + label: "Delete VpcPeeringRoute", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "VpnRoute", - "items": [ + type: "category", + label: "VpnRoute", + items: [ { - "type": "doc", - "id": "documents/network/create-vpn-route", - "label": "Create VpnRoute", - "className": "api-method post" + type: "doc", + id: "documents/network/create-vpn-route", + label: "Create VpnRoute", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-vpn-route", - "label": "Get VpnRoute", - "className": "api-method get" + type: "doc", + id: "documents/network/list-vpn-routes", + label: "List VpnRoutes", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/update-vpn-route", - "label": "Update VpnRoute", - "className": "api-method put" + type: "doc", + id: "documents/network/update-vpn-route", + label: "Update VpnRoute", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/delete-vpn-route", - "label": "Delete VpnRoute", - "className": "api-method delete" + type: "doc", + id: "documents/network/get-vpn-route", + label: "Get VpnRoute", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/list-vpn-routes", - "label": "List VpnRoutes", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/network/delete-vpn-route", + label: "Delete VpnRoute", + className: "api-method delete", + }, + ], }, { - "type": "category", - "label": "VpnTunnel", - "items": [ + type: "category", + label: "VpnTunnel", + items: [ { - "type": "doc", - "id": "documents/network/create-vpn-tunnel", - "label": "Create VpnTunnel", - "className": "api-method post" + type: "doc", + id: "documents/network/create-vpn-tunnel", + label: "Create VpnTunnel", + className: "api-method post", }, { - "type": "doc", - "id": "documents/network/get-vpn-tunnel", - "label": "Get VpnTunnel", - "className": "api-method get" + type: "doc", + id: "documents/network/list-vpn-tunnels", + label: "List VpnTunnels", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/get-vpn-tunnel-connection-state", - "label": "Get VpnTunnel Connection State", - "className": "api-method get" + type: "doc", + id: "documents/network/update-vpn-tunnel", + label: "Update VpnTunnel", + className: "api-method put", }, { - "type": "doc", - "id": "documents/network/update-vpn-tunnel", - "label": "Update VpnTunnel", - "className": "api-method put" + type: "doc", + id: "documents/network/get-vpn-tunnel", + label: "Get VpnTunnel", + className: "api-method get", }, { - "type": "doc", - "id": "documents/network/delete-vpn-tunnel", - "label": "Delete VpnTunnel", - "className": "api-method delete" + type: "doc", + id: "documents/network/delete-vpn-tunnel", + label: "Delete VpnTunnel", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/network/list-vpn-tunnels", - "label": "List VpnTunnels", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/network/get-vpn-tunnel-connection-state", + label: "Get VpnTunnel Connection State", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/network/update-elastic-ip.ParamsDetails.json b/docs/documents/network/update-elastic-ip.ParamsDetails.json new file mode 100644 index 0000000..5e14f95 --- /dev/null +++ b/docs/documents/network/update-elastic-ip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the elastic ip to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-elastic-ip.RequestSchema.json b/docs/documents/network/update-elastic-ip.RequestSchema.json new file mode 100644 index 0000000..a4447af --- /dev/null +++ b/docs/documents/network/update-elastic-ip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the elastic ip to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanDto"}],"description":"Billing plan"}},"additionalProperties":false,"description":"Properties of the elastic ip","title":"ElasticIpPropertiesDto"}],"description":"Properties of the elastic ip","nullable":true}},"additionalProperties":false,"title":"ElasticIpDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-elastic-ip.StatusCodes.json b/docs/documents/network/update-elastic-ip.StatusCodes.json new file mode 100644 index 0000000..b55b8e6 --- /dev/null +++ b/docs/documents/network/update-elastic-ip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-elastic-ip.api.mdx b/docs/documents/network/update-elastic-ip.api.mdx index 1e99773..05ac0e2 100644 --- a/docs/documents/network/update-elastic-ip.api.mdx +++ b/docs/documents/network/update-elastic-ip.api.mdx @@ -5,7 +5,7 @@ description: "Update ElasticIp" sidebar_label: "Update ElasticIp" hide_title: true hide_table_of_contents: true -api: eJztWd9z4jYQ/lc06kt/AM5d716Y681Akmvp3SVMjrQPgekIS4AutuWTZHIpw//eXcnGBpyEMO1D58wDA/Ku9ttvV2vt7IpaNje0e0PPI2asDAcpnbRoyjSLhRUaH61oAn9ol6ZafRahHXDaojLBBWYX8JsLE2qZWqlwMUvkl0wQyUVi5UwKTdSM2IUguTo5/TgEJS2+ZFILTrtWZ6JFTbgQMaPdFbX3KVozVstkTtfr1gaAPNKy8L4RmRKrSJZyZsWREFgq20vgBS3mWMCmvt8DMwK7aEAYKzjpDQekVHvIEO4xY1lkYekFmJ14jLBFX/F7lN+28YhvoUos0IA6LE0jGTLUCT4bVFxVELAoupy5KOdY1BSjBFtAvFKhrRQG5SAdGOxdRf2ApGeqzrcq9guQKuKjhVGZDgVdt2ikPNSn7SxZlB1g6A8UKy3NYZXIhNwtZLjYsk7uZBSRqSAOguCdsR4nvSWTEZtGhaohzEImCwPkdlGgTQaj/q/tvtBzFqtxMk7eKU1ipSERk5nSsfOmRYDw8NbZe8PIQovZL2MacBWaoGA2+K7wvc0S3saldghmhB5TYpmeCws6f00jltyO6VvQzWJ47DTeBOxtBxOVMs4lrrBoWGFrxiIjdpk5hRxhElyqACVsqjLrcF55roA5VkaoRa20EdL9IQd7ZhXGzdeRTTCY1gwPhbQiNjVHahfLB2msCxJsQwDNdl60aJJFLgz+rD7T0Y85w3v5VnpTiOTebGfaoWdkCgkE3g0hQseoCS0Vr0voZzpf+NQv4Ti3Jru85AIkRcDP5LQU2K+yFV43r5VSvh7LE/sdScHGvDeKelZ8tU0dbOpgUwebOvgt18HqtfDHn5qC2BTEpiA2BfGbLYioCeFP4SR78l+enOx33JfvMQle1T3qMw4nw3Xr2/23u3ACk3KnwD4ee//0yZBvPDpA0kBJyKpnTgLGudAg64+5X/r5ZZ0yh3Mgo4PsQOWwLAkPAfVguFalZ5gBoBGfOQSG7r689l9dDbPHM/tAe9RQeiyla1cwXu0XjAtlyTuVJbwpF025+L8y25SL/6BcvK67Xwzwwg87kU9CL4Um51or7WLQGw7OLk+LKca21rUbCJByutPChm2B10maZi40OErp0iAfz5hgtZnzrHFxKbnQJujpbMo6F8LeKX0biGI/EJd8jTMNh8rPizINZNKFtanpBgFLZYehdhipjHdCFbtbnhFhpqW9dxp9wTQEq3szqT76hPnkU6YQKPuIVL4X+2OXAVzftCW//zkiVt0KnLbkk5teBm5r+bdvIvPZzUIw8M6xiEl8VU5bzr+yOPXJV+1w8802Ma92pXnfWWlliuFavjLZayB2GoOdC385gHKZN1PO/zxztgLS6aVyj4s9CfLbaDTEWRR2o2fqLokUXFp3Wk+AlwC5QeL12kUKdJCg2oaTXIIKTrhmMhLYcAKSYtjVpS86J50T1zopY2PvZ85iTXJuebAJduWdCBu59FrliXtTjCUNaHerI8pN7sLvLSrgf5m/qCU5Dj0XgA/3W62mzIhrHa3XuOzHe5ikXBo83ry+8VmVL/FHh3+1Lt1CKu8OF4t0cqdlybT0teVZQL6/ymecP5AD57K18Iozl9xXcRWwS9JxUPrvgntgvHkESgjyGg9gfuSRR//g1ANqj1C9VNy7M6BzXqMXhiK1Fdkqjkmlwg6vRyA1zYe3seIorNkdDp/h26FTjhlXDdzaisKxmmdsjrLeMH7+AQbtHj4= +api: eJztWdty2zYQ/RUM+tILJTpp+qJJMiPbSavmYo0jtw+Wp7MiViJiEGAA0I6r0b93liBF6uLE1rQPnVCP0C737NnFkjtnyT0sHB9c8lcKnJfJKOdXEc/BQoYeLf215Boy5AOeW/MREz8SPOJS0wH4lEdcoEuszL00dFho+alAJgVqL+cSLTNz5lNklTs7eTfmEbf4qZAWBR94W2DEXZJiBnyw5P4up2jOW6kXfLWK1gDkgZEx5MZkzrxhRS7A44EQIJe9G7SOIlZYPhVo73bATFJkFACdR8GG4xFr3O4LRM+YQ6E8H/AnfLW6ChjR+WMj7sh+M8YXckuM9qg9+UCeK5kA+cQfHTkuWwhAqbN5WeUKi5lRlXhE5c7ReomO7DL0IMC3Ud9jGZjal1sb+3vIsK6PRWcKmyBfRVyZAPXrcW5AFQ8I9AeZNZEW0mgmNbtNZZJuRGe3Uik2Q1ZCQNGf2qke3oBUMFO1q2PgWW7RofYDMuix0eT4194x2gVkZqqn+rWxLDMWmdRzY7Mym4glKSbXZbznwFKL8xdTHguTuLhmNv6uzr0HWvToqJeg9minnHmwC/QvpvyvmQJ9PeUvhUmKDLUvPZ7H8LJPjcpBCEknoMYttuagHG4zc2K0B6ldGyiDmSl8ifM8cGXmDJoKRdxLr4jutxXYU2+obmGOrIsB1gJdCukxc3uu1DaWt9L5skiwcGxu7GZfRFwXqixDuKuPTPRdxfBOvzXZ1CZVNpud9tA7MpNKSb0YK9CHuKGVRuxr6EcmX+d03MAp07ra5qUyYDkBfiSnjcHulG3xun6tNPb7sXzleQdSsA4fgpKfx8++m4PdHOzmYDcHv+U52P4s/PGnbiB2A7EbiN1A/GYHInladLnRLpD/9Ohod+M+e0NN8GzfX8cg2HnY1jf37/KDM1cgtwbsl2sf/v1qydcZPcDSefBF+85J7XGBlkc8XPNw9PPTfc4CPUj1oDhSOw86eQioe8u1bDKjDpgpzE5LBI5vv7x2X10ds4cze8961FF6KKWrcmA82x0Y741nr02hRTcuunHxf2W2Gxf/wbj4Zd/3xYg++DUo9gHtDVr2ylpjyxoMx6PTs5Naxdj0uigFAdaoOxEtbCl9TvK8KEtDUsqAx5U84+LlWudZ0eGNFGhdPLTFDPrv0d8aex1j/TwXL6VYkaZRogp6UWEVH/DU+9wN4hhy2QfyTpQpRD8xWfmV5zAprPR3pccxgkXLB5dX7b8+UD+FlqkNmj0il29wV3YZaYfWs9//nDBvrpHUlkq5GRY+NVb+HZbISrtJEQQGFqmJzxu15dVnyPLQfO0Nt3rYuubtrbTaO1urTC2uVSdXOwvE1mKw9cHfCFBl581NmX/VORsF6Q9zucPFjgX7bTIZkxZF2+ipudXKgNhePU2OGnIZ6+DXq1ugTwTtXTjZWY6aFK65VEgLJ494LXYN+JP+Uf+oXJ2M81nIs2JxT3NuZLAuduuduIpCey2rxr2sZUnHIz5oS5Tr3uXRJhU84k3/kpcUJHqmxnl63nI5A4cXVq1WdBzkPWpSIR1db7F/8Vk2L/Evin97U7rGux1xsW6n8rbcgJVhtjwKyPfnlcb5A3ugLrsXXn3n9F0bVw27IZ2E0n8X3D3y5gEopaA9L6qvPPEY/jgJgHoTcm8cd74ZKLngMUwSzH3Lto3jqjVhxxcTHvFZJd5mRpCxhVsSn+E2oDMlM+U0KM+WXIFeFLAg2xCYfv8ABu0ePg== sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-security-group.ParamsDetails.json b/docs/documents/network/update-security-group.ParamsDetails.json new file mode 100644 index 0000000..df6cbc6 --- /dev/null +++ b/docs/documents/network/update-security-group.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security group to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-security-group.RequestSchema.json b/docs/documents/network/update-security-group.RequestSchema.json new file mode 100644 index 0000000..1be32f9 --- /dev/null +++ b/docs/documents/network/update-security-group.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the security group to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a security group to update","title":"SecurityGroupPropertiesUpdateDto"}],"description":"Properties of a security group to update","nullable":true}},"additionalProperties":false,"title":"SecurityGroupUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a security group to update","title":"SecurityGroupPropertiesUpdateDto"}],"description":"Properties of a security group to update","nullable":true}},"additionalProperties":false,"title":"SecurityGroupUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the security group must be a default subnet.\r\nOnly one default security group for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a security group to update","title":"SecurityGroupPropertiesUpdateDto"}],"description":"Properties of a security group to update","nullable":true}},"additionalProperties":false,"title":"SecurityGroupUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-security-group.StatusCodes.json b/docs/documents/network/update-security-group.StatusCodes.json new file mode 100644 index 0000000..22d56e5 --- /dev/null +++ b/docs/documents/network/update-security-group.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc where the security group belongs","nullable":true}},"additionalProperties":false,"title":"SecurityGroupPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityGroupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-security-group.api.mdx b/docs/documents/network/update-security-group.api.mdx index d2b0bed..1ee7792 100644 --- a/docs/documents/network/update-security-group.api.mdx +++ b/docs/documents/network/update-security-group.api.mdx @@ -5,7 +5,7 @@ description: "Update SecurityGroup" sidebar_label: "Update SecurityGroup" hide_title: true hide_table_of_contents: true -api: eJztWktz2zYQ/isY9NKHJNppctGkmZHtJFXzsMeR24Pl6UAkJCEmAQYA5bga/ffuAqRIirIjK87BM8whYwO72G8XHxbEepfUspmh/Uv6iYeZFvb2rVZZSq86NGWaJdxyjdNLKuEX2qepVp95aIcR7VAhcYDZOfwccRNqkVqhcDCT4kvGiYi4tGIquCZqSuyck1ydHH84AyXNv2RC84j2rc54h5pwzhNG+0tqb1O0ZqwWckZXq84awCIN9zUOqkRIcjMX4dwNmNxnMkOnyZwZMuFcklBzZnm0J0KxJ7wNNFaRLI0Ax54wWCq6C9g9tJrjAbv6tgFoBLbRADfgMxmcDUmpdpchXGPKstjC0CGYvfIYYYkjFd2ifN3GN/wLlbQQDtRjaRqLkKFe8Nmg8rKCgsXx6dTxMcejJsgnWAKYlXJtBTcoB8RlsHYV+R2SPlrb/Kvi/whSxT5pblSmQ05XHRorD/XbdhYsznYw9DeKlZZmMFrnbGGd3Ig4BroSB4FHvbEey8GCiZhN4kLVEGbhzHEDwe2jQJcMR0dvu0dcz1iixnIs3yhNEqWBkHKqdOK86RAIeHjt7L1kZK759I8xDSIVmqCIbPBT4XuXyaiLQ90QzHA9psQyPeMWdP6dxExej+kr0M0SmHYaLwP2qodkpSyKBI6w+KwSrSmLDd+MzDFwhAlwqQKUsInKrMN57mMFkWPlDnWoFTbGcL/PwZ5Yhfvms956M5jWDA+GsDwxW47VJpb3wli3SbAMATR1XnSozGK3Df68PtDRD3mEG3wrvSlEcm/qTNv1jKxP8FpwolTMmWyQcigjPJIcYr81VSUZhAOoyEi+JjHZRHLrOHkq41uiJC/n6soYPpeZgaxRIowRELgHs6MU8BS4J9kUQazdeKX+hZNzkb36DisPpMBWUFUouILlX22bFNuk2CbFNim2STFPitUPxl9/a7Njmx3b7NhmxzY7YnbENYALKRxrv4HPDg6aj/PTd/UnuPvMTGMmNjLp7vlzw5MOnApmM7N1aiO3PkIMznOPXRQ2bojm/fBUvbrjMfA03cE1nm/j5hGLIE+7ytJjkNTPNm/UhsM55h0ky6jlogIwzrgGWX/p+KHfn21TjmA/RLyTHbjHLJPhLqDu3JBl6RkmJtBIThwC890HpY3sfZHd67C2Ib07pD5hHDYTxoVkmZ0rLf5zBfw2Y7QZ40lGts0YPyRjPG9mjI/Kkjcqk226aNPFk41smy5+QLp4se1FMsSCFaxEPnG94Jq81lpptweDs+HJ6XHxN/qNzxL3Lif1LosOvsfmKoL5NHPbgw0DfRrkbRImWK77LVY4uBAR1yYY6GzCeh+5vVH6OlikIQi6vohVYKoGYFhEK/wzvoPqGzkyDRGmc2tT0w8Clooew+XCWGVRL1SJq2EUyziNI8407GD/8qo69QlJ5nlUCJTFsVS8481OgyG897Qlf/0zIlZdc6wa5c0Kg/ybzVdG83aFOWfgrgstMvu8bDB4/ZUlqWdk7UXrF1sToVpqzYuplfpc0fmSj1w1nrnraldBIywjOi9z0tT2oTdIRcPjhgT5czQ6wyYLLKSeqBsZK3jhblRNAYSEEAbS63WLne9hGLbWSskpqGDrxlTEHGulgKTo4ujTw95B78BV/ZSxCZOVWN3By5oX622tXImwmCPSMufsZdEZZEC7X+0SWtMWfq6FAyECdVG+aOqpsxdnRIS9SHPAjTaWywkz/ELHqxUO+34WpGgkDJ74aHupb1ne6/d2u2x18xqIvNlNU5DJnZUF08KnmwcB+fk8b+r5hezYLrUVXnHi5G0VVwG73AjsDHpccHu0U+3hgafG46O/r9r7cJRA0xUmkDxlIRP8xLEH1R2heqnY+BBCB73GIAx5aiuyVRxXlSvj7GIEUpO83ypREQprdgOD+L9Dp1x0XDZzY0sKCWOWsRnKesP473+oWyJ+ +api: eJztWk1z2zYQ/SsY9NIPSnTS9KJJMiPbSarmwx7Hbg+Rp7MiVhJiEmAAUI6r0X/vLEBKlCg7suIcPEMdwQX27eLhkVjtnDuYWN77xD9iUhjpbt4YXeT8MuI5GMjQoaHHc64gQ97judGfMXEDwSMuFQ2Am/KIC7SJkbmTmgYLJb8UyKRA5eRYomF6zNwUWTmdHb0/5RE3+KWQBgXvOVNgxG0yxQx4b87dTU7erDNSTfhiES0BzPJkX+ezPGFSseupTKZ+wJYxswkFzaZg2QhRscQgOBR7IpR7wttA4zQrcgEO94QBuezM0FjyWuL5UqC5aQA6nyIjB2gdCtY/HbDVtNsc0RpjKFLHe/wJXywuA0a07lCLG7Jf9/GN+BKtHCpH8yDPU5kAzYs/W5o8r6GAND0Zez6WePSI+MQjImaOxkm0ZJehAwGujvwWy5CtbfHV8X+ADKt9Mmh1YRLki4inOkD9tp8ZpMUOjv4ms5WnidRqnbOVd3Yt05SNkHkIKLpDM1T9GcgURmk11TJwLDdoUbkeGXTY4PzwTecQzQQyPVRD9VoblmmDTKqxNpmPJmLJFJMr7+85sKnB8Yshj4VObFxlNv6pir0DSnRoqJOgcmiGnDkwE3QvhvzfUQrqashfCp0UGSrnZzyP4WWXyMpBCEkjkJ7WsjWG1OJmZo60ciCVrQNlMNKF8zjPQq70mMFqhyLupEsp3e9KsMdO074F1VtuBhgDdDCkw8xuOVabWN5J6/wmwcSysTbrvIi4KlK/DeG83jPQ92WGG3xbRVOZlNGsM23XM7I8wUvDkdYpgmqQcqAEHUm0TG6VqqywjqgIrFyT2WKk0HlOnqj0hmmFq2frkyl9XpktA5FJa+UoxXuzY2UQKHCH2FRJXHvjreZfeDuf2cvv8HJPCmwFVYdCKzj86lpRbEWxFcVWFFtRLEWx/sH462+tOrbq2Kpjq46tOpI60hoGba6VDRv49OCgeTk/ebt+BfefmXkKckNJd9fPjUgibh24wm59tKGtD5CDszJin4WNN0Tz/fBYo7rlMvA4w6E1nm3j5iEIdhYqSw9B0vC0+UZtBFxi3sFylbXSVCqHEzQ84uGlE4Z+f7ptskAHMt3Jj1TWgUp2AXXrhsxXkZEwjVLMjj0C+90Hpc3sXZnd67C2Kb09pUEwnjQF40JB4abayP98Ab9VjFYxHmVmW8X4IYrxrKkYH7Rjr3WhWrlo5eLRZraVix8gF39su5EMqGClIGUf0czQsFfGaOP3oH86OD45qv6j3/gs8fdytt5lEdF9bKoFtQoUfnuoYaDH47JNwsbzZb/FggZnUqCxcd8UI+h+QHetzVU8yxMbz31fxCK2dQc2nkuxoL/xPdTQyFGYlPf41Lnc9uIYctkFWi5JdSG6ic58DaNaxs84RDBoeO/TZf3RRyJZ4FFlsCqO5fItNjsNBsqiceyvf86Z01dIVaOyWaFffrOFymjZrjBFEBhSS8w+WzUYvPoKWR4YuXajDYstiVAvtZbF1Fp9rup8KUcuG9fcZbWrohGVEX2UJWnW9qHbz2Uj4oYF+/P8/JSaLKiQeqyvVapBbFZNdY4KchmrMK9T7XyX0rC1VspOclTUujGWKVKtlEe86uLo8Sfdg+6Br/pp6zJQtVzdwsu1KJbbWnslLqJApHnJ2U9VZ5DlEe/Vu4SWtOXRejoIYp54+6qpZ5299EQK6kWaauvIx3w+AosXJl0saDj0sxBFhbR04sX2Ut989V6/s9tla5hXeNPopqnI5M/KDIwMcnMvID+flU09v7Ad26W2wqtOnLqp46pgrzaCOoMeFtwe7VR7RBCo8fDo76r23h+lFFRvjSrJIiaEB0cBVOecpq8mNj6EKMAwo58kmLuabR3HZe2VcXpxziM+KvutMi3I2MA19YvBdUCnfXa8mvmxOU9BTQqYkG1wTL//AahbIn4= sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-security-rule.ParamsDetails.json b/docs/documents/network/update-security-rule.ParamsDetails.json new file mode 100644 index 0000000..7ea84cd --- /dev/null +++ b/docs/documents/network/update-security-rule.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the security group has been created","required":true,"schema":{"type":"string"}},{"name":"securityGroupId","in":"path","description":"unique identifier of the security group in which the security rule has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the security rule to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-security-rule.RequestSchema.json b/docs/documents/network/update-security-rule.RequestSchema.json new file mode 100644 index 0000000..bf154e4 --- /dev/null +++ b/docs/documents/network/update-security-rule.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the security rule to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"SecurityRuleUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"SecurityRuleUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"SecurityRuleUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-security-rule.StatusCodes.json b/docs/documents/network/update-security-rule.StatusCodes.json new file mode 100644 index 0000000..36472ba --- /dev/null +++ b/docs/documents/network/update-security-rule.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"direction":{"type":"string","description":"Direction of the rule.","nullable":true},"protocol":{"type":"string","description":"Protocol","nullable":true},"port":{"type":"string","description":"Port range","nullable":true},"target":{"allOf":[{"type":"object","properties":{"kind":{"allOf":[{"enum":["Ip","SecurityGroup"],"type":"string","title":"EndpointTypeDto"}],"description":"Type of the target.","nullable":true},"value":{"type":"string","description":"Value of the target.","nullable":true}},"additionalProperties":false,"description":"Endpoint definition","title":"TargetResponseDto"}],"description":"The target of the rule (source or destination according to the direction)","nullable":true}},"additionalProperties":false,"title":"SecurityRulePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"unremovable":{"type":"boolean"}},"additionalProperties":false,"title":"SecurityRuleInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SecurityRuleResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-security-rule.api.mdx b/docs/documents/network/update-security-rule.api.mdx index 40bc4e3..4011ac2 100644 --- a/docs/documents/network/update-security-rule.api.mdx +++ b/docs/documents/network/update-security-rule.api.mdx @@ -5,7 +5,7 @@ description: "Update Security Rule" sidebar_label: "Update Security Rule" hide_title: true hide_table_of_contents: true -api: eJztWt1v2zYQ/1cI7mUftpV23YvRFXCStvPaJkbibA+xMdASbbGRRJWknGaC//fdUZIlS3bqOsmAFspDkJB3vN99iuQxpYYtNO1f00vuJkqYu4sk4HTaoTFTLOSGK5xNaQT/0D6NlfzIXTP0aIeKCAeY8eFvj2tXidgIiYNJJD4lnAiPR0bMBVdEzonxOcnZycmHETAp/ikRinu0b1TCO1S7Pg8Z7afU3MUoTRslogVdrTprAMvYPVQ4sBIRkVtfuL4d0LnKZKFkEhOfaTLjPCKu4sxw70CExapvcdFDsdagbYetwFWPhVo8FKgFYyRJYg9gHIiCxaK7hJBDoTkcEKvuGnjGIBoFcA0qk8FoSEq2XYJwjTlLAgNDz0DsNMMISxxL7w7pN2Xcr54rIwPGQDYWx4FwGbI5HzXyphUQLAjO5zaHcjhyhjkAS0A2xFwZwTXSQbIxWLsKfAdlZqxt6lXhnwFV4SXFtUyUy+mqQwOZQf2ynCULkj0E/YVkpaQFjG4GbCGd3IoggGAlFgL3ehM1iQZLJgI2CwpWTZiBOsE1GLePBF0yHB+/7R5ztWChnEST6I1UJJQKwjGaSxVabToEDO7eWHkvGfEVn/8+oY4nXe0UlnV+KHTvssjr4lDXBTFcTSgxTC24AZ5/ZgGLbib0FfAmIUxbjpcOe9XDWKXM8wSOsGBUsdacBZrXLXMCMcIEqFQBSthMJsbivMhsBZZjpYc61AgToLnf52BPjUS/ZYV67QymFMO8EIaHektW1bG8F9pYJ8EyBNBsxkWHRklg3ZCl61cq+iG3cCPeSm0KEqvNl1YvmKofpSubeZZ9igsY/tm06damW5tu/0u6VT9yP//S5l2bd23ePX3e4RIgJYaAyYL1+dFRc6d6/m5zQ2o/jXHARC1H98/MmplgUw3xkeitU7WsrU/vWPIQ21zkllgb996N9/em7Y4Nz/elJi7xYluMHzMPKok9rj1GsGezzZrf0DSHvAdlac2cVADGBVdAm5XFbOjX59uYPfCTCPaSA5XWsMjdB9ROf6SlZhTGgSM8tQj0gxOrtex9lj0oiVuT7jZpVjCeNQvGVcQS40sl/rWXYm3FaCvGN2nZtmI8ScV40awYZ9KQNzKJ2nLRlotv1rJtuXiCcvHbthPJEK9UYCVyydWSK/JaKamsDwaj4en5SdH4qm1L7PmeFCcgYvutHTyn+dKD+Tix7sEmXJ86ecNUO+m687rCwaXwuNLOQCUz1jvj5laqG2cZu0BoO6QrZ6MNCcO1tmRJgABgXngr7J1ZVbKWb6LAA9Q3JtZ9x2Gx6DEU5wYy8XquDCl20IpVLMcxZwo83L+eVqcuMQizOCsIyuudWLzjzfbeEM6DypA//x4TI284dvXyDuEg39Nld3t5j9DnDMxhTY+Rf1F29V5/ZmGcRezGSThv1RaBUr0szK8DKzdMRYs8H7HXoXjVZfXIw2bDE71BLBo6NSjIH+PxCHuXeNl3Km+jQMIZt3azB0EagZGcKOPrFr7voaJb7/PIObBgR3QuAo73eYCkaI726bPeUe8IlYqlNiGLKtbYEZkbWqwdV/kowmI2VNI8aq+LVwIauPvVFwPrwIW/N8yBECF4kb5o8G/GL840G+sbIYwkwsOnCz6ohjDSdMY0v1LBaoXDWScZ49QTGsuCt/2aLy0//vf2mbda4gaiud7HLiLKJsySKZHVpK8C8uNF3k7/iez5umIrvCLtorsqrgJ26SvsyT8uuANeXxygQRY9j4/+Qe8xDtCjHutPqFHjZcMBcCHvVlOgygsxhnY2cZJh6o6RvWRsbP9Qv4xj4Lo8NhXaKo5p5UM5uhoD1Sx/uhFKD4kVu4VB/G3RSWsc++mxYymFIrlI2AJpM8H48x//iQTj +api: eJztWm1v2zYQ/isE92UvspVu3RejLeAkbZf1JUbqbB/qYDiLZ4uNRKok5TQT/N+Ho6RYtuw0dZMBLaSP1B353PHuRN3DgjuYWz54z99hlBvprs/yBPlFwDMwkKJDQ28LriBFPuCZ0R8wcieCB1wqGgAX84ALtJGRmZOaBnMlP+bIpEDl5EyiYXrGXIysUmdHb0Y84AY/5tKg4ANncgy4jWJMgQ8K7q4zWs06I9WcL5fBDYBFFu27+CKLmFTsKpZR7AdsZTKbG51nLAbLpoiKRQbBodgTYT3rS5p0X6wb0LbDNnmC94Vafi1QD8ZplmcCHO6JAjLZW6CxtGgF52OO5rqFZxwjowXQOhRsODphK7VdC9EcM8gTxwf8EV8uL0qMaN2hFtckv77G7eZFWjlUjtQgyxIZAamFHyzpFg0QkCSnM59DFRw9pRzgASVThsZJtCSXogMBrgl8h2TprG3mNeG/hRTrXTJodW4i5MuAJ7qE+vl1FpDkd1joLxJbrTSXWq0HbL06u5JJwqbIPAQU/YmZqOECZALTpFa1DBzLDFpUbkACPXYyPnzZO0Qzh1RP1ES90Ial2iCTaqZN6q0JWBRjdOnXewIsNjh7OuGh0JENa8+GP9S290CJHg31IlQOzYQzB2aO7umE/zNNQF1O+DOhozxF5bzGkxCe9SlWOQghaQSSUcNbM0gsbnrmSCsHUtkmUAZTnTuP86z0lZ4xWO1QwJ10Cbn7dQX22Gnat7JQ32wGGAOUF9Jhardk1SaW19I6v0kwt2ymzXpcBFzlid+GMl2/0NA3lYdb8bayphbx1nxu9lqp+VE695nn1S9oAoefXJduXbp16fa/pFvzI/fzL13edXnX5d3D5x1NYdBmWtkyWH89OGifVE9frR9I/acxS0Bu5OjdM3PDTQG3Dlxut77ayNrN1zum3Mc3Z5Unbpx768H7e7N2x4Hn+zKTpni8LcYPQbCz8nftPoK9fNuu+S1LK8h3kFx5sxKVyuEcDQ94WRbLod9+3aYs0IFM7rSOVNaBiu4Caud+FCvL+MjoaYLpsUdgvzqxOs/e5tm9krhz6W6XlgXjUbtgnCvIXayN/Nc3xbqK0VWMb9KzXcV4kIrxuF0x3mrHXuhcdeWiKxffrGe7cvEA5eL3bX8kJ9RSUZCwd2gWaNhzY7TxezAcnRyfHtXE18axxP/fs/oPiHm+NaD/tFgLot9yvz1Ewg14WBGmNixumNclDS6kQGPDocmn0H+L7kqby3CRRTYsPEO6DNdoSBsWG7TkSoAA2LCQYkncmTelpHxzk/ABj53L7CAMIZN9oOWiROeiH+mUE4NWz+I1DhEMGj54f9F89Y6CsIyzWmDV3snkK2zTeyfKonHsz7/HzOlLJFavYgiH1Zmu7O1VHGGMILB0PUX+2YrVe/4J0qyM2LU/4YqqrQOl2Sys2oGNDlNNkVcjvh1KrS5vRxU2azvRH2ayZVNLgv0xHo+Iu6Rm37G+UokGsdnZ0xkqyGSoSr1evfd9MnRrP4+dZqiIEZ3JBKmfxwNek6MD/qh/0D8gozJtXQqq4Y0dkblmxc3GNT6Ky6AMlaKK2vf1LQHLAz5o3hi4CVwerLuDIGaRl68J/vX4pTdtYn0thElECrq6EGvrCEZRTMHiuUmWSxoumWSKUyEtlQWxvc1XrD7+t/LMWz1xidctHruOKJ8wCzCyrElfBOTHs4pO/4nd8XbFVnh12qnrJq4a9mqviJO/X3B73L7Yw4Iyeu4f/Vfdx9jDjs1Yf0CLWjcb9oArBXWrg7oQU2iXL45KTL0xqa8UW8c/sq/UGEYRZq4h28Rx0fhQjs7HPODT6upGqgUJG7iiqydwVaLT3jn+0+PHCp6AmucwJ9lyYXr+A/+JBOM= sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-subnet.ParamsDetails.json b/docs/documents/network/update-subnet.ParamsDetails.json new file mode 100644 index 0000000..95a3c75 --- /dev/null +++ b/docs/documents/network/update-subnet.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the subnet has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the subnet to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-subnet.RequestSchema.json b/docs/documents/network/update-subnet.RequestSchema.json new file mode 100644 index 0000000..135ae35 --- /dev/null +++ b/docs/documents/network/update-subnet.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the subnet to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a subnet to update","title":"SubnetUpdatePropertiesDto"}],"description":"Properties of a subnet to update","nullable":true}},"additionalProperties":false,"title":"SubnetUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a subnet to update","title":"SubnetUpdatePropertiesDto"}],"description":"Properties of a subnet to update","nullable":true}},"additionalProperties":false,"title":"SubnetUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the subnet must be a default subnet.\r\nOnly one default subnet for vpc is admissible."}},"additionalProperties":false,"description":"Properties of a subnet to update","title":"SubnetUpdatePropertiesDto"}],"description":"Properties of a subnet to update","nullable":true}},"additionalProperties":false,"title":"SubnetUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-subnet.StatusCodes.json b/docs/documents/network/update-subnet.StatusCodes.json new file mode 100644 index 0000000..b40839b --- /dev/null +++ b/docs/documents/network/update-subnet.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"the vpc where the subnet belongs","nullable":true},"type":{"allOf":[{"enum":["Basic","Advanced"],"type":"string","title":"SubnetType"}],"description":"type of the subnet"},"default":{"type":"boolean","description":"Indicates if the security group is the default one within the vpc"},"network":{"allOf":[{"type":"object","properties":{"address":{"type":"string","description":"Address of the network in CIDR Notation"},"gateway":{"type":"string","description":"IP address of the gateway"}},"additionalProperties":false,"title":"NetworkResponseDto"}],"description":"Details of the network","nullable":true},"dhcp":{"allOf":[{"type":"object","properties":{"enabled":{"type":"boolean","description":"True if dhcp is enables"},"range":{"allOf":[{"type":"object","properties":{"start":{"type":"string","description":"First ip address"},"count":{"type":"integer","description":"Number of available ip addresses","format":"int32"},"last":{"type":"string","description":"Last ip address"}},"additionalProperties":false,"title":"RangeResponseDto"}],"description":"Range values for ip addresses"},"routes":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Ip address of the route"},"gateway":{"type":"string","description":"Gateway"}},"additionalProperties":false,"title":"RouteResponseDto"},"description":"List of routes"},"dns":{"type":"array","items":{"type":"string"},"description":"List of dns"}},"additionalProperties":false,"title":"DhcpResponseDto"}],"description":"Details of the dhcp","nullable":true}},"additionalProperties":false,"title":"SubnetPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SubnetResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-subnet.api.mdx b/docs/documents/network/update-subnet.api.mdx index 04a5e8a..422b7eb 100644 --- a/docs/documents/network/update-subnet.api.mdx +++ b/docs/documents/network/update-subnet.api.mdx @@ -5,7 +5,7 @@ description: "Update Subnet" sidebar_label: "Update Subnet" hide_title: true hide_table_of_contents: true -api: eJztWk1z2zYQ/SsY9NIPSXTS9KJJMyPbSasmsT223B4sTwciIQkxCTAAKEfV6L93FyBFSqRTWXEPydAHjwTuYt/uPiwBrFbUspmh/Rt6lU0kt/S2Q1OmWcIt1zi+ohK+0D5NtfrAQzuMaIcKiQPMzuFzxE2oRWqFwsFMio8ZJyLi0oqp4JqoKbFzTnJ1cvL+ApQ0/5gJzSPatzrjHWrCOU8Y7a+oXaZozVgt5Iyu150NgEUaHmocVImQ5H4uwrkbMM5ZMmeGTDiXJNScWR4diEwcCCtHYRXJ0gjsH2iepaK7gGyhtRwH2NPLGpAR2EQD3ICvZHAxJKXaQ4ZwjinLYgtDz8DsrccIUxyraIny2zYe8CtU0oL7KM/SNBYhQ/ngg0GlVcU6i+PzqeNdjkNNkDcwBTAo5doKblAOCMpg7iriByR9lJr8quI+A6kiL5oblemQ03WHxspD/W87CxZnexj6E8VKSzMY3eZmYZ3cizgGehIHgUe9sR7LwYKJmE3iQtUQZmFtcQPB7aNAlwxHx791j7mesUSN5Vi+UZokSgMB5VTpxHnTIRDw8M7Ze8nIXPPpr2MaRCo0QRHZ4LvC9y6TUReHuiGY4XpMiWV6xi3o/D2Jmbwb01egmyXw2Gm8DNirHpKUsigSOMLii0q0piw2fDcyJ8ARJsClClDCJiqzDueljxVEjpUZ6lArbIzhfpeDPbUK8+bL2iYZTGuGC0JYnpiG5bSL5Z0w1iUJpiGAZpsXHSqz2KXBr9NHOvo+j3CNb6U3hUjuzTbT9l0jm5W7EZwoFXMma6QcygiXJIfYb5WmJIMwAAUZyefKHzgunst4SZTkO89cuFzFBXJGiTBGQKAezYZSwKe8oagUwfKvrms3XKq50N0eMO0jc9uEwttGVcs/2bbMtWWuLXNtmfuGy1x1U/fjT229a+tdW+/aevet1jtUhuymsFB9Sp4fHdWPwudvtw++biuYxkzs1Mb9K+KOC3Bqh3WZmcZHO9XyS5y/zF117u8U+3qp/+rceWCL/pX5gcovmmh4zCIosu7K5in46J/WX4c1T3Owe0iW4cpFBWCccQ2y/o3hh35+3qQcQSJEvJcdeAlZJsN9QD2YiVXpGRYd0EhOHQLzxUujjeznInvQKm1D+nBIfcF4US8YZ8qSNyqTUVsu2nLxtUa2LRf/Q7n4pWl/McSzI8xErrhecE1ea620y8HgYnh6flK0sra1/Iaa5F3HDu6n5iqCB2nm8oKNtD4N8rahCVab/uMaBxci4toEA51NWO+M23ul7wI4nYCg6xOuA38CgO8iWmN/y4HzHc1MQ0zp3NrU9IOApaLHcJ4wVlnUC1XizheGh5kWduk0jjnTkLP+zW310RXSyjOnEChPpql4y+stuCHs17Qlf/w1grPJHccjW97FG2QQAC3+8dcSeR9vzhn46YKJXL4sO2+vP7Ek9Rzc2or6yTapr95z5DcZlcNx0fvNR25r+9PNUbMgDp7hnZc5TbYS0BukouZxTYL8PhpdYPcRbzFO1b2MFexQd64sAISEEAbS63WLlPcwDI0XFeQcVLCnORUxx4sKQFK0N/v0We+od+SO3MrYhMlKrHaZuAV/k8/K2w9mcQxa5Sy9KXrjBrT71T75hqjweSsOiA3IivJFWzvnKw6JCNvwc0CKk69WE2b4tY7Xaxz2rV0kZSQMruqo+aS9Kt/dn238Nvp3B9TdbSwX9HGrY8G08CXlUUC+v8z72z+QPX8p0AivWGNyWcVVwC4zgE3ypwX3iF8SHIDcc+HpUTddsjweHdByjSUiL0qYef/gxIPpjlC9VKxtbtAxrzEIQ57aimwVx23lbXBxPQKpSf5Tg0RFKKzZPf5UAv47dMpFxdUrN7aiUBJmGZuhrDeMf/8CfkVKew== +api: eJztWktz2zYQ/isY9NIHJTppctEkmZHtpFXzsMdR2kPk6ayIlYiYBBgAlKNq9N87C5ASJcqprKSHZKTjcpf77QMfAawW3MHU8t57/rYcK3T8OuIFGMjRoSH5givIkfd4YfQHTNxA8IhLRQJwKY+4QJsYWTipSVgq+bFEJgUqJycSDdMT5lJklTk7e33JI27wYykNCt5zpsSI2yTFHHhvwd28IG/WGammfLmMVgBmRXKo81mRMKnYbSqT1AusD5alYNkYUbHEIDgUByKTB8KqUDjNykKAwwPdQyE7MzSWvFU4PpZo5i0gwxQZOUDrULD+5YCtze5yRO+YQJk53uMP+HJ5HTCidadazEl/08cdcSVaOVSO9KEoMpkA6ccfLBktGt4hyy4mvu8qHHpMfcMjasACjZNoSS9HBwJcE/EdmiFLu+Jq4n4DOdZ1MWh1aRLky4hnOkD9bz8zyMo9HP1JamtPU6nVZm/W3tmtzDI2RuYhoOiOzEj1ZyAzGGe1qWXgWGHQonI9UuiwwfD0t84pminkeqRG6oU2LNcGmVQTbXIfTcSSFJMb7+8JsNTg5OmIx0InNq4zG/9Qx94BJTok6iSoHJoRZw7MFN3TEf97nIG6GfFnQidljsp5iycxPOtSk3IQQpIEsstGtiaQWdzOzJlWDqSyTaAMxrp0HudVyJWeMFhXKOJOuozS/aoCe+401S3Q2qoYYAzQgpAOc7tjOW1jeSWt80WCqWUTbTb7IuKqzHwZwjq9Z6Cvqwy3+m0dTa1SRbPZafuukdXKXSmOtc4QVKspB0rQkkTL5AY15aV11ILAqndVD3wvXqhszrTCrWc+XZ5xLQORS2vlOMN7d8NaIZR8B6nUyQqfrndevDbzqbs+4LX3rO0uFME3mTr85I40d6S5I80dae47prnmpu7nX458d+S7I98d+e575TsyNmgLrWwoycOTk/ZR+OLl5sHXbwWLDOQWN+7PiFshRNw6cKXd+WiLLb8k+KsqVB/+Ftm3qf6bC+eOLfo3FgcZP9rVhqcg2FW4svka/Rietj+HrUgrsHtortNVqUrlcIqGRzx8MYLo14e7jAU6kNlefqSyDlSyD6g7K7FYR0akM84wP/cI7BcvjWNmP5fZg1bpMaV3pzQQxqM2YbzRjr3QpRJHujjSxbea2SNd/A908XjX/mJAZ0cFGXuLZoaGPTdGG1+D/uXg/OKsHmVtWoUNNaumjhHtp1ItaIRW+rrQIK3H42psaOPFav64JOFMCjQ27ptyDN036G61uYlnRWLjhZ8TLuNwArDxQoolzbc8uDDRLE3Gezx1rrC9OIZCdoHek2S6FN1E5/58YTEpjXRzb3GKYNDw3vvr5qO31Fahc2qF9cm0kC+xPYIbKIvGsT/+GjKnb5CObNUUr1+6VBv5T7iWqOZ4KYLAkEzq5av15O35J8iL0IMbW9HwslXpm/cc1U1G43Bcz34ryXVrf7o6ataNQ2d4H2XVJhsF6PYL2Yq4pcF+Hw4vafpItxjn+lZlGsT2lYUuUEEhYxXsOnXJu5SGnRcV7KJARTPNicyQLip4xOvxZo8/6J50T/yRW1uXg2rkarsTN+Cv6tn4+i2j0EGLqkvf17NxyyPea87JV43Ko808ELYi8fr1WLvqVxJJQWP4VFtHL18sxmDxncmWSxKH0S41pZCWVrXYfdJerL/dnx387ozvBuetwXLdPn51zMDIQCn3AvLjVTXf/ont+U+BnfDqNabmTVw17HUFaEj+dcHd458EByAPvfD1Ue+6ZLk/Oino8iOqSYkqHx6cBTCdIZmvDVubGwosWPSTBAvX0G3iuG58DS7fDXnEx9VfDXItSNnALf1VAm4DOu2z4vnKyxY8AzUtYUq6wTH9/gV+RUp7 sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-vpc-peering-route.ParamsDetails.json b/docs/documents/network/update-vpc-peering-route.ParamsDetails.json new file mode 100644 index 0000000..e3fffeb --- /dev/null +++ b/docs/documents/network/update-vpc-peering-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpc peering has been created","required":true,"schema":{"type":"string"}},{"name":"vpcPeeringId","in":"path","description":"unique identifier of the vpc peering in which the vpcPeeringRoute has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeeringRoute to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering-route.RequestSchema.json b/docs/documents/network/update-vpc-peering-route.RequestSchema.json new file mode 100644 index 0000000..64475fd --- /dev/null +++ b/docs/documents/network/update-vpc-peering-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpcPeeringRoute to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringRouteUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringRouteUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringRouteUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering-route.StatusCodes.json b/docs/documents/network/update-vpc-peering-route.StatusCodes.json new file mode 100644 index 0000000..f8bf269 --- /dev/null +++ b/docs/documents/network/update-vpc-peering-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering-route.api.mdx b/docs/documents/network/update-vpc-peering-route.api.mdx index 89b4bf1..8fbcc47 100644 --- a/docs/documents/network/update-vpc-peering-route.api.mdx +++ b/docs/documents/network/update-vpc-peering-route.api.mdx @@ -5,7 +5,7 @@ description: "Update VpcPeeringRoute" sidebar_label: "Update VpcPeeringRoute" hide_title: true hide_table_of_contents: true -api: eJztWVtv2zYU/isEn9bNsZKsezG6Ak7SYVnXxEid9iE2BlqiLTYyyZKUU0/Qf985lGTLkt2mXvMQwHkIEupcvnPhkfgxo47NLO3d0Q86HHBuhJzdqNRxOu5QzQybc8cNCmRUwj+0R7VRn3joLiPaoULiAnMx/B1xGxqhnVC4mErxOeVERFw6MRXcEDUlLuakVCfn7wagZPjnVBge0Z4zKe9QG8Z8zmgvo26p0Zt1CInmeWcFYKHDfZ2DKhGSPMQijFcLugibxMySCeeShIYzx6P94ZWJ/D8oK1BNtPUa/SjEYn+cG3CcIqmOAMieOJgWRwvoNnRbAgLHZtlCNATn6IBbCJr0B5dkrbbLEdqYsjRxsHQCbscFRjBxpqIlym/6+FaAoZIOEoKKTOtEhAwVg08WtbMaDJYk11O/gUpAaoIbAEzAVtDcOMEtysFOY2C7Dn2HZJGubQHWA7gCqapShluVmpDTvFNu+JU2M4ZhhoXjc7ulPk2zfwvrvFkwQ6bKbNrvUJkmCZskvCg8lJeyKBKozJJBLYwpSyxvGn9X5qCFG2ALh0ZXIhdOfTil37RfqTXG260vI9ig+RhtOP7FHWr3PGtX334//3Io4jMsIloBV1pJW2T49Pi4PZKv32I2Xm57dMYiclOM883Z7De2TphoNMXXC1w8bRe4kdtVdI+QtI65tF5fARhn3IAsFHHOXLH06+k25QhyLpJH+RESPMnwMaB2li5bR0ZhHTTmFx6Bpc0N195uh8zun9kdr6FDSvdNae4Hxkl7YNxKlrpYGfGv/2w+TIzDxHiWmT1MjCeZGC/bE+NKOfKHSuVhXBzGxbPN7GFcPMG4+G3bieQSAjJgibznZsENeWOMMr4G/cHlxfV5RYw1Pkv8sYg0ydgOHk5jFSFFl/oCIVHXo0HJptogW9GyOS4uRMSNDfomnbDuFXcPytwHCx2CoKdP82DNbRVrK86y/sh7h+ciypFa85EUZHBqoAA0dk7bXhAwLboMfYWJSqNuqOYUCTbLw9QIt/QaZ5wZKHDvblx/9B57sGizSmB9MtbiLW+zf5dwSDSO/PVxSJy650j6lQRiv/yk85OjohBjziAXPvPY+Ddr0u/NFzbXRcPWz/6lsVWfVAx5ueA5ByGnyiMt+2Ij0d2+Fi3ULQny53A4QPJyJEfyQj3IRMEhFg/drxiJDZ/+PqIBdKGENASy0DuqStvFUEaUOGZm3IHkP5OEyfsRfU2uQQUp0alI+KuAvQYkFTvaoyfd4+4xnqK1sm7OZC3ena23EceqOLX3Hpjz7ZCVbXlX3RFY0O7V7wtWnQl/byQEQUJ3onxF79catFyu0+rNHkUREeGtRQyRIYYsmzDLb02S57hcMMnYiJGwuO2j7RRItn65f5Vn3pqGe2jXJo+9YEmKkn5HLJgRxcz5LiA/3ZR0+gvyyIuVrfCqfSWXdVwV7HWhkJP/seC+9+JlD/hF3zwN9H1vY/YLY93nTxLNziuNPdDClsvHIFUOWezq4sF5gepoiOprxdaXHUZYaPTDkGtXk63jGNfegIPbIUhNylubuYpQ2LAHvHWC3x6d8unxrxW/llEYj7OUzVC2cIw//wH3AB49 +api: eJztWUtz2zYQ/iuYPfXBiE7aXjRJZpw4nbppYo1jp4fY01mRKxExBSDAUo7L4X/vLB8S9XDiqPHBM+IR2AW+fYL4UALjNMDwA7x3yYjIazM9tQUTXEbg0OOMmLwIlGBwRjAE5+1HSvg4hQi0kQHkDCJIKSReO9ZWBgujPxWkdEqG9USTV3aiOCPVqquXb0YQgadPhfaUwpB9QRGEJKMZwrAEvnGyW2CBBFUVLQDMXbLr5nOXKG3UdaaTbDHgGrNVhkGNiYxKPCFTuju81pH/B2UHah1tP0bfC7HeHecKHLaqcCky7YgDnX40Jx9k2xbQp4L8zQais4yUbECBKVWHo2O1VLttI1ljgkXOMITHUFWXDUYK/MKmNyK/usfXDEysYTIsiuhcrhMUxfhjEO2yBwPz/GRSF1ALyI6lACCSSnLkWVMQuRkxpsh96LdINu7aZmDfgLc4oy5SnoItfEJQRW3BL7TRexQPa6ZZ2BKf9WX/0oHrZXEa1MT61fUjMEWe4zinJvBVFQGmqRZlzEc9MyaYB1pf/E3rgw3cEbBmWXQhcsT2/RP46vqd2lp7O6/DeMQWqktZg+kz72P3MGPXL7+fft4H8QEGUVbxFJw1ofHwk4ODzZZ88lq88eu2qReYqtOmna/25rqwXY56LSm+HOBmdjPAa75dWHcHycDIRT++2jBNyUMEE+tnyM3QL0+2KafEqPM77aNNYDTJXUDdGrpyaRmMvB3nNDuqEQRYL7jNctt7dnfP3nIM7V26q0urumE83mwY5wYLzqzX/9a/zfuOse8YD9Kz+45xLx3j182O8day+t0WZt8u9u3iwXp23y7uoV38tu1GcmyYvMFcvSM/J69eeW99HYPD0fHRycuOGFv7LamvRWqdjI3kcprZVCi6og6QEHVDiFs2NcTlgpatZHCuU/IhPvTFGAdvia+tv4rnLglxWdOnVbzktpqxBWfZn6p3D3Gp00qotdqShgwufA5DyJhdGMYxOj1A2SvJbZEOEjsDIdgCJYXXfFNrvCD05GH44bI/9U5ysEmzTmB5M3b6NW2yf8cmkGf1599niu0VCenXEoiH7S9d3Tk6CjEjTKnxvCT+6ZL0e/UZZ65J2P7dv11skScdQ94O1JyDNhNbI23zYsXRg0OnN1BvSKg/zs5GQl5emAtzZK9NbjGtL91PUWWeJs8uILaODDodm0bvURfagZhyAYrRT4mfXcA/4xzN1QU8VyeOjFCiE53T0xifQwQdOzqEx4ODwYHcop0NPEPTs/fW1FuxYxGc3rlXRU06lG1afujeCAJEMOy/FywyE6JVhwhIl9TyHb3fS9B2uE+rr+eoiOhUXi0yG1gwlOUYA537vKpkuGGSJRFTHaTs0+0USLk83L/IM291wxXdbPDYc8wLkawrYo5eNz3nm4D8cNrS6T+qOz6sbIXX1ZW56ePqYC8DJZz89wX3rQ8vO8Bv8uZ+oO/6GrObGcs8vxdrbn3S2AGtToW/i7omK1ndTLxsUD06E/Wl4safnVjYaBwmCTnuyfZxXPZOwNH5GUQwbl9tZjYVYY/X8uqE1w06W7unPlbqsRJyNNMCpyLbbCzff/cAHj0= sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-vpc-peering.ParamsDetails.json b/docs/documents/network/update-vpc-peering.ParamsDetails.json new file mode 100644 index 0000000..7388418 --- /dev/null +++ b/docs/documents/network/update-vpc-peering.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpcId","in":"path","description":"unique identifier of the vpc in which the vpcPeering has been created","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpcPeering to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering.RequestSchema.json b/docs/documents/network/update-vpc-peering.RequestSchema.json new file mode 100644 index 0000000..20bdc98 --- /dev/null +++ b/docs/documents/network/update-vpc-peering.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpcPeering to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"}},"additionalProperties":false,"title":"VpcPeeringUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering.StatusCodes.json b/docs/documents/network/update-vpc-peering.StatusCodes.json new file mode 100644 index 0000000..06b4ab5 --- /dev/null +++ b/docs/documents/network/update-vpc-peering.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"remoteVpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Remove vpc of the peering","nullable":true}},"additionalProperties":false,"description":"Properties of the vpcPeering","title":"VpcPeeringPropertiesResponseDto"}],"description":"Properties of the vpcPeering","nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"reversedVpcPeeringId":{"type":"string","nullable":true},"reversedVpcPeeringUri":{"type":"string","nullable":true},"originalRequest":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataPrivateResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcPeeringResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc-peering.api.mdx b/docs/documents/network/update-vpc-peering.api.mdx index f11e17b..0fc4a8f 100644 --- a/docs/documents/network/update-vpc-peering.api.mdx +++ b/docs/documents/network/update-vpc-peering.api.mdx @@ -5,7 +5,7 @@ description: "Update VpcPeering" sidebar_label: "Update VpcPeering" hide_title: true hide_table_of_contents: true -api: eJztWVtv2zYU/isEn9bNsdKsfTHaAk7SYVnXxEid7CExBlqiLTYyqZKU00zwf985pGTJlpw5XvsQ1H4wHOpcvnPhEfklp5ZNDe3d0Os0HHCuhZzSUYemTLMZt1zjs5xK+IP2aKrVZx7as4h2qJC4wGwMvyNuQi1SKxQuZlJ8yTgREZdWTATXRE2IjTkp1MnJxwEoaf4lE5pHtGd1xjvUhDGfMdrLqX1I0ZuxDs1i0VkCmKfhrs5BlQhJ7mMRxuVCETCJmSFjziUJNWeWRzuiE7tDK5FYRbI0Agw7QmCpOJhD1dBjgQV86ocGmCH4RQfcQLykPzgjldomR2hjwrLEwtJLcDvyGMHEsYoeUH7VxyOxhUpaSAPqsDRNRMhQJ/hsUDGvIWBJcjFxPVhgUWPsITAB3ZRybQU3KAfNysB2HfUGSZ+pttjq2M9BqqyP5kZlOuR00Sm2y1Kbac0wucLymWkpzbrZP4WxziyYIROlV+13qMyShI0T7msOlaUsigQqs2RQC2PCEsPXjX8sctDADbCFRaNLkVOrro/of9ov1arhcOUqCOp0MUJ1y7/afdmeXdnqm+7nX/b1e171QwPgJVXS+OQeHR42x+/Fh9VB67ZqmjCxVuvtK7yWJnhTWGYz0/po1coqsirk5iuwWQ3Id7v/p6fxskiaS+TaNmhugh84MRvG+g+bETTwqm2THbOIXPpD0LfYbf5pc0o24iwAbyFZJb4QFYBxyjXIwiScMeuXfj1qTSeUVCRb+RESPMlwG1Abq5FXkWHlQWN26hCY/71d95l9LLM77fd9Sjen1A+MV82Bca4s+U1lMtqPi/24eK6Z3Y+L7zAuXredL84gIA2WyCeu51yT91or7WrQH5ydXpyU5NCqlr8ukOv6UQlOZ7GKkJzKXG2QourRoCDlTJAv2b0FLs5FxLUJ+jobs+45t/dK3wVw9gJBx8ItguogBmsiWiBz5EB6zjDTkFsaW5uaXhCwVHQZ2goTlUXdUM0o8keGh5kW9sFpHHOmoXa9m1H90SdsL99BpUB1D0zFB94kt87g3KYt+eOvIbHqjiOnVfBj/QySoMU/biiUDFnMGcTqkoo9fVlxWu+/slnqe3HlcOuNLVug5FCLBXfDFnKiHNKi5CuJ7PZT0UDdkCC/D4cD5OZu5a08VfcyUXDaxDPwG0ZizSdvb2kADSYhDYH0egdl6boYyi2FK6+ecguSf48TJu9u6TtyASrI+E1Ewt8E7B0gKcm/Hn3ZPewe4g06VcbOmKzF29ZVKyEs61J7m4El1wl50XE3JYtsQLtXZ5SXTQe/V3KB+KDxUL4kgGu9h8siQtI6BsToIM/HzPArnSwWuOwJUGywSBjcqVH7RT6v3seP0qOtMd5BG67Tr3OWZCjpOn3OtPBj4klAfrosWOAXZEtevRVeuV/kQx1XCbuqAlLJ3xbcE3n3HdD7nvguyNuo6x0QQnsuRiBVDBrsAP/gxAM6GKJ6pdg4uGBwXqMfhjy1Ndk6jlFtyg+uhiA1Loj5mYpQWLN7/McCfDt0ymXGjVa3llMYEdOMTVHWO8bPv+kMJK0= +api: eJztWd1z00YQ/1du9qkfwg6UvniAmUDoNKUQTwj0gWQ6a2ltHZHujruVQ6rR/95Zfdhy5NDgwgOD/Xi3u/fbT939XALjIsDkHbx18ZTIa7OAiwgcesyJycteCQZzggk4b99TzMcJRKCNLCCnEEFCIfbasbayWBj9oSClEzKs55q8snPFKalWXT17OYUIPH0otKcEJuwLiiDEKeUIkxL42slpgWs0VRWtACxdvOvhSxcrbdRVquO0W2gdVikGNSMyKvaETMmO6PTu0DokbFXhEmTaEQI6fW9JPsiJLZYPBfnrAZizlJQcQIEpUYfTY7VWu+0gsTHHImOYwH2oqosGIwV+apNrkd884xO+xdYwGRYddC7TMYrO+H0QxbKHALPsZF7XYIvFzqSGIJJidORZUxC5nBgT5D7qWySbSG3zrY/9FebU5cdTsIWPCaqobZeVNnqPElzNlIctqblp9k8duDaLi6Dm1m/aj8AUWYazjJqcV1UEmCRalDGb9tyYYxbopvGXbQwGuCNgzWJ0JXLE9u0D+E/7ndp6OLypM3jEFqoLUWf6yPu0fXNp6zfdTz/v8/dt5U8MeArOmtAE98HBwXD8nrzYHLR1q7oM9Y1c3z3DN8IUQWDkImzd2rSyiWzt8vATOMxGBLec//lhPG2DVgfyRhsMm+A7DswtY/27jYgYeLityZ5iok6bS9CX6LZmdzglB362gO8guQ58K6oN04I8RDC3Pkduln55sDWcxKizO52jTWA08V1A3ZqNcu2ZZH6WUX5UIwj/u133kf1UZHfq931Ibw9pMzAeDgfGK8vqN1uYZD8u9uPiW43sflx8hXHx67b7xbFh8gYz9Zr8krx67r31dQ4Op8dHJ886cmhTq3kuqLf9q1JOnNpEyKmizo1QVBMYt6RcGJcrdq+SxaVOyIfxoS9mOHpFfGX95Xjp4jAuaxauGq8vYmFc6qQS5qgG2XCGhc9gAimzC5PxGJ0eodiKM1sko9jmIPxRoLjwmq9rjaeEnjxM3l30t15LeTUV1Ams34FOv6AhuXVsAnlWf/x1ptheknBaLT92WHBqvf6nHgodQ5YSJtQEVWr6dM1pPf+IuWtqceNy2xhblUDHobYL9Qtbm7mtkbYp3wjk6NDpAeqBhPr97Gwq3Ny5OTdH9spkFpP6DvwIVepp/vgcxtaRQafHptG716VuJK6cg2L0C+LH5/D3LENzeQ5P1IkjI4zfXGf0aIxPIIKO/JvA/dHB6EBe0M4GztH0/N1WVRsurPLS+5pVUVMJZVtx7zoWOUAEkz6jvCo6iDZjIfhcXMt3BHCv9mRZJ0JapzawHFCWMwz0xmdVJcsNASoFluggnZpsf8iX6+/xJ+nRrT5e0vWAfl1iVohkXelL9LoZE58F5IfTlgX+Ud2RV98Kr+sXc93H1cFeZ0Go5C8L7jN59x3QNzXxVZBvo653QKgToW2ibtBIBTQbzxpA985Efa04uLiIc43GYRyT455sH8dFb8pP35xBBLOWmM9tIsIer+SPBbxq0Nk6MvVorddKyNAsClyIbHOw/P4F6QwkrQ== sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-vpc.ParamsDetails.json b/docs/documents/network/update-vpc.ParamsDetails.json new file mode 100644 index 0000000..df6db42 --- /dev/null +++ b/docs/documents/network/update-vpc.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the vpc to update","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-vpc.RequestSchema.json b/docs/documents/network/update-vpc.RequestSchema.json new file mode 100644 index 0000000..2eceb54 --- /dev/null +++ b/docs/documents/network/update-vpc.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpc to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"default":{"type":"boolean","description":"Indicates if the vpc must be a default vpc.\r\nOnly one default vpc for region is admissible.","default":true},"preset":{"type":"boolean","description":"If true, a subnet and a securityGroup with default configuration will be created automatically within the vpc","default":false}},"additionalProperties":false,"description":"Properties of the vpc","title":"VpcPropertiesDto"}],"description":"Properties of the vpc","nullable":true}},"additionalProperties":false,"title":"VpcDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc.StatusCodes.json b/docs/documents/network/update-vpc.StatusCodes.json new file mode 100644 index 0000000..28eca94 --- /dev/null +++ b/docs/documents/network/update-vpc.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"default":{"type":"boolean","description":"Indicates if the vpc is the default on within the region"}},"additionalProperties":false,"title":"VpcPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpcResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpc.api.mdx b/docs/documents/network/update-vpc.api.mdx index 3880f9c..ecebb20 100644 --- a/docs/documents/network/update-vpc.api.mdx +++ b/docs/documents/network/update-vpc.api.mdx @@ -5,7 +5,7 @@ description: "Update Vpc" sidebar_label: "Update Vpc" hide_title: true hide_table_of_contents: true -api: eJztWllvGzcQ/isE+9JDh5MmL0IaQLaTVE1iC47sPlhGQS0pifEuueEhRxX03zvD3dWutHIqu0mBAOsHw+bOcL45eQxX1LGZpb1repVG9KZFU2ZYIpwwOLiiCv6hPZoa/VFEbsBpi0qFA8zN4W8ubGRk6qTGQa/kJy+I5EI5OZXCED0lbi5Izk5O3g+ByYhPXhrBac8ZL1rURnORMNpbUbdMUZp1RqoZXa9bGwDykZIXaUScJj7lzIlHymapbC/AICgqBwHCzLKGYgQCUYCwTnDSHw5IyXafIJxjynzsYOgJiL3JMMIUx5ovkX5bxj6lIq0cKI7ELE1jGTEk7n60yLGqiGZxfD4Nfs1B6An6BaYAD6XCOCks0kEAMJi7CvceysxE+5Sqgj4DqsIjRljtTSToukVjnUH9dzkLFvsDBF0hWSlpBqNEKnI3l9F8Szq5k3FMJoIECIJ3xmas+gsmYzaJC1ZLmIPYFRaM20OCNhmMjt+0j4WZsUSP1Vi91oYk2kDoqak2SdCmRcDg0W2Q94KRuRHT38a0y3Vku4Vluz8UureZ4m0cakcgRpgxJY6ZmXDA89ckZup2TF8Cr0/gc+B40WUvOxihlHEucYTFw4q1piy2YtcyJxAjTIJKFaCETbR3AedFZiuwHCs91KJOuhjN/S4He+o0+i2rGRtnMGMYZoN0IrF7cmkXyztpXXASTEMAzXZctKjycXBDlqQPVPR9buFavJXaFCS5NtuRdmiObNJ2QzjROhZM1YJyoDimpADbl0Up8WADiD9G8olwNEThuYqXRCtR/RCsVMQzhCVPpLUSTNSpFpBgLcQJEXsQMICDVRBAWD9RwhGIRfxHRN5It3xjtE8hU9x8gwVKzVTOvMnip0iiyAhMIsK80xhaERhxGRgh+XKNq0CD4x7o15KgUtsrToX1qyQJnr05dIoHxltFYiYHOZz47JqK21TcpuI2FbepuP9Hxa1udX/+pSm9TeltSm9TepvS+81LL/KA1VOoGVl0PD06ql9UnL/dvpkIG+Q0ZnKnTB9enHeQtyDlmPN276edwv1onS9yPYPuO4tOfcn5vnS558jyPSmBnM/2Rd8x41Dmwz3a1wjD7Gt9Qa6pmSM9gLK0VU4qAeNMGKDN1qxs6Nen+5g5eEHGB8mBZdAxFR0C6l43rErNsK4AR3IaENj/nBSNZb9k2UelaGPS+02aFYxn9YJxph15rb3iTbloysX3atmmXHyDcvF83/5igKdXmIl8EGYhDHlljDbBB/3h4PT8pOgvbnNdho4duQobcdhJzTWH0dQHp2Bfs0e7ea/UdlebpusaBxeSC2O7feMnrHMm3J02t13Y0gOh5GvsMAYkWdvWGzAgnTuX2l63y1LZYcgXxdrzTqSTcF4oTj6B41gwAw7qXd9UP33AGMrCpCAoD8KpfCvqTdABbM6MI3/8OSJO3wo8iOV91L4HhY38O7sFyTupc8FAr2A5DNyLsvf56jNL0izgtjad2WQbP1evVfKLk8pZvOhu5yM3tZ3o1nmyPE5uDm14gxCUzkNky/6dfiprBqhRkN9HoyG2g/EO5VTfqVjD7nTnwgQwKbBoV2V87cLjHbTK3msScg4s2GSeyljgNQkgKfrNPfqkc9Q5Cgd+bV3CVMV0W1G4hX3j28qyB1OEaFrlEXpdPAawwN2rPgzYBCn8vWUEBAaBivSS4yODOWDCmVarCbPi0sTrNQ5nXXWMRi4t5i7ffzxelSv0F3vue5W5hZjd7ekXcRPSYsGMzArHg4D8eJE/LfiJHPgOYi+8IrnUsoqrgF2aG98nfF1wu68KHgEPvLvGFMuTGg2YfTjJkLRHyF4y1nYCqFXG0Y8ikboKbRXHTaV6Di9HQDXJH0skmiOxYXf42AN+B3Q6mCTkexhbUcihmWczpM0E488/Cz9WKA== +api: eJztWllz2zYQ/isY9KUHJTlp+qJJMuMjSd0c9jiO+xB5OitiJSEGARoApaga/ffOAqRIHU5lN+lMZug3g7vab6+PBBYL7mHseP8jv8pTfp3wHCxk6NHS4oJryJD3eW7NJ0z9qeAJl5oWwE94wgW61MrcS0OLhZa3BTIpUHs5kmiZGTE/QVaqs+O35zzhFm8LaVHwvrcFJtylE8yA9xfcz3Oy5ryVesyXy2QFQD7Q8jRPmTesyAV4fKBtyGVnitaRqRLEbYF2voXicoKMDKDzKNjh+Smr1e4yRL8xgkJ53ueP+HJ5HTGi80dGzEl+3cYup1KjPWpPwpDnSqZAwr1PjjQWDdOg1Nko5LUEYYaUF55QgnO0XqIjuQw9CPBNuHdIxhDtcqoJ+h1kWGXEojOFTZEvE65MhPrvdqagij0MXZFYbWksjWZSs9lEppM162wmlWJDZAECiu7ADvThFKSCoapUHQPPcosOte+TQIedXh696hyhHUNmBnqgXxrLMmORST0yNgveJCydYHoT7D0FNrE4ejbgPWFS16si2/uh8r0DWnRoqZOi9mgHnHmwY/TPBvyvoQJ9M+DPhUmLDLUPGk978LxLFcpBCEkroM4b0RqBcrgZmWOjPUjtmkAZDE3hA86LGCszYlBnKOFeekXhflOCPfGG8hY5Y5UMsBaoG6THzO3opU0sb6TzIUkwdmxk7HpdJFwXKqQhNuk9HX1bRnir3mpvKpHSm/VK27dHVm27EhwaoxD0VlGeakEtiY7JmpSywnmqP2DlD9FqqMIzrebMaGw+CFGq6tkxEJl0Tg4VdpsEEqJFONHhXsBGLLAgA+aKoUbPQAv6B9PCSj9/ZU2Rs5n0kxWW1OiRHBc21k/VRKlFaiIGhTdUWikoNQ+KUlceN4GGxN0zr7VAg9sbSb3K01okZPZ635+4Z701LEY7pOHxs28Zt2XclnFbxm0Z9/9g3Oan7s+/tNTbUm9LvS31ttT7zamXdCy63GgXq+PxwcH2QcXZ6/WTifCBnCuQGzS9PzlvIE+48+ALt/PRBnE/2OeL0s/g+8ZLZ/uV8335cseW5XtygjSf7Kq+IxDsIp6jfY0yjE+3X8hbbpZI95CsY1WKSu1xjJYnPL6z4tKvj3cpC/Qg1V52pHYedLoPqDvTsKg9I14ZKsxOAgL3n5uijeyXIvugFm1DendII2E82SaMd8azl6bQoqWLli6+18i2dPEN6OK3Xd8Xp7R71aDYe7RTtOyFtcaGHByen56cHVfzxXWtD2Fix67Ch3iGfmIETTSLkBSaa/Z5r5yVut5iNXRd0uJUCrSud2iLIXTfoZ8Ze9Ob5qnrLaRY0oQxIIlj28Iq3ucT73PX7/Ugl10gvVSZQnRTk4X9QrXzCRpHCBYt73+8bj56TzUUy6QSqDfCuXyN20PQU+3QevbHn5fMmxukjVg5Rz0s/MRY+Xc8BSknqRMEgTFyVLgX9ezzxWfI8lhwax+d8cdWeW4eq5QHJ429eDXdLleut75E1/aT9XZytWmjE4TgdFkia/HvHuZyKwBbEuz3y8tzGgfTGcqJmWllQGwemJgcNeSyp6Nep8p4l6Ky85iEneWoacg8kgrpmIQnvJo39/mj7kH3IGz4jfMZ6Ebo1qpwDfsqt43X3jKJ1bQoK/RjdRnA8YT3mxcDVkXKk/UgELA8DfJS0CWDiXGefmmxGILDD1Ytl7Qcp+pUjUI66l2xe3u8qN/QX5y573TmBudbM/2qbkJbTMHKSBz3AvLjRXm14Ce25z2InfCq5tLzJq4Kdh1uup/wdcFt3ip4ADwp6IAgqZqaAhgfHEcknUtSrxW3vgTIq6hxmKaY+4ZsE8d1gz3PP1zyhA/LyxKZESRsYUaXPWAW0ZkQktDvYW3BFehxAWOSjYbp7x8LP1Yo sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-vpn-route.ParamsDetails.json b/docs/documents/network/update-vpn-route.ParamsDetails.json new file mode 100644 index 0000000..c818c9a --- /dev/null +++ b/docs/documents/network/update-vpn-route.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"vpnTunnelId","in":"path","description":"the vpnTunnel father","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"the vpnRoute id","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-route.RequestSchema.json b/docs/documents/network/update-vpn-route.RequestSchema.json new file mode 100644 index 0000000..ba31d0c --- /dev/null +++ b/docs/documents/network/update-vpn-route.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpnRoute to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"VpnRouteUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"VpnRouteUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"}},"additionalProperties":false,"title":"VpnRouteUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-route.StatusCodes.json b/docs/documents/network/update-vpn-route.StatusCodes.json new file mode 100644 index 0000000..c9afd55 --- /dev/null +++ b/docs/documents/network/update-vpn-route.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"vpnTunnel":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The vpnTunnel of the vpnRoutes","nullable":true},"cloudSubnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"VpnSubnetResponseDto"}],"description":"The cloud subnet of the vpnRoute","nullable":true},"onPremSubnet":{"type":"string","description":"Cidr of the onPrem subnet of the vpnRoute","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnRoute","title":"VpnRoutePropertiesResponseDto"}],"description":"Properties of the vpnRoute","nullable":true}},"additionalProperties":false,"title":"VpnRouteResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-route.api.mdx b/docs/documents/network/update-vpn-route.api.mdx index 556d724..316b7d2 100644 --- a/docs/documents/network/update-vpn-route.api.mdx +++ b/docs/documents/network/update-vpn-route.api.mdx @@ -5,7 +5,7 @@ description: "Update VpnRoute" sidebar_label: "Update VpnRoute" hide_title: true hide_table_of_contents: true -api: eJztWUtz2zYQ/isY9NKHJDppctGkmZHtpHWT2BpHdg+WpgMRkISYBBgAlONq9N+7C5Ai9bJlpTk0Ix88NrCL/fbbXRDAzqhjY0vbN/Q6U5c6d4IOGjRjhqXCCYMzM6rgH9qmmdGfROzOOG1QqXCAuQn8zYWNjcyc1DiYK/k5F0RyoZwcSWGIHhE3EaRQJycfuqBkxOdcGsFp25lcNKiNJyJltD2j7j5Da9YZqcZ0Pm8sAEwz1cuVEskjENDaQpaMQESYPU3KnSx54oiX3ccIy2RzCmTjmoU1oNDcr5nrgTk0IKwTnHS6Z6RS22YI1xixPHEw9AzMDgJGWOJY83uUf8Alp0mecQZZ0aCxVg5iihosyxIZM9SIPllUm9XssyS5GPnEKZDoIQYeloAUyIRxUliUgwxjsHYd8xbJwNMmz+rIz0GqTDYjrM5NLOi8QRMdoD5uZ8qSfAdD1yhWWRrDKJGK3E1kPFmyTu5kkpChIB6C4K2+6avOlMmEDZNS1RLmoDiEBXLbKNAkZ73j35vHwoxZqvuqr95qQ1JtIMXUSJvUe9MgQHh86+29YmRixOi3Po24jm1UMhv9UPreZIo3cagZgxlh+pQ4ZsbCgc7fw4Sp2z59Dbp5CtNe41XEXrcwTSnjXOIIS7o1tkYssWKVmRPIESbBpRpQwoaQSx7nZeAKmGNVhBrUSZcg3e8LsKdOY9zCzrQIBjOGYUlIJ1K7oaBWsbyX1vkgwTIE0CznRYOqPPFhCJX6REc/FAyv5VvlTSnivXls9VKp3IWvfNV51QEqO/HFHUrtUGqHUvvmpVb/uP38y6HmDjV3qLlvW3OoDhYySJaQqM+PjtYPphfvlg+h/pOYJUyu1OfuVblCEZyhITdyu3FqeZVlZJXDJV/lAfrpcVhl6rLgZUHzg0fv79v3LYeg79lpVH+xqRqOGYf9xt/j/ouyCLPrX4Y1Wgq4O0hW3BaiEjCO/U08bJ5h6Nfnm5Q5RE0mO9mB/dgxFe8CamssZpVnGFzQSE89AvvVRXdg9iFm9yrpA6XbKQ0bxov1DeNcO/JW54oftovDdvF/ZfawXXyD7eLlpvPFGV6jYCXyUZipMOSNMdr4GHS6Z6cXJ+X79rJWONeT6+o0BMevieb4fp77yOAreptGRTPARrNFV2GOg1PJhbFRx+RD1joX7k6b22jxlg/itR7APCpPXTAu+RwfwT3Y0LXIDXBMJ85lth1FLJMthqvGic55K9YpxadwK+LcSHfvNY4FMxDD9s2gPvUR0yxkUilQXdoy+U6sv9OfwfnNOPLnXz3i9K3A5/niqb+TAx1G/hNu7MVj/0Qw8NqTi7l9WT3Pv/nC0izk5NI5Niy2SIX6E0Bxya/dG8sOTzHiHznwAuv9KBJjifBWJ5NrPq1JkD96vS42IfAKf6rvVKLhTLpyX4c0VEBSpIJeswxxCx3deEsnF6CCrY2RTATe0gFJ2eVo02eto9YROpVp61Kmamys596SA4uY1b54sI7PklmRlzdlj8uCdrve71qkJvy9xASiW6Qnai03qRYZilOSY3NtAsjR1Gw2ZFZcmWQ+x+HQ8cE05NJiXfPNd/NZ9fV+sB+00dtbSNbVflOZML4epszIsKk8CciPl0Xb6yeyY/9vI7yyqtR9HVcJu4oH9s72ArelM7gHmHqYvxZOrX24BxLQmw9AqthFMHBh4iSYbPZQvVJcO50g/KDRiWORuZpsHcegtpl3r3ogNSwaiKnmKGzYHTZA4bdHp73vft/0YzMKFT7O2Rhlg2H8+Rfd3LYy +api: eJztWUtz2zYQ/isY9NIHJTppetEkmZHtpHXzsMdR0kPk6ayIlYiYBBhgKcfl6L93liAlypIdxWkOzYhHcJf77ZPY3UoSzLwcvJfvCnNuS0J5EckCHORI6PhNJQ3kKAeycPYDJnSiZCS14QOgVEZSoU+cLkhbPiyN/lii0AoN6alGJ+xUUIqiYRdHr85kJB1+LLVDJQfkSoykT1LMQQ4qSdcFS/PktJnJxSJaApgXZlQag9lnILC0Ja2YAqXo7ilS7ySpNpyoae8jBArdm6Pz/M1G2scS3fWGuFGKggWgJ1RieHYiVmy3CeJvTKHMSA7kA7lYXASM6OnQqmumv0MlsqIsFBDKSCbWEBpiDiiKTCfAHPEHz2xVRz5k2em0DpwGiZ2w42XEEVSgI42e6XIkUEBdzLdQBjtt06yL/DXk2AabQ29Ll6BcRDKzAern5cwhK3cQ9I7JVpJm2hqhjbhKdZKuSRdXOsvEBEUNAVV/7MZmOAedwSRrWb0AEoVDj4YGTNATJ6PD33uH6GaQ27EZm+fWidw6FNpMrctrbSKRpJhc1vIeg0gdTp+MZaxs4uPWsvEPre49MKrHR70EDaEbS0HgZkhPxvLvSQbmciyfKpuUORqqOR7H8LTPYSpBKc0nkJ11rDWFzONNyxxZQ6CN7wIVMLEl1TjPg63sVMDKQ5EkTRmb+2UD9pgs+y1UpqUzwDnglNCEud+SUDexvNSeaifBzIupdetxEUlTZrUbQqZ+oaKvGgtvxNtKm5ak1uZzX2+Z2ir8ts66mvWCmQk/0T7V9qm2T7Vvnmrdn9vPv+xzbp9z+5z7tjnH7A59YY0Pgfrw4GDzYnr6Yv0SWv8Siwz0jfzcPStvmCiSnoBKv/XV+lfWka0Ubu3VXqC/3A83LXXe2GVp5juv3t+37rdcgr5npZn90bZsOAQlzkMf91+kRXi7+WfYMEsDdwfKlW0bUm0IZ3UnHopnOPr14TZmhQQ620mONp7AJLuAutUX1Uozdu4kw/y4RuC/Oun2lr3LsvdK6b1JbzdpKBiPNgvGa0viuS2N2peLfbn4v1p2Xy6+Qbn4bdv94oTbKAOZeINujk48c8662gfDs5Pj06N2vr3OFe714t3qNpQjpVbx/LysPcNT9IGMm2WAj6vlVmHBh3Ot0Pl46MoJ9F8jXVl3GS9n+T6uOjuARdzeunxcabXgIXgNNmwtSpfJgUyJCj+IYyh0H/irSWZL1U9sLnkU7jEpnabrmuMQwaGTg/cX3VdvOMxCJLUEq6at0C9wc05/Yjw6En/+NRJkL5HH882of1hSap3+J3TszbA/RVAYjMuxfb4azz/7BHkRYnLtHhs+tgyF7gigafI7fWO74WlO6iEHN7C1Hk1grBm8Pyz0hk4bFOKP0eiMlxDcwh/bK5NZUDf7dVuggULHJvD1Whf3WdGtXbo4LdDwamOqM+QuXUay3XIM5IP+Qf+AlSqspxxMxxqbsbemwNJnnT/eIgpRUjVx+b7dcXkZyUF337UMTRmtW4LRLcOTudaXVMsI5Vda8XIttZ5YVFVNwONbly0WfBw2PhyGSnvOa7W9N69Wf+8790Fbtb3E6419UxswdT7MwelQVL4IyI/nzdrrJ7Hj/m8rvDarzHUXVwt75Q/end0L3C2bwXuA6br5a+F01of3QKIVD1Gitoqw48KLoyCyN2L2FePG7YThB45hkmBBHdoujotOMT97O5KRnDQLxNwqJnZwxQtQuArobK17XTfrs0pmYGYlzJg2CObnX93ctjI= sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/network/update-vpn-tunnel.ParamsDetails.json b/docs/documents/network/update-vpn-tunnel.ParamsDetails.json new file mode 100644 index 0000000..19c31dd --- /dev/null +++ b/docs/documents/network/update-vpn-tunnel.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"the vpnTunnel id","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-tunnel.RequestSchema.json b/docs/documents/network/update-vpn-tunnel.RequestSchema.json new file mode 100644 index 0000000..cf16cd0 --- /dev/null +++ b/docs/documents/network/update-vpn-tunnel.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the vpnTunnel to update","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnTunnel to update","title":"VpnTunnelUpdatePropertiesDto"}],"description":"Properties of the vpnTunnel to update","nullable":true}},"additionalProperties":false,"title":"VpnTunnelUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnTunnel to update","title":"VpnTunnelUpdatePropertiesDto"}],"description":"Properties of the vpnTunnel to update","nullable":true}},"additionalProperties":false,"title":"VpnTunnelUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of vpnTunnel.\r\nAdmissable values:\r\n- Site-To-Site","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocof af the vpnTunnel.\r\nAdmissable values: \r\n- ikev2","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetfime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true},"secret":{"type":"string","description":"Secret","nullable":true}},"additionalProperties":false,"title":"PskSettingsDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsDto"}],"description":"Client settings of the vpnTunnel","nullable":true}},"additionalProperties":false,"description":"Properties of the vpnTunnel to update","title":"VpnTunnelUpdatePropertiesDto"}],"description":"Properties of the vpnTunnel to update","nullable":true}},"additionalProperties":false,"title":"VpnTunnelUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-tunnel.StatusCodes.json b/docs/documents/network/update-vpn-tunnel.StatusCodes.json new file mode 100644 index 0000000..cda2d5f --- /dev/null +++ b/docs/documents/network/update-vpn-tunnel.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"vpnType":{"type":"string","description":"Type of the vpnTunnel","nullable":true},"vpnClientProtocol":{"type":"string","description":"Protocol of the vpnTunnel","nullable":true},"ipConfigurations":{"allOf":[{"type":"object","properties":{"vpc":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"Vpc of the vpnTunnel","nullable":true},"subnet":{"allOf":[{"type":"object","properties":{"cidr":{"type":"string","description":"Cidr of the subnet","nullable":true},"uri":{"type":"string","description":"Uri of the subnet","nullable":true}},"additionalProperties":false,"title":"SubnetCidrResponseDto"}],"description":"Subnet of the vpnTunnel","nullable":true},"publicIp":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"ElasticIp used by the vpnTunnel","nullable":true}},"additionalProperties":false,"title":"IpConfigurationsResponseDto"}],"description":"Network configuration of the vpnTunnel","nullable":true},"vpnClientSettings":{"allOf":[{"type":"object","properties":{"ike":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"encryption":{"type":"string","description":"Encryption","nullable":true},"hash":{"type":"string","description":"Hash","nullable":true},"dhGroup":{"type":"string","description":"DhGroup","nullable":true},"dpdAction":{"type":"string","description":"DpdAction","nullable":true},"dpdInterval":{"type":"integer","description":"DpdInterval","format":"int32"},"dpdTimeout":{"type":"integer","description":"DpdTimeout","format":"int32"}},"additionalProperties":false,"title":"IkeSettingsResponseDto"}],"description":"Ike settings","nullable":true},"esp":{"allOf":[{"type":"object","properties":{"lifetime":{"type":"integer","description":"Lifetime","format":"int32"},"hash":{"type":"string","description":"Hash","nullable":true},"encryption":{"type":"string","description":"Encryption","nullable":true},"pfs":{"type":"string","description":"Pfs","nullable":true}},"additionalProperties":false,"title":"EspSettingsResponseDto"}],"description":"Esp settings","nullable":true},"psk":{"allOf":[{"type":"object","properties":{"cloudSite":{"type":"string","description":"Cloud site","nullable":true},"onPremSite":{"type":"string","description":"OnPrem site","nullable":true}},"additionalProperties":false,"title":"PskSettingsResponseDto"}],"description":"Psk settings","nullable":true},"peerClientPublicIp":{"type":"string","description":"Peer client public ip address","nullable":true}},"additionalProperties":false,"title":"VpnClientSettingsResponseDto"}],"description":"Client settings of the vpnTunnel","nullable":true},"routesNumber":{"type":"integer","description":"Numbers of valid vpnRoutes of the vpnTunnel","format":"int32"},"billingPlan":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}],"description":"Billing plan","nullable":true}},"additionalProperties":false,"title":"VpnTunnelPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"VpnTunnelResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/network/update-vpn-tunnel.api.mdx b/docs/documents/network/update-vpn-tunnel.api.mdx index b001e96..7225ee4 100644 --- a/docs/documents/network/update-vpn-tunnel.api.mdx +++ b/docs/documents/network/update-vpn-tunnel.api.mdx @@ -5,7 +5,7 @@ description: "Update VpnTunnel" sidebar_label: "Update VpnTunnel" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/network/aruba-network-api custom_edit_url: null diff --git a/docs/documents/project/create-folder.ParamsDetails.json b/docs/documents/project/create-folder.ParamsDetails.json new file mode 100644 index 0000000..60c0501 --- /dev/null +++ b/docs/documents/project/create-folder.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/create-folder.RequestSchema.json b/docs/documents/project/create-folder.RequestSchema.json new file mode 100644 index 0000000..dc564ab --- /dev/null +++ b/docs/documents/project/create-folder.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderDto"}}}}} \ No newline at end of file diff --git a/docs/documents/project/create-folder.StatusCodes.json b/docs/documents/project/create-folder.StatusCodes.json new file mode 100644 index 0000000..ca442e1 --- /dev/null +++ b/docs/documents/project/create-folder.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/create-folder.api.mdx b/docs/documents/project/create-folder.api.mdx index 9964a01..74490bf 100644 --- a/docs/documents/project/create-folder.api.mdx +++ b/docs/documents/project/create-folder.api.mdx @@ -5,7 +5,7 @@ description: "Create folder" sidebar_label: "Create folder" hide_title: true hide_table_of_contents: true -api: eJztVktv00AQ/ivWHiEk4XWJACltQRQkWtEgDk2FJvY4WbreXXbHpcXKf2fGdhJTt1XLDYke2nr2m/e3O1MpgmVUk1P1zpkMQ1RnA+UhQIEkX5PTSln+UBMFXj+5YJl2Vg2Utiz6UWK44o8MYxq0JzmaqNkKk4B8FgmzZHp8mOzUYrrCAtSkUnTlxWqkoO2ytpFDaYhFT9V6zVG0JvZcdiX41FlCS/IveG90CuJu9D2Kz6pv2C2+Y0ps2AfnMZDGKKdNMn33tjQGFoZlFEpcd+LZYhfOGQTbBzMaskxLPGCOO+5yMBEHijQJti3xATklKoSX9A+H323Co8f/ah6iFDB6Z2MT2LPxC/nzJ6M/uWS/pR/jX4zHfcgeZMnnhrEcWYesdZu9Af2g+jSn96hPm9Q9kJGAyo5xvsKESwyMzV0ogBrR82c3t4FAm3v50ZY92fQ+Qd3asWqXmWI5axQHdQSxx72HMu9/Ze+q7F89Sv9LentJRe3lTQ/GIScU2FJygoHnY/I2BBfqHvDEPDjab7xen637AYEwyesnjGPkMb1yGR94Vz88HmjFX6O8neZcydp8M8nLwFVRKyIfJ6MRD/QhhHIBqXFlNkxdoWTuRkzLoOmq1thDCOxocnrWPToRYjS93wC25WOrH7G/FBzyAxso+fB1lpA7x/r5bvaKackpBP2rvs6bzWKFIAlKOYSNn3e7wNtLKHzDotZAf4XYNjd3dWRtc6aS7HC/8FJyneKQuyWEHk697gV8Fzh5P5sdy2Yzt3N74H5a4/j5J957XkGyCpi/nqsRE8RyMUa+1ZM85iohCEskBnxbGLDnc/UmOWKkrEm5NvhqBG84ls3GxNvQcDwcy9iRDhdgO4lfJ8MfCWwb0hlAbKWmQNXy5FTlu61vJQxiUVUtIOKXYNZrETc7nnAh01GuQ7YdqNf8bYfenRvgjVGdM2Oub5gXYEpB1qS8gKCbu8hMHGzoIVE1qu14fjIT6zvd3qBYDzYa0zRFTx1sN6Kzzs06PjqZMWzR7qGFywQd4CcL5TdHOFCurkJ9I2pZpbi5yxKWgm08y89viC/1/A== +api: eJztVt+P0zgQ/leiebwzbeG4lwiQursg9k66rdiie2ir0zSZNmYd29iThVLlf0eTpG3YLKvl3pDIQ5Pa83s+e749MG4jpAt440xOIcJKgceAJbH8Sxd7sFgSpIBeP7mlELWzoEBbSOFjRWEHCnKKWdCeZSuFeUFJoI8VRaY8mc4uk5NazAoqEdI98M6L1chB221jY4OVYUjhKdT1SkFn4szlO5HPnGWyLJ/ovdEZirvxhyg+90PDbv2BMgYFPjhPgTVF2W2TGbq3lTG4NgQph4rqXjxH2bVzhtAOhWsFmOda4kEz67nboImkgDWLbFfiC3YgKkyf+ScOv9+E337/WfMQpUDROxvbwJ5NnsvrW0T/45LzDn61gueTyVDkDPPkXYtYUH2wNm32BvUP1afdfUR9uqQeIRkZueoZB22ZthRAwcaFErld+uPZ/W1g1OZRfrSNjDZ7TFDf7dj+lBnMglsbKi+aCOIAez+KvF+Vfaiy/+tS+lXS75dU1P6878K4tEzBokmuKdxSSF6H4ELTg+ns8uLqvPV6d7aeB0KmZNNcYaCgJC5cDil411w8HrmAFMabbporiI35dpJXwUAKBbOP6XiMXo8wVGvMjKvyUeZKkLkbKauC5l2jcUYYKEC6WPW3rgUYbe8PAsfyodd/05AUXNpIgZO//p0n7G6oub5bXjGtuHBBf2mO84FZFISSoJRD0PjuxAVef8bStyjqDAwpxLG5G9dE1jVnKsmOzksvJdcZjWbBCaBHU68HAT8knLydz2fCbJZ2aS/cJ2sc5gkXlLzApAi0ebmEsfNk0eux7/QkjyUkjGFL/HIJ/60N2pslvEquPFmhSRtt6MUYX4GCA2NK4eloMprI2JEOl2h7id8FwzcJHBvSG0C1aiGw73CygM2J9RWCoHQB+/0aI70Ppq5lueV4goVcRzkO+XGg3vF3HHoPMsB7o7qh3YBh3qKpRLIB5S0G3Z7FxapWB3hIVK1qN56fzMX6SXcwKGp10JhmGXnuyfYjWvVO1uzqeg4K1h0PLV0u0gE/gWp+UwAFrqlCcyKatT0YtNsKtyLbepbnK4gv9fw= sidebar_class_name: "post api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/create-project.ParamsDetails.json b/docs/documents/project/create-project.ParamsDetails.json new file mode 100644 index 0000000..60c0501 --- /dev/null +++ b/docs/documents/project/create-project.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/create-project.RequestSchema.json b/docs/documents/project/create-project.RequestSchema.json new file mode 100644 index 0000000..afd0b90 --- /dev/null +++ b/docs/documents/project/create-project.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"project to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/project/create-project.StatusCodes.json b/docs/documents/project/create-project.StatusCodes.json new file mode 100644 index 0000000..7d1171a --- /dev/null +++ b/docs/documents/project/create-project.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/create-project.api.mdx b/docs/documents/project/create-project.api.mdx index 83cfa81..76ad6ed 100644 --- a/docs/documents/project/create-project.api.mdx +++ b/docs/documents/project/create-project.api.mdx @@ -5,7 +5,7 @@ description: "Create Project" sidebar_label: "Create Project" hide_title: true hide_table_of_contents: true -api: eJztWlFv4zYM/iuCXgZsaZJ23T0EtwPS5oZlw65Bm2IPTTEothLrakueJLeXBfnvIyXbcWq3Tdf2gG3uQwFLJEWRH2nS4ZpatjR0cEUnWn3mgaXXHZoyzRJuucaNNZXwQAeUpeLgFtaEkrRDhYSlPzOuV/AQchNokVrcGtBpxInmsGcsD8lwMiZbNhNEPGF0sKZ2laJUY7WQSydjwbLYwtIh3WxAi1zEiQpXSL97Ruq1JVaRQHNmOUgIlLRcWiRmaRqLgCFx77NBjnX9aDV3F+6gsJRrK7jBXbg5C5ndg9IbpukqVVVzwxJH3aEyi2M2j4HB6oxvOrkDSilMa4Y2FZYnpi5985B4EENiYWz9CGBhYSiQnsWTyg0WLDYcFBAWaQtJv+X3H1mFp+1e+XGD7Gj2lF3OUq8RqSwTtSAW4JO7t8lcJU5K+XOlYs5k7YCxDBED3BCxIMJ+Y5zonL88AkQuVBxyPQ6f1nkrEkX95PjIeETuIq55VXMiDIkVkoYzPZPjBZHKEpPyQCwEDzv3aT2IQyJkqaDX6sXu3FI4hz6TeywNEFymAAhe8Fv+xbZR1UZVG1WvGVXVV9a337Xh1YZXG16vFl4oQXOTKthxTj/qH9aLylN/n91S0r3t0piJN4pHsYcHi3ARYRO4/iURDVb19j1Z7YHZsIiqDHwJUFUl2p4INUcGQkbYFDx5zmlOTULfQyyUThg2Ifh8YEWzrdSd3DP0dq/h+F4cHOc5kP9/OQ9CWGU64OZTlszBklvRAuJ16Wy7K9oTorYlbwmkO2EjSF271ygBABLfHT8v0e6XWp+dzgp/vywpFlJqxcbblRptamtTW5va2tT2VVPbG3+daHNam9PanNbmtK+Y05D1qH9c71c/KXKaN6pActzv10lOWEjO/Q8pr9HW+t26Yevpyd9mD0pjmc1MIzaqzv3+qBm0lol4r3OEhJNksI9SD7pqvdnxE3AkI6eBeXFV3Vr2Mcv+o5d6a9KHTbpxCaPhG9ilZJmNlBZ/vc6HsNYJbcZoM8Z/wKTI9kNTiTGGC2msNy+4voV66qPWSjsfDCfj0dmpP7WxkudkUlZy0IJFCqo2mipXq6TMRvDUyysyA0vGHeCHUjINdqGRtakZ9HosFV2mszkLYpWF3UAlFEdIDA8yLezKcZxwprEIvbqubl0gNLz3C4JtU5WKX3l9vsX/vEB++X1KrLrhWCDnIzLDPHW6gKb5kEzEGf4kggZBPJ5vx1o+fmFJ6nFUbUBzYaX7igmdfOG61jzsqlefqPH23xbGZVfocLNQ7sq534doxe5pkqI3RcC7uYe6w1TULPEYMfl5Op3g9M9MzuQIWqlYMd8Nvmck0nzx44z24BYSrFw4uYsGmlHoSvWSWyD4Yx4zeTOjH8gZUOIo0ULE/H2PfQBdiqmiAT3s9rt911QBdhImK1as4ay5l6q83ECMA9c6h+AVLSEIuIkQnbC2Xs+Z4Zc63mxw2U9CIcxCYTDWwrKwv3dg+UZ9dE6qUa0bAOP9OaxbFmdI6fB+y7TwgX6FKMmRh1p51rxbOJii9C1v7S206RQcwyDgqa3QVjW6rkTt5OxiCmTzfForUSFSa3YHi/gfNIRG3FnBYdatrSm4d5mxJdL6k/Hvb9lWlzM= +api: eJztWllv40YM/isDvhRotc7RdB+E3QVybFG36MbIgT7EQTGWaGs20ox2hko2NfTfC45kWY6cxGmSBdoqDwYi8RryI0VKnAPJmYPwAkbWfMaI4DKAXFqZIaHlG3PQMkMIQebqzTVap4yGAJSGEL4UaG8hgBhdZFVOfCuEswSFxS8FOsJY7I+GYsnmogQzCeEc6DZnqY6s0jMvYyqLlCCEHSjLywBqEQcmvmX6VR15Za0gIyKLkhACiIwm1MTEMs9TFUkm3vrsmGPeVW0m/sABC8vRkkLHdzMkGUvagLJyzLqjtE2tHSs8dQC6SFM5SRFCsgWWQR2ARoq0VrJPFWHmutLL+8STnIlUOeqqKAOQcayYXqaj1gmmMnUYACli2oWk3+vzH5FhbatHftghK5Y95pfjvLJItC4LMxWUoKjDu85dDU4a+RNjUpS6o2CoY8YAOqGmQtF3zouu+RsVZQBTk8Zoh/HjNi9FsqifPZ8YHombBC22LRfKidQwaTy2Yz2cCm1IuBwjNVUYB3dpKxDHQunGwMqqZ4dzSeED+kTuoXZo6TyPJeGCn/Ar9VnVZ1WfVS+ZVe1H1vc/9OnVp1efXi+WXizBosuNdlXQd7d3uk3lYXWe1VbSP+3yVKpXyke1QQQX6aLideD6l2R0ADVeDm43wGy8yKrCoRU3iWnQ9kiqeTJl9BEPBY/qOaypRVzNEFNjM8lDCP//htR6X5kbvWHqrR7D8z07OU5qIP//ap5FZwoboftUZBO0LdFKE868b1dFV4RsbcPbAOlGUaL0nWM0AFCa3u49rdBuVlqfXM4W8X5eUVxI6TQbr9dq9KWtL219aetL2zctba/8dqKvaX1N62taX9O+YU1j1t3tve68+smIw3pQLQPY297ukhzIWJxUH1JeYqyt7nYd2y1P1Wk2oHQkqXBrsdEO7o+760FLUqUb6VHakdTRJkbdG6p5uRKnSYrZkbfAPbur7j37kGf/0UO9d+n9Li19wVjzDuxcy4ISY9VfL/MirA9CXzH6ivEfcCmz/bSuxRhqQsv95inaa7Tio7XG+hjsj4ZHx4eV1rWdPIpR08llSImJebXD+F4ll5RACFt1R+Z4ecQrqJZSCptCCAlR7sKtLZmrgbTFREapKeJBZDLgFRKHUWEV3XqOA5SWm9CLy/atU4ZGFf0FwXKoytVv2N1vqT4viF//OBNkrpAb5HpFZr8unT6hF0syCUr+JMIOYTyeLNdaPn6VWV7hqD2A1sKa8C02dOoLl53hYdW87kZN5f9lY9xMhR43U+OPXMd9n704OMxyjqaKcFBHaLCfq44nHiIWv5ydjXj7Z6zH+sjc6NTIahp8J0Vicfp+DFsmRy1ztQjygB00BkHSzpDej+HPSSr11Rg+iOMcNa8STVWK77bkBwhgsVUUws5ge7DthyrjKJO65cUOztbPUq2HWxlU4JrXELyABoKXASSMzvAC5vOJdHhu07Lky9UmFMMsVo5zLW4a+zsKmyfqg3tSa826wtvOHta1TAum9Hi/llZViX7BKKmRx1ZVrPW08OaMpS95O0+hMlhw7EcR5tSibVt02cra0fHpGQQwqbe1MhMztZU3EPjfECAA473gMeuvzSGVelbIGdNWmvnvb9lWlzM= sidebar_class_name: "post api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/delete-folder.ParamsDetails.json b/docs/documents/project/delete-folder.ParamsDetails.json new file mode 100644 index 0000000..4ff074f --- /dev/null +++ b/docs/documents/project/delete-folder.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/delete-folder.RequestSchema.json b/docs/documents/project/delete-folder.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/delete-folder.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/delete-folder.StatusCodes.json b/docs/documents/project/delete-folder.StatusCodes.json new file mode 100644 index 0000000..44f3e27 --- /dev/null +++ b/docs/documents/project/delete-folder.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/delete-folder.api.mdx b/docs/documents/project/delete-folder.api.mdx index 6da16cd..81ee0ce 100644 --- a/docs/documents/project/delete-folder.api.mdx +++ b/docs/documents/project/delete-folder.api.mdx @@ -5,7 +5,7 @@ description: "Delete folder" sidebar_label: "Delete folder" hide_title: true hide_table_of_contents: true -api: eJztV1FP2zAQ/iuWnzapazrGXiKGVGjR2KaBoNMe2mpykysxuLaxHbYuyn/fXZJCoAUxiT1M6lMT++6+u+/OzteCB3HheTzmR0al4DyfdrgVTiwg0Fs8LrjGFx5zmfIOlxqfrAgZPju4zqWDlMfB5dDhPslgIXhc8LC05OGDk/qCl2XnNoiw8s0NBpZGr6Jd5+CW+JKCT5y0gbZiPsqAEQD4ACnrnx6zO7fHgCjGXOQq4NJbhJ1Sjt4a7cGT9U5vl37uA3017NDoADrwssN3e711kwORsrM6F8RIGmuCh18hskpQHcV6WmZ2CQm5WGcsuCDrNOrd9eR1rpSYKaj5xGSCDOp5lj6IkLeCI7MBLsCh7dy4hQj10rudTc4pBCHVs3CkRiSdPCcptBZpKolCoU7bBNxVxnEdPRaDKgPPKydrlUwE+UWX3myZfTFmq2ndUvpylJbVhbHxTgnsyOQ63V4X2+vif2V2e138g+vi/SZ9cYwFOYzEzsGhymFD54yreoC6Z3ByuBJY970GoFCjsXml2zBHVGyZQTGGZrRBrSGdFvOoNvFRIdOS5FOFUmu73CE5PAvB+jiKUJ11hctnIlEmT7uJWXASUR6S3MmwrDwOQDjEi8fT9tY5zUc9AiuDWxYx6mdYV3jHKMtcYJ++j1gwV0DCrhGJ/RwrcfJ3dapXMjEDQXWWVafmporfMN2nlLuHC0v8yQS6SD1NZ7dv5RrsU8bs42h0SmJzoid6YH5qZVD6BZSie4JlDuYfJjzCbmssKbKNHx2RCWdBuAsIaPBjpoS+mvB9doKWpFznUsFeJPYxl5WIRYHa7XV7JDmt8WEhqlPW1P+ws/cKuKW19TXBKFUji6blY960HJ1j1O3YqAxRaKMoZsLDN6fKkpZr8U19TaWnCccBmgvlH05bcfcde1Kab8ztCrv/UPrfCJWTZTVgN8LJ+nj9VSKvzpp/IK/ZY9CrEdTLNuYqJaSmnKJVM1uEXm/0kwRsaLm0o05bZ20w/DIcDXEq/wBwLJYG +api: eJztV02P00gQ/SutOoHkjcPHXixACpNBO+wKIgjiMIlQxV0ZN9PubrrLs5u1/N9XZSczGTKgQYLDSjlFcX29flVdfm6B8SJBcQ6vvNUUEywzCBixJpZ/xXkLDmuCAoyGDIyDAgJyBRlE+tKYSBoKjg1lkMqKaoSiBd4EiUgcjbuArsuuk2Awv11RTMa7XbYvDcUNZKApldEEFlMB84qUFKDEpNVkdqZuwr5VSHKssbEMBTyCrlsKxhS8S5TE+/H4qfzcLvTGqxPvmBxDl8HT8fjQ5SVq9W7AAhmUW28pT/9wHizKOdpDWH71mUoJCdEHimwGGIP1ELxrrMWVpYHPLgM2bO/nmRi52UsOxjFdUIQM1j7WyMOjJ4/vCtbEaOy96hiXGF15H1BdBqi1EQrRzvYJuDkZzKJfWaqnPYIEfVAI1pQocfnn5I/M/jRm+2k9UvrzKO36hXHnTmH1yjdOH9fFcV38X5k9rotfsC5+v0tfnDmm6NCq9xSvKKrTGH3sezCZnU3fnuwE1u2oKVliUutet0EGNXHlNRSge4O0RnRaAfngkvLW6E7kU19l0HZNtFBAxRxSkecYzAhjs8LS+kaPSl+DiKhEZRMNb/qIl4SRIhTny33Te5mPYQR2DtcsYjB/0qHCO3OJIqvXH+eK/SWJsNuKxEnDlY/m3/5W72RiRSjn7PpOrX2ff8v0RCCPTuog/JmSRrPoZTpHk2AOyn7PWf0xn89EbC7cwk3938561IorUs9QVZHWzxeQ+0AOg8nDNk6uyAIUY7wgfr6ATyuL7nIBL9TbQE6U69pYepbjC8hgJ2ILeDQaj8YiOYNPXGN/y7bn/7qztw5wTeve26TLhka225afw7blkEFhtGj6yicWQ9uuMNGHaLtOHg/iW/qqTZIJ11Cs0aavp629eY99V5rfie2SNgfS/wptI579gF1hNMP1+iEgD95tv0Aeqm+V3o2g2+zX3EEyGrpll+1mS6oPhklZUuC9kP2sy727Nj3963R+Cl33H3AslgY= sidebar_class_name: "delete api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/delete-project.ParamsDetails.json b/docs/documents/project/delete-project.ParamsDetails.json new file mode 100644 index 0000000..fde389c --- /dev/null +++ b/docs/documents/project/delete-project.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"unique identifier of the project","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/delete-project.RequestSchema.json b/docs/documents/project/delete-project.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/delete-project.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/delete-project.StatusCodes.json b/docs/documents/project/delete-project.StatusCodes.json new file mode 100644 index 0000000..850dc58 --- /dev/null +++ b/docs/documents/project/delete-project.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/delete-project.api.mdx b/docs/documents/project/delete-project.api.mdx index 7ad8cbf..028f27e 100644 --- a/docs/documents/project/delete-project.api.mdx +++ b/docs/documents/project/delete-project.api.mdx @@ -5,7 +5,7 @@ description: "Delete Project" sidebar_label: "Delete Project" hide_title: true hide_table_of_contents: true -api: eJztWFFPGkEQ/iubfWoTCmjtC7EmKDS1bSpRTB+ENMvdwK0uu+funC298N87c3cgCjU00QcTnsTbmf2+/WZ24LtcopoE2bqSPe+uIUI5rMlUeTUFBM8LubT0j2xJHcua1JY+pQoT+hxDiLxOUTt+mFl9m4HQMVjUYw1euLHABERabVyTHm4z7SGWLfQZ1GSIEpgq2colzlKGCOi1ncj5vLZEVal+d0dMGKSCJxg/W8PvExQDQECIRbt3Ku7T/gXEe4xVZpAe7RHskDmG1NkAgaP3mwf85yHQdydOnEU6ppzX5EGzuR5yrGJxXnIhjKiKZnj4jY3UKD5Hvk7LjSqlSLMUPOqSRrm6Tt5mxqiRgVJPIoMazXaRARVmK5uTsggT8BQ7dn6qsHz0fn9TcgyotNkKR1tCstE2pChaxbFmCZXprQpwfzLuUsqYdgoGQRZJaWp0pDivcR3cTtlnU7bo1p2kzyfpvBgYe+sD49KqDBPn9R+IdxNjNzFeq7K7ifEiE2PjrxAUn1xmd+NiNy5erbK7cfEC4+LDJkdySgfytJO4AE++SHS9d76oATmlztnJwpI9zOqAIRsoeksHR64wceTfKI5XuDbsBVuyUbm80Mh1PGfLVeCUBjLzJI9MENPQajTI0dWVz0YqMi6L65GbSjZeAaLMa5wVGcegPMnfuhquLl1wh5RNsAhY6ki7foV1V3hKVs6j+PKjL9DdAJvByli2qx9cxb1eWMsEVAylLtqOXbF/pXWbKddPpikrqCOoV6rU26leg30qWHzu93tsUAd2YDvulzWO7CI75UMlEg/jjwPZoHpbOtJC1jpfkoEUqPwEkAJ+joyyNwN5JM4okt3uWBs4bKgj4rIwvmRq6816k21q6gJOVXHPqvOv1fbBCZa6rnyh0DZFJfOq6FdyUXTKbumYXx0khMMreT5SAS69mc/5cWnZubKxDtzl1ENjZcLjjsvvv8ueNPQbyd1Q/R+/MLhTJuPIosXulNflFfsvIm/Oq/cWb8UWLzk2Uls0qZ2tclpQJunmQ4qquo/ZlQvtKIIUV1JWdx2uXMdO91u336W+/Qtcgy4R +api: eJztWF2P0zoQ/SvWPIEU2i6X+xIBUtkuYi9XUC1FPGwrNI2nG7OO7bUnCyXKf0fOx26XFLRI8IDUp0iZGc/xmfEkxxUwXgRIz2Hu7SfKGFYJOPRYEJOPhgoMFgQpKAkJKAMpOOQcEpAUMq8cKxtflkZdlSSUJMNqo8gLuxGck3Ddwgl4uiqVJwkp+5ISCFlOBUJaAW9dTBHYK3MBdZ3cZEWnHl2TDzFJl/6qJL8d5F/kJGICCkxSTOen4jbsR4niGhssNUMKR1DXq4gxOGsChej9ePIkPu4memPFsTVMhqFO4MlkMnR5gVKctVgggazzjunpC4+dxriPagjLrjumnLeOPKsWRmsdgjel1rjW1PJZJ8CK9f08AyOXO4uDMkwX5CGBjfUFcvvqn8f7giUxKn2vPMoERpPdB1SdAEqpIoWo57sE3O4sdulaUzFrEARogpzTKsMYN/4U7IHZ38Zs060HSn8fpXUzMI6GA+O9wZJz69VXkoeJcZgYfyuzh4nxRybG3r8QFi9taQ7j4jAu/lpmD+PiD4yLf/cpklPD5A1q8Y78NXlx4r31TQ2m89PZ2+Nekt2NmpEmJjG/UXAFcW4lpCAbS6xN1IIpjDuVF8aVknWUXE2eVkCWXkMKObML6XiMTo3Ql2vMtC3lKLMFROEVKCu94m0T8YLQk4f0fLVrehc7pG2C3uGGR3TqNQ1V4akJ5Fn892Eh2F5SFIOdsJx2P1zNue6lZU4oqeVFmY1t1u+4nkbIo+PCRQZVRqOOldHUqUHanzmLV4vFPArUpVmamf1stEXZKOWnKHJPm2dLGFtHBp3qaR3FQ7IEwegviJ8t4eNao7lcwnPx1pGJanejND0d43NIoBe+KRyNJqNJlKnOBi6wOWfd/ge1vbODG153Pih10lay6op+Dn3RIYFUyXh1kNvA0VJVawz03uu6jq9byR4rK1WIXS4h3aAO33dcdfst+6mg3wvukraDC4Nr1GX0bFrsGr1qj9gvAXlw1t1bPBT3uOTYC61vUrPdxdRDVhLqVZ303RfRtYZplpHjnZDdVVc7x3F28v/J4gTq+htcgy4R sidebar_class_name: "delete api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/disable-automatic-renew.ParamsDetails.json b/docs/documents/project/disable-automatic-renew.ParamsDetails.json new file mode 100644 index 0000000..4ff074f --- /dev/null +++ b/docs/documents/project/disable-automatic-renew.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/disable-automatic-renew.RequestSchema.json b/docs/documents/project/disable-automatic-renew.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/disable-automatic-renew.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/disable-automatic-renew.StatusCodes.json b/docs/documents/project/disable-automatic-renew.StatusCodes.json new file mode 100644 index 0000000..44f3e27 --- /dev/null +++ b/docs/documents/project/disable-automatic-renew.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/disable-automatic-renew.api.mdx b/docs/documents/project/disable-automatic-renew.api.mdx index 8fceeff..0532447 100644 --- a/docs/documents/project/disable-automatic-renew.api.mdx +++ b/docs/documents/project/disable-automatic-renew.api.mdx @@ -5,7 +5,7 @@ description: "Disable automatic renew" sidebar_label: "Disable automatic renew" hide_title: true hide_table_of_contents: true -api: eJztV11P2zAU/SuRnzapazrGXiKGVGjR2KYNQac9tNXkJreNwbWNfQProvz3XeejBFoQk9jDpD61se/HuedeOyc5Q75wLBqzEy0TsI5NO8xwy5eA/ika50zRA4uYSFiHCUX/DMeU/lu4zoSFhEVoM+gwF6ew5CzKGa6M93BohVqwouisg3Aj3txQYKFVE+06A7uihwRcbIVBvxWxUQqBTwAOIQn6Z6fBndtjiXyMOc8k0tJbSjv1GJ3RyoHz1nu9ff9zP9FXHRxrhaCQFR223+ttmhzxJDivsFCOuLb26eEXhkZyX0e+CUvPLiH2LsZqAxZFBaPa3QSvMin5TELFJ4FBgfJ5lg45Zq3gxCzCAizZzrVdcqyW3u1tc04AuZDPyiMUZVLxc0CRNU8S4Snk8qxNwF1ljNbJYzkoEThWOhkjRcy9X3jp9I7ZF2O2nNYdpS9HaVFeGFvvFAxOdKaS3XWxuy7+V2Z318U/uC7eb9MXp1SQpUjBBVhSOcHQWm3LHpDuGXw7bgTWfa+BcB5SwDPUxIKISS8puCW0pN1STbKMHCTJON8kr9giFs4rkRfmIinCtWPj58r0lejLLLHGUkTjojAk2dblNpvxWOos6cZ6yby6chBnVuCq9DgCbqkr0Xja3rrwg1PNRmOwppeifoZN6XdKes1i8OnHKEB9BV7x1eqxn1FhVvwuj3ujH1PgVFNJl1BzXcavW9D3kLvHS+OJFTF0qSd+bLt9IzbSPmUcfByNzrwKnaiJGuhbJTVpQiSNesCD1ML8w4SFNAaKSgpN7efPzoQFyO0CkAx+ziRXVxN2GHwjSy9p50LCQcgPCUujbkm5dnvdnteiRjtc8vL41fU/3vJ7pawJbr1wKF7Z0ryehTGrZ4Gco1LaPxgH6mFKALxlns+4g+9WFoVfrgS7b3lS4aFRm3PpHk5ofvfue1LObwV7RYPx8HPhhsvMW5azd8OtqI7kXwF5dV5/tbwOHkvdTKdatXM2kIirYkpW9dj57NVGP47BYMulHXXaOpWD4ZfhaEgD+wc1SKpP +api: eJztV01v2zgQ/SvEnFqAa7kfexGaAG6coukuWqP1Yg+xUYzFccSGIllylNYV9N8LSlbi1EmRBbqHAj4ZFufNPL4ZUk8NMF5EyM/hlTOKQoSlBI8BK+L0Lz9vwGJFkINWIEFbyMEjlyAh0OdaB1KQc6hJQixKqhDyBnjjEyJy0PYC2lZeJ0Gv/7iiELWzQ7bPNYUNSFAUi6A9p6Uc5iWJVIAikxKT2Zm4gd1XKOVYY20YcngCbbtMHKN3NlJM0U/Hz9PP7UJvnThxlskytBKej8f7IS9Rifc9F5BQbKNTefrKmTeY9tHs03KrT1QkiA/OU2Dd0+hX98nb2hhcGer1bCWwZvOwyMjI9U5y0JbpggJIWLtQIfePnj29C6yIUZsH1dE2MtriIaRaCaiUThKime0KcLMzmAW3MlRNOwYROpD3RheYcNmn6A7K/jJlu2k9SPrrJG27C+POO4XFK1dbdbguDtfF76rs4br4H66LP+/yF2eWKVg04gOFKwriNAQXuh5MZmfTdyeDwbqNmuqYKAms2VXIuhCBLH0BCRVx6RTkoMgQU2pScmw5ZOve5GWNVm12DRxwsSvfm746GMihZPYxzzL0eoShXmFhXK1GhasguatIRR00bzrES8JAAfLz5e7ShzQ4/WwMAdfyotd/0b71O7ORAos3/84Fu0tKjm/rHic1ly7ob91xH/xjSaiol0vbtevyb1swSZRHJ5VPwuqCRrPg0tiOJl7vlf1ZsHg9n8+SC13YhZ26L9Y4VIJLEi9QlIHWRwvInCeLXmd+i0tnZwGCMVwQHy3g48qgvVzAsXjnySZLu9aGXmR4DBIGd5vDk9F4NE5e1LvIFXbHb7v/+1t+ayvXAu+8cFrZt7TZzsI5bGcBJOSdtf9hHJYSShc5RTbNCiP9E0zbpse9YU8tVz0fBfkaTfxxQpubd99P7fydZC9ps/e5cIWmTpHd7F1h0P2R/E9EHr3ffrU8FveVHqbTbnZrDpS0gnbZymHsUvV+YVIU5HkHspt1uXMqp6d/n85PoW2/AzVIqk8= sidebar_class_name: "delete api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/enable-automatic-renew.ParamsDetails.json b/docs/documents/project/enable-automatic-renew.ParamsDetails.json new file mode 100644 index 0000000..4ff074f --- /dev/null +++ b/docs/documents/project/enable-automatic-renew.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/enable-automatic-renew.RequestSchema.json b/docs/documents/project/enable-automatic-renew.RequestSchema.json new file mode 100644 index 0000000..1eec87a --- /dev/null +++ b/docs/documents/project/enable-automatic-renew.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"UpsertAutomaticRenewDto"}},"text/json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"UpsertAutomaticRenewDto"}},"application/*+json":{"schema":{"type":"object","properties":{"paymentMethodId":{"type":"string","nullable":true},"months":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"UpsertAutomaticRenewDto"}}}}} \ No newline at end of file diff --git a/docs/documents/project/enable-automatic-renew.StatusCodes.json b/docs/documents/project/enable-automatic-renew.StatusCodes.json new file mode 100644 index 0000000..ca442e1 --- /dev/null +++ b/docs/documents/project/enable-automatic-renew.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/enable-automatic-renew.api.mdx b/docs/documents/project/enable-automatic-renew.api.mdx index d33735e..a032339 100644 --- a/docs/documents/project/enable-automatic-renew.api.mdx +++ b/docs/documents/project/enable-automatic-renew.api.mdx @@ -5,7 +5,7 @@ description: "Enable automatic renew" sidebar_label: "Enable automatic renew" hide_title: true hide_table_of_contents: true -api: eJztVt1v00gQ/1esfTogxIHjXixASj9OV053rdogHpoITexJvNTeXXbXhWDlf2dmbSdu01Qtj0AfUts73/PbmV8tPCydSC7F37rI0DoxGwgDFkr0/JZc1kLRi0iEzMRASEVPBnxOzxY/V9JiJhJvKxwIl+ZYgkhq4VeGNZy3Ui3Fej3YGAEjn1+TYalVZ+1zhXZFLxm61Erj+SgRkxwjdoDOYxaNz06irdo+R2xjAVXh6dMLcjtrYiQTBzpbsXyqlUfl+RGMKWQK7C7+5NhnvWtYzz9h6smwsdqg9RIdnxpYlWTmP/S5zk6yuyJRVVHAvMCmOOuBKMl17nqikkJZoiXZhbYl+ObTny93lUkbskxyqFCc9SJZQOGo8F56lhXvjaOTceU1mZPpOSr8cuQ1N0B4/Op/hTz7bX367KdPmE1YdEYr12TwcvSK/928TP/r6LBFPsm/Go12RQ4gi86by0Jx9u5JAI4pQD6qkM3pA6rXpvgASefBVz9WZx4MHmTxID9SkSeVPiSovf2rt5kJ+k4a5VGIwO2A9LEQ/V3Z+yr7Q2Pud0n3l5TV/rprYJxQQpYsRRdoaTVHx9ZqG3pAy/ro9LBjBTe1jhVHFEE3ymjH0yyjYMswcplc6DCBAsdIRLxoaElcy2wdb9Q6LRd8NzSlslQykXtvXBLHRDSGYKs5pIWusmGqS8F8wGFaWelXQeMAwVJLkstZ/+iCUdMAoxPY1Jas/ou7ZOVE8XyO3n2YRF5fIXOUlu/QzM61ld/CXe8YT45AOYVaMVTPtxzl+CuUpoHYziraNrbbOKMAgIUOAbYNHHPOw8PScFtkikPqKIN+ODZyJ+77hKN/JpMzJl5TNVVH+osqNK0IT7TsNUS5xcWbqYgJRIpqEptWj9OZisiDXaIngY/zAtTVVLyNTkmSWdxCFvg6hrcUS0foiKwNR8MRryZufgnh8rYF3AuYG5lsGtTbVmQuQKJusXQpWiyRchLI7C04EQZyBh9J1vUcHL63xXrNnxuKypDJpON4ss2KvhXGZnHeS2DvDPaKgHWbIF9DUbFkwO41WNnc50cF8sd5y9OfRPtcd+hWq77PLiSq1XpGUi1s2Xtz0HKK5xNW3yrubDfm/43GOE3R+J5sP45ZbwqcnV5MSGze8vZSZyxtgTvPvyE8HbINNzV8qwWhbVnBkmUbz/z3HUvleMc= +api: eJztVtuO20YM/RWBT70otpOmL0ISwHsp6hbtGrsO+mAbBS3R1mRHM5MZahNX0L8X1MX2xuvFbh7b+MGWNeTwkDzDORUwbgIkc/jF6ox8gGUMDj0WxPIvmVdgsCBIQGUQgzKQgEPOIQZPH0vlKYOEfUkxhDSnAiGpgLdOPAJ7ZTZQ1/FuE3TqxR35oKzpd/tYkt9CDBmF1CvHspTALKdIAlBgyqLxdBLt3U4Fkj3WWGqGBF5CXS9bjBT4zGZbsU+tYTIsj+icVilKuOGHIDGr443t6gOlDDE4bx15VhRk1eG2IMN/EOc2m2QPITGl1rjS1BanjqGwhvNwYKoM04Y8xLC2vkBuX/306ti5jgGzTAlU1NMDJGvUgWJgxWIL710gz+OSbYGs0msy9OmCrTQAmD7z/yHPw7b+8ON/PmHZwlNw1oQ2g1ej1/Jz/zD9aaPzjvl1DK9Ho2OTM8yi6/awQHx4ThriOI3qWYVsV59QvS7FJ1gGRi6/rs4yGBiVflIcZQKjSZ8C6mT/qn1mMPV2pam4aBCEI5I+l6LfKvtYZb9qzH0r6emSitvPDw2MiWHyBnV0Q/6OfHTpvfVND8bTycXVea8K7ntdGkEUYT/KIi+zDGIompEr4sI2E6jRGAkM160sGVYqq4c7t94rNLFbmVJ6DQnkzC4kwyE6NUBfrjDVtswGqS1A9ECgtPSKt43HGaEnD8l8ebh0I6xpidEb7GqLTv1Ox2JlYmQ+R7/9NYvY3pJolE7vjEvOrVf/NGe9Vzw5YUZtrYSq13uNcvkZC9dS7Ogq2je2v3FGDQHWtgHYNXAsOQ/OCydtUSkNpt4K6Qdjp45wP2Yc/TqbTUV4LczCXNhPRlvMIs4peoNR7mn9dgFD68igU0PX+Uk6C4gY/Yb47QL+Xmk0twt4F105MqLi1krTmyG+gxh6QZfAy8FoMJKrSZpfYHN4uwKeJMy9THYNOrit6rilRNVxaQ4dlyCGpBGzX9BpGUMu5EvmUFUrDPTe67qW161EFcpkKgiebHdFfwFjd3E+KmAfBHtL2yOBfIe6FMuGu3foVXuenwXku+tOp38fnQrds9tsD2P2kFQG9bKOe9pK9Hah0xQvZuK+dzy63UT/tx7jNCXHB7aHOJYHU2B6dTODGFadbi9sJtYepfPy3cCzTbbNSW3eVaDRbErciG0bWT7/AkvleMc= sidebar_class_name: "post api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/get-folder.ParamsDetails.json b/docs/documents/project/get-folder.ParamsDetails.json new file mode 100644 index 0000000..4ff074f --- /dev/null +++ b/docs/documents/project/get-folder.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/get-folder.RequestSchema.json b/docs/documents/project/get-folder.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/get-folder.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/get-folder.StatusCodes.json b/docs/documents/project/get-folder.StatusCodes.json new file mode 100644 index 0000000..be7d874 --- /dev/null +++ b/docs/documents/project/get-folder.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"projectCount":{"type":"integer","format":"int64","nullable":true},"createdBy":{"type":"string","nullable":true},"automaticRenew":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"autoRenewMonths":{"type":"integer","format":"int64","nullable":true},"renewAllowed":{"type":"boolean"},"dueDate":{"type":"string","format":"date-time","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"userReseller":{"type":"boolean"},"ownerId":{"type":"string","nullable":true},"default":{"type":"boolean"}},"additionalProperties":false,"title":"FolderResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"projectCount":{"type":"integer","format":"int64","nullable":true},"createdBy":{"type":"string","nullable":true},"automaticRenew":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"autoRenewMonths":{"type":"integer","format":"int64","nullable":true},"renewAllowed":{"type":"boolean"},"dueDate":{"type":"string","format":"date-time","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"userReseller":{"type":"boolean"},"ownerId":{"type":"string","nullable":true},"default":{"type":"boolean"}},"additionalProperties":false,"title":"FolderResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"projectCount":{"type":"integer","format":"int64","nullable":true},"createdBy":{"type":"string","nullable":true},"automaticRenew":{"type":"boolean"},"autoRenewDeviceId":{"type":"string","nullable":true},"autoRenewMonths":{"type":"integer","format":"int64","nullable":true},"renewAllowed":{"type":"boolean"},"dueDate":{"type":"string","format":"date-time","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"userReseller":{"type":"boolean"},"ownerId":{"type":"string","nullable":true},"default":{"type":"boolean"}},"additionalProperties":false,"title":"FolderResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/get-folder.api.mdx b/docs/documents/project/get-folder.api.mdx index ff50729..573f6de 100644 --- a/docs/documents/project/get-folder.api.mdx +++ b/docs/documents/project/get-folder.api.mdx @@ -5,7 +5,7 @@ description: "Get folder" sidebar_label: "Get folder" hide_title: true hide_table_of_contents: true -api: eJztWFFP20AM/ivRPW1SaTrG9hAxpEKBMbSBoNMeaDVdE5ccXO/CnQPrqv732UlaCm1ZB3tCfWqTsz/bn33nc0YC5aUX0YU4sDoB50W3JjLp5ACQn6KLkTD0ICKhElETytC/TGJK/x3c5MpBIiJ0OdSEj1MYSBGNBA4z1vDolLkU43FtCiIztXFLwMqaCdpNDm5IDwn42KkMeSkS7RQCNgAeIQmap0fBvdoyQ4zRl7lGevWOzHbZR59Z48Gz9GajwT8PDZ0ck15sDYLBAhJ+YZhpyb6N5k3Z3hXESCqZsxk4VCU0kbPAHZNrLXsaSobGtYqFFQQJne3s2bzyqlRQ5OYlONLoWzeQWL76uLUIInYgibvd4UoGZY6WAFV8BgbuZlR61mqQRlQyxXILblUMR6vFPNX6SiSn/pnROEZoam3vIFnsXZJDiwJe5NMUPiGBDVSUhGWEUVG8DCX34M7Ag9YU2UJH7Z0BtyJ504KeB2Jqk0Sxx1KfzlRjX2pP2xEVMlC1sc+qjdBCW6pmmVZxEW945e262NfF/nqLvTjT11W+rvJXXOWsvNXYmr/gfLMYHFDRJf/jnlOurhBl5eoKkh4l5n+vofebi8lEqfRKdpQhSyZexamleRjdRyboPWkMWoUH/sVNdc3sU8w+6wRfU7qcUlb7sGgeOqKAHCEF5+Bo5Ar2nbOuyAENYa2Tvcm091DrEDDoF6cSOUizY2rpMBSXUCSFx8VIhOW6D0cqGfMUV+CXI2buiBaRImY+CkMaEuvS5T0Za5sn9dgOBM9yHuLcKRwWGrsgHZ/GF93ZpXOujDL5E4Epf4R6DPOD5hGdoA6DLz/aAdpr4PmymlWbOYXh1O9iP0+m1RQkBzkuctS3BX7FcZNdru8NMmaOmmn9tOz49Wam5sw+JRx8brdPeebtmI5pUW/RViYB0kS8LYPUQf9TR4SUZ0MhhdW1os6boyMClI5YJ4GfPS3NdUfsBCckyQN0X2nYDuUO+TKZpWlOrjfqDW5hmfU4kMX+quJ/kNMH3k85nWki3CddUdxlvi9ElW9SjuguRVlKyQQvjEY96eG70+Mxvy4/AHBSE+W5sJNpw3tkddq+nvw8sNC3a0r9488Pt1LnLFlU1610qtxV/+TIm7PqK8jbYJnpSf2Z4azNiUtEzbhLUlVhsfVyoRnHkOGMyixqd2aXHe63qR7/ADlaJ6E= +api: eJztWFFv2zYQ/ivCPW2AartdtgehLeDGbecVa4w0wx5iYziLZ4sNRbLHUzLP0H8fKMmuMzuZ1+6p8JNhkXf38buPPB7XILgMkF3DG2cUcYBZCh4ZS5L4L7teg8WSIAOtIAVtIQOPUkAKTJ8qzaQgE64ohZAXVCJka5CVjxZBWNsl1HW6dYJeP7klDtrZjbdPFfEKUlAUctZe4lAGVwUlMQAFIZUMJ+Pks9lDgaKPBVZGIIOnUNeziDF4ZwOFOPvZYBB/7ge6eAcp5M4KWWlc0p/S9wYjtvV+KDf/SLlACp6dJxbdutbqEBxbGYNzQy1DddqxcMREzy7GOXdVh6o10FZoSQwpLByXKO2nn84OuciZUEi9Wh0VECtxJYrOL8nS3Y7J3DlDaKGb0wyP6FbnND5uzVurX52VInzhajh6GBrj7kgdRqcqGqEcpHfrXqHQE9ElPUiYdvbrvFSB+JICGUN8GKi7s8RHkrcV9L6jSK1SOiJGM9lR4wJNoBRES3TUbezLbiOMxLWm3hudN+vtfwzuJPaT2L9dsTdn+knlJ5V/wyqPxmeDs/0LznsnyRtXWfV/3HPa0SNW2UE9YmYQlOrfNfTDs8NkCmpzVBxtg6DNjwH1YB7Wn1cGE3ZzQ+WoQRC+uqiemH2M2S86wU+UPkxpNPvxUD80tkJs0SQfiG+Jk9fMjpscDCfj0cX5ptu7b/WWJFk0pxKkUJIUTkEGS2qSEtvFDPrteOivtapjF9f4b1vMig1kUIj4kPX76HUPuZpjblylerkrIfZygfKKtawai1eEHE/j69nu0IeojDb5mwlb/tDrd7TfaI5tIJbkl9+vEnE3FPvLrlcdVlI41n81+3nTrRaEcZF1k6OFa/x3HA8j5N556SNzOqfepK34vaHXe2Efm5z8fHU1iT3v1E7tyN1Z41AlUlDyHJOCafFiCn3nyaLX/e5a0YubYwqJIC9JXkzhj7lBezOFl8mFJxsb6IU29LyPLyGFTS+dwdPeoDeIJcy7ICU2+6tb/72c3kO/5XSniMQ6yY2423xfQ5dvSCHTKr4rFC5IHFiv5xjoNzZ1HT+3DwAxqUqHKGy1LXj/iLotX48+DxzEdkOrveeHWzRVnNmo6xZZt7vqPwH57rJ7Bfk+eSj0Rn92tRtzA0krqGd1uhFWjN4ODPOcvOyY7Hqd7eyyt6+voK7/BjlaJ6E= sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/get-metadata.ParamsDetails.json b/docs/documents/project/get-metadata.ParamsDetails.json new file mode 100644 index 0000000..60c0501 --- /dev/null +++ b/docs/documents/project/get-metadata.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/get-metadata.RequestSchema.json b/docs/documents/project/get-metadata.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/get-metadata.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/get-metadata.StatusCodes.json b/docs/documents/project/get-metadata.StatusCodes.json new file mode 100644 index 0000000..21bb791 --- /dev/null +++ b/docs/documents/project/get-metadata.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"baremetalTypologies":{"type":"array","items":{"type":"string"}},"cmpLegacyTypologies":{"type":"array","items":{"type":"string"}}},"additionalProperties":false,"title":"MetadataResponse"}},"application/json":{"schema":{"type":"object","properties":{"baremetalTypologies":{"type":"array","items":{"type":"string"}},"cmpLegacyTypologies":{"type":"array","items":{"type":"string"}}},"additionalProperties":false,"title":"MetadataResponse"}},"text/json":{"schema":{"type":"object","properties":{"baremetalTypologies":{"type":"array","items":{"type":"string"}},"cmpLegacyTypologies":{"type":"array","items":{"type":"string"}}},"additionalProperties":false,"title":"MetadataResponse"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/get-metadata.api.mdx b/docs/documents/project/get-metadata.api.mdx index 84ea301..a23e9e3 100644 --- a/docs/documents/project/get-metadata.api.mdx +++ b/docs/documents/project/get-metadata.api.mdx @@ -5,7 +5,7 @@ description: "Get Metadata" sidebar_label: "Get Metadata" hide_title: true hide_table_of_contents: true -api: eJztVktT2zAQ/isendM4pfSSocykvEppC1PS6YEwnY29iQWypEpr2tTj/96V7TxIgGFob3BKvNrHty/pKwXB1Iv+hTg0KkXnxWVHWHCQI4Wv/kUpNH+IvgArX92wTBotOkJqFv0s0M34I0WfOGkpHPXFMMPIIZ95wjQanB1HSzOfZJiD6JeCZjZ49eSkntY+JlAoYtFrUVWMwqG3Rnv0QXur1ws/twOdnrBdYjShptol/qbYKgjYys1QZnyFCbGJdcaiI9m4HoNDzhbUcGaNMtNW3BqBcxBSlIS538RdVYwgt59wCsnsaQ7YA6SpDDmBOluBNgHlsSNIkgoGnxljCgRf27rUscFaJRMIxvGVN88n8brXzyjjYLvd295cgi+GokNT6PR/7EJzurmculAKxgEbuQKrBdJHaHoCKlarIRnjFB3rTozLgRrRm627jFMuhFSPiiM1R9LJY0Dd24ZymZlgOVvk+zUC/8/L9lLZhyr7pG1+Ken9JQ1mb+96M485IceeonN0/CxHB84ZV/eAH+r9070m6vqTfoQUzS8lhsh3aGZSlk+xbgtQxh/xpKEQcb7U9HWUhkcUjosjMiLr+3HMdKILrhhDokyRdhOTi/Dqe0wKJ2lWW7xHvrAd/71cPToP89GMwFxheQVbeYKblOSYL1FH0cfvw4jMNQYm0rKaQcGpOPmn3uo5r8kQOJG6KlJPTO2/rfQgQO7u5TbUTybY5dKH6ewOrNwI+5By9GE4PAvsaKRHet/80spAGhFzpx2IMoeTdyMRc7c1pxTb1i6syEhEBI4rzwo/xgr09UjsRqesGajWRCrciWGXscxZFzOqbq/bE5yNNZ5yqLeszX+ts7fwL6q68piwk7qPZdv1C9F2vRmLxg83K+NI4bQsx+Dxm1NVFcQNYwy9TaUPU54uHr+10Iu37EE+eSfAa56Adb56A6oImvWQ3YCTzYrxZHXm7Q6oGtNBkqClFatV/5cr8390MOQp+QvyB+r5 +api: eJztVk1v00AQ/SvWnE2clnKxSqVA+SgFGtEgDkmEJvYkXrre3c6OCyHyf0drO01oSlUBt/YUZXffzJsvz1uB4MJDOobXVufEHqYxOGQsScK/dLwCgyVBCujUkytir6yBGJSBFC4r4iXEkJPPWDkJVymMCoqYLivyQnk0GJ5EG5jPCioR0hXI0gWrXliZRWNjjpUWSGEP6noaA5N31njy4fV+vx9+fnd0dgoxZNYIGWlM0g9JnMbAbbXrys6+USYQg2PriEW1pmfIVJKgHi2d1XbRHXcgZMYQohIq/S7vuo4hK917WmC2/DsDdQyY5yrEhHq4RW2O2lMMokQHwAcSzFHwU5eXxjc6p1WGAZx88/bhBN7U+gFFHLAH/YPdIfhoJXptK5P/j1lob3eH01Ra4yxwE66ovmZ6j5deUKrtbCgjtCCGGOaWS5T26On+beCcBJW+lx9lvKDJ7kPqj2VYbSKDIduZpvK4YeD/edgeM3tXZv9qmh9T+ueUBtiz23bmiRFigzo6J74ijl4xW25qMBieHJ+9bL3eXOlvSKL1RwliKEkKm0MKC2rKglJACsm8lRBJuXnpGy+tjqhYQwqFiPNpkqBTPeRqhpm2Vd7LbAlh63vKKlaybBAvCJkY0vF0++o89EfbAusHm0+wU6e0K0lOjCeW6N2XUST2goIS6VTNoJLCsvrZTPVa1xSEObVZUWZuG/tdpgeBcu9l6UL+VEa9IdvQnb2BUztu73ocvR2NhkEdTczEHNvvRlvMIykoOsSoYJo/n0BiHRl0KnEdLozIBCJBXpA8n8DXmUZzMYGj6MyRCVJrrjQdJngEMaxVVwp7vX6vD3UMznopsZmyLv4blf2N/3VWt5ZJHbd1XHVVH0NX9bYtWjvTGArrJdyuVjP09Jl1XYfjVjGG2ubKhy7Pr5ffDdfXu+xOPXkrwQta7ujVK9RVeNk02RWyakdsPK3jdbkDqxY6yDJysoXatj/d6v83r0ZQ178A8gfq+Q== sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/get-project.ParamsDetails.json b/docs/documents/project/get-project.ParamsDetails.json new file mode 100644 index 0000000..fde389c --- /dev/null +++ b/docs/documents/project/get-project.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"unique identifier of the project","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/get-project.RequestSchema.json b/docs/documents/project/get-project.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/get-project.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/get-project.StatusCodes.json b/docs/documents/project/get-project.StatusCodes.json new file mode 100644 index 0000000..ae625e3 --- /dev/null +++ b/docs/documents/project/get-project.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/get-project.api.mdx b/docs/documents/project/get-project.api.mdx index 9d2048c..be2b23a 100644 --- a/docs/documents/project/get-project.api.mdx +++ b/docs/documents/project/get-project.api.mdx @@ -5,7 +5,7 @@ description: "Get Project" sidebar_label: "Get Project" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cIvmwDXNvNsj0YXQEnbjuvaGOkHvYQGwMtUhEbiVRJKpln6H/fHfUR2VISL9seVugpjnRf/P2O5zvfjjp2benkii6M/iwCR9cDmjLDEuGEwRc7quAfOqGS0wGVCj6lzEXwmQsbGJk6qfFhpuSXTBDJhXIylMIQHRIXCZKWhgfUiC+ZNILTiTOZGFAbRCJhdLKjbpuiC+uMVNc0zwe1V5bKF7cQCTop3YMbs235X4IrdCCsE5xMF3Nyr/aQI7QRsix28OgluF1jjDbVygqL0ifjMf7Zd3TxHvQCrRwc1JsUf7hRGjOMbdd2pTfl6QGHVBgnC9OAL+PMHSEJuHcG3oypJI94jlQWx2wTiwLmfFBCeawNL91hpUiU2gozhiEL0onEdnD4kHkwQ2JpXZeLwAgG7J1tn452zqv8yizk2l2kSal9kHTdTsDIDISf9nNeShOO4gMaapMwzBf8/4WT3VjpOyXM/AjiDo7h9doGwSLjXKIOixeN7AhZbOEiOelQtsL4sszhD2WOzZxGPvbT6vGk24vyqUNcpEVkpPG4fftbINV3r7a/0ToWTLVRUlwGgLclMiTSfWO96VK/dpH726szEwj7MUs2gOS9aQn39dpju2+6EMRoa906ke6ki6Q6OEadAGDxx1N0GuqYH8f2Wy9J5jPIV2FE0zKRlsQaD8npc/m+l/SMP9NKoZimMUIOuqPPVvelrS9tfWnrS9vXUNp8v9bXtL6m9TWtr2lfRU1D1ZPxaXtU/ajJeTmogshp1zR7xji5LMbmf2OsLd62gW2Xp+I0R0hax1xmO3OjSe73J91J65iMj/IjFXhSwTFBPUjVLt/jCTSSmY/A/uOuukf2MWSf9aXeQ/owpLkvGJ01xZG3OlO8Lxd9ufi/ItuXi/+gXPzQ1V/M4UAGm81PwtxCM/XGGG08B9PFfHZxXu0C9rXeCUcWdQ8Hw1ekoV+j18KzguuHCR2VrZgd7STP8Vd+76HYWWQGgKGRc6mdjEYslUNmsg0LYp3xYaATir/1WxFkRrqt1zgTzGALerVuvvqEuVHQXwncj1SpfC/ai4g5NGXGkV9+WxKnbwS2x+UuY5rBOYz809/oapsRCQZNpkdEqlB7+yXKUwx5eJ6kiJ0MxLCEZDhNZcvtY8Lk5+VygTuRlVqpGUwtsWbF4PWKkciI8KcVHQHTCo5UwTrE67GiMAAagB0Eft/ETN2s6GtyAZK4YAllLF6N2GuIpdq1TOjL4Xg49vOLti5h/oaV599ntXtmaXyPgA1P465k/IpWjIP2BGZn4CkCJ/hmt9swK341cZ7j42JFhLRyaTG5ed1GH7itv8IeXSB1BncD5B8uqG5ZnKGkz69bZmRxs/5WIN9elnuy78gRS7XO0KoMVdtmTFXIAF2+Bqky9TC64sU0CETqGipNq+vGRXz3ZgkZ+xeHhuJG +api: eJztWd1v2zYQ/1eIe9kGqHaaZXsQ2gJO3HZescZIM+whDgZaPFtsJJIhT/E8Q//7QH1FjpTUy7aHFXoyLN4Xf7/j6ajbAfG1g/AK5lZ/xojgOgDDLU+R0PqFHSieIoQgBQQgFYRgOMUQgEAXWWlIav8wU/I2QyYFKpIriZbpFaMYmakMB2DxNpMWBYRkMwzARTGmHMId0NZ4F46sVGvI86Dxyo18cYfWeSeV+9sM7bbj/zJG5h2gIxRsMp+xe7XHHHkbK54lBCG8hDy/9jE6o5VD56WPj478z76j8w8QQKQVoaLCJP5BY5NwH9uu60ovq90bqw1akqXpFIkLTgdIStEfeDumijxWcKSyJOHLBEuY86CC8lAbhXSPlTJRGivcWu5ZkISp6+HwMfPE1yyRjvpcRBY5oTjdfjnamajzK3No2SbWrNJ+kHT9TqRWU04HoHJWSTPhxQNYaZtyny/+/wuS/VjpjUI7O4C4B9so9LoG8wC4ENLr8GTeyo4VTxwGQJK8bI3xRZXDv1Q5NiXt+dhPq6eTbi/KL23i3JSRsdbj7unvgNScvcb+UusEueqipISMOKFjcsUkfeMK05V+4yIvTq/ObITuY5Yu0bZMS0W4LrDdN10K+mgb3SaRNpJiqR5so0kAqejHE+90pRNxGNvvCkk2m7JNjBbblpl0LNF+kwKey/e9ZMH4M62UisYkHnKp1fiz00NpG0rbUNqG0vY1lLaiXxtq2lDThpo21LSvoqZ51eOjk+5V9aNmZ9VFNQ/gpO82e8oFuyivzf/GtbZc7QLbLU/lbg6QdMQpc7250Sb3++P+pCUuk4P8SOWIq+iQoB6lapfv8bRMMJ0WEbh/3FUPyD6F7LNe6gOkj0OaFwWjt6YQe6czJYZyMZSL/yuyQ7n4D8rFD339xUwRWt9sfkJ7h5a9tVbbgoPJfDY9P6tnAfta75HYvOnhUqRYCwhhjQUrfvwQwrhqxdx4J0Xuv/IXHsqZRWYTCCEmMi4cj7mRI26zJY8SnYlRpFPw3/odRpmVtC00TpFb34JeXbeXPvncKOmvBe6vVEZ+wO4gYqYcWmI//3bJSN+gb4+rWcYko1hb+WdxoutpRoxcYImIVCtd2K9QnviQR2ep8djJCEcVJKOJkR23Twmzny4v534mslALNdUblWheXrxecRZbXL1ewFgbVNzIGtaRPx4LYMTtGun1An5fJlzdLOANOzeo/IBlJRN8NeZvIIB61hLCy9HR6Ki4v2hHKS9OWLX/fVb77yyt90gelDTuKsavoGYcAgil8KOqWDvyK7vdkjv81SZ57h+XIyJPq5DOJ7do2ugHbptX2JMDpN7gbnDbGVDd8STzkkV+3XEry5P1twL59qKak33HDhiq9YZWZ6jatmOqQ5YC8us8qFPPR1cuTKIIDbVU2lavWwfx/dtLyPO/AIeG4kY= sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/list-folders.ParamsDetails.json b/docs/documents/project/list-folders.ParamsDetails.json new file mode 100644 index 0000000..337868a --- /dev/null +++ b/docs/documents/project/list-folders.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/list-folders.RequestSchema.json b/docs/documents/project/list-folders.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/list-folders.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/list-folders.StatusCodes.json b/docs/documents/project/list-folders.StatusCodes.json new file mode 100644 index 0000000..85457a0 --- /dev/null +++ b/docs/documents/project/list-folders.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"automaticRenew":{"type":"boolean"}},"additionalProperties":false,"title":"FolderListItemResponseDto"}}},"additionalProperties":false,"title":"FolderListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"automaticRenew":{"type":"boolean"}},"additionalProperties":false,"title":"FolderListItemResponseDto"}}},"additionalProperties":false,"title":"FolderListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"automaticRenew":{"type":"boolean"}},"additionalProperties":false,"title":"FolderListItemResponseDto"}}},"additionalProperties":false,"title":"FolderListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/list-folders.api.mdx b/docs/documents/project/list-folders.api.mdx index 3165441..1c5ed78 100644 --- a/docs/documents/project/list-folders.api.mdx +++ b/docs/documents/project/list-folders.api.mdx @@ -5,7 +5,7 @@ description: "List folders" sidebar_label: "List folders" hide_title: true hide_table_of_contents: true -api: eJztWEtz0zAQ/isenUMSoHDIADOB8AgwtANhOCQdZmOvG1FZEtK6UDL576xkN3HatDWFGzll5Hz7+lYraXcpCE68GEzFK6MydF4cd4QFBwVSWA2mS6F5IQYil4o/iY6QmlffS3TnvPDpAgsQg6WgcxtgnpzUJ2K16qwlvXF0FznrzDdMSRp9F2mT5x5vtys14UmMKzeuAKo+PXywpUvJQv4jVWDlvTOmdkdUGfrUSRsDHojJAhOH/J8nzJLh0TjZiF0Xf9CRQ6mC6ftslpPp0FujPfqAftDvh59tQ4fvWC417LymqBJ/Us8qCL4tr5oy85AUFuH0WHQkK9VkCNStZDw+ECt2H1W+y3ldKgVzxd/IlbgKJvCsFVCzz62AuXS+HVJBS+AZqLLmoIKCcxDyKQkLfztzMmsXYtw/LYCpQ+At8/y8Fdr80OjG7VyImnnTjFj/LoF1pjMG3CPJDu/QAiUZhsn0I2r80dAzN0Yh6FAuArJMBlOgjhpk5aA8dgRJCvrqM+u99DRmqj/WO31EhlX8uY5teRa3Vsk0Btz75s2+GvbV8B9XQ7wV9mWwL4P/uQyCgoP+wdU31AdDyStT6uyfPKXivy2or91tgfQEVPpbK5HfqjuEMySQqpUdqdmSTts4dW0ulpvIBH9niWIUPfB/fy3vmb2B2bsd8XtKr6U0iD3a1XKNOSDHmpJP6LirS146Z1zMAfd5o8MXldXLHWE4j5K87tM7glv0heEzWpzENtcCLXjR2wB8VF418aVjTsSCyPpBr8dNaBdcOYdUmTLrpqYQoVf0mJZO0nmUeI7gmPPB9Lj516ewLarMXwA2V5yV7/BqIzvm49NR8vbLJCFziqF/rXvhYckROPkLmj3+AoH9j2RInZuovyZ4GFzuvihsoE2m2D2qJgTdoZVXzN4ETt5MJkehp57pmR7xbacMZAlxx/0EkoXD/OlM9DjJmkPq1WOIbqiMmUgIHBPOgK9zBfp0Jp4lh4wMDXouFT7pwTP25aJX5z682+/2wwPHGk8FxOKq47+U0C3/16w27hBWEvO4rJM9FflmarMw4WkyFcvlHDx+dmq1Cp+r4UJIaCZ92NHZ+rY75WQ15jrxycIfRJhWXAOuRzltoFvTmzYC64FNG/DFROZm7CVG1zfzjcOVnbxXVreHNxvbx2HhZHVgcMF0LnZx4L0SHaYp2qbHTf3HjWp+/XLCm/83N/jE0A== +api: eJztWE1v2zgQ/SvCnBXbSdM9CG0Bt2633i42RutFD7ZRjKWRxYYiWXKUxDX03xeUFFtOnETI9lafBElvvt5wSM5sgHHlIJrBBy0Tsg4WIRi0mBP7t2i2AYU5QQSpkEwWQhAKIvhRkF1DCC7OKEeINsBr42GOrVArKMtwK+m05efIGau/U8xCq+dI6zR19LRdoZhWVVyptjly/enF2Z4uKXLxi1ShESdXZN2BqBJysRWmCjiCaUaBpR8FOaYkGE7GwU7sofi9jhQL6U2fQlkuQrDkjFaOnEefDQb+sW/o4hOEEGvFpLhSSTfcNxK9b5v7pvTSJwVCnx5DlkWtmjWjfJKMP86hDMGRTA85rwopcSkJIrYFld4EXXUCKrrhTsBUWNcNKbEj8Apl0XBQQ9Fa9PkUTLl7mjmRdAuxWj8dgLElZErerjuh9bUiO+7mQqVZaDVCPujKNtMJMp2wyOmQFixY58gi/kyKrlt6llpLQuXLBTBJhDeFctIiK0XpKAQW7PU1e9bfwvGYKf/crPQRayifoWNfPgQ0Roq4Crj/3eljNRyr4TeuhupUOJbBsQx+5zLwCs4H5/fvUP9oDj7oQiW/5CpV/e1AfeNuB6Rj5MI9WYkvzg4JJ8QoZCc7QjlGFXdx6sFcbHaRwcTqpaR8VHng/v+xfGT2EWaft8UfKX2QUi/28lDLNVZMVqEMvpC9Ihu8t1bbKgfDyXh08a62ercj9PtRkDZ9egg5caYTiGBVtbkGOYMI+juAq5TXTXxhJUSQMRsX9ftoRA9tscRY6iLpxToH3ys6igsreF1JvCW0ZCGaLdq/vvhlUWf+FrA74oz4RPcb2bFyZDn46+s0YH1Jvn9teuFhwZm24ie2e/yMMKGaDKFSXelvCB56l3vvcuNpEzH1JvWEoDc04p7Zx8DBx+l04nvquZqrkb5WUmMScEbBKwwyS+nrOfS1IYVG9JsxRM9XxhwCRrsifj2Hb0uJ6nIOb4ILQ8o36KmQ9KqPbyCE2149gtPeoDfwFxyjHedYFVcT/52E7vm/ZbV1hpRhncdNk+wZpLupTab91WQGm80SHf1rZVn6z/VwwSc0Ec6v6GR72l3Suj3Xqa4sEAH4acUD4GaU0wW6N73pIrAd2HQB305kHsfeYXR7Mj86XDnIe211f3izs73wL1bUG8ZsUYa3q9jzXosO45hM2+O2/kWrmv98P4Wy/A83+MTQ sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/list-project-resources.ParamsDetails.json b/docs/documents/project/list-project-resources.ParamsDetails.json new file mode 100644 index 0000000..2d1a8eb --- /dev/null +++ b/docs/documents/project/list-project-resources.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/list-project-resources.RequestSchema.json b/docs/documents/project/list-project-resources.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/list-project-resources.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/list-project-resources.StatusCodes.json b/docs/documents/project/list-project-resources.StatusCodes.json new file mode 100644 index 0000000..94698f8 --- /dev/null +++ b/docs/documents/project/list-project-resources.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/list-project-resources.api.mdx b/docs/documents/project/list-project-resources.api.mdx index 1c0bc08..ebea78d 100644 --- a/docs/documents/project/list-project-resources.api.mdx +++ b/docs/documents/project/list-project-resources.api.mdx @@ -5,7 +5,7 @@ description: "List Project Resources" sidebar_label: "List Project Resources" hide_title: true hide_table_of_contents: true -api: eJztW19z4jYQ/yoePbUzOcilaR+Y682QcG3p5S5Mwk0fEqYjbBl0EZJPkpOmDN+9K1sGAybZI3TaTvWUgHe1f7Xan/DOiaUTQzo3ZKDVZxZbMjoiGdV0xizT7sGcSPhAOiQrCfoJOSJcui+oncL/CTOx5pnlyn2ZS/4lZxFPmLQ85UxHKo3slEWeHRg0+5JzzRLSsTpnR8TEUzajpDMn9jFzkozVXE7IYnG0FJ5yAfpUkkGCfiQ4TqO03YfP6+us2oNbpalhz8vl0rJJYVeq9Iza8qvvTtbWEnzGD7QUzfire4hrg1XrYRxCxFycmLEsibqDfrRi22W/WyOluXCiX4PYkQu1yZQ0zDjqk+Nj92dd0OV74IsVKC9tsST7w7YzQZ1u821RauyTCMKTMW15ubRVlopnnfHDKVmA+kykTcrLXAg6FqxMy4UTwe5RhBJ0RhGmXBscpaBIwnsqcu+DkpRqTV08uWUz87znYJ/ThFqEj3mCUijXHOe0IiMxrlAxLZPlOQ1jleCWjFUuLWQ9ipZbHCHaoCJkCEogpUnCne1UDGqWplQYqJuWW0dLLryDrvxm61lFivQtC+6hApsqkTDdxxBjNfdnzobi5Yn0bEJXVbcpZhS2v1oL8A7b0UEDtns41DSKGAiUUBOEfKTvkWpi/T70+q05Hst87p27EbVYsyILe/C4SdVlIYZqw15ZDgY1Rc6twpIz3JZTDxKZkVCXMif4ZdqVa2C1q05MVJUp7f5kkBnmNUHTCy7vWAIhU7mOX3JeYMu7exLbc6U1E5vle6yUYFTiU+5iTfuNxNsSPaOSTpBRwmrwwR+TG7KNpTZHeM3RIY+mg2yjhBv3+bpQry9ThahEplcyJU2Rcq0cNWD5VxRm30JxlZvrf6Wf8MdU3Yq9imZvMyAbiZRSLnINqe2cjHIA01rp5z2q8SvOmDGwcQ64a0pz3zlN9/Jag8O3Ov8nrf8/lb0xF2DuZCAoolWuiJnm6pAd3dlKib0iXhm7IqmW+fo1apxY1o/soeK+4MZumZBlgpfNdvuz31YBogaIGiBqgKgBogaIGiBqgKgBogaIGiBqgKgBogaI+g9A1OL304BNAzYN2DRgU0wLFLBpwKYBmwZsGrDpapWATQM2Ddg0YNOATQ+ITd0qJ8enzlvrrwB/VNG5fwEYSE6b3hI+o0l0Vb6OTA7xunDxFNOJloahMnejRO98H7vpvIHjkQuUHC5BkoxfVGbmizUMARyzXqGBefmv3MGzT3h2v8uZ4NKdLl0UBaOxptjoJ5XLJJSLUC7+q54N5eJvKBffN/UXfTBIw0rRNdP3TEdFz13EoDvo9y7PS6mbQ1Kux4n8JVy06pIdFLBT1xeSSTEDVgzKdUjbXyma9nw5S7do6xqfKaSbYuou1+A0MrU2M512m2a8RXU+prFQedKK1Yy4+SrDYmit3Q0rcJwxqt19xs2o/uja5U2ZGhXBqovP+Hu2PfzVh55N2+jX34aRVXfMzXz5+bFuDoZp/ietz8VNGXU3e4sigh4r+wh0ncqt81nm/Mpj1vLeanUzviX2KeLol+Fw4ObQbuWt7KkHKRS0hG6u8A2NppqlP96SNmSBBJMqP7fc1rklkaUa4gAEv4+hr767JW+jS6B0Q20pF+xNm74ltesm8rp13DouoJIydlbCAW//zoivWbL0b+24Ka72i21QZsNNdcHsuDv12cpVQkAUp8r9kHFD5vMxNeyTFouF+7oc2nNBT5a3Dr4Xv4OA1uYl/W05IW4KcAexH5HEkK5NRWIYloOQGOJq0vFp2g1fL4/3J4cWGyNSSl0filzJHrkPmpdVp8nVOxX55sqPuH4bIeZhG1Wrdqh8rOu0EQbIl8UIiP0OdEqWz7txzLK6J+uLj2oF6ud3Q9i4fwFBbyNE +api: eJztW1Fv2zYQ/isCnzZAtdOu24PRFkjibvPatUGSYg+JMZylk82GIlXylDYz9N8HSpQt23LCJhm6YXwKIh15d98dj/xo3ZIRzA0bXbATrT5iQmwaswI05Eio7Yslk5AjG7GiEZikLGZc2gdACxazFE2ieUFc2Yel5J9KjHiKknjGUUcqi2iBkRvOYqbxU8k1pmxEusSYmWSBObDRktFNYTUZ0lzOWVXFK+UZF4S61fypRH3D/EYapek+45y91qt7jFZZZvBuvVwSzmu/MqVzoObRD8825hI85480FRT8yTVq0+PVZhjPFxjZOKEhTKPDk0m0HrbPfztHBqWwqp+yqpraUJtCSYPGSj87OLB/NhW9f8NilihJKKmeEr/QsBBgbVvuqlIzl0SFVgVq4s3UpAjEnWD89JxVMTMosj7jZSkEzAQ2aVlZFXjtJSjxC3kJZlwbP0kBnoLXIEqHQSMKWoONJyfMzd3I5UiQAnlgzFMvg0rN/UCrM9IHCpVAkyx3WZio1G/KRJWS9I2fLCc/QW+H6pB5SFYxgzTl1ncQJx1PMxAGY0acrCx76wA6dYttTIrV6dsU3McKbKZEinriI+xrudtztgxvdqQ7E7qtun0xA8K52gjwHt+9g1Zodc1T1F7CdFMooeYe+j2x9zTTF/dzZ98G8L6Djx24W1FLNNZZOAbqNXVViFMgfEI8x97VZmfB9MhvyanP0jMjY1YWVvHDrGvm8LWu3TG9qkzj9wfjmWHOEm95weUVpqdoVKmTh+wXvuXdvknoWGmNYrt8z5QSCNI/5d5uWL+VeDuqc5Aw94ySrwW/u21yS7choNIDNSvnuTU9yjJKubH/n9XmTWSmPCqRGTeD0r5I2aMcGCW/pjC7IxRXpTn7V+Lkv011vbhX0RxvB2QrkTLgotR4WoPsBQBqrfTdiGr/GXM0BuaPuc807r62lt4LtR7Ad07+t3r/fyp7My4El/MTAR5H5VYYNVePeaI7Whtxr4i3zq5F2mm+fo7OSN+h7/BzO/otN7TjQlEI3hy2hx/dsgoUNVDUQFEDRQ0UNVDUQFEDRQ0UNVDUQFEDRQ0UNVDUb0BR699PAzcN3DRw08BNAzcN3DRw08BNAzcN3DRw08BNAzcN3PSbcVM7y7OD52znE+B3Kjp2HwBXMXve95XwEaTRafM58qN8Lly/9TmJNo55Ze5Wid77PXbffoMEXHjp4dIQyORBZWZZbXCImcB8XFtgHv4rd0D2FmTvdzkTIN0LaVUXjN6aQtHPqpRpKBehXPxXkQ3l4h8oFz/2nS8mklBLENEZ6mvUUX3mrmNweDIZvz9utG43SdkzTuQu4aL1KdlSAVrYcyGb1z1gdaPciA3dlaIZLle9dNVQd8aZWnvTdVdqwUZsQVSY0XAIBR+ALmeQCFWmg0TlzPZXGUxKXd+wXizZEYK29xkX0+6rM5s3TWq0AutTfMHf4G7z10Qa1BT99sd5ROoKbc+X6x87LGmhNP8Lun1xCwR7s1fVEXRc2UXg0Jo8OM4LiytPcODQGhwWfEftbcLRr+fnJ7YP7VJeyrH6LIWCtO4rfAHRQmP28pINVYESCt7iPLBL55JFBHqO9PKS/TkTIK8u2avofYHSNrVlXOCLIbxinesm9nRwMDioqZIylDd0wPm/N+Ibnqzw7Ww39dV+vQyabLhoL5jt6FG3t3KdENOYLZT9IeOCLZczMPhBi6qyj5umPRv0dHXr4M7iV3jT7Zd0t+WM2S7APcKuRdJHdKMr0mfAqhHSR7jtdLxddgvr1fZ+a9Nib0QarZtNkWvdU/uP5k3V6YN6ryHfnboW1+8jj37YXtPaFSpvujZthWGSsmpaxe0KtEY27w+TBIsukt3Jp50C9cvrc1ZVfwNBbyNE sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/list-projects.ParamsDetails.json b/docs/documents/project/list-projects.ParamsDetails.json new file mode 100644 index 0000000..337868a --- /dev/null +++ b/docs/documents/project/list-projects.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/list-projects.RequestSchema.json b/docs/documents/project/list-projects.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/list-projects.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/list-projects.StatusCodes.json b/docs/documents/project/list-projects.StatusCodes.json new file mode 100644 index 0000000..97a03d0 --- /dev/null +++ b/docs/documents/project/list-projects.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}},"additionalProperties":false,"title":"NewProjectListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}},"additionalProperties":false,"title":"NewProjectListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}},"additionalProperties":false,"title":"NewProjectListResponseDto"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/list-projects.api.mdx b/docs/documents/project/list-projects.api.mdx index fe094b8..31091d2 100644 --- a/docs/documents/project/list-projects.api.mdx +++ b/docs/documents/project/list-projects.api.mdx @@ -5,7 +5,7 @@ description: "List Projects" sidebar_label: "List Projects" hide_title: true hide_table_of_contents: true -api: eJztWV9v2zYQ/yoEX/bi2m6a7cHoCjhxt3ndEqP1sIc4GGjpFLGhSI2kkmaGvvuOlCzLtmwLTh/1JJD63f/jHaVbUcseDB3d0ZlWXyGw9L5HU6ZZAha0e7GiEhd0RCMucIv2KJe4+jcD/YILE8SQMDpaUfuSOpixmssHmue9itIobc+hSwuVuJLnUKsoMnBaLpcWHrxdkdIJs8XWu4stXoIn/DuxYil/84SubbAqBBNonnqDR3QeA9GA74yFkIxnU7IhO2S/4xGxTDjRb1EsBlODSZU0YBz6Yjh0j21Bt5+QLlCovLSeJXyzg1Qwp9tqX5Ra+jzpufCkoC0vWFtlmTjpjJ8uaY7qg4ialJeZEGwpcM/qDHInAp5aASXq3AoYcW3aIQVrCXxiIit9UECZ1szFk1tIzGnP4VFjIbMtfMzD5pDXo1meY4LYJj/5JGzLw6MbuBQ146S960N5iD2yIYIb2yQi0MAw769eTms7DYmKiMXjkhnQ5DlWpKT2m2UVOSgEmUwQfFrOdYkmoYPX8tqt31je7Cv1LEFPWwRuxwxPt88QObIw5I6GiVktOyImDGBouHXYtY8/l6f/zzLHJlbRfO/oHk26LS1PGXGbFpqR2vbarCOBqKpWxX+plAAm970kQx6gvw3hEeH2B+NZl/SViNzXPZXpAMxNlizRk02VaZt1AXTaVrRVIj1zG3O5Y8Z+YYuUCNtF+xePJNMJ5itoqHMm3BChnJEhPTfeG6SP+JlckLAt5Q08l8R/4IleM6iEp6lwYUMug69GdY2layxdY+kaS9dYusbyusbiv1W6jtJ1lK6jdB2l6yhdR3llR3FMLoaX+z/JbhS5Ln+RIeSy6T/aFQvJ5+KH3Xf5oebftijqpV0tkMYym5mTne/dRXPiW8ZFKzlcoiQZtFHqYNBW+VaskSKZeA3M678oO88e8ex5V6rOpQdd6sh+bCoYUzRIuw70BfQTVtiPWivtYzCeTSe314XU3XLsihYpC5hBHfFOFiss4/TBTztSZmNcDNINwnj2xTAn0+gVGlubmtFgwFLeZzpbskCoLOwHKqFuZmAgyDS3L57iCph2Tenuvv7qi0uMIvZrwOaSlfJPsD/QmGKV1Zb8/vecWPUIrmGWM5FxhiZo/h+rz3piYNh2vDu4jJTnX7p47FTuXyepcxwPoF+6oz9O+Z7YY2Dy23w+c7OVhVzICd5jhGLFVew9I7GG6OcFHWCYJZq09mjfnY0FxSuhRo8j4J+lYPJxQT+QW0S6QU3EBbwfsA+oy3pmM6Jv+8P+0N9olLEJ88ertH83pM33mFobQS4+kKsy3He0CjfGKFbuc+COrlZLZuAvLfLcbRdjJhfSkBuX1WHVGh8xXLUJn/9MwA3q5lYHwOVQrw10a47XhqAa3bUBr2dzx7E7Lq2689ExW6PjC6nbY7yN7Hu30LwoGnhkeus8dn4vSMdBAGld4zr/+9qB/vXjHNP/f8ANVWE= +api: eJztWc9v2zYU/leId9lFtdM020FoCzhxt3ndkqDNsENsDLT0FLGlSJV8ipsZ+t8HUrIix7ItJD3qZFj63m/yfRTfGojfWQhv4droLxgRLALIueEZEhr3Yg2KZwghJEISGghAKAjhW4HmAQKwUYoZh3AN9JA7mCUj1B2UZdBIWm3oOXJ55ZLQ6jnSOkksHrcrFOGdjyvRJuNUPXpzuqVLikz8IFU8F6/u0diOqGK0kRG5DziEmxSZwW8FWsKYTa5n7FFsX/xOR8IL6Uy/hrJcBGDQ5lpZtA59enLifrYNXX2EACKtCBV5lfidxrnkzrf1rim99OskcOXJ0ZCoVJMmLo8m45czKAOwKJMu51UhJV9KhJBMgaUzgfe9gAq/Uy9gIozth5S8J/Cey6LOQQXlxnBXT0GY2eOZy5B4zKlHjkXcXfJ2Net9zETcmSe/CPvq8OgOLVXPOBrvZlPuU0/8jklhqctEZJATxucPx72dxUwnjFJkhUXDVqlmtbR/WHeRvUaEVlNOPbJyUaNZ7OCtde3+vyLRnSu9UmhmPQr3JAwvt6uwDIDHsXAyXF63VkfCpcUASJDDbnL8qd79f9VrbEoayp2te3DRbXl5LIirvPKMtR5vwjpQiKZrNfqXWkvkajdLKhYRJ7RMJEzQT9arruUbE6Xve7owEdrLIlui6exM26oroPO2kW0W0kpQKtSTMHYbW6Jl3K/av3okm03ZKkWDbc1MWCa1CzKG59b7Eekr/kwtUPaWvMRVLfynsI2CxnieS1c2odX4i9UDsQzEMhDLQCwDsQzE8jJi8d8qA6MMjDIwysAoA6MMjPJCRnFKTk/Odi/JLjW7qK/IygDOuu7RznnMPlUXdj/kQs2/7dHU67h6IC1xKuxR5ntz2r3wiQvZy45QlriK+ji1t2jrcqvWS4nZ1HtgX/5FOWT2QGafd6QaUro3pU7s566GMVOExjHQZzT3aNgHY7TxNZhcz6ZXF5XVp+3YNS1WNzALgTuTpTqGEO78tCPnlEII4/wRYb36aphTGAkhpES5DcdjnosRN8WSR1IX8SjSGbiZgcWoMIIevMQ5cuNI6XbRfvXZLYyq9hvA4yErFx9xd6AxUxYNsT/+uWGkv6IjzHomMiko1Ub8x9uznhR5jFU6hEq011+neOJcHl1kuUuciHBUp2M0ycWO2UNg9vvNzbWbrczVXE31SknNq6PYW85Sg8m7OYx1jornYpPRkdsbc2DEzR3Suzn8u5RcfZ3De3aVo3KDmkRIfDvm7yGAzcwmhNejk9GJP9FoSxn326uO/2lJu88xLRopg6qQ67rct9CUexFAqt3nwC2s10tu8W8jy9I9rsZMrqSxsG5Vxw01fsWH9oTPfyZACODmVnvA9VCvD3RrjtdHoBnd9QFvZnOHsU9S2rDzwTFbZ+Irq9tjvEfbC/fHiKpp3C7KYLOOXd4r0UkUYd72uK1/0drQv324gbL8H8ANVWE= sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/list-resources.ParamsDetails.json b/docs/documents/project/list-resources.ParamsDetails.json new file mode 100644 index 0000000..337868a --- /dev/null +++ b/docs/documents/project/list-resources.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/list-resources.RequestSchema.json b/docs/documents/project/list-resources.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/project/list-resources.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/project/list-resources.StatusCodes.json b/docs/documents/project/list-resources.StatusCodes.json new file mode 100644 index 0000000..2ab3e3f --- /dev/null +++ b/docs/documents/project/list-resources.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"billingPlan":{"type":"object","properties":{"billingPeriod":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BillingPlanResponseDto"}},"additionalProperties":false,"title":"ResourcePropertiesResponse"}},"additionalProperties":false,"title":"ResourceResponse"}}},"additionalProperties":false,"title":"NewResourceListResponseDto"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/list-resources.api.mdx b/docs/documents/project/list-resources.api.mdx index 88873ed..a6f803b 100644 --- a/docs/documents/project/list-resources.api.mdx +++ b/docs/documents/project/list-resources.api.mdx @@ -5,7 +5,7 @@ description: "List Resources" sidebar_label: "List Resources" hide_title: true hide_table_of_contents: true -api: eJztW19v2zYQ/yoCn107zbI9BF0BJy42r1ljNC72kAQDLVE2G1rUSCptZ/i7706UbNlW4qtjYAPGp0DWHe8v7/hjdAvm+NSy81s2MvqziB2777CcGz4XThh8sWAZPLBzlkoFP7EOkxk8/VUI8w0ebDwTc87OF8x9y5HMOiOzKVsuOytOq407hC/3KkmdHcKt09SK/XJl5sS0tCvVZs6d/+mH0421lJzLIy3Fc/nqEVzbYlUibGxkXhp8zsYzERkB76wTSdQfDaM121P24xopLxSKfg1iIZhG2FxnVlikPj05wT+bgq7fA1+sQfnMlUuKr66XK466LXZF6UmZJx0MTy6Mk35ppx1Xe53x0xlbgvpCpW3KZ4VSfKLgN2cKsUQR4pFEmIHOJMJUGkujVJxI+MhVUfnAk3JjOMZTOjG3+z0HW40n3BF8LBOSQoWRNKeVGUlxhY65T5Z9GsY6oS0Z6yJzkPUkWulohGSDypARKIGUJ4lE27kaNSxNubKiw5x0SMuuKgd9rDbbwGlWpq+vqccKbKpVIsyQQkzVvCr7W4r7prA3oeuq2xYzDttfbwT4CdvJQQO2Rwn2k4iBQCs9Jcgn+p6oJtXv40q/DcdTmS8r525FLTaizMIBvG5TdVWIodqIV06CQW2Rw1VEckHbcvpLRsxIqEs5Cn6Zdn4NqnZ1xyRVGW/3J0vMsEoTMr2S2YNIIGS6MPFL+gW1vOOb2F1qY4TaLt8TrZXgGT3lrja030q8HdFznvEpMUpUDX6v2uSWbOu4KwheQzpiazrKNkqkxeebUr1hlmpCJbIDz5S0RQqPctyC5d9RmKsjlNSFvflP+onepppWHFQ0B9sB2UqklEtVGEhtdDLJAcIYbfZ71NBXnAtrYeMccdd4c9+hpgd5rcXhOyf/Z63/P5W9iVRg7nSkOOGoXBMLI/UxT3QXayUOinht7JqkXub712hwUlk/iC8195W0bseEPFfSH7Z7n6ttFSBqgKgBogaIGiBqgKgBogaIGiBqgKgBogaIGiBqgKj/AkQt/38asGnApgGbBmxKOQIFbBqwacCmAZsGbLpeJWDTgE0DNg3YNGDTI2JTXOX05Ay9tfkJ8AcdXVYfAAPJWdtXwhc8iT76z5HZMT4XLt9STqLeMFLmbpXoJ7/Hbus30B6lIsmRGUjK4heVmcVyA0MAx3xQamBf/l/u4NlnPHvY5Uxw6ZMuRbYf2wrGEAwysFJ0IwwAiahsomUM+qPh4PrSS92eesCiFa3bHfZ0N8MCz6blMEfO3QweetXdgO2ZBq0tJdlyaqUw4CA2cy63570ez2WXm2LCY6WLpBvrOcPhCCti6It4PQIcF4IbBCO3981XN5gjPg1qgnULzuV7sTu5MYSCa1z02x/jyOkHgQMb1fBHvwBjjPybN4daZoIjLF+W0aoOupW3+6hy93Keow9lLLrVfUO3n8sdsc8RR7+OxyMcIrnL7rIBoE6loZ67mYje8GhmRPrzHetBxDMwqfZtF7fJHYscN+B7IPhzAk3x4Y69ja6BEidSUqnEmx5/yxpYkb3unnRPynOOtm7ue3ll/050NyxY+bXRUsr7uDLVfeRv61sh5F7HHgI203jheMsWiwm34pNRyyX+7IdrML7JCh1UPfMBYteYa6putRjDaZ0niKtRJgrpxvQShWE1sEQhrieSnqfdcu+qaz87XNQaBC91c3hpLfseH4z0xQT2T6dOavS7Z+3HscibGjfXv2/s81/ejWEv/APdSz3+ +api: eJztW99v2zgM/lcMPntJ1+vdQ7ANSJvhLrfeVrQd7iENDoxNJ1plyZPodl3g//0g22l+ttXSAjvg9FSkoUTyI03qU8w5ME4t9EZwZvQXShjGMRRoMCcm476Yg8KcoAeZkEwGYhAKevC1JHMHMdhkRjlCbw58Vzgxy0aoKVRVfL/SasP7rCsak4RW+6zWWWbpab1CMU1rvzJtcuTmX78cru0lRS5eaCssxKsbMnaHVynZxIiidrgHlzOKDH0tyTKlUf9sGC2XPeS/2yPDUjrVr6GqxjEYsoVWlqyTPjw4cH/WFX36ADEkWjEprrekb9wtJDrb5tuq9KTOk9iFpyDDotmaNaN8EozfjqCKwZLMdhmvSilxIgl6bEqqnAq68RJU9I29BDNhrJ+kRE/BG5Rli0Ejisagi6dgyu3TyOXEmCJ7YCxSL4NKI/xAqzPSBwqdYJMsT1mY6NRvy0SXis2dn6xgP0Fvh+qQeUhWMWCaCuc7yrMVTzOUlmJgwU4WTluAztuHbcAa6vRtaupLBTbTMiUz9BH2tbwt+xuGN03hyYReVN1dMUOmqV4L8AO+ewetMPpGpGS8hPmu0FJPPfR7Yu9ppi/ul619a8D7Lj5pwd2IWmKozsIB8k5T7wtxikyvWOS082lzu1B67PfI6VvlmZExlIVT/Dzrmj18rVt0TK8q0/j92XpmWGuJt7wU6prSc7K6NMlz+oVveXffJHyijSG5Wb4nWktC5Z9yp2vWbyTeluocFU49o+RrwV9tm9zQbRm59EDNyXm2phd5jFJh3eeL2ryhyrRHJbKDZlG6K1LuKIdWqx8pzO0RSujSXvwncfJvU6te7FU0B5sB2UikDIUsDZ3XIHsBQMZo8zSixn/HnKzF6Uv2mcbd987SvVDbAfjWyf9R7/9PZW8ipBRqeibR46i8ECYj9Eue6I6XRuwV8YWzS5HFNj++x8pK36Uf6Xax+lRY3nKhKKRoDtvdL+1jFShqoKiBogaKGihqoKiBogaKGihqoKiBogaKGihqoKg/gaLWv58Gbhq4aeCmgZsGbhq4aeCmgZsGbhq4aeCmgZsGbhq46U/jpm6Xw4Mj2HoF+KOOTtoXgKsYjna9JXyMaXTevI78Iq8L19/6nEQbx7wyd6NEP/g+9q5+Q4xCeukRyjKq5FllZl6tcYiJpHxQW2Cf/yt3QPYRZPe7nAmQPgipW/brroIxVExGoYwuyNyQieomWsegfzYcfDpptG5OPbiiFS3bnevpPHMFHqb1MEeBPIMedNu7Ads1K7K21tRMrZRGQg9mzIXtdbtYiA6acoKJ1GXaSXQObjjCUlKa+npkNIdjQuPIyGi8+tWFy5EmDRYCyxZciA+0PbkxVJYMR3/+fRmxviY3sNEOf/RLnmkjvuPqUMuM0NHyqo5We9Bt0e47kzsneeEwFAl12vuGTr8QW2ofE47+uLw8c0MkV+pKDfStkhrTiGcUvcFoZih7ewVdXZDCQiyw7bjH5AoiRjMlfnsF/0wkqusreBd9Kki5iZRMSHrTxXewwhXhdeegc1Cfc7TlvOnlrf9b0V3z4B7XlZZS38fVqd5EfrS4FXKrl7EfxzDT7sJxBPP5BC19NrKq3L+b4RoX3/SeHbQ985ruVuea2lstADet84BwO8rkI7o2veSz4H5gyUd4MZH0uOwGvPdd+9Hhop1BaLSuDy8tdY/dByOaYjIaV/EiqR3uzdJ+klCxavHq/uOV5/z395dQVf8C3Us9/g== sidebar_class_name: "get api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/sidebar.ts b/docs/documents/project/sidebar.ts index d4d6e73..556e0b4 100644 --- a/docs/documents/project/sidebar.ts +++ b/docs/documents/project/sidebar.ts @@ -1,116 +1,114 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/project/aruba-cmpservice-project-api" + type: "doc", + id: "documents/project/aruba-cmpservice-project-api", }, { - "type": "category", - "label": "Folders", - "items": [ + type: "category", + label: "Folders", + items: [ { - "type": "doc", - "id": "documents/project/create-folder", - "label": "Create folder", - "className": "api-method post" + type: "doc", + id: "documents/project/list-folders", + label: "List folders", + className: "api-method get", }, { - "type": "doc", - "id": "documents/project/get-folder", - "label": "Get folder", - "className": "api-method get" + type: "doc", + id: "documents/project/create-folder", + label: "Create folder", + className: "api-method post", }, { - "type": "doc", - "id": "documents/project/get-metadata", - "label": "Get Metadata", - "className": "api-method get" + type: "doc", + id: "documents/project/get-folder", + label: "Get folder", + className: "api-method get", }, { - "type": "doc", - "id": "documents/project/update-folder", - "label": "Update folder", - "className": "api-method put" + type: "doc", + id: "documents/project/update-folder", + label: "Update folder", + className: "api-method put", }, { - "type": "doc", - "id": "documents/project/delete-folder", - "label": "Delete folder", - "className": "api-method delete" + type: "doc", + id: "documents/project/delete-folder", + label: "Delete folder", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/project/list-folders", - "label": "List folders", - "className": "api-method get" + type: "doc", + id: "documents/project/enable-automatic-renew", + label: "Enable automatic renew", + className: "api-method post", }, { - "type": "doc", - "id": "documents/project/enable-automatic-renew", - "label": "Enable automatic renew", - "className": "api-method post" + type: "doc", + id: "documents/project/disable-automatic-renew", + label: "Disable automatic renew", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/project/disable-automatic-renew", - "label": "Disable automatic renew", - "className": "api-method delete" - } - ] + type: "doc", + id: "documents/project/get-metadata", + label: "Get Metadata", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Project", - "items": [ + type: "category", + label: "Project", + items: [ { - "type": "doc", - "id": "documents/project/create-project", - "label": "Create Project", - "className": "api-method post" + type: "doc", + id: "documents/project/create-project", + label: "Create Project", + className: "api-method post", }, { - "type": "doc", - "id": "documents/project/get-project", - "label": "Get Project", - "className": "api-method get" + type: "doc", + id: "documents/project/list-projects", + label: "List Projects", + className: "api-method get", }, { - "type": "doc", - "id": "documents/project/update-project", - "label": "Update Project", - "className": "api-method put" + type: "doc", + id: "documents/project/update-project", + label: "Update Project", + className: "api-method put", }, { - "type": "doc", - "id": "documents/project/delete-project", - "label": "Delete Project", - "className": "api-method delete" + type: "doc", + id: "documents/project/delete-project", + label: "Delete Project", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/project/list-projects", - "label": "List Projects", - "className": "api-method get" + type: "doc", + id: "documents/project/get-project", + label: "Get Project", + className: "api-method get", }, { - "type": "doc", - "id": "documents/project/list-project-resources", - "label": "List Project Resources", - "className": "api-method get" + type: "doc", + id: "documents/project/list-project-resources", + label: "List Project Resources", + className: "api-method get", }, { - "type": "doc", - "id": "documents/project/list-resources", - "label": "List Resources", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/project/list-resources", + label: "List Resources", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/project/update-folder.ParamsDetails.json b/docs/documents/project/update-folder.ParamsDetails.json new file mode 100644 index 0000000..4ff074f --- /dev/null +++ b/docs/documents/project/update-folder.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/update-folder.RequestSchema.json b/docs/documents/project/update-folder.RequestSchema.json new file mode 100644 index 0000000..72a2181 --- /dev/null +++ b/docs/documents/project/update-folder.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","nullable":true},"default":{"type":"boolean","nullable":true}},"additionalProperties":false,"title":"FolderUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/project/update-folder.StatusCodes.json b/docs/documents/project/update-folder.StatusCodes.json new file mode 100644 index 0000000..ca442e1 --- /dev/null +++ b/docs/documents/project/update-folder.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/update-folder.api.mdx b/docs/documents/project/update-folder.api.mdx index 986aed5..f35edab 100644 --- a/docs/documents/project/update-folder.api.mdx +++ b/docs/documents/project/update-folder.api.mdx @@ -5,7 +5,7 @@ description: "Update folder" sidebar_label: "Update folder" hide_title: true hide_table_of_contents: true -api: eJztVl1v00oQ/SvWPl2gJIELLxYgpS2IcqVLVVLx0ERoYk+SpfbusjsuBCv/nRmvk7p1W7W8IZEHx96d7zm7c2pFsAwqPVPvbJGjD2q2pxx4KJHkKz2rleEPlSqdqz2lDb85oBW/e/xWaY+5SslXuKdCtsISVForWjvRCOS1WarNZm9nBJx+esGGtTVba98q9Gv+yDFkXjuSrVRNVpiIAwyEeTI+Pkou1W5zJDYWUBXES8/Y7SzGyCb2bb4W+cwaQkPyCs4VOgNxN/waxGfdN2znXzEjNuy8dehJY5DdmEzfvamKAuYFxopsOvHsZOfWFgimL8zSkOda4oHiuONuAUXg6pImkW37dOpyIDwkK9VVhD/oj0+i25DHT/7sbETVY3DWhBje89EL+buK8f9tctACkuVfjEZ9kX3Ik5OIYY6vA9+m5a4A/aAqxd17VKlN7R6SgYCqjnE+1IRL9Cy7sL4Eikv/Pr+5GQS6uJcfbdiTye4T1K19qy8zU7zOGuVhE0HoIfCh+Ptb2bsq+1sX1N+S3l5SUXt504VxxAl5tpR8Qs8TM3nrvfVND3iGHn482A7rq1rx7koWzUXGMfL0X9lcRn3V9EUGfqqGcT8Ma51vZA43LiJJqDxXRq2IXEiHQx7zA/DVHLLCVvkgs6WSaRwwq7ymdaOxj+DZWXo26259EnDE/m8FdiVkq/9hnyoc8SXrKfnweZKQPcfmIo9sY1xxGl7/bI70lm+sECRJKYkg8uSSIbz9AaWLSGoN9InFrsEL20TWNmgsyQ4OSidl1xkOuGMC6sHY6V7Adwkn7yeTY+E7UzM1h/a7KSyPAGI29AqSlcfF66kaMkgMF2PoWj3JY6oSAr9EYoEv8wLM+VS9ST6ypJCnhS7w1RDecCxbHsUcaTAajGT0OBuoBNNJ/DogriSwa0hnCLGVBgJ1C5Yz1YKFlVOmjtziFXuRjbqeQ8BTX2w2shz5nyAi10EORr4bsNe87sbfnezwxtjOGTfX2ecFFJVINtC8AK/jqXxQIP+ctCT4UXKb6y14zbrrcxsSl2YzY6kWleI9brTM4OlE1C8VezNKyHXUGGcZOurIduOYdQ718emEpeYtJy5tLsIevgun52cTnW2Sbc5hs1YrhtSygqXIRsfy+wXgqDvv +api: eJztVktv20YQ/ivEnPpgJCVNL0QSQLZT1C3QCI6MHiyjGJEjcePl7mZ3aEcl+N+L4VIyHdqG3VuA6CJp5z3z7c7XAOM2QHYBv1ldkA9wmYJDjxWx/MsuGjBYEWSgCkhBGcjAIZeQgqfPtfJUQMa+phRCXlKFkDXAOycWgb0yW2jb9OAEnXpxTT4oa/bePtfkd5BCQSH3yrGIMliWlEgACkxFMl+cJrdmDwUSHxusNUMGL6FtL2OOFPjIFjvRz61hMiw/0TmtcpRw009BYjZjx3b9iXKGFJy3jjwrCiKNxYzDm1prXGuKHWkH+Rx019ZqQjNWblPAolCSD+rFINwGdaAUWLHo9nM6dwUynbCV7gLTF/7mixgO5Kefv+1qxNRTcNaEmN6r2Wv5uovxv2xy3AOyTeH1bDZWOcIiOYsYhnQI327kTqN6Vpei9Ald6kt7gmZg5HrgHJRh2pKHFDbWV8jx6JdX9w+DUeknxVEmMJr8KUk9OLfmtjJYeLvWVJ10GYQRAp+Lv++dfayz/+uB+t7Sh1sqZr/e92CcGiZvUCcfyV+TT957b303g/ni9OTD8X5Z37WKb1ey6R4ySKEiLm0hq77u5iILP4NplIdpo4pW9nAXIpKE2mvIoGR2IZtO0akJ+nqNubZ1McltBbKNA+W1V7zrLI4IPXnILi6Hoo8Cjjj/vcKhhejUnzSmCqcmkOfkj7+XCdsr6h7yyDbmNZfWq3+7K73nGyWhFCktEUSe3TKE91+wchFJvYMxsTgMeGO7zPoBzaXYyXHlpO0qp8nCWwH1ZO7UKOHHlJPfl8uF8J2VWZkTe2O0xSLhkpI3mJSeNm9XMLWODDo1db2d1LGChNFvid+u4J+1RnO1gnfJB0dGyNNGaXozxXeQwp5HZfByMpvMZPU4G7hCMyj8a0DcKeAwkMESatMIgaYHywX0YIEUMlUIrSxtYBE0zRoDnXvdtnIc+Z8golBBLkZxWLBfRT2sv0fZ4b25XdFuxD6vUdei2UHzGr2Kt/JZifxw1pPgH5OHQu/Ba3bDmPuUVAHtZZvuUSnRo6BnBi+WYn5rONpRQq6jxTzPyfFAd5jH5eBSL86XkMK658SVLUTZ441weryJ2dmu2O4edmcNaDTbGreiGwPL5z/gqDvv sidebar_class_name: "put api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/project/update-project.ParamsDetails.json b/docs/documents/project/update-project.ParamsDetails.json new file mode 100644 index 0000000..fde389c --- /dev/null +++ b/docs/documents/project/update-project.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"unique identifier of the project","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/project/update-project.RequestSchema.json b/docs/documents/project/update-project.RequestSchema.json new file mode 100644 index 0000000..28cdbd3 --- /dev/null +++ b/docs/documents/project/update-project.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"data to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true}},"additionalProperties":false,"title":"ProjectMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"folderId":{"type":"string","description":"Indicates the Folder ID where the project is located\r\nIf not specified, the project is created in default folder","nullable":true}},"additionalProperties":false,"title":"ProjectPropertiesDto"}},"additionalProperties":false,"title":"ProjectInsertUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/project/update-project.StatusCodes.json b/docs/documents/project/update-project.StatusCodes.json new file mode 100644 index 0000000..20f73f4 --- /dev/null +++ b/docs/documents/project/update-project.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","description":"Project id","nullable":true},"name":{"type":"string","description":"Project name","nullable":true},"tags":{"type":"array","items":{"type":"string"},"description":"Project tag list","nullable":true},"createdBy":{"type":"string","description":"Id of the user who created the project","nullable":true},"creationDate":{"type":"string","description":"Creation date","format":"date-time","nullable":true},"ownerId":{"type":"string","description":"Id of the user owner","nullable":true}},"additionalProperties":false,"title":"ProjectResponseMetadataDto"},"properties":{"type":"object","properties":{"description":{"type":"string","description":"Optional description of the project","nullable":true},"default":{"type":"boolean","description":"Indicates if it's the default project"},"resourcesNumber":{"type":"integer","description":"Number of resources created within the project","format":"int64"},"folderId":{"type":"string","description":"Folder ID where the project is located"}},"additionalProperties":false,"title":"ProjectResponsePropertiesDto"}},"additionalProperties":false,"title":"ProjectResponse"}}}},"204":{"description":"No Content"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/project/update-project.api.mdx b/docs/documents/project/update-project.api.mdx index dfd20c5..377a573 100644 --- a/docs/documents/project/update-project.api.mdx +++ b/docs/documents/project/update-project.api.mdx @@ -5,7 +5,7 @@ description: "Update Project" sidebar_label: "Update Project" hide_title: true hide_table_of_contents: true -api: eJztWltv2zYU/isEX3Zz7CTL9mB0BZy4xbxijZE62EMcDLRI22wkUiWppJ7h/75zKEqWIydxlqRAMPWhcKhz43cu4qHOkjo2s7R7QYdGfxaRo5ctmjLDEuGEwQdLquAP2qWS0xaVCn6lzM3hNxc2MjJ1UuNipuSXTBDJhXJyKoUhekrcXJA0CG5RI75k0ghOu85kokVtNBcJo90ldYsUVVhnpJrR1apVamWp3LsGS1BJUA9qzKKmfwSqUIGwTnDSGw7Imu0uRShjyrLYwdIBqL3MbQQRx5ovkH5TB2eOEadJlsIvAeyRVg72i5QsTWMZMaTsfLZIvqzr1ZMABYCSCuOksPgUwGYo+2HKHJVt+6jaGXxJPHWLqiyO2SQWOe6rVvB5KYUZwxBQ6URit7jjLvEghsTSuroKYGGcS6Rn8bCygymLLXjeSYe0haQ/w/77TqO2zS3fD8iGZQ/hcprmFpHKcj1Ma3CVQVLKn2gdC6ZqCgaKYwwIS+SUSPed9aIDf6kCRE51zIUZ8IdtXotEUe89Hxn0yc1cGFG1nEhLYo2kfGzGajAlSjtiUxFhOvLWbdrICKQlUpUG5lY92Z1rCu/QR3IPlAWCc59iBb8TX12TVU1WNVn1nFlVfWX9+FOTXk16Nen1bOmFEoywqYYn3umH+/v1E+Xph81TpH/RpTGTL5SKcgfnFZniD/y1uHolyQyo5qFyvNghXHmRUBm4EaJUl4H2QJZ5MhDSx37gQT0ngZqE9mGqTcJc3liIPSe3Y6Vv1I5Zt7kNz/fkvDgLMfz/K3eQvTozkbAfs2QCSK5FS8jXmcd2U3ROiNaWvGUg3Ug3h6q1uY0yAEDir0ePq7G7VdVHV7LC30+rh4WU2jnj5U4ZTWlrSltT2prS9k1L2wtfTDQ1ralpTU1rato3rGnIerh/VG9VP2pyEhpVIDna1s0eM07O8g8oz9HW5k/rwNbLU76bHSitYy6zW2Oj6tyfD7cHrWMy3kmPVKBJRbsYdaerlqsNPwFH0vcW2Cefqhtk70P2P73UG0jvhnTlC8ZBvWCcK5a5uTbyH8GbitFUjNeKbFMxXqRibD2FOPJeZ6opF025eLXINuXiBcrFL9s6kgFsyGB7+kmYa2i/3hmjjfdBbzjon54Uo2i3jiX+Ox4Zlo1fIuCUAk0eTTPvGByA69JO6N9sZyn5CtatV5JPzWUGsKFz51Lb7XRYKtvMZBMWxTrj7UgnFKfNrIgyI93CcxwLZrBvvbisPvqE4ZFHQEGwvodJ5QdRH4XLP0aSP/4aEaevBPbUYZquF05bPqlpmKebC4YfUBEUjMmz9QTcu68sSfNYqt5ZBWGlC4sRwrBwWbtv2DSvPnyX+2DdS1cGAcHEqfZbDr7vIYrtkyRFj8pItIOX2r1U1pC4j5j8PhoNcVBwrMaqr29UrFl+gfSGkbkR09/GtAO7UIBy4ek2AjSmxDEzEw4I/p7ETF2N6VtyCpQ4dTiVsXjTYW/BlmIAsUsP2vvtfX8Po61LmKqgWIu17dcvlRcciPHBtQxxeEGLOATuruQ4wjkHPfhkuZwwK85NvFrhcj46icHGpcWs4+WNwC215bv13sHKrcZdQUjeHty8ZnGGlD7qr5mReco/ypDvz8L86A9kh2HTraYVeaMWVZsKkwG6FQZvSAi0Ln8Q7j32Rsi+Zqy9IHFuNefoRZFIXYW2asdlpaAMz0dANQnjponmSGzYDSzi/9467cHwmeTXlhSCbpaxGdLmivHfv6c7ZyY= +api: eJztWttu20YQ/ZXFvPTGSE6a9kFIAviSomrQWHBs9CEyihV3JG5C7jK7QyuqwH8vhjdRpmzLdRwgKPVIzs7MzuVwZ3XWQHLhYfQeJs5+wJDgMoBUOpkgoeMXazAyQRiBVhCANjCCVFIEASj0odMpacsPM6M/ZSi0QkN6rtEJOxcUoUgrxQE4/JRphwpG5DIMwIcRJhJGa6BVyiY8OW0WkOdBY1Wm+skVOs9GKvOfMnSrjv3zCAUbQE+oxOFkLDbLbjLEOuYyiwlG8BTy/LL0ET0dWbVi+W0bSpIUZEWWKkkIAYTWEBpiSZmmsQ4lSw4/eBZfd+3aWRWK1NkUHWn0/DZBkqz7bskyKrv20fazyqUopAMwWRzLWYxl3POgynmjRTonOaCaMPE70nGTepILEWtPXRN5AFIpzfIynrR2MJexxwBIE8vWmv6s9n9Clq1tb/n2gGx5dldcTtPSI9F63C3TTriaImn0z6yNUZqOgbFRXAPohZ4LTd/5QnW1vjGRBzC3sUI3Vnf7vFHJqn4r1onxiVhG6LDtudBexJZF1dRNzXgujCXhUwy5HVVwXTZ0yLJCm8bB0qsHp3MjUST0nqvHxqOji6LF6vWEn6nvqr6r+q76kl3V/mT9+FPfXn179e31xdqLNTj0qTW+TPqzg4PuifL0zfYpsvjQpbHUj9SKeo/k1Z1SHPg7dfWNNHMAVakcrfYoV1U3VObRiWVkm0K7o8sKMW3NCc8Dd9o5rqRFNT7MrUsklYMFPiG9O1Z2afbsuu1tFOse3BdnVQ3//+DOobeZC9G/zZIZupZqbQgXRWy3VZeC7G2ztimkpaZIm2vbaApAG/r1+f0wdj9UvTeS1fl+GB7WWjrnjMc7ZfTQ1kNbD209tH1VaHvki4ke03pM6zGtx7SviGm89NnB8+6o+taK42pQzQN4vmuaPZJKnJV/oHyJsbZ82w1sF57K3ewh6UlS5nfWRju5Pz/bXbQkdbyXHW08SRPu49SNqVrnW3maxZicFB74B5+q+8jeFtn/9FHvQ3pzSPMCMJ52AePCyIwi6/Q/qHrE6BHjW41sjxiPghg7TyEkfrOZ6eGih4tvNrI9XDwCXPyyayIZG0LH4+k7dFfoxGvnrCtycDgZn5we11S0a8eS4n88MWkGvwQpsoqpb1mRGCbAjWBYzW9+uNYqZ55ZYaRkzWUuhhFERKkfDYcy1QPpspkMY5upQWgTYLaZxzBzmlbFiiOUjufW95ftV++4PMoKqAU29zCpfoNdKlz5Z6T4469zQfYj8kxdsekOq9NW0dQ1ny5CyX+gclC4Js82DLjXn2WSlrXUvrOqlDUprCmE1YPLzn3Dtntd8l2Zg80s3SICgjZzW2y5yv0hR3FwnKScUR3ioMrS4DDVnUjcJix+Pz+fMFFwaqbmxC5NbGV5gfRCisjh/OUUhjZFI1NdZ3rAAZqCIOkWSC+n8PcslubjFF6J0xQNsw7nOsYXQ/kKAqgJiCN4OjgYHBT3MNZTIk0rip1a23390vrA5UFZXOuqDt9DXYcQwEgrpnBG1hO/Wa9n0uOFi/OcH5fUSS42pT13nWpuBK6Zbb6ttxIrdzr3EVcd4uaVjDOWLKr+Sjpdtvy9HPn+rOKP/iD2IJvudK3uG7Nq+1S7rBXkXLxVQ7B35Yvq3uPJOS/fLOx8IJm3Wq44DENMqSXb9uOyBSiTi3MIYFbRTROrWNjJJdNl5bL0zhbBKDqpeLaGWJpFJhcsWxrm37+nO2cm sidebar_class_name: "put api-method" info_path: docs/documents/project/aruba-cmpservice-project-api custom_edit_url: null diff --git a/docs/documents/schedule/create-backup-policy-assignment.ParamsDetails.json b/docs/documents/schedule/create-backup-policy-assignment.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/schedule/create-backup-policy-assignment.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy-assignment.RequestSchema.json b/docs/documents/schedule/create-backup-policy-assignment.RequestSchema.json new file mode 100644 index 0000000..2039382 --- /dev/null +++ b/docs/documents/schedule/create-backup-policy-assignment.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the backup policy assignment to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentInsertDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy-assignment.StatusCodes.json b/docs/documents/schedule/create-backup-policy-assignment.StatusCodes.json new file mode 100644 index 0000000..c925052 --- /dev/null +++ b/docs/documents/schedule/create-backup-policy-assignment.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy-assignment.api.mdx b/docs/documents/schedule/create-backup-policy-assignment.api.mdx index ec153ac..b65c84c 100644 --- a/docs/documents/schedule/create-backup-policy-assignment.api.mdx +++ b/docs/documents/schedule/create-backup-policy-assignment.api.mdx @@ -5,7 +5,7 @@ description: "Create backupPolicyAssignment" sidebar_label: "Create backupPolicyAssignment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/create-backup-policy.ParamsDetails.json b/docs/documents/schedule/create-backup-policy.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/schedule/create-backup-policy.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy.RequestSchema.json b/docs/documents/schedule/create-backup-policy.RequestSchema.json new file mode 100644 index 0000000..b1caf3e --- /dev/null +++ b/docs/documents/schedule/create-backup-policy.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the backup policy to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyInsertDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyInsertDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyInsertPropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyInsertDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy.StatusCodes.json b/docs/documents/schedule/create-backup-policy.StatusCodes.json new file mode 100644 index 0000000..5ab1ce8 --- /dev/null +++ b/docs/documents/schedule/create-backup-policy.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-backup-policy.api.mdx b/docs/documents/schedule/create-backup-policy.api.mdx index 189cb59..a0c5e2a 100644 --- a/docs/documents/schedule/create-backup-policy.api.mdx +++ b/docs/documents/schedule/create-backup-policy.api.mdx @@ -5,7 +5,7 @@ description: "Create Backup Policy" sidebar_label: "Create Backup Policy" hide_title: true hide_table_of_contents: true -api: eJztW1tv2zYU/isEn3Zx7CTbXoyuQOJkmIdlMRJ3fUiMgZYom40kqiSV1jD833cOKdmS7aTMDX1hHgJHOjd+56KPirmkhs007d/QUxbdlcVIpiJa0EmHFkyxjBuu8O6S5vAH7dNCyU88MsOYdqjI8QIzc/gccx0pURgh8WKZi88lJyLmuRGJ4IrIhJg5J5U6GVyMQEnxz6VQPKZ9o0reoTqa84zR/pKaRYHetFEin9HVqrMOgBXi4B6CQkdVCOBKLXZiGIM7dMC14TE5GQ3JRu0hR2gjYWVq4NIRuJ24GMHEqYwXKN/2gUuaWtxIYYEjRpJIcWY42IpkbgAAVGNFAbcZqvU+adRd7gYhp4gNKAJKBVdGcI13IQksZsZD0kG0b1HNoP8BqTofimtZqojTVacqhLU2U4ohqsLwTO/JybbZv4U21iyYIYlUbfsdmpdpyqYpd8mGlFIWxwKVWTpqLCNhqebbxi8qDHbihrCFQaNrkTMj/z3G8NrYPI5cbW9spXYR3AreVVBcptwHsQd8usLx9pjYSsyjhZe0EftLARKTMSxvgIof6ILl+7RjtrhMPnJ+5+XLSl9Asc+9xBXHroC8nrFFEyYB3TLjqhkkXPrl+Om1U5dEc6RdVwmD8oDGfo6FYa5BaiPsLD3bUK1u+FcTZkKYCWEmhJmwVm/QhZ9+DsMhDIcwHMJwcIFYQHQh4ZoF4/jwaHdjMrB7kLi9CbFMo0iZeKNpImKvdJZKeMk9NJx2BKtN5asFmMg05mroI+ybzZEL8apKnE3lMwboTqjwjOAzqRbfXvtT0LyHjbvymxoL2PfKmYd/T+w9w/TFfVzF1wLeV3lQgbuVNbu/t9PIeExMO1f3Zc516KnfdJZfcs+KhP4q0PHLonM2fKOrX6z4yFbr/qA9K6yKxFs+YzmbeUbuWwg1U9gqBG2YKT2e2yjn13uvU1oJE2mp+BVn2jMpXCmpvr0Q5W8x41pDHl4xCdcW7XOM9Fnd7PS3UhgoX6B8G55VF8fLqV9t6Ynkr03iQIXUVK/9mrlLH3e7bx/5drvIwPsC7wu8L/C+wPsC7wu8L/C+wPu+N+974/8pBsIXCF8gfIHwBcIXCF8gfIHwBcL3fQkfuvv18BDhaxs+ZTG5cl9gpa/wr2DjW55VyD6tsz1a/ROPKBqYgF5+RA6e8uhFc2q5avE80MjObAT6xS9bA7KPIfus7UyA9GFIUe23fQNjCAtSYIlccwVkj9insM3ByWh4djlwXrfnl/u2CXEDilRHCJAamLkEKksLaeePPSrQp71qG6d7y/VpglWv3o3o3okqp6xbj+bedDP2cGGQBRuaO5VQKkCUzo0pdL/XY4XoMtSOUlnG3UhmFL/Cr3kEW1GzsBqnnClkmDeT5i30lrm6qQXW0KN1ur3kcwTKfrPsr49j4nSIkXc8x5FtaxR1p85Yp/rwR10loGRRxaK+2pwwOP/KssIVY3M3Xh19WNdAfWSjujDZ4TdtBrNRbBCVmzbnaJCCDbVoeBTtCBqcYOti9ejfXN16wh+uJitb4om0GFcl6pI+yAosPBHxdf5HVV10TwqxkwUvLfLneDzCAyC3+W1+BhusVMJjEVP3jpG54snvt7QH6OVQPr0aoYO6HruYoltKDFMzbkD0v2nK8rtb+p5cgg6eK0lEyt/12Hva2CDRo+5h99AyTyh+2Ks08vhAu7SWtq6+xpPavlKxE8R10k39QgS7ot88mbNuJvjcbicsxXZDQRfMsT/B3HI5ZZp/UOlqhZfduRqslFhonDnxfv6y3DCLR0/d7F3RHcdCa5/quWdpiZK2e++ZEm7gPSmQH66qw0U/Es/TSHvDq9l8vmjGVYe9wXyFTTjnzL5PgUDd/YEL58D22EZ/hyng+SancRJFvDAN2WY4k8ZMHV1ejzGZ1bmkTMYordgXbDn4baOUFhg3EvDakkLtzkq7X6POM/78D++QC80= +api: eJztW0tv2zgQ/isCT/tQ7LS7ezHaAkncxabYbozE3RwSYzGWxjYbiVRJKqlh6L8vhpRsyXZS5lH0wpwCaYbzcV76KGtWzMBcs8EVO4bkpixGMuPJkk1iVoCCHA0qurtiAnJkA1Yo+RkTc5qymHFBF8AsWMxS1IniheGSLpaCfykx4ikKw2ccVSRnkVlgVKtHJx9HLGYKv5RcYcoGRpUYM50sMAc2WDGzLMiaNoqLOauqeA0ACn5wi0qToRrClxLVcgfDeIERGUBtMI2ORqfRRu0+Q7TGDMrMsAF7xapq4jCiNscyXZJ81wZtaWr9FhXWcZGRUaIQDLKYJVIYFIbUoCgyngCp9T9r0l3tgpBT8g2LyckFKsNR090cDaRgPCSdi/Ztqg36H8ixiYdCLUuVIKviOhHW2qAUkFe5wVzvicn2sn9zbeyyMNfRTKru+jETZZbBNEMX7KqKGaQpJ2XIRq1tzCDTuL34x9oHO7hjZrihRdciQyP/fU3wur552HPNemMrtevBLfAug9IyQx+P3WPTJY63xZnNRJEsvaQN358KM6lyoPROweCBLkDs005heTa7RLzxsmWlP0phFl7iCqkquBRDWLbdxIXBOao2SC7Mb68fnztNSrRb2kUdsKGRrHrSCqdCozIbYbfSkxdq1A1+NaEnhJ4QekLoCWv1Fl345dfQHEJzCM0hNAcHxDpEF1JolxWvD1/tHkxO7Bkk7R5CLNMoMuDfqZvw1CucpeJecvc1px3B+lD5YgBnMktRnfoI+0Zz5CCe14GzoXxCA92BmoDBuVTLb+/9Md685Skqv66xLGQm5x72PX3vCdPX7+MaX8fxvsontXO3ombP97YbGY+Oafvqvsi5Cj32687yTnhmZMzKggw/D51bwxdd82LFR7be9yftmWE1Em/5HATMPZH7JkLDFLYSQRswpcdzm+T8au9lUmsGPCsVniNoz6CgUlJ9eyPKf8UctYb5S5byhfX2e0L6pGp2+lshDJQvUL4Nz2qS4/nUr1npkeSvS+KGRkYN1eu+Zu6xh83uO0d+v1Nk4H2B9wXeF3hf4H2B9wXeF3hf4H0/mvd9598UA+ELhC8QvkD4AuELhC8QvkD4AuH7sYSPzP1+eMh2fgY+hjQ6dx+wvsRPwcY3PWvIPqWz3Vr9A09eNMAzLztcaAMieVafWlUdnjfNMB9aBPrZL1uDZx/y7JOOM8Gl97uU1P7Y1zBOhUElIIsuUN2iiuxT2MbgaHQ6PDtxVrf7l/vaJHINKqpHCIgamIVMaUZA2v5jRwUGrF8f43R/tZ4mqPrNaUT3j1Q5hV7TmvvTTdujjcVMW2huKqFUGRuwhTGFHvT7UPAekHaSyTLtJTJn9Am/xqRU3CytxjGCIoZ5NWnfImu5y5tGYO16Wn3nm7j35Cj7ZdmHy3HkdCIjb1D0mvkC0p26xeL6nz+bLPlwObZepaQ+30wYvP8KeeGSsX0ar0cf1jnQjGzUFyY7/KbLYDaKLaJy1eUcLVKwoRYti7yLoMUJti7Wj/7N1a0n/GE1qWyKz6T1cZ2iLugneUGJxxNcx39U50XvqOA7UfDSiv4aj0c0AHItrsVQ3olMQmpD9waihcLZ22vWlwUKKHi/8dBBk489CtE1iwyoOZq31+y/aQbi5pq9i84KFDRXMuMZvunDO9Y6ILFXvcPeoWWeUpscRCuO95RLZ2vr7Gs9qe0rFdtBXCVdNS9EqCoG7cmcdTGxmHXLiVKxW1CTmC2oPgdXbLWagsZPKqsquuzmaihTUq6p56T7+ctqwywenLrZu6MbXO5M9dxCVpKkrd5bUNw1vEcB+em8Hi76OfKcRtoLr2HzYtnG1cDe+LyiIlwg2PcpV6v6/omDc2BrbKO/wxRovslpHCUJFqYl24YzafXU0dnFmIJZzyXlMiVpBXdUcnDnUErrGNcS6NqKZSDmpT2vMWeZ/v4H75ALzQ== sidebar_class_name: "post api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/create-job.ParamsDetails.json b/docs/documents/schedule/create-job.ParamsDetails.json new file mode 100644 index 0000000..05368f2 --- /dev/null +++ b/docs/documents/schedule/create-job.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/create-job.RequestSchema.json b/docs/documents/schedule/create-job.RequestSchema.json new file mode 100644 index 0000000..5815880 --- /dev/null +++ b/docs/documents/schedule/create-job.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the schedule to create","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"description":"For more information, check the documentation.","enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.\n\nFor more information, check the documentation.","nullable":true},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"description":"Properties required to configure and schedule a job.","title":"SchedulePropertiesRequestDto"}},"additionalProperties":false,"title":"ScheduleRequestDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"description":"For more information, check the documentation.","enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.\n\nFor more information, check the documentation.","nullable":true},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"description":"Properties required to configure and schedule a job.","title":"SchedulePropertiesRequestDto"}},"additionalProperties":false,"title":"ScheduleRequestDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"description":"For more information, check the documentation.","enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.\n\nFor more information, check the documentation.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.\n\nFor more information, check the documentation.","nullable":true},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"description":"Properties required to configure and schedule a job.","title":"SchedulePropertiesRequestDto"}},"additionalProperties":false,"title":"ScheduleRequestDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-job.StatusCodes.json b/docs/documents/schedule/create-job.StatusCodes.json new file mode 100644 index 0000000..f0a3049 --- /dev/null +++ b/docs/documents/schedule/create-job.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/create-job.api.mdx b/docs/documents/schedule/create-job.api.mdx index 5f370e0..f661495 100644 --- a/docs/documents/schedule/create-job.api.mdx +++ b/docs/documents/schedule/create-job.api.mdx @@ -5,7 +5,7 @@ description: "Create Job" sidebar_label: "Create Job" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/delete-backup-policy-assignment.ParamsDetails.json b/docs/documents/schedule/delete-backup-policy-assignment.ParamsDetails.json new file mode 100644 index 0000000..2d11e8f --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy-assignment.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the backup policy assignment","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy-assignment.RequestSchema.json b/docs/documents/schedule/delete-backup-policy-assignment.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy-assignment.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy-assignment.StatusCodes.json b/docs/documents/schedule/delete-backup-policy-assignment.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy-assignment.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy-assignment.api.mdx b/docs/documents/schedule/delete-backup-policy-assignment.api.mdx index fe3d943..a050cfb 100644 --- a/docs/documents/schedule/delete-backup-policy-assignment.api.mdx +++ b/docs/documents/schedule/delete-backup-policy-assignment.api.mdx @@ -5,7 +5,7 @@ description: "Delete backup policy assignment" sidebar_label: "Delete backup policy assignment" hide_title: true hide_table_of_contents: true -api: eJztV99v0zAQ/lcsP4HUNWWMl2ogdWsRQ/yooIiHtUJucm29ObZnO4Mqyv/OXZK2GS2jTOMBqU/LnPvuvvsR97ucBzH3vHvJz0R8ndmhUTJe9ryXc52CDnzS4lY4kUIAR3Y51/gP73LrzBXE4SLhLS41HYiwwOcEfOykDdLQYablTQZMJuhLziQ4ZmYsLIDVcHb+foggBzeZdJDwbnAZtLiPF5AK3s15WFqK5oOTes6LorUmIB8YeVomymyZKRObVB9GQ1h5dIu1oag1H4zrlluERhibAoAPkLDe8IJtYL8LRD5mIlMBj55h2Alx9NZoD56sjzvH9OduoF4cg8UYvGjxk05n2+BMJOxTxQQjxEYHSp+Cw48QWSUoi3yblJlSyxCCzbPggqxIVG+3qetMKTFVUFUTyQQZ1H6WPoiQNZxjXQPMwaHtzLhUhOro+fEucAJBSLVXHKkxko73IYXWIkkklVCoYbMAm8w4niMi7ZcMPC9B1uKgCcJFV94cKvtolS2n9VDSxytpUV4YJ9sXxgcT2GuT6eRwXRyui/+1sofr4h9cFy926YsLTMihJ/YZHGocNnDOuLIHqHr6H89X8uouqg8KReZ98gxF6MKgOEMgmVKzSPl1eVSrSR/la1la0OEtyj/no57LpqL9GXueZAqi6U6pi2CZFCTGStaV2M0cFpsvQrC+G0Wo9dqCfMXKZEk7NiknSeYhzpwMyxJxBsJhM7uXk+Yrip1WI7UyWHeFvG+pxQHVsNSrb7+OWIVhwVyDbq/0ImGnlbNW/fB6NUAIKgsu9cyUoeomVpU4Ty21RsawLsqwLla7Z+UWmb1Q7M1oNCRdO9Zj3TfftTKoMymDU8EWDmYvxzzC0dJYxcjXDo5WTWrTlznmLAg3h4Cm36ZK6Osxf8U+Iobk8kwqOI3EK6S3Us6oituddoeUrjU+pKL8uGtl/ueBupPluh+NnzX0W05AXk/a5Wrt8YjuNleg9bDh891xo+bsHjjygVsMjskCyZP3PJ8KD1+cKgo6rhYJmqpEevpecfhnQvlfv51886t875qxM8FrWG6tMbdCZWRZjvetcLK6LP6KyJNP9Tb1lO25Be6kVx8KvWzyWtHetIBWsscld8/gPIApNrqYoNUCRFLeD3n9olrXGpCm10nj1usP3g1GA/ysfwJlY3Yx +api: eJztV0uP2zYQ/ivEnBpAsZxtehGSAN61g27QNkbiIoe1UYzFsc0sRXJJalND0H8vRpIfWztbd7E9FPDJBjmPbx4cfVNBxGWA7AYuMb8t3dhqla8HIailKchEmCXg0GNBkTzLVWCwIMjAefuV8ngtIQFl+ADjChKQFHKvXFSWD0uj7koSSpKJaqHIC7sQcUWiUxdXv44hAU93pfIkIYu+pARCvqICIasgrh17C9Ers4S6TrYA1BM9z5tAhWsiFbgL9Wkw0KmX9+QDe+3w3JXk1weAJisS7IBCJCkG42uxU/ueI7axwFJHyOAV1PWMMQZnTaDA0hf9C/556GiQ5+QiSagTeN3vHwpcohSfWiSQQG5N5PDZOf0ZU6eRo6gOQdk5lwwSrr0jH1ULor09hG5KrXGuqc1mnUBUUZ8mGSLGcs84KBNpSR4SWFhfYGyPfrw4piwpotIn+VEmRDT5KaDqBFBKxSlEPd5PwC4yGHs711QMGwQBGiXntMqR9dKvwZ4z+2yZbbr1nNLnS2ndDIzXhwPjNxvFe1saeR4X53Hxf83seVz8B+Pip2P84tpE8ga1+Ez+nrwYeW99U4PB+Hr48WpDrx5qDUlTfJSeFRRXVkIGshHlYjHzyyDt2GRIqy0trfnwXknyIR34co69z/mKZKkpnR+luiGtlKyZjDWoW7Jbeg0ZrGJ0IUtTdKqHbCvXtpS93BbAlCxQXnoV143GJaEnD9nNbP+KfRdtS20EtlVh6wdsccQ5bPjqhy8T0eqIaG/J9DZ8kXXnrbGk+/N+00AfvkyahCuzsI2rrohtJq4Kx6VROW2TMu6S1Rs4dQDmJC3x82QyZl47NVMztN+MtiibCN6gWHlavJ1Cah0ZdCoNnYGXmyL1+GVOQUT0S4pvp/DHXKO5ncI78dGRYbq8UJrepPgOEtgw5wxe9fq9PjNdZ0MssHncHTP/54Z6EOW2HnuftTppO6DqOu1ms/YESCDbX4G2zQYJPGw3Ls7xhmMbSvKKtbIhsvWqmmOg372uaz5uFwnuKqkCv1cJ2QJ1+PvbqXZf5UfXjKMB3tL6YI25R12yZNPe9+hVOyz+FZAfPnXb1Atx4hZ4FF53iGa9j2sDe1cCXsmeF9wjjfMEpEpCPasTWBHKZj5U3UW7ru2p7Fud7U294eiX0WQEdf0XZWN2MQ== sidebar_class_name: "delete api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/delete-backup-policy.ParamsDetails.json b/docs/documents/schedule/delete-backup-policy.ParamsDetails.json new file mode 100644 index 0000000..cd7f3a0 --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"backupPolicyId","in":"path","description":"unique identifier of the Backup Policy","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy.RequestSchema.json b/docs/documents/schedule/delete-backup-policy.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy.StatusCodes.json b/docs/documents/schedule/delete-backup-policy.StatusCodes.json new file mode 100644 index 0000000..b55b8e6 --- /dev/null +++ b/docs/documents/schedule/delete-backup-policy.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/delete-backup-policy.api.mdx b/docs/documents/schedule/delete-backup-policy.api.mdx index 483b329..a528287 100644 --- a/docs/documents/schedule/delete-backup-policy.api.mdx +++ b/docs/documents/schedule/delete-backup-policy.api.mdx @@ -5,7 +5,7 @@ description: "Delete Backup Policy" sidebar_label: "Delete Backup Policy" hide_title: true hide_table_of_contents: true -api: eJztV01vGjEQ/SuWT61EWJqmF5RGIoGo6VdQQtVDQJXZHcCJsTe2lxat9r93ZneB5SMVjdJDJU7Z2H4zzzPj4U3KvRg73rzj5yJ8SOKuUTKc80GNx8KKKXiwtJtyjf/wJo+tuYfQX0W8xqWmBeEn+B2BC62MvTS0mGj5mACTEWgvRxIsMyPmJ8BKOLv40kWQhcdEWoh409sEatyFE5gK3ky5n8fkzXkr9ZhnWW1JYFih+VwWxVVZedfn8RCxPJphcMhVSQKd2fkWix46JAfgPESs1b1iK9hTjsjGSCTK49IbdDsgji422oGj08eNBv1Zd3T9iWc1frJr61xE7KbggLZDoz2GJHcLv3wQK0H80206ZkjZQgjmLQbrZeG+2N0mrROlxFBBEUck46VX+510XvikYhwj6mEMFs+OjJ0KXyy9Pd4FjsALqfbyIzV60uE+pPC0iCJJIRSqWw3A6mYc1xExbecMHM9BcYx1JQgX3DtziOyLRTav1kNIXy6kWd4wTrYbxlfj2aVJdHRoF4d28b9G9tAu/kG7eLdLX1zhhSxaYrdgUd2wjrXG5jlAvdO+vlgIq3VUGxTqyy01hqJzYlCL4WnapwyRumvyoFSPLkiXMjSjxRlKPOuClk2Gon6LiY4SBUFFKeLVgnRdOWYkv3K2hb5NLAaZT7yPXTMIUN3VBZkLlUmiemimnESYgzCx0s9zxDkIi0ls3g2qW+R+WpTS4sAyG2R9Sx92KHa5LP34vccKDPPmAXR9oRBz3VsYq5Ufl4vCQVAeaKlHJndVJq8IxsU0ppTIEJZx6ZbxqrdiuUVmLxT70Ot1Scn2dV+3zU+tDOpLusGpYBMLo/d9HmBJaYxi4EoDR4s81elF9jnzwo7B49EfQyX0Q5+fsWvEkEAeSQWngThDegutjDq43qg3SOHGxvmpyB91qcWfKKS1qy2TUPkNQ2N52tOywu4W441DdLM66iyLDL/Xy4wyslZoBN0YUrA8JkiaHKRYhg6+WZVltFyMDFRNkXT0PrHuR0K5zbeSrn6F/zhQ7LzjA8y3BpaZUAmdzMt6JqwsmsNfEXl1U85Nr9meA99OeuWi0PMqrwXtVRZo+HpZcpsF8wx6G5nOBoiYgIjyxpCWh1phCLGvwKseBpWO1+587vQ6+J5/A5YbaMM= +api: eJztV01v2zgQ/SvEnLYAa6UfexHaAk7soul+xGi96CE2FmNxHLGhSIakvGsI+u8LSrIjx27hDdJDAZ9skBzOm3nD0ZsKAt54SK/hHLPb0k6Mktka5hwsOiwokIu7FWgsCFKwznylLFwK4CB1XMCQAwdBPnPSBmniYqnlXUlMCtJBLiU5ZpYs5MQ6c3bxxwQ4OLorpSMBaXAlcfBZTgVCWkFY2+jNByf1DdQ13wJY9GA+FkUbKutifRwOtPL5ipyPrjoQdyW59R6KaU4sOiAfSLDh5JLdm33LUbxjiaUKkMILqOt5xOit0Z58PP3y7Cz+7Dq6+g1qDq8PbZ2jYJ9aDMAhMzqQDo1b+jckVmHEX+3DMYvIFvBIuyUXZOu+3d0HrUulcKGozWPNIcigjjvpA4aydzlIHeiGHHBYGldgaJdevTxkLCigVEf5kdoH1NkxoGoOKISMKUQ16SfgPjKYOLNQVIwaBB4aI2uVzDDaJV+9OWX2yTLbVOsppU+X0rppGK/3G8afJrD3ptTi1C5O7eJnzeypXfyAdvHrIX1xqQM5jYp9Jrcix8bOGddwMJxcjq4uNsJq12pEisK+Giso5EZACqLZjwxFdZdC0qlHn1RbGVrHxZUU5HwydOUCB5+znESpKOkpRUk+qXaVYx3lV4O21belU5BCHoL1aZKglQOM12XKlGKQmQKiCPOUlU6GdWNxTujIQXo9729F90VbSpsDWzbi7Xv6cBxz18jSj1+mrLVhwdySHmwUYqN728t49+f9pnA+fpk2iZZ6aRpXHXltMi4KGymRGW3zMunyNRhauQfmKCv2YTqdRCU70zM9Mv9oZVA0EbxBljtavp1BYixptDLx3QXPNzwN4oucAQvobii8ncHfC4X6dgbv2JUlHQXyUip6k+A74LDRyim8GJwNzqLCtcaHAptH3WnxbxTSTmhbEnrfsJq3tFddhV1vxhsPHNL+qLMtMuCwW2aRkZ1Ci6YPhpQ5h9z4EB1U1QI9/eVUXcfldmSI1SSkj+9TQLpE5R++ler+K/zdgeJgjLe03htYVqjKeLIp6xU62TaH/wXkl0/d3PSMHTnwHYTXLaJe93FtYN+zEIevpwX3sGAeAe8B0/W85pATiqYxVN2hYZaRDT3zvod5r+ONxr+Pp2Oo6/8Alhtoww== sidebar_class_name: "delete api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/delete-job.ParamsDetails.json b/docs/documents/schedule/delete-job.ParamsDetails.json new file mode 100644 index 0000000..1dcf80d --- /dev/null +++ b/docs/documents/schedule/delete-job.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/delete-job.RequestSchema.json b/docs/documents/schedule/delete-job.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/delete-job.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/delete-job.StatusCodes.json b/docs/documents/schedule/delete-job.StatusCodes.json new file mode 100644 index 0000000..b55b8e6 --- /dev/null +++ b/docs/documents/schedule/delete-job.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/delete-job.api.mdx b/docs/documents/schedule/delete-job.api.mdx index 1071f4c..7d11cec 100644 --- a/docs/documents/schedule/delete-job.api.mdx +++ b/docs/documents/schedule/delete-job.api.mdx @@ -5,7 +5,7 @@ description: "Delete Job" sidebar_label: "Delete Job" hide_title: true hide_table_of_contents: true -api: eJztV9tuGjEQ/RXLT61EWJqmLyiNRAJR01tQQtWHgCqzO4ATY29tLy1a7b93Zi+wBFrRKH2oxFM247kcH4/NmZR7MXW8fcdvwxlEiQI+avBYWDEHD5ZWUq7xH97msTX3EPqriDe41GQQfobfEbjQythLQ8ZEy+8JMBmB9nIiwTIzYX4GrAxnF5/6GGTheyItRLztbQIN7rD8XPB2yv0ypmrOW6mnPMsaKwD3ZvzU4u/NmK12+LTqIpZHC6SEKpUYsJZdboEYYD0qAM5DxDr9K7YO+10hyjERifJoeoVlR4TRxUY7cOR93GrRn81C1x941uAnu5bORcRuCgyYOzTaIyN5Wfjpg1gJwp9uwzFjOiMMwdOKwXpZlC9Wt0HrRCkxRkpzHhGMl17t5+m88EktOTLqYQoWfSfGzoUvTK+PdwVH4IVUe9WRGivpcB9Q6C2iSBKFQvXrBKx3xtGOEfNujsDxPCiOlQwFxQX3zhyYfTZm8249UPp8lGb5g3Gy/WB8Np5dmkRHh+fi8Fz8r8wenot/8Fy82aUvrnBDFjOxW7CobljPWmPzM0C9072+qITVZlQXFKpKEmMIEAXmzKACQx+y0rmQpGvzoFSKLkhXkjMj4wJ1nXVBxyZj0azUXICqED1zbZiRwsoBFcI1scgjn3kfu3YQoIBrCooNlUmiZmjmnHSWgzCx0i/ziHMQFs+pfTeqL1GtedEtlcOKcMq+JQF7RE8hPL8OWBHDvHkA3axEIMWOi2SN8uOy6g0MyrmUemLyUuX5FDu/mMfEugxhRUK/JKfZieUWmL2i2LvBoE9idaiHumt+aGVQQtIOTgWbWZi8HfIAu0Yji4ErExxVh9KkSzfkzAs7BY+u38ZK6IchP2PXGEMaeCIVnAbiDOFVchilbrPVbJGIjY3zc5Hf21Jub/TKxoZW1Nd+nDBFfthp2UR31bTiMLpdn1xWfYTfm52EBuolCigmDeyAGeKibGk6Fg6+WJVlZC6EPzVMJB3dMuzjiVDuccen69/SP44FOzf0AMutsWMhVEKeeecuhJXFFf8rIC9uyunnJdtzWNsJrzQKvazjqmCvKacR6nnBPRrmnoCuON9shI4zEFF+49NyrROGEPtaVD3xqPZudXsfe4MeXtRflPxH7A== +api: eJztV99v2zYQ/leIe9oA1kq77kVoC7ixi6X7EaP10IfYGCjxHDGhSIY8uTME/e8DJdmRa2/wguxhgJ9sHHm8j98dT9/VQOI2QHoDn/MCZaURlhyc8KJEQh9XajCiREjBeXuHOV1J4KBMNAgqgIPEkHvlSNlorIx6qJApiYbUSqFndsWoQNa7s8tfZ8DB40OlPEpIyVfIIeQFlgLSGmjjYrRAXplbaBq+A3Bns6cG/2gztrvh06ILp16s0YcYqcfwUKHfHICYF8hiAAyEko1nV+zR7e8CxTNWotIEKbyEpllGjMFZEzDE3a8uLuLPfqDrn6Hh8PrY0nsh2acOA3DIrSE01IbFPylxWkT89SEcm8UcAY/JduhJdeG71UPQptJaZBo7HhsOpEiftjOQoGpwOChDeIseOKysLwV1ph9eHXOWSELpk+IoE0iY/BRQDQchpYoUCj0bEvB4M5h5m2ksJy2CAK2Tc1rlIvold8GemX02ZttqPVP6fJQ2bcN4fdgwfrPEPtjKyHO7OLeL/yuz53bxH7SLH4/piytD6I3Q7DP6NXo29d76Ngfj2dXk+nIrrPa9JqiRWjEGHEqkwkpIQbbWmJco6VJIeqUYknonOZtoXCuJPiRjX2VitFVzyZ3NQlK32rCJCqsF1AnXymtIoSByIU0S4dRIRN9c20qOcltC1FkB88or2rQe71F49JDeLIdLMVbZVct2w47wePqBBJxGejrh+WXOOh9G9h7NaCsCo2/WHcb7Px+2tfHxy7zlUpmVbUP1+eluflm6yLrKcUfCrCdnNHbqAMxJXuyn+XwWxerCLMzEfjXaCtne4I1ghcfV2wUk1qERTiWhP+DFNimj+OgWwEj4W6S3C/gj08LcL+Adu3ZoogZeKY1vEvEOOGzlcAovRxejiyhinQ1Uivbd9nJ7r1b2LrSjfvBxaniX7LovopvttBKAQzqcXHZ1BBz2Kwl4nDBah27SWHIobKB4Wl1nIuDvXjdNNHfCPxaMVCG+MgnpSujwbcXXj9/SfxwLjl7oHjcHY8da6CrubCt3Lbzqnvi/AvLdp376+Z6dOKwdhdcbhdkMcW1hP1IeR6jnBffNMPcEdF1+m2XDoUAh2xdf92vjPEdHA6/hwctB35pMf5nOp9A0fwGU/Efs sidebar_class_name: "delete api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/force-job-execution.ParamsDetails.json b/docs/documents/schedule/force-job-execution.ParamsDetails.json new file mode 100644 index 0000000..ee9c206 --- /dev/null +++ b/docs/documents/schedule/force-job-execution.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"jobId","in":"path","description":"the schedule id to run","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/force-job-execution.RequestSchema.json b/docs/documents/schedule/force-job-execution.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/force-job-execution.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/force-job-execution.StatusCodes.json b/docs/documents/schedule/force-job-execution.StatusCodes.json new file mode 100644 index 0000000..b55b8e6 --- /dev/null +++ b/docs/documents/schedule/force-job-execution.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/force-job-execution.api.mdx b/docs/documents/schedule/force-job-execution.api.mdx index ea642ba..9e1af8a 100644 --- a/docs/documents/schedule/force-job-execution.api.mdx +++ b/docs/documents/schedule/force-job-execution.api.mdx @@ -5,7 +5,7 @@ description: "Force Job Execution" sidebar_label: "Force Job Execution" hide_title: true hide_table_of_contents: true -api: eJztV99v2jAQ/lcsP20SJazrXlBXif7S2mkDtUx7KGgyyQFug53ZDiuK8r/vzkkgDLqxqnuYxFPTs+/u83dn813GnZhY3r7jt+EUojQGPmzwRBgxAweGVjKu8B/e5onR9xC6q4g3uFRkEG6K3xHY0MjESU3GVMnvKTAZgXJyLMEwPWZuCqx0Z2efeuhk4HsqDUS87UwKDW4x/UzwdsbdIqFs1hmpJjzPG0sA93r0h+SUx5YHQQjMaWZS9cx0IpEHc+SAQpdJ8WRmsZG1j1kpAVgHEev0rtjK7alEFGMs0tih6Q2mHRJGm2hlwdLuw1aL/qwn6n7keYMfbVs6FRG7KTBg7FArh/z7tPDogiQWhD/bhKNHVBR0wfIkYJws0herm6BVGsdihF3ieUQwTrp4t53WCZfWgiOjDiZgcO9Ym5lwhent4TbnCJyQ8U55pMJMKtwFFO4WUSSJQhH36gSsTsbRjh6zc4/Acu+UJLEMBfkF91bvmX0xZn237il9OUpz/2AcbT4Yn7VjlzpV0f652D8X/yuz++fiHzwX77bpiys8kMFI7BYMqht2YYw2vgaod867Z5WwWve61CYEdq1H7OIRwtQVmgil5VRHpOG0VyteyrV5UCpEG2RLqZmTcY5i0tigY9KRaFY6NUA1iDu9JswDqMJb0lweYqFdU4PM8qlziW0HAUq6pqAwYazTqBnqGSflZdHZSLfwHqcgDFaufTesL1HaWdE/1YZlCSj6hii8IMK88L3+2meFD+rRB1DNShaS76gI1ig/LqtuQSfPrlRj7VOVFStIOJslVAcZwpKPXslTs5PIDTA7ebEP/X6P5OtADdS5/qFijaKSTnAs2NTA+P2AB9hHClkMKpV9UNWnSddwwJkTZgIOt34bxUI9DPgJ66IPqeKxjOE4ECcIrxLIKH6brWaLZC01w0z4m1wK8O3ds3ayZQ1qv1sYy1c9KxvrrppcqDfa9Slm2Vv4vd5daKD+Iodq6qi1GPbFlFoXQ2fZSFj4YuI8J3MxIFAbRdLSbcQ2H4vY/nozstVv7m/Hh62ne4DFxngyF3FKO30/z4WRxVPwV0Be3ZRT0mu24xS3FV5pFGpRx1XBXvFPo9azwD055T0DTlHdfIgbpyAif/Gzcq0ThpC4mlc98LD2jvW6t3RbfwKDjkuV +api: eJztV99v2zYQ/leIe9oA1kq77kVoC7j5gSXDFqPx0IfYGCjxHDGhSIWkvBqC/vfhKMlRZnfzgu5hgJ9skLz7Pt4dT981EMSdh/QWbvICZa0Rlhwq4USJAR3tNGBEiZBC5ew95uFSAgdlaEGEAjhI9LlTVVCWFmujHmtkSqIJaqXQMbtioUDWm7PTX2bAweFjrRxKSIOrkYPPCywFpA2ETUVoPjhl7qBt+ZbAvc3+AZxwfH8RpiQLlrnavBBOVOrVGp0n1z3oY41us4M6L5ARAPqAkk1nl+zJ7GtA5GMlah0ghdfQtkvi6CtrPHo6/ebkhH6eA13/DC2Ht/u2PgrJPnUcgENuTUATIix+CUmlBfFvdunYjJICnLJboQuqg+92d0mbWmuRaezi2HIIKujDTvogQj1yDsoEvEMHHFbWlSJ0Sz+82WcsMQilD8JRxgdh8kNItRyElIpCKPRsHICnm8HM2UxjeRYZeIhGVaVVLsguuff2GNlvFtlYrceQfruQtrFhvN1tGL/awC5sbeSxXRzbxf81ssd28R+0ix/36YtLE9AZodkNujU6du6cdTEH09nl2fXpIKyeW11YlyO7shk7/4J5HTpNVGIorCQNZ6NaiVIuhaRXiD5ptlKzpcW1kuh8MnV1JiaDTk3ubeaTJmrCNsHBvSfNFSl22rV2GlIoQqh8miSiUhNBbnJtaznJbQmkvDzmtVNhEy0+onDoIL1djrcItuzqZziwTQF53xGF5xSwKHyvPs9ZZ8OCfUAzGWQh2WadM97/uRiq5erzPEZXmZWNUH3GuiCclhXlQeW4jcesj9NkWqkdMgdZsZ/m8xnJ14VZmDP7h9FWyHiDd4IVDlfvF5DYCo2oVDKo7FdDfib0DBfAgnB3GN4v4PdMC/OwgA/sukJDqnilNL5LxAfgMAjkFF5PTiYnJGupGEoRX3IvwPdXz7ObbXMw+m61vMt60xfW7TC5UG2k4ylmW1vA4Xl1AadpIxoMU8eoxJYcCird9BaaJhMef3O6bWm5GxCojKTy9BolpCuh/V9fRvP0zf3b8WHv7R5wszOerIWu6WSs57VwqmsF/4rId5/6Kel7duAUt5devyjMZsxroP0Ufxq1XkTuq1PeC+h02W2XLYcChYwPv+n3pnmOVRhZjR0vR31sdn1Dr/VPg45LlQ== sidebar_class_name: "post api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/get-backup-policy-assignment.ParamsDetails.json b/docs/documents/schedule/get-backup-policy-assignment.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/schedule/get-backup-policy-assignment.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy-assignment.RequestSchema.json b/docs/documents/schedule/get-backup-policy-assignment.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/get-backup-policy-assignment.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy-assignment.StatusCodes.json b/docs/documents/schedule/get-backup-policy-assignment.StatusCodes.json new file mode 100644 index 0000000..24b3d5c --- /dev/null +++ b/docs/documents/schedule/get-backup-policy-assignment.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy-assignment.api.mdx b/docs/documents/schedule/get-backup-policy-assignment.api.mdx index f84d1e2..d277630 100644 --- a/docs/documents/schedule/get-backup-policy-assignment.api.mdx +++ b/docs/documents/schedule/get-backup-policy-assignment.api.mdx @@ -5,7 +5,7 @@ description: "Get Backup Policy Assignment" sidebar_label: "Get Backup Policy Assignment" hide_title: true hide_table_of_contents: true -api: eJztWm1v2zYQ/isCP22AYyVd98VoCzgvzdJhi5E46IckGGjpbDORSJWk0nqG//vuRNmRHaVmk6zYCn6KY93rc0fqIX1zZvnEsN4l2+fJbVkMVCaSWd8YMZE5SMuuO6zgmudgQZPcnEn8h/VYodUNJPYkZR0mJH3B7RQ/a/hUCg0p61ldQoeZZAo5Z705s7OCFI3VQk7YYtFZ2RIvYYQXYucOgxRKLq19KkHP8J8UTKJFYelRjw2nEJEDMBbSqD84ie7VHnNENsa8zCx+tYdurylGUyhpwJD0q91d+rPu6PR31EuUtAQkmYQvNi4yTrHNH7pSIwIUVRDaArQVzjRCz1NuPSQRxpbAZZllfJSBw3LRYaUWXnIOVw/BuhVeLMCxylLQJz7CKM3TVBDgPBs0nI15ZrBxrLAkywYuxLO6ZodWMVR1vb9ywrXm1C7CQm5amq0l1IRbmChssq25fwuadwLz9xJGAZWpiYd/T+w9w/TFfVjHtwa8r/JBDe5G1RINnHQP8XFbqGOlc04LFVcN7FiBCbVVjqxAuj/zgkV9lp4dieurIMfPi87Z8I1uuX/5yNZ5XxjPDqsj8ZbPueQTz8h9G+GPegvcaARjuS3N9tYnOb+19zKtNeYiKzWcATeeRQGtld6eiPa3mIMxWIcXLMJ5hfYRRfqk1ez0N0q4nt+27I0qdQLbJf3ecL6BHwOufZGc1e43Mhg1eNN/K7IbNfJ5u30PMuGbUDsJ/aBGG6m9qPl7hSf1dbvRB6aKAgWqzSW+qRdxYICBAQYGGBhgYICBAQYGGBhgYIA/MgOsbv8C9QvUL1C/QP0C9QvUL1C/QP0C9fvxqR8Ze727R0it/z58IXlpp0qLv4F+AH/2L8XuqQ9xcNF7SD7YZQXGOMG3QWM7xK9+edWmnOLOLTIvP0KiJ5n4BPVoaeaLNcqHGvlhFYF59g1sQPZryD7pZBMgfRxSt2O8frhj/Kls9F6VMmwXYbv43yIbtot/Ybv4tW0A7QQT0mgpOgeNx8So4u9VDfqDk8PTg+V43brWMdjI8ZrIEZuoMQ9IhwvkLMgP2QSqMtHEXo/F9T2QieerycBFvLzOMHFflyPePcdqp2UG8aiVN6GySBdo1FTxunnDUiPMbGptYXpxzAvR5WQryVSZdhOVMxrGM5AgGbWzSmMfuKYD6+V18xH5zl0zLQVW9SDrbBOHI0IvslOIPnwcRk4nsuoWZJfVk4KkO3LGOvWH98vWQaUKaiHHqnJVl88hcZAXVBSRwAqUQQ1Wt1+IB8F4aUW/DYcDmmi8klfyUH2WmeJplcEbHk01jN9esRibSiKKsakN7CyL1KU1ecUiyzWWFkX/GmVc3l6xd9Ep6tCg5Fhk8Cbm71jj2oHtdXe7u9V5Thmbc3l/4bWtldZSXBWj8TarzhjVKnNtdrm8bjSo3WuOoK46DT+v9xpbP6Y1uo1s4EkHe2SKkZP1+XzEDVzobLGgr938KLVUKgwt03R1ANgIffUy/up0aWuCtzBjm9OrdzwrSbLq7TuuhdsjvimQn87qIdqfo8dcLw+Hctb0uQzpHl6asv2OjrEmi2uUmgKvrkIxbfegnyRQ2IZK0+p1Y2s6PqK19w9YOtN4 +api: eJztWm1v2zYQ/ivCfdoAxUq67ovRFnBemqXDFiNx0A9xMJzFs82EIlWSSusZ+u8DJdmRY6dmE6/YCn6yYd3rw+PpIX1zsDgx0L2GQ0zviryvBE9nPWP4RGYkLdzEkKPGjCxpJzcHiRlBF3Ktbim1Zwxi4NL9gHYKMWj6VHBNDLpWFxSDSaeUIXTnYGe5UzRWczmBsoyXtvgujGDO9+5JG67kwtqngvQMYmBkUs1z6x51YTClyDkgY4lFvf5Z9KD2lCNnY4yFsNCFAyjLGxejyZU0ZJz0q/1997Hq6Px3iCFV0jognUn6YpNcoIttvu5KjRygEDtoc9KW16YzssjQekhytilwWQiBI0E1lmUMheZecjWuHoJNKewswLESjPSZj3AZAzLGHeAo+i1nYxSGYrDcOlno1yFeNGt2bBWUcVP7SyeoNbpy4ZYys6HYNoSaoqWJ0rPtuX8LmveckfYStrNcCTXx8O+JvWeYvrgPmvhWgPdVPmrAfbRqqSZ0usdoN4Y6VjpDt1EZWtqzPKNNiVZWiB3OvGBRn6VnRcZQ5M7xy6KrbfhGt+hfPrJN3lfGs8KaSLzlM5Q48YzctxD+aFrgo0IwFm1htpe+k/Pbe7sprTFyUWi6IDSei0JaK709Ee1vMSNjcLLLrXxZoX3iIn3Wbq71Hy3han7bsjeq0Cltl/R7w/kGfkqSNE8vGvePMhi1eNN/K7JbNfJ5u30PMuGb0GYS+kGNHqW2U/MPCs+q681G10zlueBp1VyS22YTBwYYGGBggIEBBgYYGGBggIEBBgb4IzPA6vYvUL9A/QL1C9QvUL9A/QL1C9QvUL8fn/o5Y6/3D2Dt/+EriYWdKs3/JraLf4rrpz7EoY7eQ3Kty3JpaUK63Q65tL+82qTMyCIXXn64NBZl+qKWNS9XKN9IUHZcRWBefAMbkP0ass862QRIn4a07hiv1zvGn8pG71UhQ7sI7eJ/i2xoF/9Cu/h10wDambSkJYrokvQ96aji79Ua9Ppnx+dHi/G6Va1TslHNa6Ka2ESteUB3uLBTxaALE6qWyU3sdSFp7oFMMl9OBpbJ4jrDJD1djLBzmU6JFYKS0UbeZJI5Z6Ubw6virecNCy2gC1Nrc9NNEsx5B52tVKiCdVKVgRvGM5QWmttZpXFIqN2B9fqm/cj5zupiWggs18NZX5sTPHHoRXZK0YePg6jWiay6I9lZTAo63VFtLG6+vF+UzoePgwpqLseqctUsX43EUZa7ReEpLUHpN2B1ejlfC8ZLK/ptMOi7icahHMpj9VkKhazK4A1GU03jt0NIVE4Sc56YxsDeYpE6bk8OIbKoJ2TfDuGvkUB5N4R30XlO0g1KjrmgNwm+g9a1Axx09jv71XlOGZuhfLjw2lZKKykuF6P1NqvOGNUuq8vsenHdaCCGbnsEdVlpEMNqrcHqMa1Vbc4GZ27EdaqMddbn8xEautKiLN3P9fyoKynGjdumbHkAeBT68mX81enSjQne0WxtevUeReEkq9q+R83rHvFNgfx00QzR/hw95XpxOJSzts9FSA/wuinb7+iYMyhvyhimhNVV6PW8edBLU8ptS6Vt9abVmk5P3N77B1g603g= sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/get-backup-policy.ParamsDetails.json b/docs/documents/schedule/get-backup-policy.ParamsDetails.json new file mode 100644 index 0000000..d4f1168 --- /dev/null +++ b/docs/documents/schedule/get-backup-policy.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"unique identifier of the Backup Policy","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy.RequestSchema.json b/docs/documents/schedule/get-backup-policy.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/get-backup-policy.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy.StatusCodes.json b/docs/documents/schedule/get-backup-policy.StatusCodes.json new file mode 100644 index 0000000..5035e86 --- /dev/null +++ b/docs/documents/schedule/get-backup-policy.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/get-backup-policy.api.mdx b/docs/documents/schedule/get-backup-policy.api.mdx index a6cd372..e3aff24 100644 --- a/docs/documents/schedule/get-backup-policy.api.mdx +++ b/docs/documents/schedule/get-backup-policy.api.mdx @@ -5,7 +5,7 @@ description: "Get Backup Policy" sidebar_label: "Get Backup Policy" hide_title: true hide_table_of_contents: true -api: eJztWt9v2zYQ/lcEPm2AY6Vd92J0BZI47bIhi5G46ENiDLR0stnIpEpS6QzD//vuKMmWbCVhnTwVerIt3e/7SH2Ub8Usnxk2uGWnPLrPs5FKRbRkkx7LuOYLsKDp7opJ/MEGLNPqK0T2ImY9JiRd4HaO32MwkRaZFYou5lJ8yyEQMUgrEgE6UElg5xCU6sHZ5QiVNHzLhYaYDazOocdMNIcFZ4MVs8uMvBmrhZyx9bq3CUAc6LlILyjzO9C3jNI8hiGkWJdNHOhPk8U9C1OlUuDSxZjwPLVskPDUQN0kz8TRA9aYot+x10xsjDlQzGDQdXAyugi2ao/FXnPM3mAmE0rbZEoaMCT99viYPpqOrv5GvUhJixV0JuE/G2Ypp9hW+67UlBqKKtjaDLQVhWlEDo+59ZDEhrYELvM05dMUivaseyzXwkuuqKuHYAnFVwswUWkM+sJHGKV5HAsqOE9HNWcOHj1mhSVZNipCvC57NrSKoWqxYDdOuNac4CIsLEwLfltCjbiFmUKQPZv7j1TzARed9hJGAZWqmYd/z9p7hulb93EZX6PwvspnZXF3uhZp4KQ7xNttoSZKLzgtVFw1cGQFJtTWObIC8enSqyzqu/REJK6vjBy/LLrChm901f7lI1vm/dl4IqyMxFt+wSWfeUbuC4TLcgvcAYKx3ObmeeiTnN/aex1oJVykuYZr4MazKaC10s8nov0tLsAY7MMrNuHGVfucIj1oNRf6Oy1s5vdc9kblOoKxk/KoAT1h4zwFnz3+EZ9Tx3W8PSaOV8jIb9k6/DyLMpM54rOnHfPlVfIF4N7Ll5O+RC4y9xLXQKTFrYRlvUwCycwMd4JakHjpt7eHw6pOlitw3JSNK/D1EktbcS+sNvkbqgQVywsKJASZM99nT7vdOMsyvOy2lPBruXQ73tfxvo73dbyv430d7+t4X8f7Ot738/E+96avI3wd4esIX0f4OsLXEb6O8HWEryN8PyvhI3fvjt9R+ZqG/1E2+KhySf9wv/iPYOsLzjJgn4Wzu7H6t51qaHH/8/IjJHqS0Yt2qdW6wfJQYzF0EZgXv2rtKvtUZQ86zHQlfbykpPZ728DIBSak0VJwAxqpXuCewa4HJ6OL4dVZNWHT1PoEdm8mB8+Sc4Usls3A9YYGfAYsLA9wJlxtpo/WYXUOMeGJzqe8X23K4XS74WFS4UrEa7RlXGzFKFOusaRsbm1mBmHIM9HnZCJKVR73I7VgNChjIMKTqF06jVPgmgjm7aR+i1wuCuBUApvak3W2m/M5VcpNI/31ZRwUOoFV9yBpx3YgJd1pYaxXfvlYwQSVXFmFTJRzVbaqKMDZIqMGiAg2tRiVNeqfZGIvGC+t4M/xeETTRnfyTg7xmJEqHrsM3vNgriH5446FCCCJVQwrQnNU9aZP6++OBZZr7CiK/jtNuby/Yx+CK9ShIaZEpPA+5B9Y7ZjA3vSP+8eOfyljkbFvD6itsGnktelA7XHl3iq4ZVRA6rZ6J2BQe1AfadugCr83cUXtaCCLVPHUiniYY5RkdLWacgOfdbpe0+VijovgEwtDyy/ePMjvYclaxskeeJpT6IwGxPaUdtLcPJmfHA1rLUbhvjl6tvU9oR9aFBtGW/SPBvLLdTlU92vgOQHYGl7FheWyHlcV9rZdP1Yln+B2kXVAeAiJ9QSl5sDdWxIsYHHjJIogszWVutVJbfP7dE7L/H8EyKBi +api: eJztWk1v2zgQ/SvCnHYBxUq73YvRFkjjtpsuujESFz0kwYKWxjYbilTIUbqGof++GEpy5I80bJJToVMceT4eZx6pJ3lWQGLuYHgB70R6XRZjo2S6hKsYCmFFjoSWv12BFjnCEAprvmFKJxnEIDVfELSAGDJ0qZUFScMXSy1vSoxkhprkTKKNzCyiBUaNe3T8eQwxWLwppcUMhmRLjMGlC8wFDFdAy4KzObJSz6Gq4jUA+cjM9fKiZn2PzK1TVWY4QoWEaxw3JVqOuBNhaoxCoT3GmSgVwXAmlMNuSFHIg1u0jtFvxdtc2GSBEWNGR5hFR+OT6M7tPuydxPACquqKl+0Kox06tn55eMh/NhOd/g0xpEYTavIh8T9KCiUY22o3lZlyQyFmZhRoSdahcySRCQqwlNk+4LpUSkwV1u2pYiitDLKr6xpg2FDx2QDOjMrQnoQYVzGILJNccKHGnWSeHjGQJLaFcQ3xrOnZiAxUcbNh10mEtYLpIglzt4e/e6CmgnBu7PLhtf9MNW9lhjbImJaFUWYekD+w9oEwQ+s+afBtFD7U+bgp7lbXUouCfUeC9kKdGZsL3qiZIDwgmeO+hfoomL1bBpXFfNeBjIyhLDjx09DVMULRtedXiG2z7i8ukGENkmD7XGgxD0QeSoTPzRG4RQRHgkr3MPXZLmzvPQ+1ZkKq0uIZChfYFLTW2IcXYsMj5uicmD/nVj731X7PSB+1m2v/rRZuru+h1TtT2hQn3iqgBnyHzUqFIWf8PTmnXusEZ5x5XaHTsG3r+fMgy1zhhc+OdyaWp7OviNdBubz1Z6NpEWRukUWL3wnLbpmkJpyj7YKUmv54+XhadcVyS47zpnE1v54S6c48iKub+m1EJmpVXlQzISp8+AH8OO06WVEomfojJfnWbN1e9/W6r9d9ve7rdV+v+3rd1+u+Xvf9errPv+nrBV8v+HrB1wu+XvD1gq8XfL3g6wXfryr4ON2rw1ew8wvwP4aiD6bU2XP8EEyh5GwAh2yc7YM1vO1cQxJSBeWR2pHQ6ZNOqVW1ofKmCvORR+Ce/Kq1r+yPKvuoh5m+pPeXlN3+3DcwcqIJrRYqOkd7izby92Dfg6Pxyej0uJ2w2fT6iLQzk5MjLUwGQ5ij7w0P+AwhaR7gXLJaTx9VSfsc4pIjW07FoD2Uk+ndgSfRJSuZVTwi47HVo0ylVTCEBVHhhkkiCjkQHCJVpswGqcmBB2UcpqWVtPQe71BYFpgXV92vOGVeE6c1WNeeo+/M8LznSvlppE9fJ1HtE5G5Rj1op3jYd1oHi5sPH1qafPo68WWVemZ8qqZVdQGO84IbIFNc12Lc1GhwVMgdMEFe0V+TyZinjS71pR6Z71oZkfkVvBbRwuLszSUkpkAtCpm0guag7c2A998lRCTsHOnNJfw7VUJfX8Lb6LRAzUNMM6nwdSLeQucxAV4MDgeHXn8ZR7nQdw+oe2mzsa51Bzq3K/9WwW+jmlIX7TsBBzEMuyNta1ZBDJu84nZsMItdZcaTcgvjiIOuVlPh8ItVVcWX6zkupk8mHW+/bH0jv8blvnGyW6FKhg48ILbjtLXM9Z35h6Nhe4tRp98cPbvLfcX/WFkfGPvQ3wvkt7NmqO73KHACcC+8VgvrZRdXC/uuXT9XpRBw28x6BDyZQXVVxbBA4d+SXKyaL47SFAvquHSjXnUOv4/veZv/DwTIoGI= sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/get-job-executions.ParamsDetails.json b/docs/documents/schedule/get-job-executions.ParamsDetails.json new file mode 100644 index 0000000..03f99e4 --- /dev/null +++ b/docs/documents/schedule/get-job-executions.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"jobExecutionId","in":"path","description":"unique identifier of the Job Execution","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/get-job-executions.RequestSchema.json b/docs/documents/schedule/get-job-executions.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/get-job-executions.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/get-job-executions.StatusCodes.json b/docs/documents/schedule/get-job-executions.StatusCodes.json new file mode 100644 index 0000000..38b1337 --- /dev/null +++ b/docs/documents/schedule/get-job-executions.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"success":{"type":"boolean","nullable":true},"type":{"type":"string","nullable":true},"startedAt":{"type":"string","format":"date-time","nullable":true},"terminatedAt":{"type":"string","format":"date-time","nullable":true},"log":{"type":"string","nullable":true},"failStep":{"type":"object","properties":{"index":{"type":"integer","format":"int32","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"FailStepDto"},"triggerType":{"type":"string","nullable":true},"job":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"JobDto"}},"additionalProperties":false,"title":"JobExecutionPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"JobExecutionResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"success":{"type":"boolean","nullable":true},"type":{"type":"string","nullable":true},"startedAt":{"type":"string","format":"date-time","nullable":true},"terminatedAt":{"type":"string","format":"date-time","nullable":true},"log":{"type":"string","nullable":true},"failStep":{"type":"object","properties":{"index":{"type":"integer","format":"int32","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"FailStepDto"},"triggerType":{"type":"string","nullable":true},"job":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"JobDto"}},"additionalProperties":false,"title":"JobExecutionPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"JobExecutionResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"success":{"type":"boolean","nullable":true},"type":{"type":"string","nullable":true},"startedAt":{"type":"string","format":"date-time","nullable":true},"terminatedAt":{"type":"string","format":"date-time","nullable":true},"log":{"type":"string","nullable":true},"failStep":{"type":"object","properties":{"index":{"type":"integer","format":"int32","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"FailStepDto"},"triggerType":{"type":"string","nullable":true},"job":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"JobDto"}},"additionalProperties":false,"title":"JobExecutionPropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"JobExecutionResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/get-job-executions.api.mdx b/docs/documents/schedule/get-job-executions.api.mdx index d205886..2723936 100644 --- a/docs/documents/schedule/get-job-executions.api.mdx +++ b/docs/documents/schedule/get-job-executions.api.mdx @@ -5,7 +5,7 @@ description: "Get Job Executions" sidebar_label: "Get Job Executions" hide_title: true hide_table_of_contents: true -api: eJztWktv2zgQ/isCT1vAsdJu92J0C7h5dNNFN0bioockWNDS2GYikSpJpTEM//edoSRHcpSGsYPsRac60jw+zoP8qM6SWT4zbHDBzqM5xHkC7KrHMq55ChY0vVkyiX+wAbtWk5OY9ZiQ+EfG7Rx/x2AiLTIrFD3MpfiRQyBikFZMBehATQM7h+CLmgRrBz2m4UcuNMRsYHUOPWbwVcrZYMnsIiNXxmohZ2y16tW9H91BlJOrXWCsjWyJI9PqGiK7LYRSPTj4OtoSAM/E3i2mpliCg4Cu9OIBhjG6IwdgLMTBcHQS3Ks95ohsTHmeWHz0Ft1eEUaTKWnAkPS7/X36p+no9G/Ui5S0uFhnEu5smCWcsC0fulITigCqYCwy0FYUprHgeMyth6SI24DLPEn4BOvLxXLVY7kWXnJFXD0Ey9y9GMCpSmLQJz7CKM3jWFDAeTKqOZvyxGDhWGFJlo0KiGdlzg6tYqha9PjaCdeaU7kIC6lpKbYWqBG3MFNYZE+u/TnRvMX+0F7CKKASNfPw7xl7T5i+cR+X+BqB91U+KIO7kbVIAyfdQ3zdBnWqdMqpUbFrYM+KFNoW6qxA/GnhFRb1U3pWJPZXRo53Q1fY8EVX7V8+suW6vxnPCiuReMunXPKZJ3LfQvhaboEbhWAst7l5uvRJzq/3Xqa0plwkuYYz4MYzKaC10k8vRPtbTMEYzMMLJuHcRfuIkG7VzYX+Rgqb63sijXkU4apqghOlEuDykY3RL+VYHBrre2i3zzcSwlRIvqMV3Cb9TkesrnMLmceWL2O4q4kJZCIzbOMaInz0+7tXOAeOS9DVwavFDJGMfZOEJPeV6Y/vwpA6P6sLvtTo+r3YsxqqSTJRJaioaGDKu0SftXt84CfLEhG5LS+8LreWjpd2vLTjpR0v7Xhpx0s7Xtrx0o6Xdrz0tXmp+1LaEdKOkHaEtCOkHSHtCGlHSDtC2hHSjpD+P4SUPL3ff0/RaNr8R9ngWOWShh52/o9+704sAfv1bHPjf05lx3iYiMTLj5DoSUY7NcJy1WChqJEeOgRm50/VXWR/FdmtLltdSB8PKan90TYQdIIL0mgpOAeNVDRwHMHlYDg6OTw9qMadmlqfwTYntAwj2mLnCvdxNgOXHBq2GrCwvGGacLmex1qF1UXJhEOdT3i/mjgL8bRASTe/tgphbd49qg2VrdCBcYiLubdcY6DZ3NrMDMKQZ6LPyW6UqDzuRyplNB5lUF0Lu3Aan4BrosUXV/VXhCMtyqkSWGeErLPNSBxR/IqJte/joNAJrLoBSfu4K13HdgpjvfLHcVU8qOSCLeRUOVdlAouoHKQZpUVEsA7QqAxcf5iJB2C8tIK/xuMRzZhdykt5iJejRPHYreADD+Yapn9eshDLSmIUw+pQ2qsS1qeuvGQBMi9MM4r+O0m4vLlkH4NT1KHRtalI4EPIP7La5Ya97e/39x1rVMbiPeP+Wt1eTI2FrVNQO8UcG3DdVRTaRfUpg7QH9dG/da3h72a1McdOnEI1MQl1EIONSUYslDnCJ2fL5YQb+KaT1YoeF2N9VFexMNStcfuRv7w/k3859Ne63htYsM2hwlue5CTpCvyWa1FsFc8C8ttZOdv4JvAdC23FV32KkYs6sAp3EWGajnx5ZPVJ0e2g1dP88hibo6RbILyv59UVCs+Bu69MmObi/RCvV5mtadaNX9X25s9HtOH8BxRHiog= +api: eJztWk1v2zgQ/SvCnHYB1Uq73YvRFkiTtJssujEaFz0kwWIsjW2mFKmSo7SGof++ICU5cuw0jBNkLzolsGc4j/NBPslvCYwzC8NzOEvnlJWS4DKGAg3mxGTcN0tQmBMM4UpPjjOIQSgYQoE8hxgysqkRBQvtPiyV+F5SJDJSLKaCTKSnEc8pOtGTaBUgBkPfS2EogyGbkmKw6ZxyhOESeFG4UJaNUDOoqrgb/egnpaUL9RgYq0V2xFEYfUUp7wqhcY8OPo12BICFeHFNxtZb8BC+l2QWGxjGc4pcALJMWbQ/Oo5u3O4K5NaYYikZhvASqurSYbSFVpass361t+f+rAc6/RtiSLViUuyXpJ+cFBIdtuVmKD1xGYDYpbIgw6JeOifGDDnAUmTbgKtSSpxIqnNZxVAaEWRX5zXAsKndkwGcapmROQ4xrmLALBMu4ShHnWBTlJZiYMHOFkY1xM9NzQ5ZQxU3M74KgsagaxfBlNstzbYFaopMM20W9+/9Idm8FhmZIGNeFFrqWUD8wNwHwgzN+7jBt5b4UOeDJrm3qpYaQud7iLwV6lSbHN2gZsj0gkVO2zbqV6Hs/SIoLfqHCuzIGMrCBX4cunqNUHTt+RVi2+z7iw3ssAZJsH2OCmeByEMb4VNzBN5qBMvIpb2/9Z1d2Ow9TWtNUcjS0GdCG1gUMkab+zdiwlfMyVqcPeUon/lsHzmkO01z7X+rhOv7u6eMZZqS7RpOtJaE6o6DMazkltEwZfu8e72ZTC4UPnIVqWdhtyMKecZUBBz5KqOfHTOhmGZkuoiE4j9ePcM98KEB3V68RsxmZMahRbrSk2emP6EbO9GTB03BSYeu35g9aKDWSeYh66ilopFtniUGsD3iRpyikCL1R15y1RwtPS/teWnPS3te2vPSnpf2vLTnpT0v7Xnpc/NS/6a0J6Q9Ie0JaU9Ie0LaE9KekPaEtCekPSH9fwipi/R67zVs/ML/j+bogy5V9hQ/9AdPYgM4bGbXD/6HdHZGjEIGxRHKMqr0UYOwrNZY6ERSfugR2Ee/qu4z+6vM7vSw1af07pQ6tz+3CYKOFZNRKKMzMtdkIs8RfA32R8eHpwet3Gnd6yPxukLLgqMtPNcZDGFGvjhObDWEpHnCtMlypceqkvZBySb7ppzgoFWcJVd6YpOl169VCa2W9x91RGWVE0Z5xLXurTQShjBnLuwwSbAQA3TrplKX2SDVOTh5lKW0NIIX3uM9oXG0+Pyy+5XDkdft1BqsKuJW31BuHbn81Yq1r+Oo9olYfyM1aLVbnu3Ui8XNPx/a5jn5OvbJFmqqfaimgHVWDvLClUWktErQqEncYL8QG2CCvKK/xuOR05hdqAt1qH8oqTHzO3iD0dzQ9O0FJLoghYVI2kvpRVuwgZvKC4gYzYz47QX8O5Govl3Au+i0IOWka1Mh6U2C76DzcAMvB3uDPc8ateUc1c1j9fZmWtvYqgSdW8yzAT9ddaOdt68ynPewK/1b9RrEsN5t4NmJd2gVk9QFMbylZLyMYa4tu2DL5QQtfTGyqtzHtazP9VUmrJvWbPuVv7y5k38p+tu632+02BAVXqMsnaVv8Gs0oj4qHgTkt8+NtvH3KFQWuhVf+ypGLbrAWtx1hp068umRdZWiu0HrlvnpMa5LSXdAeNPP1WUVw5zQv2U6Xzbf76cpFdzx7C5+2TmbPx65A+c/FEeKiA== sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/get-job.ParamsDetails.json b/docs/documents/schedule/get-job.ParamsDetails.json new file mode 100644 index 0000000..3021171 --- /dev/null +++ b/docs/documents/schedule/get-job.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/get-job.RequestSchema.json b/docs/documents/schedule/get-job.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/get-job.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/get-job.StatusCodes.json b/docs/documents/schedule/get-job.StatusCodes.json new file mode 100644 index 0000000..3003267 --- /dev/null +++ b/docs/documents/schedule/get-job.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/get-job.api.mdx b/docs/documents/schedule/get-job.api.mdx index deef510..02afe98 100644 --- a/docs/documents/schedule/get-job.api.mdx +++ b/docs/documents/schedule/get-job.api.mdx @@ -5,7 +5,7 @@ description: "Get Job" sidebar_label: "Get Job" hide_title: true hide_table_of_contents: true -api: eJztW91v2zYQ/1cEPm2AY6dd92J0BZw4bbMhTZCP9SEJBlo620wkUiUpt4bh/313lGTLsZIwH3sYyqco0n3x7ni8H00umOUTw/qX7CyeQlKkwK47LOeaZ2BB05cFk/gP67MbNTpMWIcJif/k3E7xOQETa5FboehlIcW3AiKRgLRiLEBHahzZKUR/qlG0UtBhGr4VQkPC+lYX0GEGP2Wc9RfMznNSZawWcsKWy85Ke67VDcT2uRZU7NH+0ckzDeC52JmhS0hRZQKq0vMtG85RHSkAYyGJBieH0ZrtPkUkY8yL1OKrN6j2mmw0uZIGDFG/3d2lP5uKjv9CvlhJi4N1IuGH7eUpJ9sW26rUiDyALOiLHLQVpWgMNE+49aAUSZvhskhTPsK4Ol8uO6zQwouu9KsHYRW7VzNwrNIE9KEPMVLzJBHkcJ6eNJSNeWowcaywRMtOShNPq5gNrWLIWs6tlRKuNad0ERYy05JsLabG3MJEYZI9OvaneHOG80N7ESOBStXEQ7+n7z3N9PX7eWXfhuN9mfcr596JWqyBE+8QP7eZOlY64zRRcdbAjhUZtA3USYFkb+7lFvVdemYkzq+cFL/MulKGr3V1/fKhrcZ9YTwzrLLEmz7jkk88LfdNhKOqBN5JBGO5LczjqU90fnPvdVJrzEVaaDgFbjyDAlor/fhAtL/EDIzBOLxiEM6ctw/I0mfN5pL/Tgg3x/fw6EGS1c05OFIqBS5dLlTdC3Yy5+4j0RcZdU7HEs6miuSdQlxo54XrzpZbGiULztbSmsIH9vlJAT9QuYUL7HvSl1Qtz/hrN1SQ8bzpis+q0CktcUNMUfr7FeDWPRxhmzJ1T/uFsSp7yEOntWxwrnYzEXKflfSlayP2XDiCGC48WxgeU1o+jfqLrzEta+/jxN7Sp9bmf4MeeRGPVPKa9fYMw9na7kjsYA9cIt+z3PhlcQLk6lmjQtYJ+kVJ4jjisuCpm7FlwIeQIt5JHsrK4YbQp5Wman6vSZ5U4Ta7fmSJamwQ1ZWjy7a1benI81TEbv3p3VR+CSAhgIQAEgJICCAhgIQAEgJICCAhgIQAEn5ikOB+QwjoIKCDgA4COgjoIKCDgA4COgjoIKCDgA5+enRAWt61HUTa40l0Wp54Yq9wIslW1fHxjC3N9aDcWocF2jjBfqGRD/jqt7ftuWB5e0XcIhUSNWHVeUmmL5YboAA5sqGzwLz4Z5zg2Yc8+yzsG1x6v0vLgvFuu2B8UTb6qAqZhHIRysX/1bOhXPwH5eL3tv7iEAekUVJ0BnoGOnIIz8VgcHI4PN4vtd7tcj6BpYPnjJCmnSpEZWwCLiJ0crzPetWmoOktVofLl716b8v0BroY8W7dCvVu1Agp3SH4JQoxzpTygDwiFpRH7bDp93o8F11OvHGqiqQbI1Kh89yGIImwc8exB1zTbsXldfMT6crKPKkJVq4m6ezuEA/IMeUJ+6/nUckTWXULkro5l5PEOyqFdaqHj3VWIJPzopBj5VRVkSlHvp/l5G8RQ7fRfTrndAe52DLGiyv6fH5+Qofir+SVHKrvMlXYPNII3vNoqmH8xxXrYb5I9GKvbk136qB0abpdschyjaFE0n9GKZe3V+xDdIw8dNZ+LFJ43+MfWGPPib3p7nZ3HZhXxmZcrhFdI0s2RrPye2NNchvTbq6UGXRZbysb5O43LyiskgifN9MIX1AiEUN5nwLDP0WjSNpiMeIGgWO6XNLr8nYBZUsiTLWv0NbOL9ZL6IN3D1oHdAtzdvduw4ynBVG6tJ1xLcqZ/SRDfjmtrlj8GvneCmm1r0brct40rLa7dCFd0nhdyzZvizzDsHUyLK8JKQN32+XowvL7II4htw3OpvDrRsX6dEBT9F+CDxcv +api: eJztW01v2zgQ/SsCT7uAaqXd7sVoC6Rx2qaLNEHibA+JsRhJY5sJRarkKK1h+L8vSEmOHKsJ87GHRXmyYQ1nHh+HQz6ZXDKCmWHDc3aazTGvBLJJzErQUCChtk+WTEKBbMguVXqQs5hxyYasBJqzmOVoMs1L4sr+WEn+rcKI5yiJTznqSE0jmmP0WaXROkDMNH6ruMacDUlXGDOTzbEANlwyWpQ2lCHN5YytVvE6eqnVJWb0WARN82jv8PiRAKDkL65RGxuogfCtQr3YwjCeY2QDoCHMo93jg+im2c8CWR9TqASxIXvJVquJxWhKJQ0aa/1qZ8d+bAY6+ovFLFOSUJJziT8oKQVYbMvtUCq1DLDYUlmiJl67LpAgB/Kw5HkfcFkJAanAmstVzCrNvexqXj0Mm7F7NoBTJXLUBz7Gq5hBnnNLOIjjTrApCIMxI07Wlh3XEE+aMRuRYqu4mVvrIKA12HThhIXpSbYeqBkQzpRe3N/3h7B5zXPUXsa0KJVQM4/4ntx7wvTlfdzg2yDet/FeQ+6tUcs0gm07AuqFOlW6ADtRcyB8QbzAvo46L5i/X3jRor5Lz4yMWVXawE9DV/vwRdfWLx/bpt9nxjPDGiTe9gVImHki902Ew6YE3koEQ0CVuT/1rZ3f3Hue1JoCF5XGEwTjOSiotdL3d0T7eyzQGJg951Q+dWzvW6SPms11+1tDuNm/u3uP0qLuzsFUKYEgXS40u5fPKh27h9a+KuzO6Uji6VxZfyeYVdqxMIm3aOmULDy98dZ1vkuPTwr8gVlFeCaJi6dULc/x166rKLNFl4pPqtLCLnEj4O7zK+KV+3KoJM3dt73KkCruYuik9Y2OajcTsfRZSZ+6Nmo0qtIZnnluYSCzafkw6y++YHrW3vuNvb3Picq/UadexqnKn7PenhKWvdsdiT9o3yXyT5YbvyzO0VJ93amQbYJ+UdK2OARZgXAzth7wEQokzO/KytGG04eVpmZ+35g8qMJt7vpHpKJWG0Rt5Riw7WhbMcpS8MytP8llw0sQCUEkBJEQREIQCUEkBJEQREIQCUEkBJHwC4sE9x9CUAdBHQR1ENRBUAdBHQR1ENRBUAdBHQR18MurAxvldd9BpPeQRyf1iafnOJFETXW8P2NruB6WW+swl4Qz1N184JL+eNWfCwT9FXHLlEtDILMnLWrL1YYoSAUWI4fAPPlvnMDsXcw+SvsGSn9OaV0wXm8XjC+Kog+qknkoF6Fc/F+ZDeXiPygXf/btLw4koZYgolPU16gjp/DcGOweH4yO9uqot3c5H5HswXNmlSbNVc6GbIZuROzJ8SFLmpeCJlmuD5evkvbdlkl2dZXCoN0KJZcqNcnSHYJf2ZPcDkp9QL7Sgg3ddtgMkwRKPgDbNhOqygeZKpg9z22sJOG0cC3eI2j7tuJ80n1kYxV1nrQGa6qt962j5vuWmPqE/ddxVLeJSF2hHLSHzZ0IrZ3FzZcPbVZ8/jp2LHI5VS5UMzJ1z/eK0vLNMxx0dp+OnMFuybfAeLWKPo3Hx/ZQ/IW8kCP1XQoFuevBG4jmGqdvL1iiSpRQ8qTdmr5oB2Vgp9sFiwj0DOntBfsnFSCvLti76KhEac/aT7nANwm8Y513TuzlYGew48S8MlSAvFF0nSzZ6M2a986a5F5Mu7lSZ9B5+1rZsJgNuxcU1knEYraZRiy29yhcg/o+xSRmc2XIelsuUzB4psVqZX+ubxfYbMm5ad4r9G3nlzdL6J13D3o7dIWLrbsN1yAqa+nS9ho0r2f2g4D8dtJcsfg98r0V0ouvVety0QXW4q4ptJc0nhfZ5m2RRwC7SYbVxCplBPe6/HzZPN/NMiyp07LrfNKpWB/37RT9F4IPFy8= sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/list-job-executions.ParamsDetails.json b/docs/documents/schedule/list-job-executions.ParamsDetails.json new file mode 100644 index 0000000..5471c27 --- /dev/null +++ b/docs/documents/schedule/list-job-executions.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-executions.RequestSchema.json b/docs/documents/schedule/list-job-executions.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/list-job-executions.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-executions.StatusCodes.json b/docs/documents/schedule/list-job-executions.StatusCodes.json new file mode 100644 index 0000000..7fa7364 --- /dev/null +++ b/docs/documents/schedule/list-job-executions.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-executions.api.mdx b/docs/documents/schedule/list-job-executions.api.mdx index e02691f..4f2b6d1 100644 --- a/docs/documents/schedule/list-job-executions.api.mdx +++ b/docs/documents/schedule/list-job-executions.api.mdx @@ -5,7 +5,7 @@ description: "List Job Executions" sidebar_label: "List Job Executions" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/list-job-plannings.ParamsDetails.json b/docs/documents/schedule/list-job-plannings.ParamsDetails.json new file mode 100644 index 0000000..dc1ecd7 --- /dev/null +++ b/docs/documents/schedule/list-job-plannings.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project","required":true,"schema":{"type":"string"}},{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","description":"From DateTime","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"To DateTime","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-plannings.RequestSchema.json b/docs/documents/schedule/list-job-plannings.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/list-job-plannings.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-plannings.StatusCodes.json b/docs/documents/schedule/list-job-plannings.StatusCodes.json new file mode 100644 index 0000000..06eef10 --- /dev/null +++ b/docs/documents/schedule/list-job-plannings.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK"},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/list-job-plannings.api.mdx b/docs/documents/schedule/list-job-plannings.api.mdx index 4ab35f0..ffce88a 100644 --- a/docs/documents/schedule/list-job-plannings.api.mdx +++ b/docs/documents/schedule/list-job-plannings.api.mdx @@ -5,7 +5,7 @@ description: "List Job Plannings" sidebar_label: "List Job Plannings" hide_title: true hide_table_of_contents: true -api: eJztVk1v4zYQ/SsETy3gWN5sejHSAGk+dtMWjdG46CE2CloaxUwkUkuOsjUE//fOUJItx67hNXZve7JM8fENZ57mTSVRPXk5fJQP8RySMgM57clCOZUDguM3lTT0Rw5l4ewzxHiXyJ7UhhcUzuk5AR87XaC2vFga/akEoRMwqFMNTthU4BxEAyeAg0+ldpDIIboSetITda7ksJK4KJjJo9PmSS6XvRX5s50dS/yrnYnV7Y5jT53NW3IicYst9lvaIa4VwljnX8LSk6l1uUJaSQh9ggzvUqPdTzy234RWFfrklQTAJPv5KcPMCh4hEZejO7GG/T97AqkqM6Z/R7RTDtwX1njwvPt0MOCfTaL73+SyJ88GZ9uv/rAobm1pWCCxNUgKCKTwL0ZFpjj6ajsYO2v0SMoswKGuyeu32yGbMsvUjCQUUkuhoMbssJ0eFZadwymfCE/gumWgpfenu8AJoNLZQTzaEJOJDwmKdqsk0ZxAlY26CVjfTNI6IfLrEIGXAVQUmY4V46Jnb79n9qtlNqj1e0q/XkoZ9tOuTnJHF3J0kngAR81K3DhnXagBta/r+6u2eW6iftceg5eMMmUMxekpUHLJuaVuK58gFIeNaSijxut8VK1Mc8mLr+ROzkeXrpypfutJEXkb7QwOt+R+tTrdh/hqEy4dpVXOEQs/jCJqz33Fp8SZLZN+TPbEXdRDXDqNi4D4BZSjsg0fp91XzJrX4mk3rPLPp281+BvOVm2kf49FjRFoX8D02xbP2Fl9WK95uG2lQqCQWm1SG6iactU5uMoLLoKOYZWOUZOm/mWht4I5CCU+jscjtqKJmZhr+9lkViXhBudKzB2kP09kRCIylMXINwectOXp8zc4kQKVo6LS1n9mVJKXibwQ94Rhh0t1BueRuqDwWrMjI+sP+gO2qMJ6zFX4jBsz3SmdjYutStDxLDoqFL1qZPXYTmCMHnansZWy6HlTW7TA6mJAO0GtBUaqmFOsfHJVzZSHv1y2XPJybfUsokR7/hBJ4qnK/NuPolrbrfzhz2b2+FG8HYZ23u0FFuvJ6lVlJW+RPIIcxbk5B+1hDAPVkXz7hp09lJvD1Jp7yn+crjvdsck+YODeGVqzqMyiG1Mb8lpeR1fk0IH8iOhqLS+ntHEOKgldrmreXcYxFNhBdQ+edlr2hxvuTP8Bzcl4vg== +api: eJztVk2P2zYQ/SvCnBpAazkfvQhJADe7m25adI3GRQ5ro6CkscVdiuSSo00NQf+9GH3YcuwYjpHccrJM8s0bzgznTQUkVh7iO/iY5piVCmERghVOFEjoeKcCLQqEGKwz95jSTQYhSM0LgnIIIUOfOmlJGl4stXwsMZAZapJLiS4wy4ByDDo4hODwsZQOM4jJlRiCT3MsBMQV0Noykycn9QrqOtyQ35vkXOIPJgk2tzuPfelM0ZM/lujWe+zXzhTBpSCcyeJbWEJYGlcIghgyQXhBDB9SkzlOPDM/hFZYefGEzjPJcf4cA2ZFT5gFk+lNsIV9nT3DpSgV0z+Hul6w494a7dHz6RfjMf/sEt3+AXUIr8av9rf+MhRcm1JzgaRGE2pqSPE/iqwS7H2174xJunq0zlh0JFvydnffZV0qJRKFbWjrEEiSOu2kJ0HlwDhITbhCN0yD1PTyxSFwhiSkOolHak9Cp6c4VYcgskxyAIWaDgOwvRlMnUkUFpeNBx4akLVKpoJx0b03PyP73SLbVOvPkH6/kDLs10Od5EYTOi1U8BHdE7rgyjnjmhxMpjeXt+/65rmL+lN6arRkqoTWUq88hFAg5SaDGFbYJIeFKYao0zofVRvRrHnxSWbofDRxZSJGvSZF9ybxUdUoXM39amPdN/61Ilw6BTHkRNbHUSSsHAm2kipTZqPUFMBd1GNaOknrBvEbCocO4rvFcItZi7Z4+gOb+LP1vQZ/xdFqhfTTLGgxAZkH1KO+xTM2aY2F3cd1XyofPs2a0Eq9NA1Vl642Bu8Ky0mQKW7CMe3CNJpYuefMSajg99lsylI013N9aT5rZUTW3OC1CHKHyzdziIxFLayMfGfgok/PiN/gHAISboX0Zg7/Jkrohzm8DW4tala4pVT4OhJvIYRe7GJ4PhqPxixR1ngqRPOMOzE9WDo7F9ukYKBZddgmverK6q6fwBgdD6exTWVBCLu1BSFPTg2gn6C2BbYIITee2HJVJcLjP07VNS+3Us9FlEnPDzGDeCmU//JRVFu5hV/+7maPZ8GXw9DBuz3gejtZPQlV8hHgEeQszt056AhjM1CdyXds2DlCuTtMbbkX/MfJttOdG+wTBu6DrnWLQq+HPvUub8vr7IycOpCf4V1by/WiDiFHkTVdrur2JmmKlgaooeHFoGW/v+LO9D/NyXi+ sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/list-jobs.ParamsDetails.json b/docs/documents/schedule/list-jobs.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/schedule/list-jobs.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/list-jobs.RequestSchema.json b/docs/documents/schedule/list-jobs.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/list-jobs.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/list-jobs.StatusCodes.json b/docs/documents/schedule/list-jobs.StatusCodes.json new file mode 100644 index 0000000..9844658 --- /dev/null +++ b/docs/documents/schedule/list-jobs.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}},"additionalProperties":false,"title":"ScheduleListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/list-jobs.api.mdx b/docs/documents/schedule/list-jobs.api.mdx index 6835121..1551498 100644 --- a/docs/documents/schedule/list-jobs.api.mdx +++ b/docs/documents/schedule/list-jobs.api.mdx @@ -5,7 +5,7 @@ description: "List Jobs" sidebar_label: "List Jobs" hide_title: true hide_table_of_contents: true -api: eJztW91v2zYQ/1cEPm1AaqddtwejK5DE2ZpuaYJ8rA+JMdDSKWZCkypJZQ0M/++7oyRHtpWY+QD6wqco0n3x7ni8H03OmONXlg0u2Gk6gayUwEZbrOCGT8GBoS8zpvAfNmCF0deQuoOMbTGh6AV3E3zOwKZGFE5oelkq8a2ERGSgnMgFmETniZtAUrMne4fHyGTgWykMZGzgTAlbzKL6KWeDGXN3BWmzzgh1xebzrYUBuZBoU6MdtZg7FsZptXHP4attppE9g1vnuYXNeoVycOXHlWsz5a569cu7JVlSTMUrieKFeHOLse0Y1XIozzBqFCewDrJk5/gguWd7aPwkI+elJNVvUe2IQm0LrSxYon63vU1/lhUd/YV8qUbjlfMi4bvrF5KTbbN1VXpMQUEWDE8BxolKtNOOy43O+O09m6P5IPMu41UpJR/jLPBpOScVcBtEqNDmIMJcGBtGKXkg4S2XZe2DipQbwymewsHUbvYcznWecRfgY5EFGVQaEeY0n5FBYfAT8dUMzLXMwByEECM1zzJBqcrlcUtZzqXFyuWEI1p2XJl4Umf70GlKtKq8bgxMUz06TE05prHG6blx7E/x5i0WaBNEjARa6qsA/YG+DzQz1O9ntX1Ljg9l3quduxK11AAn3iF+7jJ1UVBw1sAbJ3BAXZEjKZDt3gW5Rf+nAjMS51dBil9mXSUj1Lqm8ofQ1uM+t4EZVlsSTD/lil8FWh6aCId1CVxJBOu4KwMqKNGFzb3XSa2cC1kaOAFuA4MCxmizeSAmXOIUrMU4vGIQTr2398nSZ83min8lhCtNwqOjB0VWt+fgWGsJXPlcqDvkz3p85j8SfTml5vlIwelEk7wTSEvjvTDaWnNLq2TB6b20tvCdzhU/LCngOyp3cI6Nt3xJ1QqMv/FDBZXetV3xSZdG0hI3xBSlv18BbvzDITZ4E/+0V1qnp4956KSRDd7VfiZC8YIWJ3htxG4VR5DCeWALwz08eBr1l1BjOtbezcTB0ifOFf+AGQcRj3X2mvX2FMPZ2e5QH73vE/mB5SYsizMgV9+2KmSToF+0Io5DrkqECzRjq4APQSLkzR7LyuGS0KeVpnp+35M8qcIt4yVkSRpUlTSVo8fWtS3reKqtfwvr1qwsCilSv4L1r2vPRoAWAVoEaBGgRYAWAVoEaBGgRYAWAVoEaBGgRYD2AwCa/+0sIrOIzCIyi8gsIrOIzCIyi8gsIrOIzCIyi8gsIrMfhsxIxPuuw4+7PEtOqlOW7DVOQdb1dXPOVyYHUK6t5A8eM+3MJse7a+oaqVCoCevWS+bKbL4EK5BjOvQW2Jf/fBk9+4hnn7fvEF36oEuJ7deugnGAAzIoKTkFg9gi8U2fj8HO8cHwaK/Sulr4qCIl2DFZRu2nm2hs1diVP57uz/EPWL/eKbD92eKo/7zfAF7b3zHlmPeaCte/rmRZb0R1UQDbF5RDa6Md9Pu8ED1OPKnUZdZLsW2h4+CW+hPh7jzHLnBD0OVi1P5EOqZVhjQECyeTdLY6uH1yib9l8PnrWVLxJE7fgKLS7rPRd6SVsK364Y8mH5DJ+0+oXHtVdUyqEe9NC/K0SKHXWoq8U3o7hVgzJogr+XR2dkxn6i/VpRoigJUa1wEawQeeTAzkv1+yPmaKQi/2m3XqTROMHk20S5Y4bjCESPrvWHJ1c8k+JkfIQ0f1cyHhQ59/ZC0Ayt72tnvbvrPX1iEWvG/vlvJjaTwLz7fWI79P5edJlTsXzS4TcQ/aF0UW6YPPywmEL3wKYdwnmnbrLthsNuYW20c5n9Pr6lYCpUkmbI0u6vX2BvDD/YUQv4uHLxhdc3iAuL4DEkK6dO0jhGFx0yOEuLnK8TjtSgwWfcGjtzI6I1VpXb71ca97RP8YUZWrLlc/aMhPJ/Udnp+TwEs/neY1oETdte1aCQXm0nxEfTdwv/mGhlbfd9IUirY328JHrVL35z7N8f8BRT+ARQ== +api: eJztW91v2zYQ/1cEPm2AaqddtwejLZDG2ZpsaYLEWR8SY6Clk82GIlXylNYw/L8PR0mObCsx8wH0hU9x5Pvi745H/mRywZBPLRtcsYtkBmkpgY1jVnDDc0Aw9M2CKZ4DG7DC6K+Q4FHKYiYUPeA4YzFLwSZGFCg0PSyV+FZCJFJQKDIBJtJZhDOIavXo4OSMxczAt1IYSNkATQkxs8kMcs4GC4bzgrxZNEJN2XIZrwLIhEQwjfdvJZg589O02uBT9OqYaWRP0NZZZmG3X6EQpm5cmTY5x+rRb2/WbEmRixcyxQvx6haM7RjVeipHM4goT2AR0mj/7Ci6U7tv/GQj46Uk16/ZcjmmVNtCKwuWpN/s7dGfdUenf7OYJVohKHQm4Qf2C8kptsW2Kz2hpLCY0lOAQVGZRo1c7gTjj7dsGTMLMusKXpVS8omEqiyX5AJuvQQV/EAvwUwY6ycpuafgLZdljUElyo3hlE+BkNvdyOWAPOXogbFIvQIqjfADzVWkVxrcRHyxADMtUzBHPsLLmPE0FVSqXJ61nGVcWogZCiRZdlaFeF5X+xA1FVrVXncmpukeHaEmHGGqzXz32B+D5q1IwXgJ47zQUk89/Hti7xmmL+6jOr414H2VD2pwN7KWGOCkO+TYGeqqoaQc4RWKHLoG6qxA+nHuBYv+rjwrMmZlQY6fF11lwze6pvP7yNbjvrSeFVZH4i2fc8WnnpH7FsJJ3QI3CsEix9Kjg5Kc39x7mdLKuJClgXPg1jMpYIw2uwdi/C3mYC2fvuRUvnBoH1KkT5rNlf5GCjc2CQ+OHhRF3Z6DE60lcOVqod4hH+vJyH1J8mVOm+dTBRczTfbOISmNQ2Ecb8HSallwcWetbXy/c8X3Kwr4AUmJcKlQyOd0Lc/8GzdUUMm8DcUnXRpJS9yQC/f3C8CN+3CiFc7cp4PSos4fQui8sQ0OajcToXjGFsd7bTRgdWkSuPTcwnBHDx4n/dk3mI61d7ewt/UZYvEvmImX8ESnL9lvLxCKzu0O7aMPXSHfs9z4VXEKBPVtq0M2BfpZK9I44ark0s3YKuFDkICQPlSVwzWjj2tN9fy+E3lUh1vnS0PUUcOqoqZz9Ni2t3Ufj431H2FxK8qikCJxK1j/a41sIGiBoAWCFghaIGiBoAWCFghaIGiBoAWCFghaIGg/gaC5384CMwvMLDCzwMwCMwvMLDCzwMwCMwvMLDCzwMwCM/tpzIxMvO06/PiRp9F5dcryRU5B1v11d81XIXtIbq3k9x4z7awm5N09dUtUKItcJc9aFhfLNVoxkZAPXQT2+T9fBmQfQPZp7x0CpPdCSmq/dzWMI4VgFJfRBZhbMJHb9Lkc7J8dDU8PKq+bjY86UnSsJ5bR9hNnOmUDNnXH0905/gHr128KbH+xOuq/7DeE1/b3TTnhvabD9b9WtqwLorooUBrJBm5ttIN+nxeix0knkbpMe4nOGR0Ht7Q/ETh3Gh+BG6IuV+P2V+QjryqkEViBTNa3TqofEiTulsHxl1FU6USob0D1mrPqbkdaGYvrD3829XD8ZeTwEyrTzlWdk2rEB3lBSIsEeq2lyIHS2y/EVjBeWtGn0eiMztRfq2s11N+V1Dx1I3jHo5mB7P016+sCFC9Ev1mnXjXJ6NFEu2YRcjMFfH/N/ptIrm6u2YfotABFR/UzIeFdn39gLQLKXvf2entuZ68t5lzdbe/W6mNtPCvkW+uRe0/l5klVO1fNWybSHrQviqzKh8VsvYBYzFwJjWM20/S27ootFhNu4dLI5ZIeV7cSqExSYWt2Ua+3NzBvXwhxb/HYgDG65nCPcH0HxEd07dqHj8LqpoePcHOV42HZjRys9gUP3srozFTldf3Wx53vMf1jRNWuuqC+N5Bfzus7PL9Gnpd+OsNrSImat+PaSMVRypZj2ncDdy/frhb19/tJAkUbzbbxcavV/XVIc/x/RT+ARQ== sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/search-backup-policies.ParamsDetails.json b/docs/documents/schedule/search-backup-policies.ParamsDetails.json new file mode 100644 index 0000000..c760b6d --- /dev/null +++ b/docs/documents/schedule/search-backup-policies.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policies.RequestSchema.json b/docs/documents/schedule/search-backup-policies.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/search-backup-policies.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policies.StatusCodes.json b/docs/documents/schedule/search-backup-policies.StatusCodes.json new file mode 100644 index 0000000..90b8785 --- /dev/null +++ b/docs/documents/schedule/search-backup-policies.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policies.api.mdx b/docs/documents/schedule/search-backup-policies.api.mdx index aa7b164..bb356b7 100644 --- a/docs/documents/schedule/search-backup-policies.api.mdx +++ b/docs/documents/schedule/search-backup-policies.api.mdx @@ -5,7 +5,7 @@ description: "Search Backup Policies" sidebar_label: "Search Backup Policies" hide_title: true hide_table_of_contents: true -api: eJztW0tvGzcQ/isLnlrA1jqp24OQBvArrds6FmwFOdhGQe1yJcZcckNynQqC/ntnyF29LFmsrBwK8GR5d16c+Tj+SI8mxNKhId07ckqzx7rqKcGzMXk4IBXVtGSWaXw7IRJ+IV1SafWFZfYyJweES3xA7Qg+58xkmleWK3xYS/61ZgnPmbS84EwnqkjsiCWNenJ21QMlzb7WXLOcdK2u2QEx2YiVlHQnxI4r9Gas5nJIptODWQAFFxBT6x286DEJ0zRK2130mphxZTtoq6IwbLtfLi0bunUVSpfU+kc/vV2yJXjJ92SKVvzwCWq7ZlXLpexD1bBOzFiWJye9y2Sutmn9aKOgtUDXb8DtA5baVEoaZlD67dER/lh2dP0n6GUKgpfWmWT/2LQSFGObPHelBlgUUIHyVExb7k1bZanYmoxfjskUwmeiWBe8rIWgA8E8LKfogj0FCUqIOUiw4NqESQoaKPhERd3kwItSrSnWk1tWmu2Zg71Oc2oDcszzoIBqzcOS5hAZVAa3EfcWYKFEzvRliDBI0zznCFUqegvOCioMdC7LLcqSng/xpkH7uVUINN9itxam7R5rQs0owFjB9ty69v+SzSdo0DpIGASUUMMA/4G5DwwzNO/9Jr6lxIcqnzXJXalaphlF3XN4vS7UWUOBXcMOLYcFrascWmH56TgoLeqbDEQk7K8KHb8uOm8jNLq284fINuv+ZAIR1kQSLF9SSYeBkYcC4appgStAMJbaOqCDolzY3tsPtArKRa3ZDaMmsChMa6W3L0SHWyyZMVCHPRbh1mX7AiPdaTd7/ZUSrpCELas3qtYZ6zupgBwgN8lr8Zo/vgNHvoM9Fo6RySxs2zr8bEWZqahcp53T8XXxmbHHIF9O+gpY3ChIXDOke24njBfTtJHD7gyrxeNNC47bpnAeX6+xNBcPwuoy8wWVpOXHiUdCUjnzHfKy290D/4sb+2x7VRW8co0p/dI0gMi7I++OvDvy7si7I++OvDvy7si7I++OvHu/vNvddEfCHQl3JNyRcEfCHQl3JNyRcEfCHQl3JNzfg3CjmeN1EyinNE9u/KgL2ccoSijIm7BDNuBqgw6HD9bCQh8N8sMleJLZq7rdZLrEFkGjPHcRmNf/syFm9oXM7nacjCndmFLfMI6fN4yPyiYfVC3z2C5iu/i/Zja2i+/QLn5exy8uYUEaLCW3TMMJM3HU39XgpHd5fn3mva6SpltGdTZKPKdJHKnBGPBEYkcKTtBk6OaL3SB2l6TN5ZFJJ7NZ7Wna3oGY9ETXA9ppCWE6mFMlb9W42PzMd60hpWRkbWW6aUor3qGonQlV551MlQQnew3Las3t2GmcQrB4rr17WHyF3koPnFZglnu0TlbXfIGZcgPjf3zuJ14nseqRSSSKDqSoO/DGDpoPH1qYgJJLK5eFcq6aUvm1n5UVFoBnbJaGXpOezknFnwUTpJX83u/3cDz6Xt7Lc/VNCgVsElfwjiYjzYpf70kKAJKQxbQ9Rx22Zeng/rsniaUaigmifw8ElY/35H1yDTo4dV1wwd6l9D1ZuJ0gbzpHnSN37FPGllTO78U2w2ZpcbMyLPzNcjeabi95SN2195Go3V38AsAMVfB5GVdYk2VkARxGCm9478hkMqCGfdJiOsXHfu4c0ZNzg7svnxH6RwYv5iP/7uYXHhAcZN8g3Ez5h4guDfaHKMxm+UOE22H9l2VXqjFjES/O3a+tmfe6PNc/9/2Av2jum9u6VG8M5Ieb5lsaPyaBX+tYG157XSDHi3GtlAJQNX0A4RGj7sIWAvXvT7KMVYvZXDT+sNALf7vArf8vm3vTmw== +api: eJztW99v2zYQ/leEe9oAxU67bA9GWyCJ083dshiJizwkxnCWTjYbilRJKq1h6H8fSEmO7Tgx56QPA/iURLpfvPt4/sicF2BwqqF3AyeY3JXFUHKWzGEcQ4EKczKk7NsFCMwJelAo+YUSM0ghBibsAzQziCElnShWGCbtw1KwryVFLCVhWMZIRTKLzIyiRj06PR9CDIq+lkxRCj2jSopBJzPKEXoLMPPCetNGMTGFqoqXAWSMG1Kt968lqTn4aWqpzD56Tcx2ZXtoyyzTtNsvE4ambl2ZVDma+tEvb9dscZazVzKFBTu4J6W3rGq9lKMZRbZOpA2l0fFwED2oPbV+ayPDklvXb6CqxrbUupBCk7bSbw8P7Y91Rxd/QgyJFIaEcSbpu+kWHG1si8eu5MQWBWJbnoKUYbVpIw3yncn47QiqGDTxbFvwouQcJ5xqWFbWBd17CQr6brwEM6a0nyRHT8F75GWTg1oUlUJbT2Yo17szl5PBFI1HjlnqFVCpmF/SHCK9yuA24qsFmEmekhr4CFcxYJoyC1XkwxVnGXJNMRhmrCwM6xAvG7T3jbRAq1vszsK03WNLqAkamko13732/5LNe5aS8hI280JyOfXw75l7zzB98z5q4ltLvK/yaZPcjaolitDq9tFsDXXZUFI0dGBYTtsW6qxQejL3Sov8JjwRGUNZWMcvi6624Rtd2/l9ZJt1f9aeCGsi8ZbPUeDUM3JfIJw3LXADCNqgKT06qJXz23uvA60MGS8VXRJqz6KQUlLtXojyt5iT1jh9za185bJ9ZiPdazfX+hsl3CAJO1avZakSGjkpjxxYbpKW/CUfvhNHvr09Zo6RicRv2zr87ESZLlBs005xfpFdE915+XLS51KYmZe4Ikv33E6Yr6bpSQ67N6xWjzctOK6awtX4eomlB3EvrK4z376RUcuPoxoJUeHMd+B5t/sH/hfT5tH2KgrOEteYul+aBhB4d+DdgXcH3h14d+DdgXcH3h14d+DdgXe/Lu92N92BcAfCHQh3INyBcAfCHQh3INyBcAfCHQj3jyDc1szRtgmUE0yjy3rU5VVGUXxB3oTtswE3G7Q/fGwtDDLu5YcJbVAkL+p2i2qNLU445X0XgX75PxtCZp/J7H7HyZDSJ1NaN4yjxw3jb2mij7IUaWgXoV38XzMb2sUPaBe/buMXA2FICeTRFal7UpGj/q4Gx8NB/+K09rpJmq4IVTKLak4TOVJjY7AnEjOTKfRg6uaL3SB2D7rN5ZHuLpaz2lW3vQPR3WNVTrDTEsLu5IEq1Va1i62e+S4Vhx7MjCl0r9vFgnXQaidclmknkTnYyV5NSamYmTuNE0Jlz7U349VX1lteA6cVWObeWn80dHxmM+UGxj9dj6JaJzLyjkSnHTu2upPaWNz88rGFyafrkUsrE5l0rppS1Ws/zQtbAJbQMg3DJj2d44I9CsZLK/pjNBra8ehbcSv68pvgElO3gncYzRRl72+hKwsSWLBue446aMvSsfvvFiKDakrm/S38M+Eo7m7hQ3RRkLBT1xnj9K6LH2DldgLedA47h+7YJ7XJUTzciz0Nm7XFLcuw8pnlbjTdXqohddPeR1rt3uoXAJaoghjWcWVrso6scQwzaW94b2CxmKCmz4pXlX1cz51b9KRM292XLgn9Hc1XR/7dzS/0AOwg+xPCzZS/j+jaYL+PwnKW30e4HdZ/XnajGksW8ezc/daa1V7X5/offI/tH4rVzW1bqp8M5KfL5lsaP0eeX+vYGl57XSDmq3FtlGKQQjWuYpgRugvbm0Xz/jhJqFjN5qrx8Uov/P3Mbv1/AZt705s= sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/search-backup-policy-assignments.ParamsDetails.json b/docs/documents/schedule/search-backup-policy-assignments.ParamsDetails.json new file mode 100644 index 0000000..0e74aeb --- /dev/null +++ b/docs/documents/schedule/search-backup-policy-assignments.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policy-assignments.RequestSchema.json b/docs/documents/schedule/search-backup-policy-assignments.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/schedule/search-backup-policy-assignments.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policy-assignments.StatusCodes.json b/docs/documents/schedule/search-backup-policy-assignments.StatusCodes.json new file mode 100644 index 0000000..c91a37c --- /dev/null +++ b/docs/documents/schedule/search-backup-policy-assignments.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyAssignmentListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyAssignmentListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"},"jobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentJobResponseDto"},"nullable":true}},"additionalProperties":false,"title":"BackupPolicyAssignmentPropertiesResponseDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentResponseDto"}}},"additionalProperties":false,"title":"BackupPolicyAssignmentListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/search-backup-policy-assignments.api.mdx b/docs/documents/schedule/search-backup-policy-assignments.api.mdx index 440fc56..fd7bb56 100644 --- a/docs/documents/schedule/search-backup-policy-assignments.api.mdx +++ b/docs/documents/schedule/search-backup-policy-assignments.api.mdx @@ -5,7 +5,7 @@ description: "Search Backup Policy Assignments" sidebar_label: "Search Backup Policy Assignments" hide_title: true hide_table_of_contents: true -api: eJztW1tv2zYU/isCnzYgsdKu24PRFXAu7dJdYiQp9pAYAy0d2UwoUiWpdIbh/75DUr5GjrnEG7qBT7Glcz+Hxx+ZwykxdKRJ94Yc0+y+rvqSs2zS05qNRAnCkMEBqaiiJRhQlm5KBH4hXVIpeQeZOc/JAWHCPqBmjJ8VfK6Zgpx0jarhgOhsDCUl3Skxk8oyaqOYGJHZ7GAhq2Acxc8Ffa5BTUgYp5bKPIevsZ5J8RxuWRQadutlwsDI+VVIVVLjH333ek0WZyXbkyhascMHTFOLVznoTLHKOdwl12NIbJ5AG8iTXv88WbJt89/KKGjNrepXqHZgU60rKTRoS/366Mj+WVd08TPyZRKNx1KyIuFPk1acWtumj1XJoU0KsmB6KlCGedFGGsp3BuOHN2SG5gMv2owXNed0yMGX5cyqgIcgQoE2BxEWTOkwSk4DCR8or5sYeFKqFLX5ZAZKvTtyuGxpTk1AjFkeZFCtWFjQXEUGpcEtxL0ZWEiegzoPIUZqmufMlirl/RVlBeUaO5dhxtKSvjfxsqn2UyNtofm+uTMx8+7RYmpGsYwlLs+dvv+daD4w9D+IGAkkl6MA/YGxDzQzNO7XjX1rgQ9lPmmCu5G1TAG1vKf4us3URUPBVQOHhqFDbZmzUiA/ngSFRX4RgRWJ66uyil9mnZcRat2884fQNn5/0oEV1lgSTF9SQUeBlocWwq9NC9woBG2oqQM6qKULW3v7Ka2CMl4ruASqA5MCSkm12xEVLrEErTEPe0zClYv2mbX0WavZ82+kcAMk7PBey1plsJsy7Bcu1PAPgGufZZeN+g0PhiuY++uy7E4OXwA79gomQh1q38B8lMMN1/YqfsnwrLpuF7ou6mWyfmHaPDKtqpDINav0rmkKEYtHLB6xeMTiEYtHLB6xeMTiEYt/NZZFLP4/xuLuRDyC8AjCIwiPIDyC8AjCIwiPIDyC8AjCIwj/t0C4FfimbXrlmObJpR+TIfsYY3FvQ3CIdyCA8lHT3jon1MKc4w8B40F6mEBNIgsxamt2prM1BIkc5amzQL/8nxIxsk9E9nlbzBjSrSH1DePN44bxmzTJe1mLPLaL2C7+q5GN7eIfaBfft+GLc3RIoaTkChTuOhO3HXA56PXPTy9OvNbN4d0roCobJx7dJB7eJEt8o4ndr5ixRMhJRm5K2U1md0naHC3pdLoY3p6l8xMSnfZUPaSdK8x4XnNIh63wyYrXzlw/DV4rjDIZG1PpbprSinWoFZNxWeedTJbEDgpryBDamonjOEb77fb3ZrD6yqotfS3NCRbpsNLJZhjObPASM4bk4+/XiedJjLwH0SHNFLPlHXphB82H9/PKQSYXaSYK6VQ12fNBOCkrmxOWwSIe/SZOnV7FHhkTxJX8dH3dt9PWt+JWnMovgksEmNaDtzQZKyh+vCUp1pTAKKa6EXA4z0/HLslbkhiqMKtI+seQU3F/S94lF8hjh7gLxuFtSt+RlUMM8qpz1Dlyu0OpTUnF8vgspJLW3FwkZOUHze1a3ELzVXYzP8C03N3VSwKLQsPP66VG1jd+qxZghYylPRu+IdPpkGr4pPhsZh/7yXZbUDnTdo3miw3APeCL5aUCd2aMD4gdld9C3NwjCCFduzoQwrC4LRBCPL8O8DTtRloWWOPJyf7W5Hmt6zcHlroH9otivgW2hXqrId9cNvdAvk22qZ5vpcVkVedGmLF0ZgMkHgN1x7hohH/fyzKoViO1Knyw0gM/nNmV/hcO1uoY +api: eJztW91v2zYQ/1eEe9oAxU67bA9GW8D5aOdsXYzERR9iYzhLJ5sJRaokldYw9L8PlGTHH3LMJd7QDXxyLN33Hc8/Msc5GJxo6NzCKUb3edaXnEWzrtZsIlISBkYhZKgwJUPK0s1BYErQgUzJO4pML4YQmLAP0EwhBEVfcqYoho5ROYWgoymlCJ05mFlmGbVRTEygKMKlrIRxQ2oh6EtOagZunFoq8xy+2nomxXO4ZZJo2q+XCUOT0q9EqhRN9ein12uyOEvZgURhxo4eSOkGr2LSkWJZ6XAHBlMKbJ5IG4qDbr8XPLLt8t/KSDDnVvUrKIqRTbXOpNCkLfXr42P7sa7o6jcIIZLC2FKyIumbaWccrW3zbVVybJMCoU1PRsqwSrSRBvneYPxyAkUImnjSZLzIOccxp6osC6uCHpwIBX0zToQJU9qNkqMj4QPyvI5BRYpKoc0nM5Tq/ZFLyWCMxiHGLHYyKFfMLWhlRTqloVyIBzMwkTwm1XMhLkLAOGa2VJH3V5QlyDWFYJixtNCvTLyuq/3cSFtoVd/cm5hF92gwNUJDE6lm+33/O9F8YDEpJ2IzyySXEwf9jrF3NNM17oPavrXAuzKf1cHdyFqkCC3vOZpGU5cNJUZDR4al1ORoKYXi05lTWORX4ViRIeSZVfwy6yoZrtYtOr8Lbe33J+1YYbUlzvQpCpw4Wu5aCB/rFrhRCNqgyR06qKVzW3uHKa0EGc8VXRNqx6SQUlLtd0S5S0xJa5wccinflNG+sJY+azVX/Bsp3AAJe7zXMlcR7ad0+4VzNfwDCVIsuq7Vb3gwXsHc35dld3L8AthxUDDh6lDzBuZSjjdcO6j4R4Zn1XWz0HVRL5P1O9Nmy7Qs4ywqm1X7rm4KHot7LO6xuMfiHot7LO6xuMfiHot/N5Z5LP4/xuLlibgH4R6EexDuQbgH4R6EexDuQbgH4R6EexD+b4FwK/CkaXrlFOPguhqTOcgYS/nWBYdUDjhQbjXtnXNCDcwxGWTcSQ8T2qCIXtQB58UaghxzSs9LC/TL/ynhI/tEZJ+3xfQh3RnSqmGcbDeMP6QJ3stcxL5d+HbxX42sbxf/QLv4uQlf9IQhJZAHN6QeSAXldqDMQbffO786q7RuDu/eEKpoGlToJqjgTfCIbzTY/YqZyhg6MCmnlMvJ7A6066Ml3Z4vh7eL9uKERLe7Kh9j6yaaUpxzao8b4ZMVr0tzq2nwXHHowNSYTHfabcxYC62YiMs8bkUyBTsorCnKFTOzkuOUUNnt7+1o9ZVVm1a1tCBYpsNK35phvrDBC8yUgsvPg6DiCYy8J9FaTDFb3nElLKz/eL+onMvPgzLSTCSyVFVnrwrCWZrZnLCIlvHo13FqdTO2ZYwTV/DrYNC309ZDMRTn8qvgEuPSgzcYTBUlb4fQlhkJzFhb1wKOFvlp2SU5hMCgmpB5O4Q/xxzF/RDeBVcZCTvEnTBOb9r4DlYOMeBV67h1XO4OpTYpisfjM5dKWnNzmZCVH7Ry11IutKrKbhcHmJa7s3pJYFloEMJ6qcH6xm/VglEIU2nPhm9hPh+jpk+KF4V9XE2224KKmbZrNF5uAO5ptnqpoDwzhg6AHZXfQVzfI3AhXbs64MKwvC3gQry4DvA07UZalljjycn+xuRVWtdvDjzqHtkvilUtsCnUOw354bq+B/JjsEv1YistZqs6N8Lci6EYFSFMCctj3Nt5/b4bRZStRmpV+GilB364sCv9Lw7W6hg= sidebar_class_name: "get api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/sidebar.ts b/docs/documents/schedule/sidebar.ts index 0e9fc72..169fee1 100644 --- a/docs/documents/schedule/sidebar.ts +++ b/docs/documents/schedule/sidebar.ts @@ -1,146 +1,144 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/schedule/aruba-cmpservice-scheduleprovider-api" + type: "doc", + id: "documents/schedule/aruba-cmpservice-scheduleprovider-api", }, { - "type": "category", - "label": "BackupPolicy", - "items": [ + type: "category", + label: "BackupPolicy", + items: [ { - "type": "doc", - "id": "documents/schedule/create-backup-policy", - "label": "Create Backup Policy", - "className": "api-method post" + type: "doc", + id: "documents/schedule/create-backup-policy", + label: "Create Backup Policy", + className: "api-method post", }, { - "type": "doc", - "id": "documents/schedule/get-backup-policy", - "label": "Get Backup Policy", - "className": "api-method get" + type: "doc", + id: "documents/schedule/search-backup-policies", + label: "Search Backup Policies", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/update-backup-policy", - "label": "Update Backup Policy", - "className": "api-method put" + type: "doc", + id: "documents/schedule/update-backup-policy", + label: "Update Backup Policy", + className: "api-method put", }, { - "type": "doc", - "id": "documents/schedule/delete-backup-policy", - "label": "Delete Backup Policy", - "className": "api-method delete" + type: "doc", + id: "documents/schedule/delete-backup-policy", + label: "Delete Backup Policy", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/schedule/search-backup-policies", - "label": "Search Backup Policies", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/schedule/get-backup-policy", + label: "Get Backup Policy", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "BackupPolicyAssignment", - "items": [ + type: "category", + label: "BackupPolicyAssignment", + items: [ { - "type": "doc", - "id": "documents/schedule/create-backup-policy-assignment", - "label": "Create backupPolicyAssignment", - "className": "api-method post" + type: "doc", + id: "documents/schedule/create-backup-policy-assignment", + label: "Create backupPolicyAssignment", + className: "api-method post", }, { - "type": "doc", - "id": "documents/schedule/get-backup-policy-assignment", - "label": "Get Backup Policy Assignment", - "className": "api-method get" + type: "doc", + id: "documents/schedule/search-backup-policy-assignments", + label: "Search Backup Policy Assignments", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/update-backup-policy-assignment", - "label": "Update backup policy assignment", - "className": "api-method put" + type: "doc", + id: "documents/schedule/update-backup-policy-assignment", + label: "Update backup policy assignment", + className: "api-method put", }, { - "type": "doc", - "id": "documents/schedule/delete-backup-policy-assignment", - "label": "Delete backup policy assignment", - "className": "api-method delete" + type: "doc", + id: "documents/schedule/delete-backup-policy-assignment", + label: "Delete backup policy assignment", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/schedule/search-backup-policy-assignments", - "label": "Search Backup Policy Assignments", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/schedule/get-backup-policy-assignment", + label: "Get Backup Policy Assignment", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Schedule", - "items": [ + type: "category", + label: "Schedule", + items: [ { - "type": "doc", - "id": "documents/schedule/create-job", - "label": "Create Job", - "className": "api-method post" + type: "doc", + id: "documents/schedule/create-job", + label: "Create Job", + className: "api-method post", }, { - "type": "doc", - "id": "documents/schedule/get-job", - "label": "Get Job", - "className": "api-method get" + type: "doc", + id: "documents/schedule/list-jobs", + label: "List Jobs", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/get-job-executions", - "label": "Get Job Executions", - "className": "api-method get" + type: "doc", + id: "documents/schedule/update-job", + label: "Update Job", + className: "api-method put", }, { - "type": "doc", - "id": "documents/schedule/update-job", - "label": "Update Job", - "className": "api-method put" + type: "doc", + id: "documents/schedule/delete-job", + label: "Delete Job", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/schedule/delete-job", - "label": "Delete Job", - "className": "api-method delete" + type: "doc", + id: "documents/schedule/get-job", + label: "Get Job", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/list-jobs", - "label": "List Jobs", - "className": "api-method get" + type: "doc", + id: "documents/schedule/list-job-plannings", + label: "List Job Plannings", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/list-job-plannings", - "label": "List Job Plannings", - "className": "api-method get" + type: "doc", + id: "documents/schedule/list-job-executions", + label: "List Job Executions", + className: "api-method get", }, { - "type": "doc", - "id": "documents/schedule/list-job-executions", - "label": "List Job Executions", - "className": "api-method get" + type: "doc", + id: "documents/schedule/force-job-execution", + label: "Force Job Execution", + className: "api-method post", }, { - "type": "doc", - "id": "documents/schedule/force-job-execution", - "label": "Force Job Execution", - "className": "api-method post" - } - ] - } - ] + type: "doc", + id: "documents/schedule/get-job-executions", + label: "Get Job Executions", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy-assignment.ParamsDetails.json b/docs/documents/schedule/update-backup-policy-assignment.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/schedule/update-backup-policy-assignment.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy-assignment.RequestSchema.json b/docs/documents/schedule/update-backup-policy-assignment.RequestSchema.json new file mode 100644 index 0000000..03b6f27 --- /dev/null +++ b/docs/documents/schedule/update-backup-policy-assignment.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource to link","nullable":true}},"additionalProperties":false,"description":"Linked resource","title":"LinkedResourceDto"},"nullable":true},"resource":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"},"backupPolicy":{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyAssignmentUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy-assignment.StatusCodes.json b/docs/documents/schedule/update-backup-policy-assignment.StatusCodes.json new file mode 100644 index 0000000..49cae8b --- /dev/null +++ b/docs/documents/schedule/update-backup-policy-assignment.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted"},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy-assignment.api.mdx b/docs/documents/schedule/update-backup-policy-assignment.api.mdx index 7075667..8db3fdd 100644 --- a/docs/documents/schedule/update-backup-policy-assignment.api.mdx +++ b/docs/documents/schedule/update-backup-policy-assignment.api.mdx @@ -5,7 +5,7 @@ description: "Update backup policy assignment" sidebar_label: "Update backup policy assignment" hide_title: true hide_table_of_contents: true -api: eJztGmtv2zbwrxDclz1sK+26L0ZXwM6jy5C1RupsH+JgoEXaZi2RKkk5NQz9992Rki0/kjhdN2yA8iFRqHvf8Y7H04o6NrW0e0v7LJ7n2UAnMl72rJVTlQrl6F2LZsywVDhhEG5FFfxDuzQz+qOI3SWnLSoVLjA3g2cjPuXSCE67zuSiRW08Eymj3RV1ywwRrTNSTWlRtNa05NcgwjLZXoCQUquK2qdcmCX8w4WNjcwcvurS4UwQZCCsE5z0Bpdkg/YQI6QxYXniYOkFsL0LMgKJvuZLhI+1cmgweGRZBlZkyC76aJHnap+wHqP5gDAYMhPGSWHxLRiaceaOgAxqHxK0ruw7gCJ6QpxX2urcxIIWLZroIODTfBYsyY9g9DuCbThNYZVIRe5nMp5tcSf3MknIWBAvguCdkRmp3oLJhI2TCtUS5kgGKGDSLgK0yeWw/7bdF2bKUj1SI3WhDUm1EcBlok3qtWkRMHM89/xeMzIzYvLziEZcxzaqLBt9U+neZoq3cakdAxthRpQ4ZqbCAc6f44Sp+Yi+Adwcd4LHeB2xNx2MOso4l7jCkkHNWhOWWLFrmVOIDCZBpZqghI117ryc18FWYDm28VCLOukSNPdVKeyZ0+i3sF3XzmDGMIxw6URqD+yPXVmupHXeSUCGgDTbcdGiKk+8G8LGe6aiv5UW3ou3jTYVSKnNdqQ9HoeJVHPBr0uaxxjhAUK5kU+H842Ru2oQpwkK8XfNdOUVOejrLRVLG+3wwsRTIn6pps+UvpLurVDCyHhHvHGtbvwXJDoW93C9u8kgOsUG7auRrAg58dk1RaEpCk1RaIpCUxSaohAI1RqG739oqkNTHZrq0FSHpjo01aEoiuC+DBJcsMfLk5f4ZztAenEsMsiMaN5XJyf7AH3GIW34GyswXu2yyjckWcLks2pOePukV9aKHgFpIV/m9b0oQcapMAAbcmBY+vHlIWQOSUImR/GBtOqYio8R6kEvrjaaUVgHjPTMS2D36vlzq3lj2ccs+0Xtc2PSh01a+ITxaj9hvNOOXOhc8SZdNOni/2rZJl38A+nip0Pni0vshoAS+SDMQhhybow23ge9weXZ+9NqkrdzZPYHHRIOhCTzxyDCNtPHFja3M80BNMu9p3A+2KVROX200Wo9hyxwcSG5MDbqmXzMOh/A4TxPRDQ+eMoCZMkLHPp5kcN0MzdgaTpzLrPdKGKZ7DCkFSc6551YpxRHf1bEcCp1S4/RF8yAJ7u3d/VXyDsN8VQBrF2C1Pe6h3M0oG8efv1jSAIOtA9zoTrVXBJxx4FYq3y4qKIHkLy1MdivN5PJ888szUKQ1q8JypHpOjbqrX3ZvNf6wWpEXK7c7XVhe33WbXlsXxO52+5Btl/udwTb7wsf2RPtTVhGZvDwaZphvMlYrJ09KIOg08vknpGPwiK/DIcDnAvjlcGZvleJhsPzzv0AqK8gOiJbEmhXwddBDxy8FiDvAQfHzROZCLwWAPGqyXOXvuicdE58g6utS5mquenpXbKl5TrOarUa6PrIXpU76Laa31vA7tZn+etNBM/b24hu+6m2kZCG5PitwAyER+qr1ZhZcWOSosDlMIjHsODSYhLihxvd2hj90TH9QQXnYkl3PwOogtlH4IIZGTLgswT59rr8GuE78hDr6lZBLes8K5E25sXPFf5FxuCTAnfrTDDuU9SqfHEaeLSHiL5B3DuIoLwBIzSYNdi6HHe1PD24GWKglF9FpJojsGH3sIi/vXTaK+tTh1+DDMLUNGdThA2M8ecvTT41Lg== +api: eJztGmtv2zbwrxDclz1kK+26L0JbwEnaLkUfRuqsH+JgOItnm41EqiSV1DD034cjJVt+pHG6btgA5YsD8t53vOPxtOQOZpYnl/wY0uuyGOpMpouBtXKmclSOX0W8AAM5OjQEt+QKcuQJL4z+hKk7EzziUtECuDmPuMHPpTQoeOJMiRG36Rxz4MmSu0VBiNYZqWa8qqIVLfk9iEAhezdorNSqofa5RLPgERdoUyMLR1sJH82REQO0DgUbDM/YGu0uRkRjCmXmeMIf8aq6CjKidcdaLAg+1cqRwZIlh6LIZArELv5kiedyl7CekPl4RIYs0DiJlnZzdCDAHQAZ1N4naFvZd5Aj01PmvNJWlyZFXkU800HA+/ncQFYewOgPAltzmkmtmFTsdi7T+QZ3diuzjE2QeRFQ9MdmrAY3IDOYZA2qZeBYYdCicgkB9NjZ6PhV7xjNDHI9VmP1UhuWa4NMqqk2udcmYukc02vP7ymwucHpszGPhU5t3Fg2/qHRvQdK9Gipl6JyaMacOTAzdM/G/M9JBup6zJ8LnZZ0EjzG0xie9ynqOAghaQWyYctaU8gsblvmRCsHUtm2oAwmunRezvNgKz1lsPZQxJ10GZn7TS3sqdPkt3BcV84AY4AiXDrM7Z7zsS3LG2mddxLMLJtqsxkXEVdl5t0QDt4DFX1bW3gn3tbaNCC1NpuR9vU4zKS6RnFe0zzECHcQKo28P5wvjNxWgznNSIi/a6Y3XpG9vt5QsbbRFi9KPDXit2r6QOkb6V6hQiPTLfEmrbrxX5DoUNz99e6iEOBwjfbdSDaEHH5xXVHoikJXFLqi0BWFrigEQq2G4edfuurQVYeuOnTVoasOXXWoqiq4r9DKBns8PnpMP5sBMkhTLBwKMu+To6NdgGMQ7Dy8WPGo/VjlG5IiA/mgmhN27/XKStEDIK0DV7bPolQOZ2h4xEMODEu/Pt6HLNCBzA7iI5V1oNJDhLrTi8u1Znxo9CTD/NRLYHfq+UOreWfZr1n2m9rnzqR3m7TyCePJbsJ4px17qUslunTRpYv/q2W7dPEPpIvf9t0vzqgbUpCxD2hu0LAXxmjjfTAYnp2+P2kmeVtXZn/RYeFCyAp/DWKwnj5G1NzOtaDJYOk9RfPBhMf19NHGy9UcsqLFGynQ2Hhgygn0P6RzFGWG8WTvLcvGSykqGvp5kcN0szQZT/jcucImcQyF7APRSjNdin6qc06jP4tpaaRbeIxjBIOGJ5dX7S3inYd4agBWLiHqO93DCzKgbx5efxyxgMOcvkbVb+aShDsJxKL6n5dN9Lz+OPLWpmA/X08mX3yBvAhB2n4mqEemq9hot/Z1897qB5sRcb1ytdOF7fRZl/W1fUXkarMH2dzc7Qg29ysf2VPtTVhHZvDwSV5QvMkUV84e1kHQHxRyx8gHYbHfR6MhzYXpyeBU36pMg9h+H9AFKihkbGsCvSb4+uSBvc8C7H2BisbNU5khPQvwiDeT54Q/6h/1j3yDq63LQbXcdP8p2dByFWetWl1FIbKX9Qm6bOb3lkc8ac/yV4eIR3zzGPFNP7UOEtGQgr4VmGvriPpyOQGLFyarKloOg3gKCyEtJSGxv9FtjdG/Oqbfq+A1LnY+A2iC2UfgDRgZMuCDBPnxvP4a4Sd2F+vmVUEt2jwbkdbmpc8V/kXGUvCKTuscQfgUtaw3TgKP3ojQ14g7FxGSN2CEBrMF25bjqpWnhxcjCpT6q4hcCwI2cEtfdcBtkE57ZX3q8GtLnoGalTAj2MCY/v4CTT41Lg== sidebar_class_name: "put api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/update-backup-policy.ParamsDetails.json b/docs/documents/schedule/update-backup-policy.ParamsDetails.json new file mode 100644 index 0000000..cd7f3a0 --- /dev/null +++ b/docs/documents/schedule/update-backup-policy.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"backupPolicyId","in":"path","description":"unique identifier of the Backup Policy","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy.RequestSchema.json b/docs/documents/schedule/update-backup-policy.RequestSchema.json new file mode 100644 index 0000000..7b693c9 --- /dev/null +++ b/docs/documents/schedule/update-backup-policy.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the backup policy to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDtoV2"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyUpdatePropertiesDto"}},"additionalProperties":false,"title":"BackupPolicyUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy.StatusCodes.json b/docs/documents/schedule/update-backup-policy.StatusCodes.json new file mode 100644 index 0000000..f8609ac --- /dev/null +++ b/docs/documents/schedule/update-backup-policy.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"resourceType":{"type":"string","nullable":true},"schedules":{"type":"array","items":{"type":"object","properties":{"backupType":{"type":"string","nullable":true},"frequency":{"type":"string","nullable":true},"time":{"type":"string","format":"date-span","nullable":true},"dayOfWeek":{"type":"string","nullable":true},"dayOfMonth":{"type":"string","nullable":true},"retentionDays":{"type":"integer","format":"int32","nullable":true}},"additionalProperties":false,"title":"BackupPolicyResponseScheduleDto"}}},"additionalProperties":false,"title":"BackupPolicyResponsePropertiesDto"}},"additionalProperties":false,"description":"Dto response backup policy.","title":"BackupPolicyResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-backup-policy.api.mdx b/docs/documents/schedule/update-backup-policy.api.mdx index af26f64..a126a12 100644 --- a/docs/documents/schedule/update-backup-policy.api.mdx +++ b/docs/documents/schedule/update-backup-policy.api.mdx @@ -5,7 +5,7 @@ description: "Update Backup Policy" sidebar_label: "Update Backup Policy" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/schedule/update-job.ParamsDetails.json b/docs/documents/schedule/update-job.ParamsDetails.json new file mode 100644 index 0000000..1dcf80d --- /dev/null +++ b/docs/documents/schedule/update-job.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"unique identifier of the project CMP","required":true,"schema":{"type":"string"}},{"name":"jobId","in":"path","description":"unique identifier of the Job Schedule","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/schedule/update-job.RequestSchema.json b/docs/documents/schedule/update-job.RequestSchema.json new file mode 100644 index 0000000..6801055 --- /dev/null +++ b/docs/documents/schedule/update-job.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"the schedule to update","content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"title":"SchedulePropertiesUpdateDto"}},"additionalProperties":false,"title":"ScheduleUpdateDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"title":"SchedulePropertiesUpdateDto"}},"additionalProperties":false,"title":"ScheduleUpdateDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean","description":"Defines whether the job is enabled. Default is true."},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","description":"Date and time when the job should run. Required only for \"OneShot\" jobs.","format":"date-time","nullable":true},"executeUntil":{"type":"string","description":"End date until which the job can run. Required only for \"Recurring\" jobs.","format":"date-time","nullable":true},"cron":{"type":"string","description":"CRON expression that defines the recurrence of the job.","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Descriptive name of the step.\n\nFor more information, check the documentation.","nullable":true},"resourceUri":{"type":"string","description":"URI of the resource on which the action will be performed."},"actionUri":{"type":"string","description":"URI of the action to execute on the resource.\n\nFor more information, check the documentation."},"httpVerb":{"type":"string","description":"HTTP verb to be used for the action (e.g., GET, POST, PUT, DELETE).\n\nFor more information, check the documentation."},"body":{"type":"string","description":"Optional HTTP request body to send with the action.\n\nFor more information, check the documentation.","nullable":true}},"additionalProperties":false,"title":"StepRequestDto"},"description":"Step that will be executed as part of the scheduled job.","nullable":true}},"additionalProperties":false,"title":"SchedulePropertiesUpdateDto"}},"additionalProperties":false,"title":"ScheduleUpdateDto"}}}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-job.StatusCodes.json b/docs/documents/schedule/update-job.StatusCodes.json new file mode 100644 index 0000000..3003267 --- /dev/null +++ b/docs/documents/schedule/update-job.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"managedBy":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"enabled":{"type":"boolean"},"scheduleJobType":{"enum":["OneShot","Recurring"],"type":"string","title":"TypeScheduleJob"},"scheduleAt":{"type":"string","format":"date-time","nullable":true},"executeUntil":{"type":"string","format":"date-time","nullable":true},"cron":{"type":"string","nullable":true},"recurrency":{"enum":["Hourly","Daily","Weekly","Monthly","Custom"],"type":"string","title":"RecurrenceType"},"steps":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","nullable":true},"resourceUri":{"type":"string","nullable":true},"actionUri":{"type":"string","nullable":true},"actionName":{"type":"string","nullable":true},"typology":{"type":"string","nullable":true},"typologyName":{"type":"string","nullable":true},"httpVerb":{"type":"string","nullable":true},"body":{"type":"string","nullable":true}},"additionalProperties":false,"title":"Step"},"nullable":true},"nextExecution":{"type":"string","format":"date-time","nullable":true},"deactiveReason":{"enum":["None","Manual","ResourceDeleted"],"type":"string","title":"DeactiveReasonDto"}},"additionalProperties":false,"title":"SchedulePropertiesResponseDto"}},"additionalProperties":false,"description":"Dto response schedule.","title":"ScheduleResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/schedule/update-job.api.mdx b/docs/documents/schedule/update-job.api.mdx index 84e19e2..3c53763 100644 --- a/docs/documents/schedule/update-job.api.mdx +++ b/docs/documents/schedule/update-job.api.mdx @@ -5,7 +5,7 @@ description: "Update Job" sidebar_label: "Update Job" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/schedule/aruba-cmpservice-scheduleprovider-api custom_edit_url: null diff --git a/docs/documents/security/create-key.ParamsDetails.json b/docs/documents/security/create-key.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/security/create-key.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/create-key.RequestSchema.json b/docs/documents/security/create-key.RequestSchema.json new file mode 100644 index 0000000..799566c --- /dev/null +++ b/docs/documents/security/create-key.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"}},"additionalProperties":false,"title":"KmsKeyAddDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"}},"additionalProperties":false,"title":"KmsKeyAddDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"}},"additionalProperties":false,"title":"KmsKeyAddDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/create-key.StatusCodes.json b/docs/documents/security/create-key.StatusCodes.json new file mode 100644 index 0000000..b6e7c10 --- /dev/null +++ b/docs/documents/security/create-key.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/create-key.api.mdx b/docs/documents/security/create-key.api.mdx index fcd5417..f9a21b3 100644 --- a/docs/documents/security/create-key.api.mdx +++ b/docs/documents/security/create-key.api.mdx @@ -5,7 +5,7 @@ description: "Create Key" sidebar_label: "Create Key" hide_title: true hide_table_of_contents: true -api: eJztWEtz4kYQ/iuqOeWBEd4kF9VmqzBsKo4PpoBUDoZKDVKDZi3NaGdG7LIq/nu6RxII8wh2XJvD4gOWRv38+ptpqQtm+cKw4IHdpYZNWyzjmqdgQdNiwSTesIBlWn2A0N5GrMWEpAVuY7zW8DEXGiIWWJ1Di5kwhpSzoGB2lZGisVrIBVuvWxtb4jWM8ExcLTFIoWRt7WMOeoU3EZhQi8zSo4CNY/DIARgLkdcd3HpbtWOOyMac54nFpWt0Oy1jRBM3KlqRfKikBWnpkmdZIkJO7vwPhnwW+4bVjOBDwwhkBtoKMPS0TOaQ+2YKWBnvEVaek163GE8WSgsbp6QKMk+pfF202GJDw6mIT+1ZYRNauINVt1Y2hCfjUSTIDU8GjcjmPDHQUEsNaUZR3yqnZeGz/WaSbRb4hx+/jaxJT4PJlDRlGm861/RvN+qeBo67Cr039oPjRpZw8SyYMHk8XM7GyZ0hMk8SPqPw6dxYk0mxxIDuzrc1KDVO2HxB/Q5YebV6ItQEOnodqVyH0LTXSzNUvLcx6H+x2Nu1sa6Ft7ZGqxS7gBYhKnbN5ua02TE+cjEay21udnINrVgSNLeydo43fUjAlmbcpePSb1wkeHHa1ch5gGczfFiR+tDmfu7WvnD2wtn/g7Mv6r4Xsl7I+vXJSso/dzr7rw43PPKG5Tv1a7w+1Og+TWiPJ1WwZ0huIa5EBca4wMq32FzplNty6ac3h5QjsAjyWX6ERE8yPCeoo5UotpkxXEeNtO8iMP+5yV2QPYXsi47iC6THISW1Xw4dGLeYkEZL3gg0fsF777VW2tUAv+n79716eHDoC8XDcwkDxCM2VhHNHZQ7ddz4IWB+NdwwfrEZc6xpcSki0Mbv6nzG2yMIc+wRK/8xRUGBEtiOqL0YF085Lck1wshiazMT+D7PRJuTcpioPGqHKmU0SjCVJadxA1xjmYKHafPRiJhUkqUW2OCNVst0nuKDgVjvj7/GnlWPQId/NSrp5pi2Fl/qnuCGJTFwTM7hR/Qdbscb7z/zNCtpVxnYVLjRZF1vdYSYKxdcVdBdsAYViO1uJvYiPi7q/T4eD2hWM5ET2VefZKKwXWDb9d5yL9Yw/3XCfCSURCz8GrOrumJtSmjCPMv1AiyK/j1LuHycsHfePerQCGiODfCtz99hTPU0KGDX7U67QzkRPVIuGwjs0Ggni01ZGn0LTTgiFBXDHurxGdElaI7SNiSjl4AdOHABiUby7q3JcQ0JEhNz0WBRzLiBP3WyXtNyOfoiPkXC0B6MNt35SbSbTntyMHYwJ4xhb/C25ElOko7YS65FeQA8K5DvhtX873vvmOua+nLV9FmHtEWUBoRf0TGWZj1FqWozUdrlg17p44re1xqKe32Y4i01umEImW3INuOYNs6uwf1ojGKzahCZqoikNf9Eg1T8deEpl607P9xawXAHLHK+INnSM/39A0bRjk8= +api: eJztWE1v20YQ/SvEnPpBi3baXogkgGynqOqDBUtFD5ZQjMiRuBG5y+wu5TAC/3sxS1KiLNmxXSM9RLpIXs7nm7e79FuDxYWB8BauMgNTH3LUmJElzYtrkJgRhJBr9ZEiO4jBByF5AW0CPmj6VAhNMYRWF+SDiRLKEMI12DJnR2O1kAuoKn8TS7xGEMzFyYq0EUq20T4VpEvwISYTaZFbfhTCOCGPE5CxFHv94cDbuj2UiGPMsUgthHAGVTWtayRjz1Vcsn2kpCVp+SfmeSoi5HTBR8M51/uB1YzhA5+BzElbQYaf1s0cSt9t4Soz3pJKz1lXPmC6UFrYJGNXkkXG4+uTAR9uDPIQ78ezwqa8cEVlv3U2jCdgHAtOg+mwU9kcU0Mdt8ywZxxfWuW8LH22302z3QH/9PP30TX7aTK5kqZu483pGX/tVn2hCS3xdu7sB8eNPEXxLJiWVA7ip+PkzhBZpCnOuHw+NyoOKVZo6erpsYa1xyMxXzC/A1FebZ4+RAy6UHKkCh1RN95FloMP1zYh/ZWIF7sxqtZ4G2tUZhlZLSLwoW82fzwedlzm5Go0Fm1hdnqNrFgxNAPZJgcfLiklW4dxPx2XfkeRUvyVVCOXgZ7N8JuG1Ic293O39pGzR87+H5x90e17JOuRrN+erOz86+np/qvDOcbeTf1O/RqvDy269xva40lT7BMstxA3pkJaWpAGH+ZKZ2jrpV/eHHKOyaJIn5RHSGNRRk8p6sFJrLedwVCrWUrZpavA/OdL7ojsY8i+6Cg+QvowpOz226EDYyAtaYmpNyK9Iu190FppN4P+cHB5fdGKB4f+Q/GuiIWBjGyiYtYdlDt1nPwQQtCIGyZYb2SOihdXIiZtgr4uZtgbUVRoYctgmZlgLeIqWFLJ14tx9dRqSaFTCCGxNjdhEGAuesjOUaqKuBepDFhKME0k53FOqElDeDvtPhoxk2qytAYbvDEXdTv38TGkrffn32PPqiXx4d9IJf3CJkqLL+2d4MSShDCmGj+m781W3vjwGbO8pl0TYDPhziXr7lZHiLlyxTUD3QVr2IDY6+dir+KHTb0/xuMhazUTOZGX6k6mCmPPJuS9RS/RNH83gUDlJDEXQYvZSTuxHjc0Ac+iXpB9N4F/ZinK5QTee9c5SZaA5iKltwG+Bx9aNSiEs95p75R7YnpkKDsI7NBop4vNWDr3VuXXRFg3DLtt5TOmS9iV0jYk45eAHTjAh2Xm7N1bk+Pa1IeEmRvewno9Q0N/6bSqeLmWvphPsTC8B+PN7Xyv2s1N+6gwdrCnJZV7wtsK04ItHbFXqEV9ADyrkB9uGv3vR++h1C31ZdnN2Za0RZQFwm+YWMRQTSu/3Uzcdv3gos5xwu9rHce9e5jrrT36UUS57dh265h2zq7h9WgMPswaITJTMVtrvGMhFe/q8pTr1p0fbm0NKcpFgQu2rTPz519G0Y5P sidebar_class_name: "post api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/create-kmip.ParamsDetails.json b/docs/documents/security/create-kmip.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/security/create-kmip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/create-kmip.RequestSchema.json b/docs/documents/security/create-kmip.RequestSchema.json new file mode 100644 index 0000000..f6b533d --- /dev/null +++ b/docs/documents/security/create-kmip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/create-kmip.StatusCodes.json b/docs/documents/security/create-kmip.StatusCodes.json new file mode 100644 index 0000000..f319513 --- /dev/null +++ b/docs/documents/security/create-kmip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/create-kmip.api.mdx b/docs/documents/security/create-kmip.api.mdx index fe3f006..b82ef16 100644 --- a/docs/documents/security/create-kmip.api.mdx +++ b/docs/documents/security/create-kmip.api.mdx @@ -5,7 +5,7 @@ description: "Create Kmip" sidebar_label: "Create Kmip" hide_title: true hide_table_of_contents: true -api: eJztWF2T2jYU/SsePTUti9m0ffEkmWGXdEoz02UWMn1YmI6wL6BgS44kk1AP/733SjaYADvLNtPkgTxsjHw/zj06kqxbMsvnhkUP7F1m2KTFcq55BhY0DZZM4g8WsVyrDxDbfsJaTEga4HaBzxo+FkJDwiKrC2gxEy8g4ywqmV3n5GisFnLONpvWNpb4GkF4Lq5WCFIoWUf7WIBe448ETKxFbulVxEYLCCgBGAtJ0B30g53bqUQUY8aL1OLQNaadeIwY4kYla7KPlbQgLT3yPE9FzCld+MFQzvIwsJoSfRgYicxBWwGG3vpijqVvloAzExjQKxFD4DyQCMaTRNB7ng4aIWc8NcigFTYF5ynyP9GjZ5VzsvDZfvcgm4T++NP3jZbcNJhcSePTv+xc03/72W41cFQfomjoxs1FnnJxVnm4eM4qzi02WaQpnxJ8WmAI+ZkkHYnkI5wTyVkeiWQst4WrEWSR0Y7Ul444v1a7sRUrcnyfJzjmkvQgheajo/g3LlL3cEuszUhJ0F3hoMs2aR1ArWd26AEOHQ5kGzHFVf4exjivytozSMi1xWZKZ5z2E/p9ZQVJjvypgOfErz0fiX/A8dMlbiou7itpH1ua5y7Mi3Ivyv12yn3WyXeR7EWy30qyFOCXTufwY+KGJ8G9/xr9Gh8UpzR1KD4P+AmWO3FVpgIxzkE3mcOhn18ec07AonyelEdIzCTjp4A6ORvlrjKG4+iR9RwC858PvAuzjzH7rA35QulpSsnt12MbRh8L0hgpoH0GdPBWa6XdHOBtuHd3W1+7j91ZArruIMIM7EIldGVXbttxN/eIhVVfwITltkOwocGVSPCWHXZ1MeXtIcSFFnYdLjM0FGix9FGNA+QbDYVGHtnC2txEYYjX+zYn5zhVRdKOVcboFm6qSM7jBrjGeYoeJs1XQ5KSV0ttsCUco76DwxZBHzddbYM//hoFVi2BDsCqy9AtsGwt/qnPRddnWADH4hyBpN/7XWfg7Wee5V53VYC6c0GuM+WgVPO3T82goqzdzcUBvtOmwe+j0YCaGmM5lj31SaYKTwe7gOAVDxYaZq/HLET9SKw8rBm6quenTfDHLLBcz8Gi6d/TlMvlmL0J7tCHeiUzPN5fhfwNYqrbJhG7bnfaHaqJxJBx2ah3XzV7ZWxnoXFOYQw372UlqIe60WTQO2o2nbaaoq+TPT5wAHVF9u7zy0kL9bAgoWLAspxyA+91utnQsG8SkXwSYWjNJdsT+Qu025P10RbS0ZqWKLIvW1QrnhZk6XS84lr4BX8WkB/uq07Zi+BU6lrpct3MWUPaMUqttP8xMU7NZoJW1dqhsv2LW5/jauQ/VGvHg3OX8HqPbhxDbhu2TRyTxlY1uBuO0GxatewylZC15p+o5Yh/HTzlqnXbhRsrGS6BecHnZOsz079/AY8hVRU= +api: eJztWNtu20YQ/RVinnqhRTttX4gkgGylqBqgFmwFfbCEYsQdSRuRS2Z3KUcl+O/F7JIyXUmG5QZNHuQXU+Rczpw9e5sKLC4MxHfwPjMwDaFAjRlZ0vyyAoUZQQyFzj9SYocCQpCKX6BdQgiaPpVSk4DY6pJCMMmSMoS4Arsp2NFYLdUC6jrcxpJfIggW8mxN2shctdE+laQ3EIIgk2hZWP4Uw3hJAScgY0kE/dEweHA7lIhjzLFMLcRwAXU99RjJ2MtcbNg+yZUlZfkRiyKVCXK66KPhnNVu4HzG9EHIRBakrSTDX30x+9J3S3ifmcCQXsuEAudR1yGgEJK/YzrqhJxjaigEK21KzlMWf2BGA5s7J0uf7TcPskvoDz9+22jZTZMpcmV8+lfnF/zvcbYrTWiJZd/RjRuLIkV5VHlSHFecm2yqTFOcMXyeYHX4UpL2RPIRjonkLPdEMhZt6WokVWa8Ig2VI87P1X5i5ZodPxQCrU8yoJS6j47iX1Gm7uGKWZuzkqi/RumzTcMdqO3I3nqAtw4HGahDSJr8A7RHVtl6BoJdQ5jnOkNeT/j3mZUsOfbnAl4Sv/V8Iv4Ox8+XuGm4uGmkvW9qHjsxT8o9KffrKfdFO99JsifJfi3JcoCfz893DxOXKIIbfxr9EgeKQ5raFZ8H/AzLB3E1plJZWpDuMieV/enVPmdBFmX6rDxSGYsqeQ6og6NRPVQGI53PUsoGDoH5zxveidmnmH3Rgnyi9DCl7PbLvgVjqCxphWnA6wzp4J3WuXZj0B8NB9dX7bV7350l4OsOhJCRXeaCr+y5W3bczT2GqOkLmKjadghqfrmWgrSJ+rqcYe+WklJLu4lWmYkqKepo5aMaB8g3GkqdQgxLawsTRxEWsofsnKR5KXpJngHfwk0TyXlcEmrSEN9Nu59uWUpeLa3BlnAs5HvabREMlSFtg9//HAc2XxFvgE2XoV/aZa7l3+2+6PoMS0JBnkDW781DZ+DdZ8wKr7smQNu5YNd57qA04/eYmlFDWa9fyB18h02D38bjETc1JmqiBvm9SnMUgV1S8BqDpab5mwlEeUEKCxm1DJ2149Nj+BMILOoF2TcT+GuWolpN4G1wXZDiXslcpvQ6wrcQQts2ieGid94755pYDBmqTr2PVfOojO0odPapOvTjXjWCumsbTQZCiLtNp62m+HTyiA8IYZU5e3f8ctKahrBkocZ3UFUzNPRBp3XNr32TiOUjpOE5J7Y78r/QbnfWJ1tIe2ta0WanRbXGtGRLp+M1aukn/FFAvrtpOmXfB4dSt0pXm27OFtIDo9xK+x8TSwH1tA7bucNl+w9XPsfZ2B9UW8edfZfxeo9+klBhO7ZdHNPOUjW6vh1DCLOmZZflgq013nPLEe89vNxV65YL966CFNWixAXb+sz89w+PIVUV sidebar_class_name: "post api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/create-kms.ParamsDetails.json b/docs/documents/security/create-kms.ParamsDetails.json new file mode 100644 index 0000000..9df9d02 --- /dev/null +++ b/docs/documents/security/create-kms.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/create-kms.RequestSchema.json b/docs/documents/security/create-kms.RequestSchema.json new file mode 100644 index 0000000..ffc2e98 --- /dev/null +++ b/docs/documents/security/create-kms.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/create-kms.StatusCodes.json b/docs/documents/security/create-kms.StatusCodes.json new file mode 100644 index 0000000..4a65f21 --- /dev/null +++ b/docs/documents/security/create-kms.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/create-kms.api.mdx b/docs/documents/security/create-kms.api.mdx index 163dbdf..e771766 100644 --- a/docs/documents/security/create-kms.api.mdx +++ b/docs/documents/security/create-kms.api.mdx @@ -5,7 +5,7 @@ description: "Create Kms" sidebar_label: "Create Kms" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/delete-key.ParamsDetails.json b/docs/documents/security/delete-key.ParamsDetails.json new file mode 100644 index 0000000..60d55d1 --- /dev/null +++ b/docs/documents/security/delete-key.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/delete-key.RequestSchema.json b/docs/documents/security/delete-key.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/delete-key.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/delete-key.StatusCodes.json b/docs/documents/security/delete-key.StatusCodes.json new file mode 100644 index 0000000..7fc009c --- /dev/null +++ b/docs/documents/security/delete-key.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/delete-key.api.mdx b/docs/documents/security/delete-key.api.mdx index 55d8bde..c66a72c 100644 --- a/docs/documents/security/delete-key.api.mdx +++ b/docs/documents/security/delete-key.api.mdx @@ -5,7 +5,7 @@ description: "Delete Key" sidebar_label: "Delete Key" hide_title: true hide_table_of_contents: true -api: eJztWFGP4jYQ/iuRn3oSR+j2+hJdT6LLnrq9qosWqntYUGWSgfg2sXO2Q0uj/PfO2AmEZaG0XZ3ugSeIM/PNzDdjT8YVs3xlWPTAPuSGzXus4JrnYEHTYsUkPrCIFVp9gtjeJqzHhKQFblP8r+FzKTQkLLK6hB4zcQo5Z1HF7KYgRWO1kCtW170tlngJkEfYvIgzvBCv1xisULJF+1yC3uBDAibWorD0KmLTFAIyAMZCEgzHt8FO7ZghwljyMrO49C2anZOPplDSgCHpq8EV/ewbGsYxFGgDtWMlLUjrgOFPGxYZJw+rQ4NqQelBFUxUAdoKb8Cz9KxfXZOY+gBFA5cZWWYZX2TgWawJUqy5hQ/nY429xglMz/65fjnpZ1B4tlJa2DQnKJBlTnU8xNB77N5wquan+FZY0mcYzLBVNgyhYg2crE5UqWPo4l3nBSre2RT0PyBe72PUrfAOa7LJcW9pEaPi0GwfTsNO8ZXz0VhuS7MXa2zFmqi5la1xfBhBBtbDuL+ult5zkeGf06YmzgJZI3aTRBAiz8adolryzEBHKTeod99U9cgqr1oUmYidP+Enoy41e6nZr75m3Ql7KdZLsX79xUrKbwZvDr8dflU2eK9K+SIfDy23T8M5qJLG1TMkdwQ3ogJ9XGHee2ypdM6tX/ru6jnlBCxSfJYdIdGSjM9x6mgeql1kDNdRIx85D8z/bnEXZk8x+58O4gulxyklte8Hg8Pj4hYD0ogUTEDjNBPcaK20ywHON6O763aQ2tfyR16ApxI6iAdsqrBroQytUl5oGItY2IyMJqy2w2NNi2uR4OAUDnW54P0JxCX2iE34mKOgQAlsR/jP9dWaRivnmZ9FS42EstTawkRhiJNbnxNInKky6ccqZzRgmQbRafwIXGPCood599WEasqXTSuwZR5RfWBPmUJHbPDzx2lg1SNQE2gGyGGJBGjxV9sb3AiZAscgHZNCLpXDb7KzH/e44aM/LMSB0eOiwU/T6ZiG0JmcyZH6Q2aKJwF20OAtD1INyx9mLMTqkBhO2Ib9uiW/T5trxgLL9Qosiv6+yLh8nLF3wR3q0Gy7xF72NuTv0Kd2zMURtj/oD6hPFsrYnLv92bCwVxN7UWyZ7TQhhHC5rJpieWjvF+jDIureNWzrhfr5Hh24gDVD8u4DiMqGHvwHGSY7RR8JuaoW3MBvOqtrWvbDPdVGIgztrGTbcZ+4ve2fJ0f/Z4NDJw6uFtY8K0nSFemaa+G39b9y5Jv75objVXDMdFvGctO12bq0o5auQL6gYfHFLfpCqOco2OxG4tq/81csHa0u8LxzqI1ufrmZ3uA+/huGbZCE +api: eJztWN9v2zYQ/leEe9oA1XKz7kVoC3hximUeFiP2sIfYGGjpbLGWSJY8udME/e/D6Ycjx3GabUHRBz8lpnjf3X38yOOxBBIbB+EdTDIHSx+MsCJDQsuDJSiRIYRgrP6IEV3H4INUPCAoAR8sfsqlxRhCsjn64KIEMwFhCVQYNnRkpdpAVfl7LPkSIFssXiQYYeSrHVonterQPuVoC/AhRhdZaYg/hTBP0GMH6AhjbzS99u7NTjlijLXIU4IQXkNVLTlGZ7Ry6Hj2xfCC/xw6GkURGkJOLtKKUFENjH9RYFLBEZbHDvWKlwd8XiiDlmTjoGHp0bj6LieZ87ZYePXKqDxNxSrFhsWKIeVOEE6ejzVtLJ7AbNh/blz17EdQRLrRVlKSMRSqPGMdj9CBD7dOsJof4pMktocJFqPO2EHlQ2RRsNeZzm2EfbzLzIAPN5Sg/QLi5SFG1U2+x5oVWYZkZQQ+jNz+x9Ow88JgHaMjQbk7yDUiuWNqrlXnHHwYY4rUwNT/1lr6IGSK8RdczWoP7I3ZjWPJiCKd9kS1FqnDnlHmJljctqoek25MjUllVMcTfHT6rNmzZr95zdYn7FmsZ7F++2Jl4zfDN8d3h980eR90rl7k8tBx+zCdI5W0oT5j5j3B7VSpCDdowYe1tpmgZuiHi8eMYyQh02f5kcqRUNFzgjq5DuV9ZjC1epViNq4jcP+7xJ2ZfYrZ/3QQnyk9TSmb/TgcHh8X14rQKpF6M7Q7tN6VtdrWazCaXo9vLrtG6tCqOfK8CXKTlCElOoYQ4nqU14WbsRCCtmV0QblvHise3MkYrQtGNl+JwQyj3Eoqgm3mglLGVbDFwgVlXVcrbq3qyJpeNLcphJAQGRcGgTByIBgkSnUeDyKdATdYrkWsLX5CYdFCeLfsf5qxphrZdBP2zAsjm8QeMuXQkvfLH3OP9Ba5CLQN5CinRFv5d1cb6hYyQRFjw6RUa13jt6tzmPe05WMwMvLI6emp3s/z+ZSb0IVaqLH+rFItYo8S9N4KL7G4freAQBtUwsigS/tVR/6AN9cCPBJ2g/RuAX+uUqG2C3jv3RhU3NuuZYpvA/EefOja3BBeD4aDIddJox1lot6fLQsHmjjIYs9srwhVfrOWZSuWu+59gS8WYf+tYa8XrucHdIAP26yeX1+AWDb8o7mQLX1ItCNGLsuVcPi7TauKh5vmnrURS8c7K95X3Adh7+vnk63/o8ltsTh6WtiJNOeZtUh3wspmW/+rQL67bV84vvdOue5krIq+zy6ke2r5CeQrOpZf3WMjhGpZ+d1uZK6bb80TS8+qD7zsHWrjq1+v5ldQVf8Ahm2QhA== sidebar_class_name: "delete api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/delete-kmip.ParamsDetails.json b/docs/documents/security/delete-kmip.ParamsDetails.json new file mode 100644 index 0000000..ccce8aa --- /dev/null +++ b/docs/documents/security/delete-kmip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"kmipId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/delete-kmip.RequestSchema.json b/docs/documents/security/delete-kmip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/delete-kmip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/delete-kmip.StatusCodes.json b/docs/documents/security/delete-kmip.StatusCodes.json new file mode 100644 index 0000000..dbd4b92 --- /dev/null +++ b/docs/documents/security/delete-kmip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/delete-kmip.api.mdx b/docs/documents/security/delete-kmip.api.mdx index c42db46..c1c6dbf 100644 --- a/docs/documents/security/delete-kmip.api.mdx +++ b/docs/documents/security/delete-kmip.api.mdx @@ -5,7 +5,7 @@ description: "Delete Kmip" sidebar_label: "Delete Kmip" hide_title: true hide_table_of_contents: true -api: eJztWN9v0zAQ/lcsP4HUNWXASwRIZR2iDMG0FfGwVshNrqtpYgfbKYwo/zt3TtKmtJ02mJCQ+tT0cj+/+2znXHAnri0Pr/hZavmkwzNhRAoODAkLrvAPD3lm9FeI3DDmHS4VCYSb47OBb7k0EPPQmRw63EZzSAUPC+5uMjK0zkh1zcuys/IlH8LJIpXZg2QjMnm0xGqlVo23bzmYG/wTg42MzBy9CvloDowCgHUQs/75kK3N9gUiHzORJw5FTzDshHK0mVYWLGkf947pZzNQP4ogwxhoHWnlQDnvGH64IEsEZVhsB9RT6g+aYKcyME5WARDrnUm142HjmQWzlBEw3xuVJ4mYJlDBWHZqqO7jx1vs8FR5uI8nr7nDk3XC5b5GUHlKBB6qEwPCVR3pR04uyfBTFqPMBxlAAu1HD/EbIRP/cEKozWQkHPSXKPTRJp2tVJ10lAa/rBK89Hkg2phTVMcfoI/7VdlYsphMO3ymTSqINfT/yElEsyR7KuBP/DeWt/jfwhgDijiWZCaS8xatZiKxsAYC49RYXNTcHjjNvXmWJQQoegi+Wn1g7oG5/wlz/W57oOyBsv8LZcnBs96z7a+JD9qxNzpXD/I5sY9R29Sr0r2D5ppatarEHK/BtHFD0dPjXcYxOCTPneJIhZFUdJek9vaiWFfGUY4W6cBnYP/6uDsgexuyf7QdHyDdDymZPe/1treLIRZk0BOjXQYMOzVGG98DnHgGH0+a0WrTqtrh2RkOZZghjo9zHdN+58XUGJrPQh7UY6QNitVAWZJwKWOcpYK+yaeiewlRbqS7CRYpKkrUoGEvKKqRr6Rxy+dWDai5QUj53LnMhkGA01xXkJco0XncjXTKaeiytUtv8RqEwZaFV5P2q0tiVUWcRmGFPXo9g+2JcIi7r3Hs3ecRc3oBdBLWQ2U/RwSM/NkckH6snIPAKj2WUs2091/3Z7Pw8xqQbj+TW0H3q7K3o9E5DaZjNVYD/V0lWsTM4dj6QrC5gdnLMQ+QHwrLCZqyjxr0u7S8xpw5Ya7BoeqXaSLUYsxfsY9oQ/PuDA/vF4F4hTk1oy+Otd1et0fnZaatS4VfoTUKm6zYKGMFbescQh++mUVNl6vm1sGiddi+gVgxhr49NvBAAbKG9P3H1aIKHda3BdjuOWZJrotiKix8MklZkrga+YkdsbS0uuLVyftb3qsz9NYLgZ3VLZBDv184LEWSk6an6VIYWS3teyXy6KK+93jM9oVuiKxu2jGblNbY0sXIPwws/3nEmgnlBDXrBUlgVy+rm5eWWdvzpLWxDU7fn45OcSn/Akp3pUQ= +api: eJztWFFv2zYQ/ivCPa2AYrlZ9yK0Bbw4xbwMq9G42ENsDLR0jllLJEue3HmC/vtwlGTLtR0kXVCggJ8sU7zv7r77SOpYAol7B/Ed3OQOZiEYYUWOhJYHS1AiR4jBWP0JExqlEIJUPCBoCSFY/FxIiynEZAsMwSVLzAXEJdDGsKEjK9U9VFW4xZLPAbLKpXmWaISRF2u0TmrVon0u0G4ghBRdYqUhfhXDZIkBO0BHmAaD8SjYmZ1yxBgLUWQEMbyEqppxjM5o5dDx7Mv+Jf/sOxokCRpCTi7RilCRB8Z/KDKZ4AjLQ4d6zvWBkCtl0JKsHcj0eFBdfze5CxzatUww8LVRRZaJeYY1jVXYUPUUHG9xBKlGeAqSn3kEyZGgwueIqshZwCN1ZVFQXZFBQnLNhh9NKqh2MsQMu4+e4ndCZv7hillbyEQQDtZC1t5m4UGoJInDgNs6wFsfBzqoQkga/0NBT8yytQxSNg1hoW0uWDX8/4Jkjoyf+gS+Bb+1fAD/gOMqBJGmks1ENu7IaiEyhzsibnLXcPGh0faQNHhzYzImVGoVfXL6rNyzcn8Q5frd9izZs2R/FMkywKv+q8OviT81Be90oZ7lc+KUog6lV4f7iJk7aTVTpSK8R9vlTSr6+fKYcYokZPYoP1I5Eip5TFAna1HuMoOx1fMM86GPwP3v4+7M7EPMftN2fKb0NKVs9ku/f7hdjBShVSILeJdBG1xbq62vwWA8Gr6/alurfat6hw9ucmkghBxpqVPe7/wwF4b7sxiipo10UbltKCseXMsUrYsGtpiL3i0mhZW0iVa5i0qZVhE3e1FZt3wVt1s+trpBLWwGMSyJjIujSBjZE4ySZLpIe4nOgZsu10B6i19RWLQQ3826r25ZVbVw2glb7oWRN3jYEY6UQ0vB739NAtIr5JOwaSoHBS21lf+2B6RvK5coUqy5lGqhPX5Tn/3Exw0hvYGRB05PTw1+m0zG3JhO1VQN9ReVaZEGtMTgtQiWFhdvphBpg0oYGbVpX7Ts93h5TSEgYe+R3kzh73km1GoKb4P3BhX3uwuZ4etIvIUQ2tY3hpe9fq/P56XRjnLhV2jDwr4q9tLYUts5h6qwLmbZyOWuvXVwEELcvYHYKoa/Pfb4gBBWuZ/vP65Wteu4uS2YhbDUjhi6LOfC4UebVRUP1y0/qyOVjldXuj15v4p7e4Y+eCFwNLsVbg4uHNYiK3iml+laWFkv7ScF8tOH5t7jRXDKdStkten6bEPaccsXI9/RsfzuHhslVLMqbBckk12/rG9eOmZd5FlnYxte/3E9uYaq+g9Kd6VE sidebar_class_name: "delete api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/delete-kms.ParamsDetails.json b/docs/documents/security/delete-kms.ParamsDetails.json new file mode 100644 index 0000000..fc4ba4e --- /dev/null +++ b/docs/documents/security/delete-kms.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/delete-kms.RequestSchema.json b/docs/documents/security/delete-kms.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/delete-kms.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/delete-kms.StatusCodes.json b/docs/documents/security/delete-kms.StatusCodes.json new file mode 100644 index 0000000..53d1af4 --- /dev/null +++ b/docs/documents/security/delete-kms.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/delete-kms.api.mdx b/docs/documents/security/delete-kms.api.mdx index 94c2133..532b421 100644 --- a/docs/documents/security/delete-kms.api.mdx +++ b/docs/documents/security/delete-kms.api.mdx @@ -5,7 +5,7 @@ description: "Delete Kms" sidebar_label: "Delete Kms" hide_title: true hide_table_of_contents: true -api: eJztWltv2zYU/isEnzbAsdysezHaAm6doV67xUhc7CEJBlo6ttnQpEpS3jJD/33n6OLIl6Rs4g570FNs6dxv/OicNfdi7nj/in9YOn7T4amwYgkeLD1cc41feJ+n1nyG2I8S3uFS0wPhF/jZwpdMWkh439sMOtzFC1gK3l9zf5cSo/NW6jnP885GljyGEJHKkxUaKY2upX3JwN7hlwRcbGXq6VWfTxbASAE4DwkbjEfsnu0hRSRjJjLl8dELVHtDNrrUaAeOqE97p/RnW9EgjiFFHcgdG+1B+0Iw/O2jVAmycL2v0EwprMiCAU7BelkqwASIRPgASgzmAfN1ppSYKigjmnd4ZmUQXRndAEJlYlE6/jULY5OEiYxNpj1mMIhW+jDCYIdWQmUhlEgqkkSS70KNG57OhHJYvF56ouUfqwBdVIUz9IbnnbqRjpTYUGPGpdYdW8rO3ygR1grqH+lh6Q5036E0CA9zs5WzB9wJzgOyrWQCNogYCYwy8wD9gX0SaGZo3CeVfVuBD2V+VwV3J2uxhaKwhvj6kKkzY5eCJhcOEDjxEh06lDmSAsnbsC7KUhL2PI2ljFCN9ZA+Xi5+q2bqTjidFz5zXy8gogucY0dJUCIdfb8szBvpmQmocTcsmZq1PjVGgdDkKtrl0PNvaPmiH2ElTeYu/5dxCh+ATS+e1I7D3YTsFNJMSJVZuCiCfMS6PWDybswfz8hUKoUWjMFKc3AK7gOmioWlBQ/DTLDbpeuyc63u2HuTWSYdEwzPTJmw8uR8sn+IO+/fPikzKGGPL02VLA/g6HOVjxZ8teCrBV8t+GrBVwu+WvDVgq8WfH0n8FX85tWirhZ1tairRV0t6mpRV4u6WtTVoq7virqI82XvJfm67dvvxrNfEGYc5f+S5duQU6q0M4BybxhJtHGOh2GjG/DRT6cHJwYOOKmC9EiNmnT8rKNunW/hC+RYDgsL3LN/dGwj+1hkn3SjaEP6cEiJ7edeb39cjNAhi5LYJVgEJOzMWmOLHAzGo+H5u3pHY5trCAo8MFoh6dBNbkFTF2noKeWF9jz6PKpuAi5ab/ZJ8qhGvy4a2GwqupcQ49XN30U4fqO1THIU4Apjyo2UzGIM+cL71PWjSKSyK4gvViZLurFZclrXcJWQguMtCEvo+uqm+eqSyqislJrgHiSk8gPs75KMcNxaz379Y8K8uQVaIanWUQYZ+mzlP+UFsVpIWYAgVJ8XCa3QTJWQbVfHVQi6g1TuKX2YlL2fTMa00nKtr/XQ/KWVEQnzeJi9EmxhYfb6mkdYEBrdiWq3T+p4d6mfrjnzws7BI+mfUyX07TV/w86RhzZlZlLBq0i84Q1wyl90e91ecSAb55dC3191tstgy4tNZBvnTnFHL/qhrI+r+qZI3P3mxtGmRPDzdjjwwW2hrY+3HUzuAm0iSev1VDj4ZFWe0+NyNYhqIdnAxepE3TFzc0Q+ujh00JlbrJjdxaTqis2LolwJK8vO/SZDfrio9qN+ZA+prstW3zV11ibdh5IWqP5DxZiT/AapqkYgt8sX5a5Ug6Up9aYxQoZnH88mZ9hC/wKPe5nK +api: eJztWltv2zYU/ivEeVoBxXKz7sVoC7h1hnrpFiPx0Ic4GGjp2GZNkSp55M4z9N8H6uLIl6Rs4g570JNh6dxv/GifDRCfW+jdwmVi4S6AlBueIKFxDzegeILQg9TozxjRMIYAhHIPOC0gAINfMmEwhh6ZDAOw0QITDr0N0Dp1jJaMUHPI82ArS5xCCE/F2QqNFVrV0r5kaNYQQIw2MiIl96oH4wUypwAtYcz6oyG7Z3tIkZMx45kk6MFLyPM7Z6NNtbJoHfV599x97CrqRxGmhM65SCtCRYVg/JvCVHJn4eZQoZ66sELgApyiIVEqSJB4zMmDUsTHzFeZlHwqsYxoHkBmhBddGV0PQqkjXjr+LQsjHfuJjHSmyKz9aAX5EXo7tOIy86HMA+BxLJzvXI4ans64tBgACXK08LEK0HVVOAPSkAd1I50osb7GjEqte7aUnb9Vwo3hrn8EYWKPdN+xNHDCud7J2QPueOchNXolYjRexLROtdRzD/2efeJppm/cx5V9O4H3ZX5fBXcva5HBorAGnI6aOtMm4W5yxZzwjESCRxvIScH4nV8XZakT9jyNpQxfjfWQPl0ufq9m6l44LXHK7LcLyNF5zrGTJCgW1n2/Kcwbqpn2qHE7KJmatT7VWiJXzlWD3Gr1PS1f9COuhM7szf8yTv4DsOnFk9pxsJ+QvUKacSEzg9dFkE9Yt0dM3o/54xmZCimFmo/QCH10Ch4CpoqFpQUPm2nDlontsCsl1+yDzgwTlnG24lLErDw5n+zfZWLv3z4pM5fJIV+aSlEewOHnKh8t+GrBVwu+WvDVgq8WfLXgqwVfLfj6QeCr+M2rRV0t6mpRV4u6WtTVoq4WdbWoq0VdPxR1Oc5X3Vdw8LfkH5rYrzpTJ/lfsnzrc0qVdnpQHgwjoQjnaJrdIBT9fH50YiBxIb30CGWJq+hZR90m38EXU4nJoLDAPvtHxzayj0X2STeKNqQPh9Sx/dLtHo6LoSI0ikt2g2aFhl0Yo02Rg/5oOLh6X+9o7HINUCIhcyskgbvJLdzUhbh46vLi9jx6EFY3ARtutvskeVijXxv2TTblnRuMMiNoHS4TG25EnLtFjcKYciMlMxJ6sCBKbS8MeSo63PFFUmdxJ9IJuHUNWwkpON4hNw5d3941X924MiorpSa4BwmpuMTDXZKhsmiI/fZpzEgv0a2QVOso/YwW2oh/ygtitZCyQO5QfV4ktEIzVUJ2XR1VIej0U3Gg9GFS9mE8HrmVlomaqIH+qqTmMaMFstecLQzO3kwg1CkqnoqwdvusjnfH9dMEGHEzR3ozgb+mkqvlBN6yqxSV25SZCYmvQ/4WGuAUXna6nW5xIGtLCVf3V53dMtjxYhvZxrlT3NGLfijr47a+KTruXnPjaFsiEOyFAwJYFtp6InbbSwttyUnabKbc4p9G5rl7XK4GuVqIt3CxOlH3zNwekY8uDh11Zonrg8Wk6ooNRVGuuBFl536XIT9dV/tRL9hDquuyVeumztqk+1C6Bar/ULGIIb/Lg7oRnNvli3JXqsHSlHrXGCGDi48X4wvI838Bj3uZyg== sidebar_class_name: "delete api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/download-kmip-certificate.ParamsDetails.json b/docs/documents/security/download-kmip-certificate.ParamsDetails.json new file mode 100644 index 0000000..ccce8aa --- /dev/null +++ b/docs/documents/security/download-kmip-certificate.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"kmipId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/download-kmip-certificate.RequestSchema.json b/docs/documents/security/download-kmip-certificate.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/download-kmip-certificate.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/download-kmip-certificate.StatusCodes.json b/docs/documents/security/download-kmip-certificate.StatusCodes.json new file mode 100644 index 0000000..15ac8cf --- /dev/null +++ b/docs/documents/security/download-kmip-certificate.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"key":{"type":"string","description":"Certificate key"},"cert":{"type":"string","description":"Certificate"}},"additionalProperties":false,"title":"Certificate"}},"application/json":{"schema":{"type":"object","properties":{"key":{"type":"string","description":"Certificate key"},"cert":{"type":"string","description":"Certificate"}},"additionalProperties":false,"title":"Certificate"}},"text/json":{"schema":{"type":"object","properties":{"key":{"type":"string","description":"Certificate key"},"cert":{"type":"string","description":"Certificate"}},"additionalProperties":false,"title":"Certificate"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/download-kmip-certificate.api.mdx b/docs/documents/security/download-kmip-certificate.api.mdx index 657a6c7..11bb9b5 100644 --- a/docs/documents/security/download-kmip-certificate.api.mdx +++ b/docs/documents/security/download-kmip-certificate.api.mdx @@ -5,7 +5,7 @@ description: "Download Kmip certificate" sidebar_label: "Download Kmip certificate" hide_title: true hide_table_of_contents: true -api: eJztVktP20AQ/ivWnlopxCmlF4sipUDbNFKJSqoeSFRt7Em8xN41u2va1PJ/74xfOCRB0CIOiFPi2fnmvTtfxixfGOZdsGFs2LTDEq55DBY0CTMm8YN5LNHqEnw7CFiHCUkCbkP8r+EqFRoC5lmdQocZP4SYMy9jdpUQ0Fgt5ILleaexJR7DyDIWyaNEwxOxd43ZCiVra1cp6BV+BGB8LRJLRx4bh+CQAzAWAqc/Gjg3sF2OyMacp5FF0Rt0O6UYTaKkAUPa+70e/aw7OhsizlfSgrSFSfht3STiFFu26UrNqDMIwR4loK0oTS9htT2etqtj0p8Ln1twCJCjYxQ9CEjVZDwIBB3xaNSKYs4jg22wwkawDZQkEX0hzr006rmlV/Tt2eVFsIPewebYflXW+ahSGTzG9Janm+nINIr4jMKiG543Qd5D01hu05ZxvOsWFqBRd650zG0peru/DRyA5SK6lx8h0ZP07xPUzg5kN5kxlCMiPikiMP99cV4qe1dl/+nOvpR0d0kJ9m7blhtgQhotOeegcZE6p1orXfQAV+vJ2XG9w9dRJ+qXjBQPnCHuf8dvvUwdhqwlVLj72QKKHhEn8JhbURfjZg2JyUl4LQLc325fpzPePQc/1cKu3GWMigI1iGC4WUkzcjeo/NKuL+It2VGqscwstDYxnusilehyMudHKg26vooZbXxT2S4QH4BrbKN3MW0fndOklcNUKzT9QKtD2KQjA+QQ2jpffowdq5ZALKRiNP0U66DFn+J9qDlNCBzTLeor5FwV9querVdgVFWm20/EhtPdqs7n8XhErGgiJ7LpkkXOdMidUMP8/YS5ODMS03HrtPfqNnTpyk2YY7nG5qHqz1nE5XLCjpwzxBDZmosIDl1+hDHVvAs5VbfX7dH6S5SxMS9ubVWFuyZlLamm0K1NhRaL1mbVFF3UBNgg2muT4WaQ8P96dVCAw0T6BeGlSaKPhrg2I4VzEGL45CXLZtzAdx3lOYlLIkpjEwhDVzFolvOtFJqFeydN3ZpowThu0eBrHqWkWczvNdeifAceFMirbxUbf+3scl1PuFy1fdYh3ZSZ6PoTOhZP7rEainyKmtVNpWKXh33fh8S2YG3L09a79+l0jBf8LzQsxM0= +api: eJztVktv20YQ/ivEnBJgIyppeiGcAEqctqqBWKgV5GAJwYociRuRu5vdoVqV4H8Phi/TlmQ4rZFDkBPB3Zn55rnzlUBy4yG6hovcw1KAlU7mSOj4sAQtc4QIrDOfMaZpAgKU5gNJKQhw+KVQDhOIyBUowMcp5hKiEmhvWdGTU3oDVSV6W+oxjGxzZR/FG2nVsx06r4zurH0p0O1BQII+dsoSX0UwTzFgAPSESTCZTYMbtVNAbGMti4wggudQVUv20VujPXqWfjEe8+c20OUFCIiNJtRUm8R/KLSZZN/KQyiz4sqA4BpZdKQa01vcH/dnCPWW5dcqloQBK1QCYnT0TYqcTZBJovhKZrOBF2uZeRRAijI8pmRtxn/K6PCzNz9aeHXdfri4WO3l+OVh2743FPxmCp08Rvc2t4fh6CLL5Ird4gmveicfIOlJUjEwDkoTbtCBgLVxuaTm6JcXx5QTJKmyB+Eo7Unq+CFOnaxAeRMZzJxZZZif1x74/z04PzN7X2b/08z+TOnplLLar8e23FQTOi2z4ArdDl3wzjnj6hpMZtPzy7fdDr+tdW7+1pmRSXCRKxvEg5dJQI6UmgQi2GBdI+YEEYQtdfFh2ZOYig93KkHnw4krVnJ0hXHhFO3Dbe7DUiVVyAQjLBuaUYVJi8u7vva3YUeFyyCClMj6KAylVSPJ5uLMFMkoNjnwxvet7VrjDUqHDqLr5fDqijutaaZOoK+HtOoCD+nIVHt0FPz5cR6Q2SKzkJbRTApKjVP/1u9Dx2lSlAk2+VV6bWr7bc1uZ2DWZmY0seoA9LRo8Md8PmNWtNAL3VeJUgzOZJA6XL9aQGgsamlV2IX9rCvDiEduAQFJt0F6tYBPq0zq7QJeB5cWNZOttcrwLJSvQUDHuyJ4PhqPxrz+rPGUy3pq2yzc1ym3guoTPdhUlWhKW7ZddN0RYA8CoiEZ7hsJxJ3sgIBtXsvXhJc7iX964tq31FJAajwxSlmupMcPLqsqPm6IKLdNojyPYtIv5zsh9Av3Xpp6NNCacdyhwTuZFSxZ9+9OOtW8A9/kyJO/Wjb+NDgF3XW43g8xO5du0sx0/TsCq++O2DZFtaxEN6mc7OZyEsdoaaA2tLwcvHu/v5tDVX0FNCzEzQ== sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/get-key.ParamsDetails.json b/docs/documents/security/get-key.ParamsDetails.json new file mode 100644 index 0000000..60d55d1 --- /dev/null +++ b/docs/documents/security/get-key.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/get-key.RequestSchema.json b/docs/documents/security/get-key.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/get-key.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/get-key.StatusCodes.json b/docs/documents/security/get-key.StatusCodes.json new file mode 100644 index 0000000..fec3da5 --- /dev/null +++ b/docs/documents/security/get-key.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/get-key.api.mdx b/docs/documents/security/get-key.api.mdx index 2b39a7e..9595b17 100644 --- a/docs/documents/security/get-key.api.mdx +++ b/docs/documents/security/get-key.api.mdx @@ -5,7 +5,7 @@ description: "Get Key" sidebar_label: "Get Key" hide_title: true hide_table_of_contents: true -api: eJztWEuP2zYQ/isETy3gWE6aXow0gLtO0u0CXWPtIIe1UdDS2GJWIhWScuII+u+doSRbXj/qtIsgB58kUTPfvD5yNCq4E0vL+/f8JrV81uGZMCIFB4YWC67wgfd5ZvRHCN11xDtcKloQLsZ7A59yaSDifWdy6HAbxpAK3i+4W2ekaJ2RasnLsrPBkk8B8gDrJ3FGZPLZCoOVWjVon3Iwa3yIwIZGZo5e9fkkBkYGwDqI2GB0zbZqxwwRxkLkicOl52h2Rj7aTCsLlqRf9Hp02TV0e4N6oVYOlPOQ8MUFWSLIt2LflJ5TYVAFS5SBcbKCrvJz0KO2MSw6Q1Hma6LyJBHzBKr8lQQpV8LBzflYo0rjBGaV93P98tIHUESy1Ea6OCUoUHlKDB5g6B1+ZwXx+DG+k470OQYzaJQtR6jQgCCrY52bENp4V2mGircuBvMviFe7GGUjvMUar1PcVUaGqDiwm4fTsBN85X20Trjc7sQaOrmi1Fyrxjg+DCEBV8H4W6ASvBUywZvTpsbeAlmj7EaRJESRjFqkWojEQksptah3V/N56HSlmmWJDL0/wUerL5y9cPaH56w/YS9kvZD1xycrKb/svdz/avhLO/ZW5yp6io+HJrePw9ljSe3qGZLbBNeiEn1cYt07fKFNKly19MuLQ8oROEzxWXakQksqPMepo3UotpFxXEeNdOg9sP+7xV0yeyqz/+kgvqT0eEpJ7ddDQ8Y1BmQQiY3B4BzD3hijja8BTjbD26tmhNrVegeO4ZGE3uHpGmtsWXwJviI0gPV5UI+JNig2A2NJiysZ4bAUDEw+F90xhDl2h3XwkKKgRAlsRHjnO2pJ45T3qZo/c4Op5LFzme0HAU5rXUEgYaLzqBvqlNNQZWtEr/E7CIOl6t/P2q/GxKaKMI3AJueIWkX1OEfoiGN/fpgwpx+Ajv96aBzkGL2RX5uu4MfGGAQG6XMo1UJ7/Louu3GP6nx0B5ncM3pclP0xmYxo8JyqqRrqzyrRImLYO9krwWIDi9+mPEBeKAwnaMJ+1iS/S9tqypkTBkuGon/PE6Eepvw1u0UdmmcX2MVeBeI1+tSMtji2dnvdHnXITFuXCr8z6yxs2bATwiatrd6D+r6QRc2U++aHAn1P9Ns/FzZkoTa+kwtcQMKQvP/uIc7QQ/UdhpWO0UFCLoq5sPDeJGVJy9U0T8SIpKUNFW0a7SO3N23z5Kx/MDh0Yu9fwkokOUl6hq6EkdVu/iZHfrqrf2n8zI6Zbjis1m2bjUvb1NI/j+9oWH53ixURyhkK1luRcl29G4QhZK6l1QaetY6zd28muIP/AXqfiZc= +api: eJztWE2P2zYQ/SvCnFpAsTZpehGSAO5ukm4NdI21ix7WRkFLY4sxRTLkyK0q6L8Xow9b3q9s20WQg0+2qJk3wzePIocVkNh4iG9gkntYhmCFEzkSOh6sQIscIQbrzCdM6DKFEKTmAUEZhODwcyEdphCTKzAEn2SYC4groNKyoycn9QbqOtxjyecA2WL5LMkIK1/s0HlpdI/2uUBXQggp+sRJS/wqhnmGAQdAT5gG4+llcHB7KBBjrEWhCGJ4CXW95By9NdqjZ+tXZ2f8cxzoagIhJEYTamog8S+KrBKcW3U3lFlxYSDkEll0JFvolp97MxoGm+Q+2GIZNDXRhVJipbDlr2ZIuROEk6djTVuPRzBb3p+aV2N9D4pQG+MkZTlDoS5yVvAYPYRw7QXr+DY+SWJ/mGA57p091CEkDgVHnZnCJTjEO88thHBFGbovIJ4fY9S98QFrVuY5kpMJhDD2+4fHYeelxSZHT4IKfzTXhOSOqbnUfXAI4QIVUgvT/EUuwQchFaZfCDVrInA0ZjdNJSMKNR2Iai2Ux4FT7idYXnd6viDTulqrZNLkE33y5qTZk2a/ec02X9iTWE9i/fbFys6vz17fPTX8aij4YAqdPsfhoef29nTuqKRL9QmWB4I7U6kJN+gghLVxuaB26IdX9zmnSEKqJ8WR2pPQyVOSerAO1WFmMHVmpTC/aDLw/3uLOzH7GLP/6UN8ovRhStntx/uajEtN6LRQwQzdDl3w3jnjmhqMp5cXV+d9C3Xs9REpmCD3RjlSZlKIYYNNRbgBiyHq2kQfVfuGsebBnUzR+WjsipUYzTApnKQy2uY+qmRaR1ssfVQ1O2rN7VSTU9t/Fk5BDBmR9XEUCStHgkESZYp0lJgcuKnyHWLj8RMKhw7im+Xw1YzV1AqmN9hzLqxsZ3WbI4+Ogl9+nwdktsif/65pHBeUGSf/7neFpm3MUKTYcij12jT4XV2O5z3t+BiNrbwT9GHT4Of5fMqN50Iv9IX5Uysj0oAyDN6IIHO4fruAyFjUwsqon/aLnvwRL6sFBCTcBuntAv5YKaG3C3gXXFnU3M+upcI3kXgHIfStbQwvR2ejM94hrfGUi2Zldiwc1HA0hT2tg72nDttCVp1SbvoLBT5PxMPLhb1YeBs/4gJC2OaNfXPuYc3wQ3sOW4aQGU+MXFUr4fE3p+qah9tunoWRSs8LKt1vtLfS3m+bj/b6905ui+Wdu4SdUAVbNgrdCSfb1fyvEvnuurvS+D54KHSvYV0OY/YpHajlO4+vGFh+9YitEOplHfZLkblu342TBC0NvIbAy8Hn7OP7OdT1P3qfiZc= sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/get-kmip.ParamsDetails.json b/docs/documents/security/get-kmip.ParamsDetails.json new file mode 100644 index 0000000..52b6ecd --- /dev/null +++ b/docs/documents/security/get-kmip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"kmipId","in":"path","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/get-kmip.RequestSchema.json b/docs/documents/security/get-kmip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/get-kmip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/get-kmip.StatusCodes.json b/docs/documents/security/get-kmip.StatusCodes.json new file mode 100644 index 0000000..123b06e --- /dev/null +++ b/docs/documents/security/get-kmip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/get-kmip.api.mdx b/docs/documents/security/get-kmip.api.mdx index 016565a..b5d92a7 100644 --- a/docs/documents/security/get-kmip.api.mdx +++ b/docs/documents/security/get-kmip.api.mdx @@ -5,7 +5,7 @@ description: "Get Kmip" sidebar_label: "Get Kmip" hide_title: true hide_table_of_contents: true -api: eJztWMFu2zgQ/RWCpy3gWG63exHSAt647XoDbILGQQ+xsaClccxaIlWScpsK+vfOUJIt13KQtEGBAj5ZpjhvZt48khoW3Ilby8Mbfp5aPuvxTBiRggNDgwVX+IeHPDP6I0RuHPMel4oGhFvis4FPuTQQ89CZHHrcRktIBQ8L7u4yMrTOSHXLy7K3wZJPAbJKZfY00agoyWMYQYJJbwA/5WDueAfCXOsEhMJXMSxEnjgeLkRioQ0pMnmyRgKlVt/jxWAjIzNHr0I+WQKjmMGiaza8HLOt2aHYW475c8xkRmnbTCsLlma/GAzoZ9fRxTnaRVo5UM5DwhcXZImg2Ip9V3pOxUYTLHsGxskKGgvXGU7bE6qIWTBrGQHzhVZ5koh5AlVNyl5N0mNwvEUHUoXwGCQ/swPJOuFynyOoPKXVMFZnBoSrajGMnFyT4XUW45h34gXTevTaeStk4h/OiLWFjISD4RoHvbdZby9UJx2Fwa+qAK98HMg2xhTV/keI8bgsG0sWk2mPL7RJBemF/p84iWyWZE8J/Ah+Y3kP/h7H6FDEsSQzkVy2ZOVXz5YI9FNz8b5W9chp7s2zLCFCESH4aPVRuUfl/ibK9bvtUbJHyf4ukiWAl4OX+98R/2nH3upcxU/xOXFIUfvSq8J9wMyttOqpEmO8BdPmDYf+fNFlHIND8TzIj1ToSUUPCepgLYptZhzH0SId+QjsTx93R2bvY/aHtuMjpYcpJbO/utqOMSZkEInRLgOGvTFGG18D7HVGF2dNn7Zr9Q4cO8f2DsPDRnSp8SDkt+BLQm1eyIO6G7VBselLSxpcyxj7p2Bo8rnoX0GUG+nuglWKEyXOoJ4xKKrOsaQWy0dV9bm5QTL50rnMhkGAHVxfEEqU6DzuRzrl1GjZGtJb/A3CYLHCm1n71RXpqZJMM2HDOqKew34XOMZ91zj274cJc3oFdAbWjeQwx/SN/Nocjb6VXILALD2LUi20x68rs5v4ZU1If5jJPaeHp7J/JpNLakanaqpG+rNKtIiZw1b1VLClgcWrKQ9QGQrTCZq0Txr2+7Swppw5YbBmOPX/eSLUaspfswu0oR53gcf2aSBeY0xNu4utbH/QH9BJmWnrUuHXZs1CSw87OWx4bR0/COArWdRauWluLixah+1bjI1c6JNjhwwcQMnQfP9Ntapch/WNA9Z6iSESdFHMhYVrk5QlDVc9PkkjlpYWVbw5cFdY9o6rhrVIckqA0+XBntF3yW7O23uvDTopqdzvXktsfc/oj5HVNtAV/cFA/nhfX7g8Y4dcN9JXd22fTUjbgjyOgZ92LH+5x1o+5Qxn1kuYyK5eDqMIMtcyayPPWvvguzcTXPnfAGPczEc= +api: eJztWN9v2zYQ/leEe1oBxUq77kVoC3hx23kGFqNJsYfYKGjpHLOmSJY8ucsM/e/DUZIt13aQtMGAAn6yLPG+u/vu44/jGkjcekhvYFR4mMZghRMFEjp+uQYtCoQUrDOfMaNhDjFIzS8ELSAGh19K6TCHlFyJMfhsgYWAdA10Z9nQk5P6Fqoq3mDJpwBZFtI+TTQ6U2WOA1RIuAH8UqK7gwMIM2MUCg0x5DgXpSJI50J57EIKK89W6Lw0+lu8HH3mpCX+lML1AiOOGT1hHvXHw2hrdiz2jmN4DlU15bS9Ndqj59Evzs/5Z9fR5QhiyIwm1BQg8R9KrBIc23rflZlxsSHmslt0JGtomR8Op+tpVPjIo1vJDKNQaF0qJWYK65pUcUPSY3CCxQGkGuExSGHkASRPgsqQI+qy4Nkw1BcOBdW16GckV2z40eaCaidBMJ3HoJ13QqrwcMGszWUmCPsrIWtv03gvVJLEYcBVHeBViAM9VDFkjf+BoEdm2VpGOZvGMDeuEKwX/n9GskDGz0MC34PfWt6Dv8dxFYPIc8lmQo07sgqzZ0vEqPANFx8aVQ/IQDC3VjGh0ujkszcn5Z6U+5MoN6y2J8meJPuzSJYBXp6/3D9H/GUoemdKnT/FceKYovalV4f7gJFbaTVDpSa8RdflTWr69cUh4xxJSPUgP1J7Ejp7SFBHa7HeZgZjZ2YKi0GIwP/wdndi9j5mv2s5PlF6nFI2++1Q2zHUhE4LFfEqgy5665xxoQb98XBwedH2abtW75GiUSEtxFAgLUwOKdxiKAm3eSkkTTfqk/WmL6345Urm6HzSd+VM9K4wK52ku2RZ+GQt8yrhnjFZ151jxS1WiKruc0unIIUFkfVpkggre4JRMmXKvJeZArjR8g1ksPgdhUMH6c20++mK9VRLph2wYV1YOcL9LnCoPTqK/vz7OiKzRN4Dm0ayX9LCOPlvuzWGVnKBIseaRannJuA3ldlNfNwQ0utbuef0+NDoj+vrMTejEz3RA/NVKyPyiBYYvRLRwuH89QQSY1ELK5M27bOW/R5PrAlEJNwt0usJfJopoZcTeBNdWtTc486lwleJeAMxtO1uCs97571z3imt8VSIMDcbFjp62Mlhw2tn+6niupLrRis37c2FhxjS7i3GRi585NghA2JYFmF8OFMta9dpc+MwjWFhPDH0ej0THj86VVX8uu7xWRq59Dyp8s2Gu8S7Q1cNK6FKTgD48mDP6JtkN/vtvdcGBymp3e9eS2x9T/mPk/UycCj6o4H88qG5cHkWHXPdSl/fdX22IW0L8jgGftix/N89NvKpplXcTmEmu/7YzzK01DHrIk876+D7t9dQVf8BY9zMRw== sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/get-kms.ParamsDetails.json b/docs/documents/security/get-kms.ParamsDetails.json new file mode 100644 index 0000000..e1faaac --- /dev/null +++ b/docs/documents/security/get-kms.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"ignoreDeletedStatus","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/get-kms.RequestSchema.json b/docs/documents/security/get-kms.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/get-kms.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/get-kms.StatusCodes.json b/docs/documents/security/get-kms.StatusCodes.json new file mode 100644 index 0000000..91b7f1b --- /dev/null +++ b/docs/documents/security/get-kms.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/get-kms.api.mdx b/docs/documents/security/get-kms.api.mdx index 0cde318..be15858 100644 --- a/docs/documents/security/get-kms.api.mdx +++ b/docs/documents/security/get-kms.api.mdx @@ -5,7 +5,7 @@ description: "Get Kms" sidebar_label: "Get Kms" hide_title: true hide_table_of_contents: true -api: eJztWl9v2zYQ/yoEnzbAsdyuezG6Am7dtV62xUg87CE2BlqibTY0qZJUtszQd9+dKNmyLads4gJ70FNs6f7f8e5H5zbUsaWl/Vt6ubZ01qEpM2zNHTf4cEMVfKF9mhr9icdulNAOFQofMLeCz4Z/zoThCe07k/EOtfGKrxntb6h7SJHROiPUkuZ5ZytLnEXIUmnDh1yCqcmNYy6zldTPGTcPtEHMXGvJmYJXCV+wTDraXzBpeV0uS8XFPTgvtDqUl3AbG5E6fNWnkxUnaDi3YAAZjEdkx3bKgZpi+gLcmaHvNtXKcovUL3s9/LOv6OoS+GKtHFeuEMn/cVEqGdq2OVal55goYIGUpdw44UVDSlnCXAAlpKfBcJVJyeaS+xzlHZoZEUTn4xpAKHXMvMtfsjDWSZjIWGfKQe6CaIULIwx26J7JLIQSSFmSCPSdyXHN06I4O9QJh7T01zJA12XJDJ2meac6mmdKbKgxY6/1wBbfS7ZKmDEMT45wfG0bznNTGpjjS72XsxPuBOcB2O5Fwk0QMRBoqZcB+gPPSaCZoXGflPbtBT6U+V0Z3IOsxYYXhTWE102mLrRZM+xZ0ED4hRPgUFPmUApP3oadoixFYc/T6GWEaqza8/ly8VvZUw/Caf00+mIBIV1gHztLghJh8bsfliO10AE1boeeqV7r1RjNcXoxC55/xZEvziO/FzqzN//LOIU3wLoXTzqOw8OEHBTSggmZGX5dBPmMddtg8mHMH8/IXEgJFoy5EbqxCx5DpZKFpAUPgUyQu7XtkislH8hHnRkiLGEEZqZIiJ+cT/YPkOzu7ZMyAxKO+NJUCj+Ao09lPlrw1YKvFny14KsFXy34asFXC75a8PWNwFfxm1eLulrU1aKuFnW1qKtFXS3qalFXi7q+KepCzle9V+jrvm+/a0d+BpiRnOP/kv5tyJTydgZQHjUjATYuYRjWTgM8+uFlY8eABidkkB6hQJOKnzXqNvkevgCO9bCwwD77R8c2so9F9kk3ijakp0OKbD827S+MwCEDksgNNwBIyHtjtClyMBiPhlfvqq2Pfa4P3BHcSOngNW6FLZcueZER3Bnp06i8A9hos91NyaMK99poYLI5697wGC5t7iGCxhttRJKDAFuY4bdbMgPRoyvnUtuPIpaKLkO+WOos6cZ6TXFFw5ZCCo63nBnE1bez+qsbLCBfIxXBDh6k4pIf74+MoNEaR375c0KcvuO4NlKuoAwycNiIf/3VsFxCWXGGeD4vUlnimDIV+66OyxB0B6k4UnqalHycTMa4xjJVUzXUfyupWUIcjLHXjKwMX/w0pRGUggJ3osrtiyreXTxJU0ocM5AlIP1rLpm6m9I35Ap4cDtmISR/HbE3tAZL6Ytur9srRrG2bs3U7pJTK4A9F7ZhrY2b4mpeHANfHLfVBRG5+/XVpW19wOf9WMCDu0JbHy45kNkVGISSNps5s/wPI/McH/tdICyEZIsSy0F6B0k+tZdU3ospxU2jI84DB7cz9dEdo8YweBv2d5h2umf4xQh/1JtcOGnId9flitb35JTqqtrVQ11nZdIuCV8XgWcrhmzmM6Aqzw+67V8M4pinrsZSlzqrtZ0P7ydw7P4DpYLFFQ== +api: eJztWluP2kYU/iuj89RKXrxJ0xeURCIhTei2WbRL1YcFVYN9gAnjGWfmmJYi//dqfAFzSya7ROqDnxD2uV/mfANnA8TnFroPcJNYmASQcsMTJDTu4QYUTxC6kBr9CSMaxBCAUO4BpwUEYPBzJgzG0CWTYQA2WmDCobsBWqeO0ZIRag55HmxliYsImSttsI8SCeN74pTZWurnDM0aToiZai2RKwggxhnPJEF3xqXFplyeiqsVGiu0OpQXo42MSMm96sJogcwZjpYwZr3hgO3YzjnQUAzPIM8nznebamXROurn19fuY1/R7Q0EEGlFqKgQif9QmErubNscq9JTlygIXMpSNCRK0QkSjzl5UIr4lOEqk5JPJZY5ygPIjPCiK+PqQSh1xEuXv2ZhpGM/kZHOFJm1H60gP0Jvh1ZcZj6UeQA8joXzncthw9OiOAMgQY4WfqsCdFeVTJ805EHdmhdKrK8xw1LrgS3lWbJVwo3hrnMEYWJP9POpNHDCud7L2Rl3vPOQGr0SMRovYlqnWuq5h37PPvE00zfuo8q+vcD7Mr+tgnuQtchgUVh9TidNnWmTcHdmxZzwikSCJxvIScH4jV8XZakT9jSNpQxfjfXxfLlc/F6dqQfhtOU0+moBOTrPc+wiCYqFdd/LYTlQM+1R47ZfMjVrvR6juZte3Gr1LS1f9COuhM7s/f8yTv4HYNOLR7Vj/zAhB4U040JmBu+KIF+wbk+YfBjzL2dkKqQUaj5EI/TJU/AYKlUsLC142Ewbtkxsh90quWYfdGaYsIyzFZciZuXkfLR/N4ndvX1UZm6SY740laIcwOGnKh8t+GrBVwu+WvDVgq8WfLXgqwVfLfj6TuCr+M2rRV0t6mpRV4u6WtTVoq4WdbWoq0Vd3xV1Oc4X1y/g6A/Jj5rYLzpT8SX+lyzf+kyp0k4PyqPDSCjCOZpmNwhFPz0/eWIgcSG99AhliavoSaNuk+/hi6nEpF9YYJ/8o2Mb2S9F9lE3ijak50Pq2H4+tb8wUIRGccnu0azQsHfGaFPkoDcc9G/f1lsf+1zvkZjbSAncNW7hjlyYY5ERtzPShbC6A9hws91NycMa99qwZ7Ip79xjlBlB63CZ2HAj4twtZxRmlNstmZHQhQVRarthyFPR4Y4vkjqLO5FOwK1o2EpIwfEGuXG4+mHSfHXvCqiskZpgBw9ScYPH+yMDZdEQ+/XPESO9RLc2Uq2g9DJaaCP+La+G1RLKArnD83mRygrHVKnYd3VYhaDTS8WR0vOk7MNoNHRrLGM1Vn39t5Kax4wWyF5ytjA4ezWGUKeoeCrC2u2rOt4d10ljYMTNHOnVGP6aSq6WY3jNblNUbjtmJiS+DPlraMBSeNa57lwXo1hbSrjaXXIaBbDnwjasjXFTXM2LNiiL46G+IDrubnN1aVsfEBzEAgJYFtq6InZrUAttyUnabKbc4h9G5rl7XO4CuUKItyixGqRLXJ/dS6ruxQBu0+iI88DB7Uz94o7RyTCUNuzvMO10T9wXI8pWP+XCWUN+uKtWtH5k51TX1a7WTZ21SbskfFsEnqxYxJBP8qDuH+d2+aIXRZhSg6UpddI4dt6/G0Ge/welgsUV sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/list-keys.ParamsDetails.json b/docs/documents/security/list-keys.ParamsDetails.json new file mode 100644 index 0000000..63bbc83 --- /dev/null +++ b/docs/documents/security/list-keys.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/list-keys.RequestSchema.json b/docs/documents/security/list-keys.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/list-keys.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/list-keys.StatusCodes.json b/docs/documents/security/list-keys.StatusCodes.json new file mode 100644 index 0000000..1903a56 --- /dev/null +++ b/docs/documents/security/list-keys.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}},"additionalProperties":false,"title":"KeySearchResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}},"additionalProperties":false,"title":"KeySearchResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}},"additionalProperties":false,"title":"KeySearchResponse"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/list-keys.api.mdx b/docs/documents/security/list-keys.api.mdx index a3bc9ce..57c05d3 100644 --- a/docs/documents/security/list-keys.api.mdx +++ b/docs/documents/security/list-keys.api.mdx @@ -5,7 +5,7 @@ description: "List Keys" sidebar_label: "List Keys" hide_title: true hide_table_of_contents: true -api: eJztWN9z4jYQ/lc8empnOJy7pn1grjdDk7uWptMwgU4fEqYj7DXWRZZ8kkxLGf737so2mMSAm8sjT2B5v29/aiXvmjm+sGxwz24yy2Y9lnPDM3BgaHHNFD6wAcuN/gyRG8Wsx4SiBe5S/G/gSyEMxGzgTAE9ZqMUMs4Ga+ZWOQGtM0It2GbT23KJ1yBJhEQba6IvBZgV64a02riX4KoQCK1egtZJYuG0XqEcLLxfiTYZd+XSd+/2uKTIxCtR8Vy8WWKuW7yKwUZG5N7hAZumEFCewDqIg+F4FOxgh/wnjoQXklS/RbUzSrXNtbJgSfrdxQX97Cu6vUFcpNF45Twl/OPCXHKybf1clZ5TUhCC6cnBOFFSO+24PBmMHy7ZBs0HmbQZrwop+VxCWZYbUgHLToIKbe4kmAhju0lK3lFwyWVRxaAU5cZwyqdwkNnTkXuEFe7y1lw204TdIkDRwG/mlkiJJXdw051rXCKOcJYV29UuL93CwuVCG+HSjKhAFRm1viG63mN3llMDfMrvhCM8Q2eGNdhS3UQGOGmd6MJE0OS7ynIE3roUK+4449U+x6YW3nFNVhm2YyMiBA7t9uE47RRfeRut466we75iC1tSaEaqVo4P1yDBlTT+L1AKPnEh8c9xVROvgbRRdONYECOX40ZRJVxaaIAyi7i7qhNcO43QzlhUCNxEaQ0v1ea5FJH3Jfxs9blTnDvFuVOcO0VLp/C3iXOLOLeIc4s4t4i2FkHgy4vL598lv2sXfNKFil/l86TKy8kNWJnaQXKXnFPffy3gGBymp5MeoVCTiroYdTAP651nDNcRkV17C+zXX+fOkT0S2Zcdf+eQHgwpwb5vG2OM0CGDTMEEzBJM8NEYbXwOhuPR9e1VPevaR/0mrAuwLdEJgr051XjgsYWfG/lZ2YCF1RjKhuvtTG5Di0sRg7Hh0BRz3p9AVODZsgofMxQUKPFYklpvTTnaKwwGkaXO5XYQhjwXfU7gSOoi7kc6YzSwsRWTR/yE3RKTNLifNV9NqI7KUqkFdveFXKA7zw7WETZb44Jf/5wGTj8CHRrVQGpYoNdG/FufJX4klQJH53z0hEq0568ysu/vuIpDf5iLZ0oPiwa/TKdjGmo9qAd1rf9WUvM4wBM3eM+D1EDy4wMLsSIUuhPWbr+pg96nDfXAAscNpgpF/5pLrh4f2IfgFjE0K0vw7Hsf8g9oUz02G7C3/Yv+BZ2rubYu435PVlFo1sGeE9vANs4dZPCpXFc1cl+PKgk9aE5ut2VCx/9eNHABS4Xk/X3JVwumONV0Ubxn6/WcW/jDyM2GlssRIVVELCztoXh7tiKSNaaz/gKJC4xmjgeEq4FsF9G9GWwXwHbs2kW4nqsel32Sj+1d4OiItDVrpdb9EexO94wejChbVFuoDxryzV01UP82OKS63p5q1dT5JMxYM/8vAl+tGItvM0OpasOT2+WLYRRB3sxNk3XWaJY/f5xin/gP64WCqQ== +api: eJztWFGP4jYQ/ivRPLVSjuxdr32I7k6iu3ctpeqihaoPC6pMMiE+HDtnT+ilKP+9spNA2IUl3dtHnoAw843nm/HY+bZAbGUgvIdxZmDhQ840y5BQ24dbkCxDCCHX6jNGNIrBBy7tA0Yp+KDxS8E1xhCSLtAHE6WYMQi3QGVuHQ1pLldQVf4Oi78ESMIFoW6BvhSoS+jnaZSm5/g1FHAln+OtksTg+bhcEq5cXonSGaP60Q9vDrAEz/gLQbGcv9qgNkeyitFEmucu4RBmKXq2TmgIY284GXl7t1P5W4yEFcKGfg1VtbClNrmSBo21fnN1ZT8OA92OwYdISUJJDhK/UpALZte2fRxKLW1RwLflyVETr6FJERNnyfjpLVQ+GBTJscXLQgi2FFi3ZWVD4KaXocSv1Msw4dr0sxSsp+GGiaLhoDZlWjNbT06YmfPMrbEcxcdr2S3TODPeGkvPbeYjTPENIxz3x5rUHk9g1h3bd13O+ggKEyulOaWZhUJZZHb0DdGAD3eG2QH4EJ84WX8YYzlsnY3tm0gjs1GnqtARdvGusxx8uKUU9RnE60OMqjXeY03LLEPSPAIfhmb342nYWZmjW6MhRoU5yDUivrHUjGQbHHy4QYFUw7ivaEvwiXGB8ZlQUxfBRrPsxjG3iExMOk2VMGGw45SZMZZ3zSS4IQVVf18sp8h0lLbuddg8FzxyuQSfjbpMisukuEyKy6Q4MincbeIyIi4j4jIiLiPi2Iiwzm+v3j5+L/lDkfdJFTJ+kdeTpi5nN2Cz1B6W++Kce/874hwjMS56xeHSEJNRn0WdrMN2nxlMtFoKzG7cCsy3X+cuzD7B7POOvwulJym1bj8ekzFGklBLJrwp6g1q76PWSrsaDCejm9vrVus69PqdG/LGWNoTJENKVQwhrJxu5LSyEIJGhjLBdqfJVfbhhseoTTDUxZINphgVmlMZrDMTbHlcBesa1LjV1NJeoQWEkBLlJgwClvMBs86RUEU8iFQGVrAxDZLz+BmZRg3h/aL719T2Ud0qrcH+vpDzMT5Wk0bSoCbvt79mHqk12kOjEaSGBaVK83/bs8RJUimyGGv2uEyUw28qcpjvpOFhMMz5o6CnTb1fZ7OJFbXmci5v1D9SKBZ7lKL3jnmpxuT9HAKVo2Q5D9q0X7WkD+yGmoNHTK+Q3s/h76Vgcj2HD95tjtJqZQkX+C5gH8CHVjYL4fXganBlz9VcGcqY25MNC90+OEhiR2zn3Kn8upTbpkfuW6nSeodd5XbXJvb4P2ADfFhnzt7dl1y3LHxIlb0o3sN2u2QG/9SiquzjWiK0HRFzY/dQvDtb11h21Vl3gYQQwGqOJ4wbQbaP6YEG28dhJ7v2MW511adtH9Rjdxd4UiI9WrU66qEEu4+9sD80r0fUMapPLuS7u0ZQ/947FbrdnrLsxnxA8yj+nwx8c2AeQ7Wo/HbD27TrP4ZRhHm3Nl3URWdY/vJxBlX1H+uFgqk= sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/list-kmip.ParamsDetails.json b/docs/documents/security/list-kmip.ParamsDetails.json new file mode 100644 index 0000000..63bbc83 --- /dev/null +++ b/docs/documents/security/list-kmip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/list-kmip.RequestSchema.json b/docs/documents/security/list-kmip.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/list-kmip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/list-kmip.StatusCodes.json b/docs/documents/security/list-kmip.StatusCodes.json new file mode 100644 index 0000000..8697102 --- /dev/null +++ b/docs/documents/security/list-kmip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"type":{"type":"string","description":"Kms service type","nullable":true},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"}},"additionalProperties":false,"title":"KmipDto"}}},"additionalProperties":false,"title":"KmipSearchResponse"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"type":{"type":"string","description":"Kms service type","nullable":true},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"}},"additionalProperties":false,"title":"KmipDto"}}},"additionalProperties":false,"title":"KmipSearchResponse"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"type":{"type":"string","description":"Kms service type","nullable":true},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"}},"additionalProperties":false,"title":"KmipDto"}}},"additionalProperties":false,"title":"KmipSearchResponse"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/list-kmip.api.mdx b/docs/documents/security/list-kmip.api.mdx index dad0569..c4a15cc 100644 --- a/docs/documents/security/list-kmip.api.mdx +++ b/docs/documents/security/list-kmip.api.mdx @@ -5,7 +5,7 @@ description: "List Kmip" sidebar_label: "List Kmip" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcEPq1AYrldtgehK+DF7eZlWILaRR9iY6ClU8yaIlWS8pYZ/t93R0m2HNuJnOahD36yRN/P7+5I6lsyx+8si27ZVWbZ5Izl3PAMHBhaXDKFLyxiudFfIHaDhJ0xoWiBuxk+G/haCAMJi5wp4IzZeAYZZ9GSufucFK0zQt2x1epsbUu8hJFUSIyxNvS1AHPP2mlabdxz9CoIhFbP0dZpauFpv0I5uPN5pdpk3JVLP77ZsiVFJl7IFM/F+QJrvSerBGxsRO4TjthoBgHVCayDJOjdDIKN2qH8yUbKC0muX6PbCZXa5lpZsCT9ptuln21H11eoF2sMXjlvEv51YS45xbbcdaWnVBRUwfLkYJwoTTvtuHwSjJ8v2ArDB5nuC14VUvKphLItV+QCFq0EFcbcSjAVxraTlLyl4ILLosKgFOXGcKqncJDZp5HD6dxbyGaNcKsILJiFiCHw07yLgG+vY+x4jT2WrOOu8JGBKjLaqAbq0gCvBrGHE7kgxU95gmveSR8kNB+BQvzAhfQPl5RrKmLuoLfARe8NW/NhqE44CoMNywCHPg7EaFWLHpOdl9yTXVxl0sdojrNYawYJqTb6mt7PnUA0cdAZTxJBYlzeNMqccmlhk+JVJvK+06hwjMYQuIlnH6uJLr3luSRkUT38YvVpZE8jexrZ73tk/fl6mtXTrJ5m9TufVdK+6F7sXpn/0i74oAuVvMjN+QD4O9hWsbaQ3PTYU58me5QTcNhFrfwIhZ5U3Caog4VYbjJjuI4aWd9HYL/9gnNC9hFkn3cOnSA9CCmp/bTvC3uACRm0FNDWCyZ4b4w2vgb4Wd+/vqxpmG2tP4V1Ae1LGF8GbqbxIGN3ntLwNE7EwoohseFyTRetaHEhEjA27JliyjtDiAsj3H04z1BQoMS8NGp9NCXrVBgEkc2cy20UhjwXHU7KsdRF0ol1xohLsJUlr/Er7pZYpOh20vxrSH1UtkotsDm4c3EFu0THADdb44I/Po8Cp+dAh2DFlfQKzNqI/+qz0bMlM+CYnEdPqFR7+1VFtvO9qXDo9HKx4/SwaPD7aHRDfMtYjVVf/6Ok5kngZhC85cHMQPrLmIXYEQrTCeu0z2vQOzRQYxY4brBUKPr3VHI1H7N3wTXqEI2T4rn9NuTvMKaa0YnY606306WjONfWZdzPZIVCsw+2klgD2zh30IIv5bLqkduaRbOoHTVJxXWb0KVjCw1cwFYheX8X8t2CJZ5purHdsuVyyi18MnK1ouWSvaKOSISlGUrWh+scq90gDv1NDhcY0WEHhCuusI3oFj3YRmHNCLYRrim/x2Uf1GN9F3iUvdtbtdLrNju48T2hFyPKLWof1AcD+eFjxfW+Cg65rsdT3Td9PoAZe+Y4BL7ZMTbfaoJS1cBT2uUfvTiGvFmbptVJY7P87f0I94n/AaTVD0I= +api: eJztWN9v2zYQ/leEe1oBxUq7bA9CW8CL283LsBhNij7ExkBLp5g1RarkyWtm6H8fjpJsubYTJ81DH/xkmbqf392R1LcEErcO4hu4yB1MQiiEFTkSWl5cghY5QgyFNZ8xoWEKIUjNC4JmEILFL6W0mEJMtsQQXDLDXEC8BLorWNGRlfoWqipc2ZLPYSSTitC2hr6UaO/gME1nLD1Fr4FAGv0UbZNlDh/2KzXhrc8rMzYXVC/9/GrDlpK5fCZTopAnC7RuR1YpusTKwiccw/UMA64TOsI06I+GwVptX/5sIxOlYtcvoaomXGpXGO3QsfSr01P+2XR0eQEhJEYTavIm8StFhRIc23LblZlyUSDk8hRoSdamyZBQD4Lx6xlUIThU2a7gdamUmCqs27JiF7g4SFDjVzpIMJPWHSapxIGCC6HKBoNaVFgruJ6SMHcPIyfT3YXs1ugid4FDu5AJBn6atxHw7fUYO15jhyVHgkofGeoy541qqM8timYQ+wnJBSt+LFJBtZMBKuw+Iof4XkjlH84510wmgrC/ELL2Ngm3QiVJHAZc1QFe+TjQccfUoo/JzkvuyC5pMhkIeqTFVjNIWbXT1/z/hGSOPOgg0lSymFCjTpkzoRyuU7zIZTEgA9WjNK5Q2GT2oZno2ltRKEZWGh19duY4sseRPY7sjz2y/nw9zupxVo+z+oPPKmufnZ5tX5n/NhS8N6VOn+XmvAf8LWybWA+QXPfYQ58mO5RTJCHVQX6kdiR0ckhQewuxXGcGI2umCvOBj8B9/wXniOw9yD7tHDpCuhdSVvtl1xf2UBNaLVTAWy/a4J21xvoa9EfDweV5S8Nsav0lHQW8L0EIOdLMpBDDrac0PI0TQ9QwJC5aruiiihcXMkXror4tp6J3hUlpJd1F89xFS5lW0bw26nw0NetUWgUxzIgKF0eRKGRPsHKiTJn2EpMDcwmuseQ1fkNh0UJ8M+m+uuI+qlulFVgf3IW8wG2iY6gdWgr+/HQdkJkjH4INV9IvaWas/K89Gz1bMkORYo2e1Jnx9puKbOY7anDo9Qu55XS/aPDH9fWI+ZaxHuuB+VcrI9KAZhi8FsHMYvZmDJEpUItCRm3aJy3oPR6oMQQk7C3SmzH8M1VCz8fwNrgsUDONk0mFryPxFkJoGZ0YXvZOe6d8FBfGUS78TDYodPtgI4kVsJ1zpwrrUi6bHrlpWTQHIcRdUnHVJnzp2EADQpjnXt7fhXy3TEKYGb6x3cByORUOP1pVVbxcs1fcEal0PEPp6nCd412XOPQ3OYgBmA7bI9xwhYeIbtCDhyisGMFDhFvK737Zb+qxugvcy97trFrtdZMdXPue8B8r6y1qF9R7A/npQ8P1vgj2uW7HU991fX4D8zB9JALf7VimUE2qsB14Trt+0U8SLLq16VqddDbL399dQ1X9D6TVD0I= sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/list-kms.ParamsDetails.json b/docs/documents/security/list-kms.ParamsDetails.json new file mode 100644 index 0000000..0e74aeb --- /dev/null +++ b/docs/documents/security/list-kms.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/list-kms.RequestSchema.json b/docs/documents/security/list-kms.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/security/list-kms.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/security/list-kms.StatusCodes.json b/docs/documents/security/list-kms.StatusCodes.json new file mode 100644 index 0000000..3fa4b83 --- /dev/null +++ b/docs/documents/security/list-kms.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}},"additionalProperties":false,"title":"KmsListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}},"additionalProperties":false,"title":"KmsListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}},"additionalProperties":false,"title":"KmsListResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/list-kms.api.mdx b/docs/documents/security/list-kms.api.mdx index 417712a..ecf009e 100644 --- a/docs/documents/security/list-kms.api.mdx +++ b/docs/documents/security/list-kms.api.mdx @@ -5,7 +5,7 @@ description: "List Kms" sidebar_label: "List Kms" hide_title: true hide_table_of_contents: true -api: eJztWl9v2zYQ/yoEnzYgsdIu24PRFXDrbvXaLkbiYQ+JMdASFbOmRZWksmWGv/vuKMmRbDlhHT8UA59sS/f/jnc/Greilt0a2r+mH5aGTk9ozjRbcss1PlzRDH7QPs21+sxjO0roCRUZPmB2Dt81/1IIzRPat7rgJ9TEc75ktL+i9j5HRmO1yG7pen2ykZUKCeJrQV8Kru+pH6dR2h7CV1kvVHYIt0pTw5/WKzLLb51fqdJLZstHP7xsyZJiKY4kiuXi9A7S1OFVwk2sRe4c7tPJnBPMEzeWJ2QwHpEHtn3+o4yUFRJVvwC1U0y1yVVmuEHql2dn+NFWdPEB+GIFxmfWieT/2CiXDG1b7apSM0wKsEB6cq6tKEVbZZl8Mhg/ndM1mM9l2mV8VkjJZpKXZblGFfzOizADm70IU6GNH6VknoR3TBZVDEpSpjXDfArLl+bpyMGxZQmzHjEWiZdBhRZ+QXMV6RMKFbOyWJ6yMFaJn8hYFZmFqveiFdaP0NshlzIPSiBlSSLQdybHDU9TJg30TSss0tKPVYAuq8M2tIq68nUN7EiJ9TVmXGrdsqWcF0/WaN1Iu9LA4ESrVs72uOOdB2C7Ewl0CR9iIFBS3Xro9zwnnmb6xn1S2dcKvC/z2yq4W1mLNXeFNYTXXaZueis0EH5qBTjUlTmUwpM3fqeoyFHY8zSWMnw11oPteLn4VPXUrXAay2zh0ZKRzrOPHSVBiTD4+8qZN8pS5VHjZlgyNWt9ppTkLENXwS4Dnn/Fka/mrVCFufom4+TfAJteHHQch9sJ2SqklAlZaH7pgnzEuu0weQdoPZqRmZASLBhzLVRnF9wFmRULyR0PgUyQxdL0yEUm78l7VWgiDGEEZqZISDk5D/YPbisPbw/KDEho830F40dh7I7SPJeinN7R5yqZAfMGzBswb8C8AfMGzBswb8C8AfMGzPt/wrzuH94AdgPYDWA3gN0AdgPYDWA3gN1vIE4B7Aawe2Swi9znZ+cYqHZgfleW/AIYBVdjnr/84N76jLjSVg/KnU62d7ukq91AdxTSS4/IQFMWP2tOrtYtcAIcy6GzwDz/L/YQ2Ucie9hFLoR0b0iR7ceuJakROKRBErniGtAMeae10i4Hg/FoePG23qRrc2E/Irihd4KXwDk2bHrrltLcIl6fRtUNwkSrza7eOqpRs4kGupix3hWP4cpn76OFE2WcCeWiX6EhcnRubW76UcRy0WPIEktVJL1YLSnugJmK33G84UwjIL+eNl9dYfGU9VETPOCKXHzguwtqI2iy2pLf/pwQqxYc99KqHbdBAb5q8S9r7u7NOcOLwNqlsQJAVRraXo4r73uDXOwo3U9K3k8mY9yTu8lusqH6O5OKJcTC/HvFyFzz9OcbGkEZZOBOVLt9Woe6h6fohhLLNCQISP+aSZYtbuhrcgE8uH6XCslfRew1beBZ+qJ31jtzM1wZu2TZw+2omfyWD5u4NmaNu9S7M1AWxnV9tUTufnONc1Mb8L0dDHiwKJdB5wr/2bimq9WMGf6Hlus1Pi73DLEGkg2yrGboAvLbWPGsrs+U4uLiHuJqq9OHtLXI6cOw2d30Ia6XMx+n3UrBZuQ/umfZmahSa3uP80H3FH9oUXairlDvNeS7y2or93uyT3V9ILP7ps6tMEOZrKdAXB04NKJ8P4hjnjcj1RQ+bbSoX99N4Jz+B1VnkPo= +api: eJztWt1v2zYQ/1eIe9oAxU67bA9GW8Ctu9VLuxiJhz3ExkBLJ5s1Rarkyatn6H8fKMmO/JWwjh+KQU+GpTveJ48/Cr8VEJ9a6NzDdWJhHEDKDU+Q0LiHK1A8QehAavRnDKkfQQBCuQecZhCAwS+ZMBhBh0yGAdhwhgmHzgpomTpFS0aoKeR5sFkrFpLQrBf6kqFZgp+m1YZO0au8F1qdoq3j2OLTdoUinBZxxdoknMpHP73cWkuKRJxpKZ6KiwUaeyCqCG1oRFoE3IHhDJmrE1rCiHUHffagdix+t0bMM+lMv4A8H7tS21Qri9ZJv7y8dD/bhm6uIYBQK0JFxZL4ldqp5M631b4pPXFFgcCVJ0VDolyaNHH5ZDJ+uYI8AIsyPuS8yqTkE4llW+bOBC68BBV+JS/BWBjrJym5p+CCy6zKQSnKjeGunoIwsU9nLkHiESePHIvIy6HMCL+kFR3pkwod8rJZnvIw1JHfkqHOFJmln6wgP0HvgIqSeUjmAfAoEi52Lge1SGMuLQZAgpwsfKwSdFttth5pKNq3GGBnKqyvM4PS6o4v5XnxZI+uB+mhMnDCqd6q2ZFwvOuQGr0QERovYVqmWuqph33PfeLppm/eh5V/W4n3VX5XJXenaqHBorF6nA66upmtESe8IJHgwQ3kVsHord8uylK32PMslmv4WlwfbOerxadqpu6k0xKnzGMkOznPOXaWAkXCuv93hXt9FWuPHre9Uqne6xOtJXLlQjXIrVbfsuWr81bozN59l3nyH4D1KE7ajr3dguw0UsyFzAzeFkk+Y98ecHkPaD1akYmQUqjpAI3QB6fgPsisVFha6LBYGzZPbIvdKLlkH3RmmLCMswWXImLlyXlyfNeJfXh7UmWukx29b1D8KCztGU1TKcrTu/25KmaDeRvM22DeBvM2mLfBvA3mbTBvg3kbzPt/wrzFF94G7DZgtwG7DdhtwG4Ddhuw24Dd7yBPDdhtwO6Zwa7Tvrq8gj3Wwx+a2K86U9FZyA/FW58jrvTVQ3Jvkh1llxwaN0hcSC87QlniKnzWObnKt8DJRGLSKzywz//E3mT2kcyedpFrUno0pU7t50Mkqb4iNIpLdodmgYa9N0abogbdQb93827NpNvWcvOIOYZe4C6BMzewYVqQ0goiXgfa1Q3Ctlcbrl7eXqNm2+6abMJbdxhmRtCyPS+WsoULJdEvMxI6MCNKbafd5qlocacSSp1FrVAn4DhgttIvNN4iNw6Q34/rr+5c85T9sRZ4wBWpuMZ9glpfWTTEfv9ryEjP0fHSKo5bN6OZNuJfXufuzZC7i0BelLECQFUZtqMcVNG3uqnYM3pclH0YDgeOJzdSI9XT/yipecRohuwVZzOD8esRtHWKiqeivQ77Yp3qlttFI2DEzRTp9Qj+nkiu5iN4w25SVI5+FwuJr9r8DdTwLLxoXbYuizNcW0q4ergd1Yu/FcMmr7WzprjUF3ugbIz79dXSaXfqNM5Nb0CwkwwIYF6SQWfafdm4h9Vqwi3+aWSeu8clz9D1QLRBltUZOsdlneJZXZ8BHHHxiHDF6vQR3SJy+ihsuJs+wmty5uOyOyXYHPmP8iwPFqq0us3jfLA9dn+MKCfRoVQfdeSH24qV+yM7Znq9IdWybnMnzf0I8nEerDecc6J83w1DTOuZqi8+ro2o394PIc//A1VnkPo= sidebar_class_name: "get api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/sidebar.ts b/docs/documents/security/sidebar.ts index f7cf37d..6605a42 100644 --- a/docs/documents/security/sidebar.ts +++ b/docs/documents/security/sidebar.ts @@ -1,116 +1,114 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/security/aruba-securityprovider-api" + type: "doc", + id: "documents/security/aruba-securityprovider-api", }, { - "type": "category", - "label": "Kms", - "items": [ - { - "type": "doc", - "id": "documents/security/create-kms", - "label": "Create Kms", - "className": "api-method post" + type: "category", + label: "Kms", + items: [ + { + type: "doc", + id: "documents/security/create-kms", + label: "Create Kms", + className: "api-method post", }, { - "type": "doc", - "id": "documents/security/create-kmip", - "label": "Create Kmip", - "className": "api-method post" + type: "doc", + id: "documents/security/list-kms", + label: "List Kms", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/create-key", - "label": "Create Key", - "className": "api-method post" + type: "doc", + id: "documents/security/update-kms", + label: "Update Kms", + className: "api-method put", }, { - "type": "doc", - "id": "documents/security/get-kms", - "label": "Get Kms", - "className": "api-method get" + type: "doc", + id: "documents/security/delete-kms", + label: "Delete Kms", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/security/get-kmip", - "label": "Get Kmip", - "className": "api-method get" + type: "doc", + id: "documents/security/get-kms", + label: "Get Kms", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/get-key", - "label": "Get Key", - "className": "api-method get" + type: "doc", + id: "documents/security/create-kmip", + label: "Create Kmip", + className: "api-method post", }, { - "type": "doc", - "id": "documents/security/update-kms", - "label": "Update Kms", - "className": "api-method put" + type: "doc", + id: "documents/security/list-kmip", + label: "List Kmip", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/update-kmip", - "label": "Update Kmip", - "className": "api-method put" + type: "doc", + id: "documents/security/update-kmip", + label: "Update Kmip", + className: "api-method put", }, { - "type": "doc", - "id": "documents/security/update-key", - "label": "Update Key", - "className": "api-method put" + type: "doc", + id: "documents/security/delete-kmip", + label: "Delete Kmip", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/security/delete-kms", - "label": "Delete Kms", - "className": "api-method delete" + type: "doc", + id: "documents/security/get-kmip", + label: "Get Kmip", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/delete-kmip", - "label": "Delete Kmip", - "className": "api-method delete" + type: "doc", + id: "documents/security/download-kmip-certificate", + label: "Download Kmip certificate", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/delete-key", - "label": "Delete Key", - "className": "api-method delete" + type: "doc", + id: "documents/security/update-key", + label: "Update Key", + className: "api-method put", }, { - "type": "doc", - "id": "documents/security/list-kms", - "label": "List Kms", - "className": "api-method get" + type: "doc", + id: "documents/security/get-key", + label: "Get Key", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/list-kmip", - "label": "List Kmip", - "className": "api-method get" + type: "doc", + id: "documents/security/delete-key", + label: "Delete Key", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/security/list-keys", - "label": "List Keys", - "className": "api-method get" + type: "doc", + id: "documents/security/list-keys", + label: "List Keys", + className: "api-method get", }, { - "type": "doc", - "id": "documents/security/download-kmip-certificate", - "label": "Download Kmip certificate", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/security/create-key", + label: "Create Key", + className: "api-method post", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/security/update-key.ParamsDetails.json b/docs/documents/security/update-key.ParamsDetails.json new file mode 100644 index 0000000..60d55d1 --- /dev/null +++ b/docs/documents/security/update-key.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"keyId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/update-key.RequestSchema.json b/docs/documents/security/update-key.RequestSchema.json new file mode 100644 index 0000000..a0c8444 --- /dev/null +++ b/docs/documents/security/update-key.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"}},"additionalProperties":false,"title":"KmsKeyEditDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"}},"additionalProperties":false,"title":"KmsKeyEditDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms key name"}},"additionalProperties":false,"title":"KmsKeyEditDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/update-key.StatusCodes.json b/docs/documents/security/update-key.StatusCodes.json new file mode 100644 index 0000000..78ab610 --- /dev/null +++ b/docs/documents/security/update-key.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"keyId":{"type":"string","description":"Kms key id","nullable":true},"privateKeyId":{"type":"string","description":"Kms Private key id","nullable":true},"name":{"type":"string","description":"Kms key name","nullable":true},"algorithm":{"enum":["Aes","Rsa"],"type":"string","title":"KeyAlgorithms"},"creationSource":{"enum":["Cmp","Other"],"type":"string","title":"KeyCreationSource"},"type":{"enum":["Symmetric","Asymmetric"],"type":"string","title":"KeyTypes"},"status":{"enum":["Active","InCreation","Deleting","Deleted","Failed"],"type":"string","title":"KeyStatuses"}},"additionalProperties":false,"title":"KmsKeyResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/update-key.api.mdx b/docs/documents/security/update-key.api.mdx index b5d76d5..844e0e9 100644 --- a/docs/documents/security/update-key.api.mdx +++ b/docs/documents/security/update-key.api.mdx @@ -5,7 +5,7 @@ description: "Update Key" sidebar_label: "Update Key" hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/isCP+3FsdKu/WK0BZw4xbIAi2E76IfYGGjpbLGRRJWk3HqC//vuSMmWX+dkWdYBzodEou6ee3tInS4FM3yqWeue3SSajRos44onYEDRYsFSvGEtlin5GQJzHbIGEyktcBPhtYIvuVAQspZROTSYDiJIOGsVzMwzUtRGiXTKFovGEks8B8gDzJ/FGZ6JsxkGK2RaoX3JQc3xJgQdKJEZetRigwg8MgDaQOi1u9feSm2fIcKY8Dw2uPQKzY6cjwhxIcM5yQcyNZAauuRZFouAkzn/syabxTawHFMZEBgLkoEyAjQ9dcHsMl8PASvsYd48K41JYDwMBT3jcbcGN+GxxuwZYWJwWjcwv0LJjpFWzcA38527WE/mTz9/z76SogKdyVQ746/Pz+nPuq3bGzRfI4stQRZz8ai43KY5OjC7UdM8jvmYXKdNtSBIMeMGbo7H6jqNA5hPSPgOFB5PpRImSggK0jyhY62NoTdYT3M63Dbxl0WBebtS1gyhAgWWPH2ZqwDqeJdJhoq3JgL1N4iX6xiLSniF1Z8neNQqEaBiWy9vDsMO8JH1URtucr0Wa2DEjFJznVbG8aYDMRgHYy+BSvCRixgvDpvqWwtk7XHs7pV83rUbH7sXT5w9cfa/4OyTXnInsp7I+vJkJeU3u7qGCx56PddwPkf7UGV3M6AtnpTOHiG5SnEpKtDHKVa+wSZSJdy4pV9e71IOwWCSj7IjUrSUBsc4tbcSxSoyhuuokXSsB/ofv+ROmT2U2ScdxaeU7k+pOzDebB8Yv0vjfZR5Gp6Oi9Nx8X/N7Om4+BeOi7e7+otrDEghktcHNQPlXSklla1Bu3vdub2sBnHrWndZSM0qtjHoIHZkkQxphpfbotAkr8X8ct6o/WI5eVzQ4kyEoLTfVvmYN/sQ5NhRzv2HBAUFSmDzile2C1/QXM665QaZucJsssiYTLd8n2eiyQkkiGUeNgOZMJrO6RLRalwAV1it1v2o/qhPhHKcqQSWaUdUF9VmmtAR4/32aeAZ+QDUMpbTx3aO0SvxZ9VJ2vljBByDtGkkFvdWE8OrbzzJHPtKgGqiSaoTaV0pq7ieom6ZumY7E1v+7Rf1fh0MujTsHKbDtCO/prHElhJbc+8d9yIFk/dD5iOLUozcrzJ0VtWpSe4PmWe4moJB0T/GMU8fhuyDd4s6NEOdYJP8zucf0KdqnNpir5rnzXOKKZPaJDytxbvGnbUolkWovawQwpa9KHl1X82x6YulVZ9pL6lFHwpr6cAFpBfJ2y8rYhjduC895EWEPhJyUYy5hjsVLxa07IbIRKNQaNqB4bKV33B7+Z49OGLeGRw6wTZH2DMe5yRp+TzjSrjt/yhHfuiVk/QfvX2mK8an87rNyqVVamnU/oKGxYtbdERYjFCw3LiUa/fs0pk5oy/Kmu7Wq59cdhrtIIDM1GTrroxqx2X3boBS4/LfCIkMSVjxr7hIv62D0sZrjyq7VjDcftOcT0nWGaafvwCudPc3 +api: eJztWVtv2zYU/ivCedpFsdKufRHaAk7SYpmBxYgd7CE2Blo6tlhLJEtSTjVB/304omTLsZMmWZZ1gPMSmzr38/GQ+lyCZQsD4TUMMgNTHxTTLEOLmhZLECxDCEFp+Rkjex6DD1zQArMJ+KDxS841xhBanaMPJkowYxCWYAtFisZqLhZQVf7aFn8OI0ssniUYpvjRCrXhUrTWvuSoC/AhRhNpriw9CmGcoEcO0FiMvf7w3Nuo3eWIbMxZnloI4RVU1dTFiMaeyLgg+UgKi8LSR6ZUyiNG7oLPhnyWu4bljNoAPjVEobYcDT11yexz301hkBlviYVXS1eVDyyOOT1j6bBjbs5Sgz5YblN0WgMsPsbcnllZq1n8ar/zELvF/Onn7zlWUtRolBTGOX99fEz/tn1dDMDvgqVugUoZf1RebtM8OLF6o4o8TdmMQqdNVZFJvmIWBw+3NXQa99h8QsH3WGHpQmpuk4xMocgzGmt9NODDpWE03G7bXzcFi36rbKDyIdJYg2ckcx1h195ppsCHC5ug/obF020bVSu8sTUqsgyt5hH40DfrL/ebHRcK6xiNZTY3W7lGlq+oNOeidQ4+nGGK1pmpPyK14BPjKcbfcDWqPZC3x6H7ssHzvt342L14wOwBs/8FZp90yB3AegDry4OVlN/suzWcsNi7dBfO57g+tNW9ndAOTppgHyC5KXEjyoXFBWrwYS51xqxb+uX1PuUYLePpg/xwYSwT0UOCurMT5SYzGGo5SzE7qyMw//iQO1T2vso+aRQfSnp3Sd3AeLM7MH6X1vskcxEfxsVhXPxfK3sYF//CuHi7735xLixqwVJvhHqF2vuotdR1D/rD87OL05aI29a6UjFdVgdIJFuGNpExcXh53RRi8kIIGr7RBOWaeaxoccVj1Cbo63zGeiOMcs1tESwzE5Q8roIlFiYo61t4RbxcHZYjMnOdQgiJtcqEQcAU7zEyEqUyj3uRzIDYOdNYrDVOkGnUEF5Pu49GBCiHmVZgXXamuMvqdpkMauv99sfYs3KJdGVs2Md+bhOp+V/tTbLmHxNkMboyEoovN4zhx68sUw59jYGW0STVuaxDabq4XaJhU7peX/Gd+O4W9X4dj4dEdk7ERJzJG5FKFns2Qe8d8xKN8/cTCKRCwRQP2godtX3qUfgT8CzTC7TvJ/DnLGViOYEP3oVCQRzqnKf4LmAfwIeWTg3hVe+4d0w5KWlsxkQn3y3sbGWxbkLnsKp81/aywdV1y2PTG0vY5bTX0KIXha1ygA/LrJav36wIYfTFvelNfUiksWS5LGfM4JVOq4qWHYlMMIq5oR0Yr6/yt8Jen7P3Usx7k1tisUNhr1iak2SN5xXT3G3/RwXyw2XDpP/o3eW6Rbwouj7bkDalJar9BR3zF/fogFBNK7/duFRr9+zUuTmiN8qO7s7RTyE7jX4UobId2W4o0864HF6NwYdZ8zNCJmMS1uyGfgZhNy5AWedbj6p6rYSUiUXOFiTrHNPf36509zc= sidebar_class_name: "put api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/update-kmip.ParamsDetails.json b/docs/documents/security/update-kmip.ParamsDetails.json new file mode 100644 index 0000000..ccce8aa --- /dev/null +++ b/docs/documents/security/update-kmip.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"kmipId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/update-kmip.RequestSchema.json b/docs/documents/security/update-kmip.RequestSchema.json new file mode 100644 index 0000000..f6b533d --- /dev/null +++ b/docs/documents/security/update-kmip.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}},"text/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}},"application/*+json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Kms service name"}},"additionalProperties":false,"title":"KmipNameDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/update-kmip.StatusCodes.json b/docs/documents/security/update-kmip.StatusCodes.json new file mode 100644 index 0000000..863cda8 --- /dev/null +++ b/docs/documents/security/update-kmip.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Kms service id","nullable":true},"name":{"type":"string","description":"Kms service name","nullable":true},"type":{"type":"string","description":"Kms service type","nullable":true},"status":{"enum":["InCreation","Active","Updating","Deleting","Deleted","Failed","CertificateAvailable"],"type":"string","title":"ServiceStatuses"},"creationDate":{"type":"string","description":"Kms service creation date","format":"date-time"},"deletionDate":{"type":"string","description":"Kms service deletion date","format":"date-time","nullable":true}},"additionalProperties":false,"title":"KmsServiceResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/update-kmip.api.mdx b/docs/documents/security/update-kmip.api.mdx index 1105d37..a5fcdfb 100644 --- a/docs/documents/security/update-kmip.api.mdx +++ b/docs/documents/security/update-kmip.api.mdx @@ -5,7 +5,7 @@ description: "Update Kmip" sidebar_label: "Update Kmip" hide_title: true hide_table_of_contents: true -api: eJztWV1v2zYU/SsCn/bhWGnXvQhdASduMS9AYyQO9hAbAy1d26wlUiUpt57g/757ScmWazuIs6ztAOchkaj7ce7lIUWdlMzyqWHRPbvKDBu1WM41z8CCpsGSSbxhEcu1+gCx7SWsxYSkAW5neK3hYyE0JCyyuoAWM/EMMs6iktllTo7GaiGnbLVqrWOJ5wgyz0T+LGh4Ls4WWK1Qso72sQC9xJsETKxFbulRxAYzCCgBGAtJ0On3go3boUQUY8KL1OLQC0w78hgxxIVKlmQfK2lBWrrkeZ6KmFO68IOhnOVuYDWmecDAOCM5aCvA0FNfzL70zRJwigMDeiFiCJwHNoLxJBH0nKf9RsgJTw120AqbgvMU+Xv06FrlnCx8tt89yGZDf/r5+0ZLbhpMrqTx6V+en9Of7WzXVwigQRk3DXnKxVGV4QI8qi63YGWRpnxMyGltIdon9mdPJB/hmEjOck8kY7ktXI0gi4x2tZ681OAogPad2IoFOd7lCY65JF1IoXkJVOw7LlJ3cUldmxCJoLPAQZdt1NqBWk/qrQd463BgtxFTXOXvYozjqqw9g4RcW2yidMZpK6H7MyuIbeRPBTwlfu35QPydHj+e3abqxU3F6n2r8tg1eWLuibnfjrlPeumdKHui7LeiLAV4te8cccGT4MYfRJ/jQHGIU7vk84AfYbkhV2UqEOMUdLNzOPTLy33OCVikz6PyCImZZPwYUAdno9xUxnAcPbKuQ2D+9Qvv1NmHOvukDfnU0sMt9RvGq90N472ywTtVyOS0XZy2i/9rZ0/bxX+wXfy673zRw4I0RgroWAI6eKu10m4OOv1e9/qyFui2vdxBEQISRhBhBnamEhL3CjcrJPFFLKyUSBOWa01yRYMLkYA2YUcXY96+hbjQwi7DeYaGAi1ILwxLrxquSLFzwLzGWWjsJ5tZm5soDHku2pyixKkqknasMka6nalCOo8L4BrnK7ofNR/dEqU8a2qDdeMx6hXsioo9PKtpG/zx5yCwag50bq50yU6B5Wvxd32cdsrkDDhW6RpJPL7ZaIlvP/Ms9/yrAtRaJ7lOlINSzeN2j/pV79qdXOzgO2wa/D4Y9EkGHcqh7KpPMlV4qLQzCF7zYKZh8tuQhcgjiZWHdYfO6olqE/whCyzXU7Bo+tc45XI+ZG+Ca/QhdXWCXwWvQ/4GMdVCa8RetM/b51RTrozNuGzUu82erTLWs9B4X2EMN+9lxaz7WuM26B019e41ueijZqsfOIAEI3v31Tb3qaNKm0ZmzBAlhS7LMTdwp9PVioa9wExESoShVZisj/Rf4F6/ax+Un/dWN0e6fSlvL3hakKVj9IJr4beAo4D8cFOp7D8Gh1LXnJfLZs4a0qa3JMN/xcTiq2esmLAaoWW1dqnZ/uGlz3M28N/XtfPO+58we49OHENuG7ZNLKPGltm/G6DVuPofQ6YSMtb8Ew7Sb4dQuYLdbuXGSoYrcFrwKdn6xPTzD+hEDqY= +api: eJztWW1v2kgQ/ivWfLoXB6e93herrURDq8tFalBCdB8COg32AFvsXXd3Tcoh//fT7NrEHBCFXK7tSfAFY8/7PDu7fliBxamB+BYucgOjEArUmJMlzTdXIDEniKHQ6hMl9jyFEITkG2hnEIKmz6XQlEJsdUkhmGRGOUK8ArssWNFYLeQUqipc2xLPYWSei+JZosFCnCxIG6FkY+1zSXoJIaRkEi0Ky49iGMwoYAdkLKVBt38e3Kvtc8Q2JlhmFmJ4AVU18jGSse9UumT5RElL0vIlFkUmEmR30SfDPlfbhtWY+wAhd6QgbQUZfuqT2eW+ncJFbgJDeiESCpxGVYWAaSr4OWb9lskJZoZCsMJm5DRF8RFz6lnllCx9sd99kO2C/vTz9x0tq2kyhZLGu395espfm94uLyBsQ8a1ochQHJSZSA/Lyy1YWWYZjjlyXltV+NT67LDkLRxiyUnusGQs2tLlSLLMeaqdyzNNDgIQQjexYsGKN0WK1jvpUUbtS+JkP6DI3MUZV23CIKLuAoX3Ngq3Qm2aeu0DvHZxkIEqhKT230N7YJaNZpCyaggTpXPkUcK/T6xgtLE+J/AU+43mA/a3avx4dJu6Flc1qnetykPX5BG5R+R+O+Q+adM7QvYI2W8FWTbwatc54h2mwZU/iD7HgWIfprbB5wN+hOQ9uGpRIS1NSbcrJ6T95eUu5ZQsiuxRfoQ0FmXymKD2dmN1nxn0tRpnlPdcBOZfb3jHyj5U2ScN5GNJ95fUD4xX2wPjo7LBB1XK9DgujuPi/1rZ47j4D8bFr7vOF+fSkpaYBXwsIR2811pp14Nu/7x3edYQdJta7qBIARMjEEJOdqZSJvdK1xWm+GKIaibSRKs1J1nxzYVISZuoq8sxdq4pKbWwy2iem2gl0ipivjBaedawYsbOBeY5zlJnEMPM2sLEUYSF6CBbSTJVpp1E5cC8nalNOo13hJo0xLej9qNrhpRHTSOwLjwW4oK2ScVzaUjb4Pc/BoFVc+Jzc81Ldks7U1r81RynHTM5I0zJF5JxfHXPJb7/gnnh8VcbaLhOVp0oF0rdx80a9evadbqF2Ipvv2jw22DQZxp0KIeyp+5kpjAN7IyC1xjMNE3eDCFSBUksRNRU6KRpVIfDH0JgUU/JvhnCn+MM5XwIb4PLgiSzqxOR0esI30IIDdEaw4vOaeeUcyqUsTnKVr6b6NlIY92F1n5Vhb7vqxpZtw3HbSCEuM13r8HFLzUb9YAQ5rmTd29tc+86rrnpUQgzZSybXq3GaOhGZ1XFtz3BzEBKheFVmK6P9P+Ie73XPkg/78xuTsstenuBWcmSDtEL1MKPgIMC+eGqZtl/DPa5bjAvl22fTUj3tWUa/is6Fl/dY42EalSFzdrlYvuHZ97PycC/XzfKW/s/x+w1uklChW3JtmMZtUZm/2YAIYzr/xhylbKwxjv+jwTvfITKJeymlbu3ggzltMQpy3rH/Pkb6EQOpg== sidebar_class_name: "put api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/security/update-kms.ParamsDetails.json b/docs/documents/security/update-kms.ParamsDetails.json new file mode 100644 index 0000000..dd53526 --- /dev/null +++ b/docs/documents/security/update-kms.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/security/update-kms.RequestSchema.json b/docs/documents/security/update-kms.RequestSchema.json new file mode 100644 index 0000000..ffc2e98 --- /dev/null +++ b/docs/documents/security/update-kms.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"content":{"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}},"application/*+json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value"}},"additionalProperties":false,"title":"KmsPropertiesDto"}},"additionalProperties":false,"title":"KmsDto"}}}}} \ No newline at end of file diff --git a/docs/documents/security/update-kms.StatusCodes.json b/docs/documents/security/update-kms.StatusCodes.json new file mode 100644 index 0000000..65d39e7 --- /dev/null +++ b/docs/documents/security/update-kms.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"},"project":{"type":"object","properties":{"id":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}},"additionalProperties":false,"title":"CategoryResponseDto"},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"},"status":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"},"properties":{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for kms. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"KmsPropertiesResponseDto"}},"additionalProperties":false,"title":"KmsResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/security/update-kms.api.mdx b/docs/documents/security/update-kms.api.mdx index 56ad8ca..b4f53a8 100644 --- a/docs/documents/security/update-kms.api.mdx +++ b/docs/documents/security/update-kms.api.mdx @@ -5,7 +5,7 @@ description: "Update Kms" sidebar_label: "Update Kms" hide_title: true hide_table_of_contents: true -api: eJztG9tu2zb0VwjuZRfbSrvuxegKOEm7eu0aI3G3hzoYaIm22UiiSlJJPcP/vnNIyZZ8SeTUK4qBfUht6txvPKR1FtSwqabdD/RNoul1i2ZMsYQbrnBxQVP4QrtURLRFRQqfMmZm8FnxT7lQPKJdo3Leojqc8YTR7oKaeYYY2iiRTuly2VoRyZT8yEPTPwYtlon2LQgpZFpS+5RzNYcvEdehEpnBR106nHGCDLg2PCK9QZ+s0fYxQhoTlscGlp4A22snI5A4ldEc4UOZGp4a/MiyLBYhQ3bBR408F9uE5Rg1B8Jgg4wrI7jGp2BoFjHTANKpvUvQqrLvAIrICTFWaS1zFXK6bNFYOgEf5nPL4rwBoz8RbM1pCqtEpORuJsJZjTu5E3FMxpxYEXjUGalR2rtlImbjuETVhBmSAQqYtIsAbdIfnv7WPuVqyhI5SkfpK6lIIhUHLhOpEqtNi4CZwxvL7zkjM8Unv45oEMlQB6Vlg+9K3dssjdq41A6BDVcjSgxTU24A5+9xzNKbEX0BuHkCjy3G84C96GDUURZFAldYPKhYa8JizTctcwaRwQSoVBGUsLHMjZXz0tkKLMfWHmpRI0yM5n5bCHtuJPrN5ebKGUwphhEuDE/0jvzYlOWt0MY6CcgQkKYeFy2a5rF1g0u8AxX9o7DwVryttSlBCm3qkXZ/HI4hbECnAVdCRg/HI2Z5gUIyi2P1vUl0h1yk8Zy8BtmIgEAjEOEiIi7OH1S51ASK4/qpVecAzBLe8M/GlwhfInyJ8CViT4moNhM//uRrha8Vvlb4WrGrViAG2CiDcHcqPj15iv/VFemFIc8gT0DDypHFNiJZzMR/VF3EThNvhEeL5ko0gttXrLYAm9elUEbNSIYyT42aN4MVphlgY4X2ls8DU22zHlwWgbPOJGul4zi2qTADx3VDloNr1LYbYGOYyprPDtwFt0gC2q2IuGoEDAAyltMG/BvmSUMxm9p9WMhXM3xT5LPCuBteCxV3Gw083iWq27tgBQoIbxuR7NgvCio8Om2WRXmGxL6Mo6PRlGN5c3Q8X5Rb2oY5NXQMeYNtDeEa1rGjOCgSGr9fWfH60JE0iHF97pCqsT6WMuYspXYPY9DlHpLyNh/5rZC5vvom7dS8AFa1eFQ6nm86ZCOQJtAZ54pfWiMfMW53iPwtNmSP1q/WoD3KM0BhC++r3BT75ss3X7758s2Xb7588+WbL998+ebra/z45rsu33X5rst3Xb7r8l2X77p81+W7ruI3ymcnJ6hrXbdTFpFL90blMX6ZdE+b7FNO0gaQW+VIgIxT2A4r+QBLPz/dWTOgxIm4ER+RAqc0/KLNbrGsdRiAkZxbCfQXXzt6y95n2UedKbxJ95vUFYxn2wXjnTTkFZxLjvIig/eALxe+XPwPTIpov+zqL/r4Rh5QIldcwQmGvFRKKuuD3qB/fnFWTprUsd7bkxHBQZgWXv3MsE2jWW6dgqMqXRoU9wY6WKymWZZBeVbWQU/lY9a54mGuhJkH0KwFCxEtgYC2kmg7VJMrMCCdGZPpbhCwTHQY4oWxzKNOKBOKEye6IGIxTjlTeBb/cF19dIUx5MKkBFgfKTLxhm+Pw/ShOVOG/P7XkBh5w3EKppio6eWgsBL/uOukYqZmxhneAaDlMHAv11MwLz+zJHMBV70lK4it/Fy9nyqudioXGeXsUbFyvdVRb/TM1QORKM9iRXTUTT8oXNLpZWLLCPtByevhcIBTQviS6Lm8S2MJrerGG6EgYArmDUo3tEv/d9BGO18EJReAg8NHExFzfBGUVo7W9EnnpHNijxNSm4SlFUPWYrKmxcrTlU3Q3jDa5HTx+qG850LsbnX+ahWy8LluDli4sdy6IsKBsBnIhJQWizHT/L2Kl0tcdtNWGJvR6rC768XOyqzUvbNYO5W5gQjenPUqo8gmyS1TwpWRgwT5/rIYOfuB7GNdplE6r/IsRQLT4DDaV+S4dt4S06RITFTbPT9zrNpDpLLG39rNUWyH4d4NrcBWxbmuVMDB+yFAjYvRt8TeI1PF7mAR/1ohpdXZ5qxdW1CI/GnOpgjrGOO/fwEnN+QB +api: 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 sidebar_class_name: "put api-method" info_path: docs/documents/security/aruba-securityprovider-api custom_edit_url: null diff --git a/docs/documents/storage/create-backup.ParamsDetails.json b/docs/documents/storage/create-backup.ParamsDetails.json new file mode 100644 index 0000000..d889c30 --- /dev/null +++ b/docs/documents/storage/create-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"ce-CreatedBySchedule","in":"header","schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/create-backup.RequestSchema.json b/docs/documents/storage/create-backup.RequestSchema.json new file mode 100644 index 0000000..7d9714d --- /dev/null +++ b/docs/documents/storage/create-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"Retention days for the backup","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"Retention days for the backup","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"Retention days for the backup","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/create-backup.StatusCodes.json b/docs/documents/storage/create-backup.StatusCodes.json new file mode 100644 index 0000000..68a8a05 --- /dev/null +++ b/docs/documents/storage/create-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/create-backup.api.mdx b/docs/documents/storage/create-backup.api.mdx index 5f9c640..fa6aea8 100644 --- a/docs/documents/storage/create-backup.api.mdx +++ b/docs/documents/storage/create-backup.api.mdx @@ -5,7 +5,7 @@ description: "Create Backup" sidebar_label: "Create Backup" hide_title: true hide_table_of_contents: true -api: eJztWt132jYU/1d0tJd2A0y67YXT9RxI2o6tWziEdQ+BsyNsAWpsy5VkUubD/757ZRsb2ySk3Vuch5wg3c/f/ZDETUINW2s6uKUj5t7FEV10aMQUC7jhCtcTGsIHOqAu714qzgz3Rrsbd8O92Oe0Q0UIexvOPK7gk4aNgNFBQs0uQi5tlAjXdL/vHARFSn7irhl7OXfEzAb+9rh2lYiMkLgIC4p/joXiHh0YFfPzhLNIdLdgOQrJxH+OudrV5M82nKACrsEjMpyMScF2ShHKWLHYN7B0AWoXqY0gYiS9HdLXfHBlaHhocI9FkS9chnvOJ40ESUkT8/3rlcU70ymXiBKIALwirozgGukgMMxjpmzdCcoUkSYfyjb+CVREroixeGgZK5fTfYf6MjX1cT1b5sdnKPqIZIWmNawSEZL7jXA3R9rJvfB9suTEmsC93lzNw+GWCZ8t/ZxVE2ZIBCwA7gAJumQ8G73vjrhas0DOw3n4TioSSMVBy0qqwHrTIQC4e2f1vWZko/jqlzl1POlqJ0fW+S73vctCr4tLXRfUcDWnxDC15gZ4/ln6LLyb0zfAGwewbTleO+xNDxOSMs8TuML8SQmtFfM1ryJzCTnCBLhUMpSwpYyNtXOaYgXIsSJCHWqE8RHuD5mxV0Zi3NJyPgSDKcUw+YXhgW4onaotH4Q2NkgghoA1x3nRoWHs2zCkNflER//IEK7lW+FNTpJ5c5xp59ZIuvtYQmIHWNqmR5CQvHgHvnXIOHQVtwH1X9YdhuZgTf4o/Tgtr3ONipVosumJgOY4vechV8KdZghauBZNHmY1tbX2ZhEVOnO8yT/FsWFhQrFdOWMEVMDaNvljJdOcnnjAcMiZg4I0pVMBP75q0riEegcwJuCQ9B6P22MKvxLR9PwrCHJIv0lcKgSZDP9i2rbftv227bdtv237z6btly/93//Q9v+2/7f9v+3/bf9/Hv1/b4HVETSuNBte9S/qXxNlX6sdf1tk3wuRz0TlwDj/mKinMDSrWDduVY6Q6nbAQrbGL/7OSGWIW7MBT4NwmsFmoawcpPVj9LmicuJV+TzhQOaf+v16gY2YB8ep/aL2/yiyU+dMzcfM2DMoC9RrbffxRupBPIV/lh64bhgWuucYdTISSeEZhXXgCK6sBfqbC7VF9iFkv6rYW0hPQ4psPzc1jDFe+0ESueFqyxV5q5RUNgbDyfjq+jKfSDWd42SU30igz27wZkMjaRuPnXMNqJMNwLSTHEZhe1zcCo8r7QxVvGS9GyMVtFMnvd9onEpZW9KZXKwAQroxJtIDx2GR6DHkcn0Zez1XBvYKo7kLt0+zsxwjzhSEaHC7KG/hIC9IEyUnKN4Qkfid1wdnY+i3ypDf/p4RI+84zsuy2dswBn+V+Dd9QB6PBhE7TN1pMS97+4UFUZpyRydSKuwQ6fKLNHtzlp4x+fQyW1nUjqlq4lTv8fZ+XhJYuQf3a/fU0tSR4svNKsky7Ch0kyyivWEkaiiepCS/zmYTnEfiW/ZK3oe+hNOr8nAFB0MIj6NT/m6ePD2EuPG5Sq6BBaecK+FzfK6CRfnAc0Avev1e3z68IFPhHC/FoZrUR24c4C0dpCDFZmeS5fttPvDFHB6Uh7+HlIe/j/CAz3naQ65usHpATJIsmeZ/KX+/x+V0rIup7QmNrcBrfn4mxYH/4NC30ZM7KIDqUDlPQltjW6ZE2oeeZMiLaTbbfklOqc6rMNyVdeYmFTjuMeezKnuaEQ87fWLeX3jfSTLKy1Rid4bCCoraRaDgGLouj0yJtmzAotQ5J9c3M8yGbLweSA+pFbvHfw+A39YJaX2z1W7XEgpJv44xkQY01Yw//wFAiJU0 +api: eJztWt+T2jYQ/lc06kvSGrj0x4snyQzcJSlt2mM4mj4cTGexF1BOlhxJ5kIZ/vfOyjY2GHJc0rfjHuWVdvfbb1da9tbcwdzy8Jb3ILrLUj4JeAoGEnRoaH3NFSTIQx5h69IgOIx7q5togXEmkQdcKB7yBUKMhgfcRgtMgIdr7lYp7bLOCDXnm02wPSg1+iNGrh+Xu1NwCx7wGG1kROqEpkUecIOfMmEw5qEzGZ52OKSitURj6ZDi+E8ZmlXj/NECGSlA6zBm3UGfVduOKaIzZpBJx0P+gm82k9xGtK6n4xXJN3yItHKoHH2DNJUiAvrW+WhJYF3TBFJezzzehU49JZR4QHilaJxAS3IJOojB1a07IpkjcsiHuo1/QoJMz5jzeFidmQj5JuBS56Y+rGcJMjtB0QcSqzTNhVZMKHa/ENFiRzu7F1KyKTJvAsbtsRmr7hKEhKkst1oGjqUGLSoXkkCL9Ue9d60emjkkeqzG6q02LNEGmVAzbRLvTcCiBUZ3Xt9LYAuDs1dj3ol1ZDslsp3vSt9boOIWLbUiVA7NmDMHZo7u1Zj/M5Wg7sb8dayjLEHl/I6XHXjdJkJyiGNBKyAHNbRmIC3uI3OplQOhbN1QBlOdOW/nMMdKzxhUEQq4E04S3O8LY6+cprjl6bwNBhgDRH7hMLEHUmfflvfCOh8kmFs202aXFwFXmfRhyHPykY7+USDc4FvlTSlSeLPLtFNzJP/6ECGpAkx90WMkyJ69zaQMWF9FBn1A5fOmwwHPTf6gZZan16lGZUYcsumRgJY4vUOFRkTDAkEP1+SQh0VOLb29RUSFLRw/5J9BKlhEKFjVGSOUw7kv8rtKhqU8i2FVcWarIKd0fsBPPx7SOBVSCjUfoBE6fjhuDyn8SkTz+68SKCH9puPyQ2iTw8/uXPbPZf9c9s9l/1z2n0zZrz/6v//hXP/P9f9c/8/1/1z/n0b933hgbaqVzdnw48WL5s9Exc9qu78W+X4hlSD2LozTr4kmhR24zB78tHeF7H9OQMGcfvg7gcoBP2LA4yAcFrB5KPcu0uY1+lRROdJVPk04aPPPFxfNBOtBzIb5D7X/R5Idu2caPhbGniBZod4ouw8X0hgdCHmSHqGsAxWdYtTRSKwrz/jA6KnE5MpbYL85Uc/IfgnZr0r2M6THIaVtvxwqGH169iuQ7AbNEg17Y4w2PgbdQf/q+rKcSB26x1mvfJEk6Bb0suGp9oXHz7lC3ikGYLaz3o7CNrS4FDEa2+mabArtG6cNzLGTv28sTaW8LflMLjOSxm7OpTbsdCAVbaBdkdRZ3I504p8wFqPMCLfyO3oIBg0Pbyf1TzTIS3KilAJVD5GK37E5OOsri8ax3/4eMafvkOZlxeytm7mFNuLfvIHcHQ0SdkTdYTUve/MZkjSn3M6NlB+2jXS9Iy16zlobU04vi5VJ45raJ87+O96/z2sH7r2DLxrv1NrUkVPn5pUUDNsJ3aCIaLubigaKRyXZr6PRgOaR1Mte6XslNcT7jatOUUEqOjbf3yrJ0yaID7ar7DpFRVPOmZBI7SoPeDnwDPmL9kX7wjde2roEVC0O+6TecWMLb+0i3QQ5O9cF32/LgS9xOKwPf7eU58EuHjzgJe0nAV9Q9oS3fL2egsW/jNxsaDkf6xK1Y2GpFMSH2891deF/ceh70JM7XDWGyiUJfY4twYi8Dj3KkGfDYrb9nB1TXWahWtV1liZVOG6I80WWPc6ILzt9ZN5feR+sC8nL/MTWiA6rJBoPgWpHN4owdTXZugGTWuUcXN+MiA3FeD3RMUkbuKd/D4D73AntffPZ7tfWXIKaZ0SkkOea6e8/QIiVNA== sidebar_class_name: "post api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/create-block-storage.ParamsDetails.json b/docs/documents/storage/create-block-storage.ParamsDetails.json new file mode 100644 index 0000000..f2fabfc --- /dev/null +++ b/docs/documents/storage/create-block-storage.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"ce-resourceId","in":"header","description":"","schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/create-block-storage.RequestSchema.json b/docs/documents/storage/create-block-storage.RequestSchema.json new file mode 100644 index 0000000..812df65 --- /dev/null +++ b/docs/documents/storage/create-block-storage.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."},"type":{"type":"string","description":"Volume typology. Accepted values:\r\n- Standard\r\n- Performance","nullable":true},"snapshot":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The snapshot from which the block storage will be created","nullable":true},"backup":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true}},"additionalProperties":false,"title":"VolumePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."},"type":{"type":"string","description":"Volume typology. Accepted values:\r\n- Standard\r\n- Performance","nullable":true},"snapshot":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The snapshot from which the block storage will be created","nullable":true},"backup":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true}},"additionalProperties":false,"title":"VolumePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."},"type":{"type":"string","description":"Volume typology. Accepted values:\r\n- Standard\r\n- Performance","nullable":true},"snapshot":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The snapshot from which the block storage will be created","nullable":true},"backup":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true}},"additionalProperties":false,"title":"VolumePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/create-block-storage.StatusCodes.json b/docs/documents/storage/create-block-storage.StatusCodes.json new file mode 100644 index 0000000..17ea39f --- /dev/null +++ b/docs/documents/storage/create-block-storage.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/create-block-storage.api.mdx b/docs/documents/storage/create-block-storage.api.mdx index 80ea924..393ffc7 100644 --- a/docs/documents/storage/create-block-storage.api.mdx +++ b/docs/documents/storage/create-block-storage.api.mdx @@ -5,7 +5,7 @@ description: "Create BlockStorage" sidebar_label: "Create BlockStorage" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/create-restore.ParamsDetails.json b/docs/documents/storage/create-restore.ParamsDetails.json new file mode 100644 index 0000000..4daef21 --- /dev/null +++ b/docs/documents/storage/create-restore.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"backupId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/create-restore.RequestSchema.json b/docs/documents/storage/create-restore.RequestSchema.json new file mode 100644 index 0000000..5fc9c1e --- /dev/null +++ b/docs/documents/storage/create-restore.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/create-restore.StatusCodes.json b/docs/documents/storage/create-restore.StatusCodes.json new file mode 100644 index 0000000..0235347 --- /dev/null +++ b/docs/documents/storage/create-restore.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/create-restore.api.mdx b/docs/documents/storage/create-restore.api.mdx index 5cc2b42..f619b69 100644 --- a/docs/documents/storage/create-restore.api.mdx +++ b/docs/documents/storage/create-restore.api.mdx @@ -5,7 +5,7 @@ description: "Create Restore" sidebar_label: "Create Restore" hide_title: true hide_table_of_contents: true -api: eJztWd1v2zYQ/1cI7mUftpV224vQFXCSrvPWLYbjdQ+xMdASbbORRJWknGaG//fdkZQlW3LrNNuADM5DkFD3fb87ksc1NWyhaXhDR1wbqTiddmjOFEu54Qo/rGkG/9CQ5kq+45EZxLRDRYYLzCzh75jrSIncCImLsKD4+0IoHtPQqIJ3qI6WPGU0XFNzn6MkbZTIFnSz6WyFz1h0W+T/jmyWi+4KnEEhXvz7gqv7hvzxkhNUAJHgMekPB6RiO6QIZcxZkRhYegZqp85GEHEu43ukb/gQyczwzOA3lueJiBh+C95pJFjXNLEkuZrbFHidcoYZABGQi5wrI7hGOsgVi5mpW3eA0kWkzYe6jb8BFZFzYmw8tCxUxOmmQxPpTP20nhVLiiMUvUWyStMCVonIyN1SRMsd7eROJAmZcWJN4HFvoiZZf8VEwmZJyaoJMyQHFghuiARdMhifv+6ec7VgqZxkk+xHqUgKKActc6lS602HQMCjW6vvBSNLxec/TGgQy0gHZWSDL0rfuyyLu7jUjUANVxNKDFMLboDnz1nCstsJfQm8RQqfLceLgL3sISApi2OBKywZ1qI1Z4nm+5G5AIwwAS7VDCVsJgtj7Ry5WEHkWJWhDjXCJBjuN97YSyMxb67Et8lgSjEEvzA81S2ls2/LG6GNTRKIIWDNLi46NCsSmwZXkw909Fcf4QbeKm9KEu/NLtKOrRHQakRmo/JWJoUrg2OZCyXawPxAx0t/XvOMKxGNvKfWrWlbL/LYX1l7feSFxhDZTv3ZBvhWX1GUJjxOnpOCXIZ/MKd+dupnp3526mf/h35WP6Z9/c2psZ0a26mxnRrbk29syAc25lCRLnzPz541b6wXimMl715c7QkvT5jY64TH9789F+CGDVVY6NZPe73xUc6PvMM2CHu9vdnZn54/B87eT80R5P7u7KwJx3MWQ1e1E5Z/ApLu6ydbxtbaIyireHlSATYuuAJat0W4pW+ftzHHkAmRHKUHdh3DsugYow6mYl15RmEdONJLa4F+dHGcIvuxyH5WmZ5CejikyPZ9W8MY4OkPJJFrrlZckVdKSWVz0B8OLq8uylFy265HRtstHFrkUsY4mpa289gJdUgDPxbXwXo7IN/g4krEXOmgr4oZ612DELbggRtzA205794E/pCgccZsDXRD90JBXOnSmFyHQcBy0WMoKUpkEfcimdpjgOYRnHjMveU450xB3sKbaf3TNULLoackqM6XufiFN8fgA2jCypCf/xgTI285Tr/9JL1fQAyU+MtdLvwsfckZeGoDingeVdPvVx9Ymjsc7mwwTtg2/fXbir+P1I645fuEX5k2dp3WA6M9CFaPARaAc2l99wDaSczQ56vXz0UjHgcpyU/j8RDfCfDGcinvskTC5rR3PQFTMwh0oB1/t4RGD4PVeikhV8CCrw9zkXC8lIBF5UNESJ/1znpn9ngNOExZVotoA7M7fmzTXtsoQYwF2trD+aZ85UE4hvUXny2i4e+dgMD/HtXIUnvH2QIb0LjEmgHpawC+5r+rZLPBZfcMg+CNhcYOELdfPtbVPv/RR5pWB28B4vuPQCXMbBWtmBKu/TzIkC9H/i3qK3JIdVln2X1dZ2lSFV58rPoPFW+TtMFq8vWLzrvPF05Td4xCKvbGWQCtdhz9KOK5qdHWrZnWeufw6nqMgPFPY6mMkVqxO8QL/LZGSuuzrW27tqZQGIsCsRZSpxl//gb1yCGU +api: eJztWd1v2zYQ/1cI7mUfspV224vQFnCSrsvaLYbjdQ+xMZyls82GIlWScpoZ/t+HIyVL/mrddhvQwXqk7nhfvzuSd0vuYGZ5cssHaJ02yMcRL8BAjg4N/VhyBTnyhBdGv8HUXWU84kLRArg5j3iGNjWicELTIo+4wbelMJjxxJkSI27TOebAkyV3DwXtZJ0RasZXq2i9+QTSu7L4d/aGQnQWaCxtUm3/tkTzsLP/cI6MBKB1mLFe/4o1bIcE0R5TKKXjCX/EV6tx0BGtO9fZA9Hv2JBq5VA5+gdFIUUK9C9+Y4lg2ZIEUl5PfQgqmXpCEeARxaJA4wRaosvRQQaurd0ByuCRfTa0dfwNcmR6ypz3h9WlSZGvIi51UPXDchYgyyMEvSayRtJMaMWEYvdzkc43pLN7ISWbIPMqYNYdmZHqLUBImMia1TJwrDBoUbmECDrsanj+onOOZga5HqmR+kkblmuDTKipNrm3JmLpHNM7L+8JsLnB6dMRjzOd2rj2bPxVbXsHVNahpU6KyqEZcebAzNA9HfE/JxLU3Yg/y3Ra5qic53gSw7MuAZJDlglaAdlveWsK0uK2Zy60ciCUbSvKYKJL5/UcBF/pKYMmQhF3wkly96tK2UunKW4hxdfBAGOAwC8c5nZP6mzr8kpY54MEM8um2mziIuKqlD4MISc/0tBfKw/v4K2xpiaprNlE2rE5kqF1QnmvvNayDGlwLHNpxD4wf6ThtT0vUKER6aCy1Js13leLKuwvvL6V54UlF/lK/ckKVKW+oahV+Lz9wi7E5fCdO9WzUz071bNTPfs/1LP2Ne3b706F7VTYToXtVNi++MJGfAZtoZUN7nt89mj3xXphkDJ58+Hqb3iFBLFVCY+vf1smRNw6cKXd+2urNn6W8YPKYO+Erdq+W9m/PHsO3L2/NEOI+4ezs104nkPGBqHD8k9AMvz9YMlYa3sEZeOvilQohzM0POLhiAhL3z/ex5yhAyGPkiOUdaDSY5Q6GIplYxnvGz2RmF96DexnJ8fJs+/z7Cel6cmlh11KbD/uKxhXdPtTINkNmgUa9twYbXwMev2ry+uLupW879Rjg/URnqOb64xa09pXHt+hTnhctcVtvFw3yFe0uBAZGhv3TDmB7o3TBmYYhza3jZd1v3sVV5cESz1mr2BoupdG8oTPnStsEsdQiC7QTqnUZdZNde6vARbT0gj34DnOEQwantyO279uCFoBPTVBc78sxEvcbYNfKYvGsV/+GDKn75C631UnvVe6uTbir/C4qHrpc4QMg0MJz4Om+/38HeRFwOHGARM2W4e//Vqp3iOtK249n6hWxjunzt4Lo78INsMAD8Cp9rZXANoITL+KV7dXiB1/HKRkPw+HfZoT0IvlUt8rqSHbfp7oAhUUIraBv1NDo0vO2vsoYdcFKpo+TIVEepTwiNeDiIQ/6p51z/z1WluXg2p5dAezG3asw946KFdRANqygvNtPeUhOCbtic8a0TzadAiPquGNZ2nNcdbAHkd8TjmT3PLlcgIWfzdytaLlMIYh8GbCUgXI9j8+ls05/94hzV4D7/BhZwhUw8xn0QKMCOXnoxT5elDNor5hh0TXeaYe2jJrlRr30rDqPxS8DtKKsqnKXzI+/L4IkjpD2qRh37kLkNaBo5emWLgWbVubcat29q9vhgSYajSW64yoDdwTXuA+KKm9zT63/dqSS1CzkrCW8CCZvr8B9cghlA== sidebar_class_name: "post api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/create-snapshot.ParamsDetails.json b/docs/documents/storage/create-snapshot.ParamsDetails.json new file mode 100644 index 0000000..f2fabfc --- /dev/null +++ b/docs/documents/storage/create-snapshot.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"ce-resourceId","in":"header","description":"","schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/create-snapshot.RequestSchema.json b/docs/documents/storage/create-snapshot.RequestSchema.json new file mode 100644 index 0000000..afa4df7 --- /dev/null +++ b/docs/documents/storage/create-snapshot.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Existing block storage from which the snapshot will be created"}},"additionalProperties":false,"title":"SnapshotPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Existing block storage from which the snapshot will be created"}},"additionalProperties":false,"title":"SnapshotPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","nullable":true}},"additionalProperties":false,"title":"GenericResourceDto"}],"description":"Existing block storage from which the snapshot will be created"}},"additionalProperties":false,"title":"SnapshotPropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/create-snapshot.StatusCodes.json b/docs/documents/storage/create-snapshot.StatusCodes.json new file mode 100644 index 0000000..8042f3c --- /dev/null +++ b/docs/documents/storage/create-snapshot.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"201":{"description":"Created","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/create-snapshot.api.mdx b/docs/documents/storage/create-snapshot.api.mdx index 0c7d09b..1d76adb 100644 --- a/docs/documents/storage/create-snapshot.api.mdx +++ b/docs/documents/storage/create-snapshot.api.mdx @@ -5,7 +5,7 @@ description: "Create Snapshot" sidebar_label: "Create Snapshot" hide_title: true hide_table_of_contents: true -api: eJztWUtz2zYQ/isY9NKHJDppe9GkmZEfTdyktcZW24Ol6UAkJCEGCQYAZasc/ffuAqBIvWzZ6SUz8sFjA/vebxcAt6SWTQ3t3tKbjOVmpiwdtWjONEu55Rp3SprBP7RLY97W3KhCx/wyoS0qMliccZZwDf8l3MRa5FYoXIYFE894ymi3pHaRI7+xWmRTuly2ViJzrT7x2NbicmZnu4Rp/rkQmie0a3XBDxPOctGegw8oJIj/XHC92JI/mHGCCrixPCG9/iWp2fYpQhkTVkgLS69A7cjbCCJOVbJA+i0fYpVZnlncY3kuRcxwL/pkkKBsaGJSXk1c5INONcYogQiIV861FdwgHaSIJcw2rdtD6SOyy4emjX8AFVETYl08fKbpskWl8qY+rWfOZHGAor+QrNY0hVUiMnI/E/FsTTu5F1KSMSfOBJ50hnqY9eZMSDaWFashzJIcWCC4XSRok8vB6bv2KddTlqphNsx+VZqkSnPQMlE6dd60CAQ8vnP63jAy03zyy5BGiYpNVEU2+qbyvc2ypI1L7RjUcD2kxDI95RZ4/hlLlt0N6VvgLVLYdhxvIva2g4CkLEkErjDZb0RrwqThm5E5A4wwAS41DCVsrArr7Lz2sYLIsTpDLWqFlRjuj8HYc6swb760V8lgWjMEv7A8NTtKZ9OWj8JYlyQQQ8CadVy0aFZIlwZfk8909PcQ4S281d5UJMGbdaQdWiNjABB41+daqORpZGIrCCwkdzzO8zHA4O7GKs2mvEOuMrkg78FcIgB7BEAvEuKhD3bOlSx8tR1qY6HFLsueGd8qbO94BobH1yGgLnqjTT8vHiC56KTzjBjvGplolTbK0IQzYVWGseZYhk+jujKmOlVqksqeF3pXCfRikM3yB3tsoscmemyixyZ6bKIvbKLNC+n3Pxy76bGbHrvpsZseu+lLuikyAnZyaAM+mK9PXm1/EDgLdq99F3B32VwysdF+D2+6Gz60IHfMFmbn1kZD/jLvr4PHLgobJ8r2efIVOrTnnfHVeYLsP52cbCPylCXQzd03rP8DlX73yR6yMvcAyjpggVSAjVP3+dEfTX7px9e7mBNIhZAH6YHTzrIsPsSovbkoa88orANHeu4sMF9cHsfIPhbZF9XpMaT7Q4psP+9qGJd46wRJ5IbrOdfkQmulXQ56/cvzq7PqY/2ug4+s5g0tbJIzvAnRXLnW44YAXRqF6YCJytWcYImLc5FwbaKeLsasE65AUXUxMPjR3tnjhxeFljimsDY33Shiuegw5IulKpJOrFJ38hsew43HLhzHKWca0tS9HTW3bhBJHiwVQX2NzcUHvj1XuISeqy357e8BseqO4zghjCZ6BXisxb/+DbM+SsH4IXyv63HCxQNLcw+7tQPFC1tlu/koCs+exk26GvSEldHWKbNxL63l1tdHdy2sZy0OfRPlIhHQs5aUfshVp5eLrejspSTvB4M+jmHwmXSu7jOp4GTaeBOB4ZBwEYVrYruCRQdDt/MlRK6ABYc7EyE5voTQszDn6dJXnZPOibvTAwZTljXiuw3YNUdWKGgckyDH4a4MWL6tJl2Izm5z6rWCM/y9FhGE8QrSgMMZ1gYIKssxM/xPLZdLXPYTLYRtIgyWerL7dVPWB/qj866dvtwBuDfnaRXAXP3MmRa+zzzLkG+vw1jvO7JPdVVh2aKpszKpjuQS8Rwq6HlGPO705tCzdrtVBpIzL6o9QCk1xdYJX3P04pjntkHb1DxqNMT+1c0AyMZhpJiqBKk1u8eRKPx21ivnlCtht1ZSQPy0QAx1qdeMP/8Br/CNiw== +api: eJztWUtz2zYQ/isY9NIHJTlpe+EkmZEfTdymtcZW24Ol6azIlYQYBBgAlK1q9N87C5Ai9bJlp5fMSEdonx++XQDcBXcwsTy+5TcKcjvVjg8jnoOBDB0a+mfBFWTIY55gy6DVhUnwMuURF4rHfIqQouERT9EmRuROaFrmEbfJFDPg8YK7eU761hmhJny5jFYmc6M/YeJqczm46S5jBj8XwmDKY2cKPMw45KI1Q2PJSGn+c4FmvmW/P0VGDtA6TFm3d8lqtX2OyMYYCul4zF/x5XIYYkTrTnU6J/mtHBKtHCpH/0GeS5EA/df5ZElg0fAEUl6NPfKlTz0ilHhEeOVonEBLchk6SME1o9sjGRDZlUMzxj8gQ6bHzHk8wk7zZcSlDqE+7WcGsjjA0V8kVnuaCK2YUOx+KpLpmnd2L6RkI2Q+BEzbAzNQ3RkICSNZqVoGjuUGLSoXk0CLXfZP37dO0Uwg0wM1UL9owzJtkAk11ibz2UQsmWJy5/29ATY1OH474J1UJ7ZTIdv5psq9BSpt0VIrQeXQDDhzYCbo3g74PyMJ6m7A36U6KTJUzmu86cC7NhGSQ5oKWgHZa6A1BmlxE5kzrRwIZZuBMhjpwvk4rwNWesyg3qGIO+Ekwf2xDPbcadq3UNqrzQBjgMgvHGZ2R+lsxvJRWOc3CSaWjbVZ50XEVSH9NoSafGaiv5cIb/GtzqYSKbNZZ9qhNTISUgo16aEROn2amdQKShWWex2f+Ujq5O7GaQMTbLMrJefsgy4ME5YBm4EUKQvUX0Z8pmURqu3QGAsjdkX2THwr2N6jQiOS6xJQj95wM8+LB2EdJekzYzakxsZGZ40ytOWZsCrDxCCV4dOsroKpTpVapIrnhdlVBoMZUnP44I5N9NhEj0302ESPTfSFTbR5If3+h2M3PXbTYzc9dtNjN31JNyVFgzbXygYwX5+82v4gcFbGvfZdwN9lcwlio/0e3nQ3coi4deAKu/OvjYb8Zdlflxl7FDZOlO3z5CtMaM8746vLhNR/OjnZZuQppOw6fMP6P1gZ/n2yh6zCPUCyBqwUFcrhxH9+DEdTWPrx9S7lFB0IeZAfoawDlRwS1N69WNSZ8Z7RI4nZuY/AfnF5HJF9DNkX1ekR0v2QktrPuxrGJd06FUh2g2aGhl0Yo43fg27v8vzqrPpYv+vgY6t5Q0RNcko3IZ5r33r8ECDmnXI6YDuL1ZxgSYszkaKxna4pRtAur0Cd6mJg6aO9jycMLwojaUzhXG7jTgdy0QbSS6Qu0naiM3/yW0wKI9zca5wiGDQ8vh02/7ohJgWyVAL1NTYXv+H2XOFSWTSO/fp3nzl9hzROKEcT3cJNtRH/hjfM+iiF8CP6XtfjhIsHyPJAu7UDJRhb7XbzUVQ+exo36WrQU64Mt06ZjXtpbbe+PvprYT1r8ewba49EyZ61TemVe9Xu5mILnb2S7EO/36MxDD2TzvW9khrSzTeRzlFBLjrlNbFV0aJN0O18CbGrHBUNd8ZCIr2EKLNyzhPzV+2T9om/02vrMlANfLcJu5bIigWNY3IZBd4tSi7fVpMuYmfcnHqt6MyjdUSIxitKDyM+pdqIb/liMQKLfxq5XNJymGgRbVNhqdTT3a+bRX2gPzrv2pnLHc635mkVwXz9zMCI0GeeFci31+VY7zu2z3VVYWre9FmFVCO5JD6XFfS8IB5PenPoWacdLUqRs2Cq1ScrtcTWCV9rdJMEc9eQbXoeNhpi7+qmzyM+KkeKmU5J2sA9jUThPkSvfVK+hP3agktQk4I4FPPgmX7/Aa/wjYs= sidebar_class_name: "post api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/delete-backup.ParamsDetails.json b/docs/documents/storage/delete-backup.ParamsDetails.json new file mode 100644 index 0000000..cc90ac2 --- /dev/null +++ b/docs/documents/storage/delete-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/delete-backup.RequestSchema.json b/docs/documents/storage/delete-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/delete-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/delete-backup.StatusCodes.json b/docs/documents/storage/delete-backup.StatusCodes.json new file mode 100644 index 0000000..8f85796 --- /dev/null +++ b/docs/documents/storage/delete-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/delete-backup.api.mdx b/docs/documents/storage/delete-backup.api.mdx index af52034..cfebe84 100644 --- a/docs/documents/storage/delete-backup.api.mdx +++ b/docs/documents/storage/delete-backup.api.mdx @@ -5,7 +5,7 @@ description: "Delete Backup" sidebar_label: "Delete Backup" hide_title: true hide_table_of_contents: true -api: eJztWN9v2jAQ/lciP20SJazrXlBXCQbT2KYVtUx7KGgyiSEuxk5tpxuL8r/vzkkgNFCxrdvDxBPBvp/f3Tn+khJL54a0b0iXBoskJpMGiammS2aZxvWUSPhD2iTW6pYFdhCSBuESF6iN4DlkJtA8tlzhIixodpdwzULStjphDWKCiC0paafErmK0ZKzmck6yrLE2zv+KVRrzk3tIA40U5u8Splc1+6OIeeiAGctCrzMceBu1fY7QxowmwsLSC3A7wRhNrKRhBqVPW6f4s+2oEwQsBh+gHShpmbTOMPtu/VhQjDCtO1RTBB5UoAQx05bnDqBENKTWScpECDoVLEcng6gttYnZubVtpba9pJLOWdhd7Uq5Jr0nANihYcgxayqGFYczKgxUz3KLskXTXRW49awiTjWOBQ8oavu3Rh1Rcai4LjnCkcOBymetVn3CujT0rvJRfoohy3cPyLEI9gDJDeqFKIcY50yD7EzpJbX50svTnVBCPbk4yA+X4EkGhwS1txLpJjMC66Cx7LkIzB8P6hHZx5D9rWE/Qrof0vzAOKsfGJ+U9d6qRD7JO/lYgeNxcTwu/gNIUe3VrvvFABLSYMm7ZhpIgtfXWmlXA6ANvcs3JT/Z1uoxAYTKKzhWA69lkQIuA2K4gaVB3tMmfkGzjJ+uCVeGi/c8BErid3Qypc1rqzTcv/ypsweyPMyQqriQctaWaECSRNbGpu37wISaFFUDoZKwGaglQcJiWJBobldOo8uohkq1bybVrWtsprxfSoE15GD1A6uzqQHc0rT13n8ZeVYtGJKogpB1Ekhb8x/uCCgpWcQopOYg5HKmnP2iLFvZDgsQmp2Y13zulfTejUZDpHRjOZY99U0KBTdEC4TvnHqRZrPXY+JDU0hIxje5/kmJdxNHakw8S/WcWZD8OhVULsbkwrsEFSSKMy7YuU8vIKKSMwIfbLaaLYLXaGUs3JXd5TeH4GEnbKWxRrby9gErrpZp0SI3JRM3oN2usvJ1l8DzFh7wv+gUVAGuDfWNIDI0lqZTathnLbIMl3N+jO0QcoNTFK6v4w8iXb8rH2XPO/NZQNM8ZOf3VCQo6frynmqej/AvBfLsqvhI8Nzb57rsXLmq+ixD2qCJXxH+oWOoSTYBqWIWMO18I/9gUFGpWp1UDpJe/2N/1Icp+gmnpzJ4 +api: eJztWEuP2zYQ/ivCnFpAsZxtehGSAN54i7otGmPXRQ9roxiLY4tZmlTIkVtX0H8vRpK9dmwH2+ZxKHwSQM7zmxmKHytgXAZI7+Eas4eygFkMBXpcEZOX9QosrghSKLx7RxmPFMSgrSwg5xCDopB5XbB2sggxeHpfak8KUvYlxRCynFYIaQW8KcRSYK/tEuo63hnXX8QqFvrZmnwQI5359yX5zZH9SU6ROKDApKLBeBQ9qp1zJDYWWBqGFJ5DXc8kxlA4GyiI9FX/Sj6HjgZZRgWTZJs5y2S5MUx/cVIYlAirY4duLsBDLCUoyLNuHayIUSE3krY0BueGWnTqGAIjl+Hk1qGVo+0VWlySut6cSvlI+kwAdQyolJas0Yz3HC7QBIqBNYts13S3HW5DdtCoFoXRGYp28i64CyoNKk2XXOBo4RDlF/3+8YRdo4pu21H+HEPW7j4hxy7YJ0g+ot6Jasu0JA8xLJxfIbdL312dhJIYtXmSH20Do82eEtTZSlSPmcHYu7mh1bCJIHzyoF6Q/Riy/2nYL5Ceh7Q9MF4cHxi/Oo5+cKX9LP/kSwUux8XluPgfQCpq35+6X4wsk7doojvya/LRjffONzUYjEfDt2+2/ORQa0iGmKKOY8VyLcudghRUsyGlEd6TQtLRrJBUO8JVy+JaK/IhGfhyjr07dh6XlMwbeyGptKqFqjQhtayt9AZSyJmLkCYJFrqHopoZV6pe5lYghCVQVnrNm0bjmtCTh/R+tr91J83U9stWYAc5FvpnOmZTIxvIc/TT75OI3QMJieoI2aDk3Hn9d3MEbClZTqiohVDbhWvsd2U5yHbcgdAbFPrI51nJ6MfJZCyUbmqnduj+tMahijin6CVGuafFqykkriCLhU5Cq/9si3dPRmoKEaNfEr+awh9zg/ZhCq+jtwVZIYoLbehlgq8hhi1nTOF5r9/rg1yjXeAVNlPZQfBhJxyksUN27+9Tx20tq65F7rdMPEAM6T4r33UJxId4QAxdp4iKVkLycxdYjFXVHAP95k1dy3LLj6UdlA4yRWp3Hf8g0t2/8qPs+WQ+D7Q5YudrNKVINn25Rq/bEf5XgXxz2z0SfBudc73tXLvZ97kN6RFNeUX4io61gnpWx9tZkLTbjfbBYE9l3+ps7yAZ3vxyM7mBuv4Hp6cyeA== sidebar_class_name: "delete api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/delete-block-storage.ParamsDetails.json b/docs/documents/storage/delete-block-storage.ParamsDetails.json new file mode 100644 index 0000000..cc90ac2 --- /dev/null +++ b/docs/documents/storage/delete-block-storage.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/delete-block-storage.RequestSchema.json b/docs/documents/storage/delete-block-storage.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/delete-block-storage.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/delete-block-storage.StatusCodes.json b/docs/documents/storage/delete-block-storage.StatusCodes.json new file mode 100644 index 0000000..f71b5f3 --- /dev/null +++ b/docs/documents/storage/delete-block-storage.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/delete-block-storage.api.mdx b/docs/documents/storage/delete-block-storage.api.mdx index 78f044a..22155ca 100644 --- a/docs/documents/storage/delete-block-storage.api.mdx +++ b/docs/documents/storage/delete-block-storage.api.mdx @@ -5,7 +5,7 @@ description: "Delete BlockStorage" sidebar_label: "Delete BlockStorage" hide_title: true hide_table_of_contents: true -api: eJztWFtv0zAU/iuRn0DqmjLGSzQmdbSIAoJqK/CwVshN3Mara2e2UyhR/jvn5NImSzsNGDywPjW1z/U75zj+khBL54Z4V+RcKH9xaZWmc2bIpEUiqumSWaZxOyES/hCPRFpdM98OAtIiXOICtSE8B8z4mkeWK1yEBc1uYq5ZQDyrY9Yixg/ZkhIvIXYdoSVjNZdzkqatjXH+V6zSiB+tIA00Upi/iZleN+yPQuagA2YsC5zucOBs1fY5QhszGgsLS8/A7QRjNJGSBlAE6ePOMf7UHXV9n0XgA7R9JS2TNjPMvls3EhQjTJoO1RSBBxUoQcS05bkDKBENqM0kZSwEnQqWo5NC1Jba2OzcqltpbJcm64FzCFZLKpxsu3VbDfRoEHAUpmJYcTCjwkC1LLcoSz4rES/ZRYFTzyqSqUaR4D5FbffaqEeKQtYFjzV9VD7pdJo+z2ngXOSj+RBDk+82Z7mBQBHsPSS3KBeiCNOcaZCdKb2kNl96frxLOYD6cXEvP1yCJ+nfJ6i9lUi2mRFYB41lL4vA/PEgHpC9C9nfGu4DpPshzQ+Mk+aB8UFZ57WK5YO8Yw8VOBwXh+PiP4AU1V7sul8MyjvNJdNw6Xf6Wiud1QBoQO/jq5Jv1LV6TABBcqrUCSKFy1iogKGAMG5jgZDNeMQtyJNxkw2NSnFxxQMgGm5Xx1PaLgy50yohcxMepEhDsvByRhZrQJWE1kbGc11gOW2KBnyh4qDtqyVBMmKYH2tu15nGOaMaquZdTapbl9hYee+UAhv4weo71mRKA7ixaeu8/TJyrFowJEgF2erGkLzmP7LjoKRbIaOQYAYnlzOV2S9KVMt5WEDR7ka84XOvpPNmNBoiXRvLseypb1IouC1aIHOn1Ak1m70cExcaREIyrsn1j0rU2zheY+JYqufMguTXqaByMSZnzkdQQRI444KduvQMIir5IHC9dqfdIXiFVsYuaTahBQS7u6KWzAbfyvsIbGUVTYp2uSq5tgFtr8q7Nx0DzzVU4H+ta1ARODXUOoQo0WSSTKlhn7RIU1zOeTC2RsANTlewuabfinfzDr2TJe/MagENdJuFr6iIUTLr0RXVPB/tXwrkyUXxMeCps8912cVyXfVZhrTFFL8W/EPHUJN0AlLFXGDa+Ub+YaCiUrU6qRwtvf77/qgPE/UT3/YvZA== +api: eJztWE2P2zYQ/SvCnFpAsZxtehGSAN56i7otGmPXbQ9ro6DFscUsRSrkyKkr6L8Xow+vHNnBtk17aHwywJl5M3ycoflUAomth/gerrVNHu7IOrFFD6sQcuFEhoSOzSUYkSHEkDv7FhOaSQhBGV4QlEIIEn3iVE7K8iKE4PBdoRxKiMkVGIJPUswExCXQPmckT06ZLVRVeABX/wqqyNWzHTrPIC38uwLdfoC/SDHgBOgJZTCZz4LHsHOJGGMjCk0Qw3OoqhXX6HNrPHr2vhpf8c9xokmSYE7Iu02sITRUA+PvFOVacIXlMKFdM/EQ8hHk6Eg1CTIkIQXVnqbQWqw1NuxUIXgSVPiTpmOUgbmDPC5cGUJnhA5qc/hhWBWCkFKxs9DzXoKN0B5DIEXsC79YXWR42/I0JQt1aJ5rlQiOjt56+5myUHfB57p9Dn4xHg9zXgsZ3Daj+SmGprEOZ3nAQFvsEzwfWW5dmaYtOghhY10mqFn66upUsEQSSj8pjzKehEmeUtTZkygfdwZzZ9cas2ldgf/Hg3hh9mPM/q3hvlB6ntLmwngxvDB+shR8awvzSf5jLydwuS4u18X/gFIO+/rU+2LWvWnu0O3QBTfOWVefwWQ+m775ptMbx1FT1EgY9KUThPwYS62EGGRt5gNiNRND1IonH5UHGVXx4k5JdD6auGItRi1QtO4LsqhUsmIZUpfXKLLCaYghJcp9HEUiVyPBAIm2hRwlNgMWIx6Twina1xHXKBw6iO9XfdMdN1bTO53DgX6Rqx9wqJRmxqOj4PtfFwHZB2SB1IqtSUGpdeqP+jro5FaKQmJDpzIbW+O3R3S053lLxWiSq0HOs57Bd4vFnOXa0izN1L432goZUIrBSxGkDjevlhDZHI3IVeSb+Gcd6yMeryUEJNwW6dUSfltrYR6W8Dp4k6NhEbhRGl9G4jWE0OnBGJ6PxqMx8BPaespEPaEtBae74mgzB357/0dV2Jxo2bbLfae1PYQQ93X3oWMgPGYFQjjqGg5UksV8aj0xZFmuhcefna4qXm50MLeGVJ6nSx6e6R/Ue/gP/ahKPrmrB9wPVPhO6II96x7dCaea0f5LhXxx234M+DI4l7rrYrPv5+xKeuSUvxb8h4mVhGpVhd1c8LYbQ/NhoBfSR131rpbpzY83ixuoqj8B3/YvZA== sidebar_class_name: "delete api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/delete-restore.ParamsDetails.json b/docs/documents/storage/delete-restore.ParamsDetails.json new file mode 100644 index 0000000..8f09a55 --- /dev/null +++ b/docs/documents/storage/delete-restore.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"backupId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/delete-restore.RequestSchema.json b/docs/documents/storage/delete-restore.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/delete-restore.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/delete-restore.StatusCodes.json b/docs/documents/storage/delete-restore.StatusCodes.json new file mode 100644 index 0000000..ab2600a --- /dev/null +++ b/docs/documents/storage/delete-restore.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/delete-restore.api.mdx b/docs/documents/storage/delete-restore.api.mdx index 10affb4..c99fab0 100644 --- a/docs/documents/storage/delete-restore.api.mdx +++ b/docs/documents/storage/delete-restore.api.mdx @@ -5,7 +5,7 @@ description: "Delete Restore" sidebar_label: "Delete Restore" hide_title: true hide_table_of_contents: true -api: eJztWG1v2jAQ/iuRP20SJazrvqCuEh1MY5tWRJn2oaDJJIa4GDu1HTYW5b/vLm+EBqpuayt14lPhfK/Pnc09jYmlc0PaV2TIjFWakUmDhFTTJbNM40FMJHwhbRJqdc082/dJg3CJAmoD+Owz42keWq5QCALNbiKumU/aVkesQYwXsCUl7ZjYdYiejNVczkmSNErnU+otovBxfPNH8UpDfrQCiNBJ7v4mYnpd8z8KmIMBAF/mO51B39mY7QuEPmY0EhZEryDsBHM0oZKGGdQ+bh3jn+1AHc9jIcQAa09Jy6RNHbOf1g0FxQzjekA1xaaCCbQ3ZNryLAC0n/rUppoyEoJOBcvQSSBrS21kdh5te7l1DOfU9zmmS8WgojmjwgDsllvULUZxmFfctYqktmEouEfR3L026tnXk3bm+ReC1ietVn0ez6nvDLPBf4iRzE7rN6VWap7tPTQ3eOWqHHKcMw26M6WX1Gai18e7jH3oBBf3isMlRJLefZLa24p4UxkBOVgsu2kG5p8vxwHZu5D9q2t6gHQ/pNmDcVJ/ML4o67xXkXyQX7BDBw7PxeG5+A8gRbM3u/aLPhSkwZNzyTSs1E5Pa6XTHsCS3b14V2zz21ZdJoDaOAXdaeBGFShY/UEPT7A3SBPaxM0Zj3HjkvskKFxxHzZ4t6OjKW1eghs6Z27GYEC3oDKJq7MYION+gtt+mmdGqiIN8JLA2tC0XRfIRJOiO0+oyG96aklw5zfMizS369TinFEN7WtfTapHlzhh2RAVCmUfwOsnVickfVjdtHU+fhs5Vi0Y8pCc03QigELzX+m7ULCagFEoN8WVy5lK/ee92kJgkAPT7IS8FnOvpvNhNBogKxrLseyqH1IoWBstcKZT6gSazd6OiQuTIqEY12T2R0UPmnjPxsSxVM+ZBc3vU0HlYkzOnAswQa4144KduvQMMipoF1CqZqvZIrgVK2OXNL2qOQS18diqo4S28psEbtJmxvncXBVM2YB1u8qay9GBz1uAwPd8fNCkwoWLCUIx0FjoewAZY4wY5sywr1okCYoz6olj4nODV84vl/dbBZQ/rHcS051lLmCYbhPfFRURaqbzuqKaZ/f9jxJ5Mcz590tnX+hiouW6GrNIaQMyEvQnDFy26onjwiwkE9DK7ybCnR1k/wOomFS9TiqPXbf3uTfqwa3+Dca4QXE= +api: eJztWG2P2kYQ/ivWfGokB5Nr+sVKIpFwVWmrBt1R9cOBosE74M2ZXWd3TEss//do/MJBfETX5kVKxSek3Xl9ZmY9DyUwrj3EN3BFnq0jWISQo8MNMTm5KMHghiCG3Nm3lPBEQQjayAFyCiEo8onTOWsrhxCCo3eFdqQgZldQCD5JaYMQl8C7XCx5dtqsoarCvfElJrdF/nVs669iFXP9eEvOi5HW/LuC3K5nf5ZSIA7IM6lgNJ0Ed2qnHImNFRYZQwxPoKoWEqPPrfHkRfpieCE/x45GSUI5k2SbWMNkuDZM/3CUZygRln2HdilFhVDKm5Nj3TjYEKNCriVNkWW4zKhBpwrBM3Lh7706tvLRdRUCKqUlXMymB5IrzDyFwJpFtmvFqzbjMVuodfM80wmKevTW2+8+n7oy338iov10OOz340tUwVXT+F+iJZvb/qT0Um2jfYDkHV6tqDZMa3IQwsq6DXJz9OPFfcqKGHX2ID/aeEaTPCSok6Uo7zKDqbPLjDbjOgL/2cNxRvZTyP6nMT1DehrS5sF42n8w/rAc/GwL80W+YOcKnJ+L83PxP4BU1H66b7+YGCZnMAuuyW3JBZfOWVfXYDSdjF+/6rb5Y60xZcQUdHQnlI0qtQpiUPWN1EZoQgxRy3h8VO65TyWHW63I+WjkiiUOrtk6XFPUMBgflR2VqSLX+PBRqVUl234dZ0OqCpdBDClz7uMowlwPUMwlmS3UILEbkJ3fU1I4zbta4yWhIwfxzeLw6lo6rGmiTmBfB8z1b9QnJBPjyXHw61+zgO0tCQ9pOc2o4NQ6/b5+FzpWkxIqanDVZmVr+22tjhCYtsAMRrnu+TwpGfwym02FFc3N3Izt3yazqAJOKXiGQepo9XwOkc3JYK4j3+g/7mowkDmbQ8Do1sTP5/BmmaG5ncOL4HVORrjWSmf0LMIXEEJHu2J4MhgOhiBbsfW8wXpUWwh67XGUxx7ag29SFTbFLNu+uemYsocQ4kPWvG8dCI8BgbAlwLXKARfuOkiOtRJunlrP4qMsl+jpT5dVlRw31FPaRGkvI6f2y/tHCew/rJ8kpvemeUu7HvHdYlaIZN2vW3S6mfd/FcgPVy3/fhScct11tNkd+uxCugNZCPo3dLwv1Tf2qxVUiyrsZlPgbi6a/wAOVA6tLg4eu/Hl75ezS6iqD8a4QXE= sidebar_class_name: "delete api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/delete-snapshot.ParamsDetails.json b/docs/documents/storage/delete-snapshot.ParamsDetails.json new file mode 100644 index 0000000..cc90ac2 --- /dev/null +++ b/docs/documents/storage/delete-snapshot.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/delete-snapshot.RequestSchema.json b/docs/documents/storage/delete-snapshot.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/delete-snapshot.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/delete-snapshot.StatusCodes.json b/docs/documents/storage/delete-snapshot.StatusCodes.json new file mode 100644 index 0000000..9a47549 --- /dev/null +++ b/docs/documents/storage/delete-snapshot.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/delete-snapshot.api.mdx b/docs/documents/storage/delete-snapshot.api.mdx index 5175ec8..51ba3a9 100644 --- a/docs/documents/storage/delete-snapshot.api.mdx +++ b/docs/documents/storage/delete-snapshot.api.mdx @@ -5,7 +5,7 @@ description: "Delete Snapshot" sidebar_label: "Delete Snapshot" hide_title: true hide_table_of_contents: true -api: eJztV21vEkEQ/iuX/aQJ5bDWL6Q2oYIRNZYUjB8KMcvdwm177F5351C83H935t6AHjRVq4kNn0p35/WZmb15EgZ8bln7ig0Vj2yggU0aLOKGLwQIQzcJU/gPa7PI6GvhQd9nDSYVHXAI8LcvrGdkBFLTIR4YcRtLI3zWBhOLBrNeIBactRMGq4gsWTBSzVmaNirj8q9Y5ZE8WmIaZKQwfxsLs6rZHwXCIQfCgvCdzqDvrNX2OSIbMx6HgEcv0O2EYrSRVlZYkj5uHdOfbUcdzxMR+kBtTysQCjLD4ju4UcgpwqTuUE8JeFTBEkTCgMwdYIm4zyGTVHEY8mkocnRSjBo4xHbn1baVO9d4z31fUrg8HGxIznhoEXaQQLJVv1wWKXdBs0w5ikLpcdJ3r63+/xPKavMEMiH1k1ar3pLn3Hcu895/jK7Mb+vDUsu1CPcBkmvAClGJMc6FQdmZNgsO+dHL413KPpZChg/yIxV6Ut5Dgtpbi2SdGcNz1Fh0swjsH4/HAdn7kP2tOT1Auh/S/ME4qT8YnzQ4b3WsHuUjdqjA4bk4PBdPAFJSe7Vrv+hjQgYtOUNhcKt2esZok9UA9+zuxZtyod/W6ooQGYhT0ZIG7VSBxvUfBemKikNUoc3cgplYN6k4SkqHS+njFu92TDzlzSFow+fCtYVFlJZ+Svt9FlZOdWKDaLIAILJt10X60OSk7IU69pueXjDa8q3wYiNhlWmcC26wWu2ryebVkBoq75lSoIIdrX4QdQrSx03NgPP+y8gBfSOIeRQsphNj4kb+yJ6BkscEgmNyGYxSzXRmvyjNVr6DAoZmJ5I1n3slnXej0YB40FiNVVd/U6HGLRGQJZ1yJzBi9nrMXGwMxFK6Ntc/KhFv0liNmQPczAWg5NdpyNXNmJ05F6hC7GomQ3Hq8jOMqCRaSKKarWaL0RasLSx4NpkFBPVu2EqkwnbjG4R2smomRZtclQTWonZ7k8xWnYK/txCh5ii7hZSQpGKNA4yOzCXJlFvx2YRpSsc5saSW8KWlafKrxfxOrNU3817auTOjG2ycu7R2ycOYJLPeXHIj81H+pUCeXRbs+rmzz3XZvWq16bMMaY0n0e9/6Bhrkk5QqpgHSju/yJn2hsqm1cnGc9LtfeyNejhJPwGshe/k +api: eJztV22P20QQ/ivWfALJjdOjfLHaSik5RADR6C6ID5cITbyTeHvOrrs7DgTL/x2N3y6pL9UBBYkqnyztzuszM+t5SmDceojv4NZg7lPLsAohR4c7YnJyU4LBHUEMubPvKOGZghC0kQPkFEJQ5BOnc9ZWDiEER+8L7UhBzK6gEHyS0g4hLoEPuVjy7LTZQlWFvXH9r1jFXD/bk/NipDX/viB3GNhfpBSIA/JMKpjMZ8GD2jlHYmODRcYQw3OoqpXE6HNrPHmRvhpfyefU0SRJKGeSbBNrmAzXhul3jvIMJcJy6NCuBXgIpQQ5OdaNgx0xKuRa0hRZhuuMGnSqEDwjF/7Rq1MrH1xXIaBSWsLFbH4kucHMUwisWWT7frlpU56yhVo5zzOdoOhH77z9/ydU1+YzyETUX4zHw5Z8gyq4aXr/U3RlczsclkGubbhPkHwArBXVhmlLDkLYWLdDbo6+unpMWRGjzp7kRxvPaJKnBHW2FuVDZjB3dp3RblpH4P/xeFyQ/Riyf2tOL5Ceh7R5MF4MH4yfLAff2sJ8kp/YpQKX5+LyXHwGkIra14/tFzPD5AxmwS25Pbng2jnr6hpM5rPp22+6hf5Ua0oZMQU9LQllp0qtghhUfSXFEaoQQ9QyEx+VPUep5HCvFTkfTVyxxtEtW4dbinxr0UelVpXs93VYDdUpXAYxpMy5j6MIcz1CUU4yW6hRYncgW76npHCaD7XGG0JHDuK71fHVrTRU0zOdQA875voHGlKQmfHkOPj+l0XA9p6EebQsZlJwap3+o34GOh6TEipqYNRmY2v7bWlO8p23MIwmuR74PCsZfLdYzIUHLc3STO1vJrOoAk4peIlB6mjzagmRzclgriPf6D/rEB/JWC0hYHRb4ldL+HWdoblfwuvgbU5G2NVGZ/QywtcQQke0Yng+Go/GIFuw9bzDejJbCIbdcJJIj+3RP6gKm2qWbZvcdQTWQwjxMZntOwXCU0SkObpuESWthB2n1rOYK8s1evrZZVUlxw2xlJZQ2ss0qX4x/yDW/p/5Udr5aEb3dBjQ2j1mhUjWvblHp5tR/kuBfHHTsusvg3Ouu+41h2OfXUgPeAr9/g8dawXVqgq7eZC0m4uGaR+pHFtdHT0n0+sfrxfXUFV/AqyF7+Q= sidebar_class_name: "delete api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/get-backup.ParamsDetails.json b/docs/documents/storage/get-backup.ParamsDetails.json new file mode 100644 index 0000000..ccb4fd8 --- /dev/null +++ b/docs/documents/storage/get-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/get-backup.RequestSchema.json b/docs/documents/storage/get-backup.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/get-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/get-backup.StatusCodes.json b/docs/documents/storage/get-backup.StatusCodes.json new file mode 100644 index 0000000..9c55314 --- /dev/null +++ b/docs/documents/storage/get-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/get-backup.api.mdx b/docs/documents/storage/get-backup.api.mdx index 3b2be80..2d88005 100644 --- a/docs/documents/storage/get-backup.api.mdx +++ b/docs/documents/storage/get-backup.api.mdx @@ -5,7 +5,7 @@ description: "Get Backup" sidebar_label: "Get Backup" hide_title: true hide_table_of_contents: true -api: eJztV99v2jAQ/lciP20SJazrXqKuEh1dxyqtqGXaQ0GTSQ5wMXZqO91YxP++OydAKFCxtY88kdj387u73EfOHB9ZFt2xcx5PspT1ayzlhk/BgaHznCl8YRFLjb6H2LUTVmNC0QF3Y3w28JAJAwmLnMmgxmw8hilnUc7cLCVF64xQIzaf15a2xKsYUbHMEmiBxFiXBh8yMDO2xcJAawlc4VUCQ55Jx6IhlxaqJnkqjh4xb6HVU3sJ2NiI1NFVxLpjCChmsOg6aHbawUptV+wVx+wdZtKntG2qlQVL0seNBv2sO7q+Qr1YKwfKeZPw24Wp5BRbvulKD6hGqILVSsE4UZjGavKEOy+pMin5QEIB9RzjddxlduvVupWN6ylXfATJ+WxbshvSOwLAG54kgvLlslNx6KtTY044ki3786ZErOU086ppKkXMSTu8t/qAikfFd8kBjgIOUj5pnGzO1jftgs86U8lrjFhxu0eGZah7SK4wL0UFxjgCg7JDbabcFUfvj7cCidUUci8/QqEnFe8T1M465KvMGJ6jxrTlI7AvHtMDss8h+1+jfoB0N6Sk9mHbKm5jQgYtBbdgcNsHF8Zo42uA+791/WnBXda1LsEFJbWq0Sd2rJHksBH4ohD5iVhYUisb5kuSNafDR5EgqwibJhvw+q3TBj+k4cAbQ1mRzIlt+GAKppYZxJCNnUttFIZIZuqcVGOps6Qe6ykjzmEhzoxwM69xDtxgjaK7fvXqltqo6JSFwBJstHoFm4SojZ9b44KvP7qB0xMgHlRyqmaGORvxxw//glWNgWNqHjyhhtrbLwuylm2nBKHeTMWGz52SwZdut0OsrKd6qqV/Kal5EjjkbKc8GBsYfuyxENtBYTKhLfSPFnjXaZh6LHDcYJVQ8udAcjXpsbPgGlWI6w2FhNOQn2FEC9qHlK7eqDcY7UNtHS49v8UKCNZ6YC2HJayVpYMmfCHzsj/uFtTbonZUpeHLFsHnNTDwvWwTUkG2jcUdY1hkLM8H3MJ3I+dzOi74LfVCIiwNT7JcqhOs8xaa/chlRiEzIs4bSk/SW+7VZynzVhAK9+uUfOW7Ty9GFOO+Lfqdgby5Kf9svA12uV70uppVfS5CWpXg3xB4sWMs5LyPUuX0UNrFRTOOIXUVlarVfuW7c3nRxaH7CzQ11xM= +api: eJztV1GPGjcQ/iureWolhyVp8rJKInEhSUmkHspR9eFA1bAeWOeM7diz19LV/vfKuwssAaJrk8d7Qtgz38x8M4M/KmBcB8hu4Qrzu9LBQoBDjxti8vG8AoMbggyct58p54kEAcrEA+QCBHj6UipPEjL2JQkIeUEbhKwC3rroGNgrs4a6Fnss9UNATK5LSWPSxLQH/FKS38IZhKW1mtCAAEkrLDVDtkIdqA+JTj25Jx+UNV/jSQq5V47jVQazgpKYMwUmmYymk+Tgdin3XmB4CnW9iGUHZ02gEK2fDYfx4zjQ9UcQkFvDZLiBpL85dRpjbtVpKLuMPQIRu+XIs2qhN8QokRtLU2qNS00t1bWAwMhlOHt1jHJyvUGDa5JX23PFnlhfSKAWgFKqWC/qaS9g0x0BrDjadvP5qWNszBYaV+e0yjF6p5+DfWSlYaWZkkc6Wjqi8/Ph89Pd+s1y8s6WRv6IFWtvH1Bhl+oDLA+cd6bKMK3Jg4CV9Rvk9uiXZ2eJJEalHxRHmcBo8ockdbEP1aEymHq71LQZNxmE717TR2a/xez/WvVHSi9TGt1enHuKJ4bJG9TJDfl78slb761vejCaTsbXb3ba5djrPXHSSSsRf2ILKyGDNTVNieIng7STViGt9iKrjof3SpIP6ciXSxzcsPW4pnTZgIW0UrKOaqNJplVqpdeQQcHsQpam6NQAo2uubSkHud1A1ByB8tIr3jYeV4SePGS3i/7VTRyjdlJ2Bnuy0amPdCqIJiaQ5+TDH7OE7R1FHdRpqlHJhfXqn2b5d6qqIJTUkqfMyjb4XUOOqp12JAxGTp3EvGiZ/DqbTaMqm5u5Gdu/jLYoEy4oeYlJ4Wn1ag6pdWTQqTS0/k92fA/iMs0hYfRr4ldz+HOp0dzN4XVy7chErbdSml6m+BoE7GRfBk8Hw8EQ4ntoA2+w2ceOgqMZOKphT2vv0alF28iqm4/bnfQOICDry/D9iIA4JgMEdGMSXZSMqr6wgSNYVS0x0O9e13U8bvVtnAWpQlweuX9U72h7Tmbfoy5jyhCF84nTV+Xt39VvSuazJLThjyX5IfYifvGqXfdz2V9M5KdP3Z+Nn5NLoXezbrb9mLuUDi34bwx8d2AloV7UYrc9sez2YpTn5Ljn0kdd9H533r+dQV3/CzQ11xM= sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/get-block-storage.ParamsDetails.json b/docs/documents/storage/get-block-storage.ParamsDetails.json new file mode 100644 index 0000000..3716e97 --- /dev/null +++ b/docs/documents/storage/get-block-storage.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","description":"","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/get-block-storage.RequestSchema.json b/docs/documents/storage/get-block-storage.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/get-block-storage.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/get-block-storage.StatusCodes.json b/docs/documents/storage/get-block-storage.StatusCodes.json new file mode 100644 index 0000000..ef67747 --- /dev/null +++ b/docs/documents/storage/get-block-storage.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/get-block-storage.api.mdx b/docs/documents/storage/get-block-storage.api.mdx index ec76578..ace4482 100644 --- a/docs/documents/storage/get-block-storage.api.mdx +++ b/docs/documents/storage/get-block-storage.api.mdx @@ -5,7 +5,7 @@ description: "Get BlockStorage" sidebar_label: "Get BlockStorage" hide_title: true hide_table_of_contents: true -api: eJztV99v0zAQ/lciP4HUNWXASzQmdXSMgcSmrcDDWiE3ubZmrp3ZzmBE/d+5c5I2WdppMHjantbY992P7872t5w5PrMsumAHUseX504bPgPLxh2WcsMX4MDQds4UfrCIpUZ/h9gdJ6zDhKIF7ub4OwEbG5E6oWkRFwxcZcJAwiJnMugwG89hwVmUM3eTkifrjFAztlx2Vs7F//GqYpklMACJ1awiXGVgbjaFaLmcaC2BK2875Zl0LJpyaaEeg6di5xqpIi93BhjOIaAiwGIuQf/0OFjDthVTC8xeYGlj4sGmWlnsFFrv9nr0pxno5CPiYq0cKOddwk8XppJTbnk7lJ5QWxGCDU7BOFG4xgHgCXfeUmVS8omEgvsl5uu4y+zGraaX1nblspmywGSN4jLw253bMMTxJBFkzOVpLYDvRoc54ciWfdEyW8BZydDAaeahaSpFzAkdfrf6kbLgp+Cxlk/gV71X7ZiftAve6Uwl/+LIFLvtM9yqv0z1HpZrjktTImkGBm2n2iy4K5Ze7m4CJ9g9Ie8VRyiMpOL7JLW1D/m6MobriFgMfAb2wcfwidm7mP2ro/1E6XZKCfZ609N6XF1R52Dw9Q4OjdHG9wDf88HJ20qcNFFH4IK6yMI08WKda9QybAa+NSR6IhaWGsuG+UptLWnxWiSoFcK+ySa8W3oJJ3XdFuYiWZKS8IkVwi0zyCebO5faKAxRqHQ5OYilzpJurBeM9ISFODPC3XjEAXCD/YouxvWtcxqpYmoqgxXx6PUjtMXOMV69xgUfvg4Dpy+BNE6pl/oZVm7EL38RVIppDhwL9EQKNdXef9mcRs2nJRXdfipaMbdaBu+Hw1NSXCM1UgP9Q0nNk8ChHtvjwdzA9M2IhTgaCosJbYHfqVjv0sEascBxg71Cy28TydXliO0HJwghHTcVEvZCvo8ZVZIO5Vq31+0xegu1dQvuz2ZJwYZ5aFSyIrf2DKEj3868nJWLSo9bREd1bb4aF/zdoAS/GyNDQNTd2Og5pkgu83zCLXw2crmk5ULH0lwkwtKhSlaP7SX2fIO+vuYyo8QZCeQW6FaRq/f2Tmm8kYoifFN6r2OP6cOI4hrYlP3WRJ6dlf9lPA+2ha7mXt3UY1YprRvxZww8ODA2cjlGq/IkUdnFRj+OIXU1SN3ruHYTHR0O8QD+BmpP5LU= +api: eJztV02P2zYQ/SvCnFqAsZw0vQhJAKdOUzdA18i6yWFtFLQ4tpilSYUcbeoK+u/F6MOWI3uxbdpTcjJMzsybeTMkn0oguQ2Q3MBL49Lba3JebjHASkAuvdwhoeftEqzcISSQe/cBU5opEKAtL0jKQIDCkHqdk3a8CAI8fiy0RwUJ+QIFhDTDnYSkBNrnHCmQ13YLVSUOwfX/E9WmplA4RYOEB4SPBfr9OYhByLVzBqWtbTeyMATJRpqAfQyZ60d36ANHuRdgkWHERWAgVNFkPouObpeK6QHDY6iqFfMQcmcDBrZ+Mh7zzynQ1RsQkDpLaKkOiX9SnBvJuZVDKLfmtoLgBufoSTehd0hSSaotbWGMXBtsuK8EBJJUhLNbp1EG213I05S1JfRWmqjeFp+7VQKkUpqNpZn3AOpuCCBNbAvvnCl2+LZlaEoOatc8NzqV7B1/CO4rZaGegq+1fHZ+On46xPzNUfSzK6z6L45Mszs8w4P621QfYHnkuDVlkrboQcDG+Z2kZumHJ+ecFZLU5kE42gaSNn1IUhf7UB4rg7l3a4O7aZ1B+OJj+I3Z+5j9V0f7G6WXKWW3H889rbPuirpGf4c+euW983UPJvPZ9OqnTpycer1GivoiCwRfrJlTkMAW69aw6EkgbjVWiMuD2qp48U4r9CGe+GItR22UeN3XbXGpVcVKok6sEW6FN5BARpSHJI5lrkeSA6TGFWqUuh2wngiYFl7TvvZ4idKjh+Rm1d+65pFqpqYzOBAvc/0Gh2JnZgN6in59v4jI3SJrnFYvTQrKnNd/1RdBp5gylAobIrXduDp+25yTmuctFaNJrgeYFy2jXxaLOSuupV3aqftkjZMqogyjZzLKPG6eLyF2OVqZ6zg0/o861kd8sJYQkfRbpOdL+GNtpL1dwovoKkfLOm6jDT6L5QsQ0Em6BB6PxqMx8FvoAu1kfTZbCs7Mw0klB3J7z1AlmnaW7azcdHo8gICkr80P4wLilBIQcDIy7KgVC/7MBeKQZbmWAX/3pqp4udGxPBdKBz5U6vDY3uL+nL6+k6bgxIEF8sDpsyIP7+290vgsFQ38qfQ+Yq/4j9fNNXAu+4uJfPe2/cr4ProE3c293fcxu5SOjfhnDHwxsFZQrSrRnSQuu9mYpCnm1HPpR131bqLXrxZQVX8Dak/ktQ== sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/get-restore-by-id.ParamsDetails.json b/docs/documents/storage/get-restore-by-id.ParamsDetails.json new file mode 100644 index 0000000..d673f79 --- /dev/null +++ b/docs/documents/storage/get-restore-by-id.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"backupId","in":"path","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/get-restore-by-id.RequestSchema.json b/docs/documents/storage/get-restore-by-id.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/get-restore-by-id.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/get-restore-by-id.StatusCodes.json b/docs/documents/storage/get-restore-by-id.StatusCodes.json new file mode 100644 index 0000000..ccfdab1 --- /dev/null +++ b/docs/documents/storage/get-restore-by-id.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/get-restore-by-id.api.mdx b/docs/documents/storage/get-restore-by-id.api.mdx index 34af7bf..dd9f0d1 100644 --- a/docs/documents/storage/get-restore-by-id.api.mdx +++ b/docs/documents/storage/get-restore-by-id.api.mdx @@ -5,7 +5,7 @@ description: "Get Restore by Id" sidebar_label: "Get Restore by Id" hide_title: true hide_table_of_contents: true -api: eJztVttuEzEQ/RXLTyCFbLi9rAApkAKlEq3aIB6aCDnrSWLq2FvbWwjR/jsze8umSapCKySkPmXjuZ8Ze86KBzHzPD7np+CDdcDHHZ4KJxYQwJFgxQ3+4TFXkne4MviVijDHbweXmXIgeRxcBh3ukzksBI9XPCxTsvDBKTPjed5pnExEcpGlh/fhKnX2OyThXnwpk+hMwgA0lt04vMzALfkODxNrNQiDIglTkenA46nQHtouRaqeXCGEyprr/iT4xKk0kCjmwzkwyhnxB8n6J4dsbbYv91Zg/hQrGVPZPrXGgyftZ70e/WwGOj5Cu8SaACYULuFniFItKLfVdig7IXjRBIFOwQVVusbBEFKEQtNkWouJhhLqHPMNImR+p2jTyzUxyoWUihIV+qSlWcDa4UEF0q2H9LSqdRAsL2zTVKtEkHn03dv/vp6iM/9/IWT9ovdiexI/28De28zI+xjIUrp9Q7YKrXK9heYarUpVYY4zcKg7tW4hQnn0/NkuY4l9UPpWcZTBSCa5TVJ7G7FaV8bxHC0WgyIDf+er8YDsTcj+1SV9gHQ/pGT2ctfiOsSCHHpiZ+BwN7ID56wreoDbcnD8rt70m1YfILDqWWKTJSt4Ar6Rc4vMgM+g6A0xhphHFZXw0aohFTkdXimJqzjqu2wiumfoScwgKikM6tZcJo9cGQbPlMxpbRd5luwpcwgvn4eQ+jiKkBV0BblLtM1kN7ELTsvbQ5I5FZaFxVsQDtsXn4/bojOasHKIaoWmD+j1CLaZxSG+xC6wT1+HLNgLIEJRkZN+hjg49at4F2p6MgeB5Ra4KjO1hf+qVxsInFTAdPup2oq5V5N9HA5PiN6MzMgM7A+jrZAsIPl5JdjcwfT1iEc4KQaLiXxp/6TuQZfu2YizIBx2DjW/TbQwFyP+hh2jCZGmqdLwKhJvMKOaPyE36va6PU5LzvqwEMVVrSDYNR4bpTTottYSeir6uapG57xmoR6t4zYjbaYHvzcwwf/VBJFJiw/XQ0THyLWx9XNMmmKscNQ8fHE6z+m4pJE0KVJ5unWyWccXOAU72OyV0BlVwomfbhldq7pZyDcy053YlOE3me869pj+OFW+E7uy35vIo9OK0z9m+0LXN8Es2zEbROQfln7niE1j/3Hc9QzmY1Su7jTBXcr7SQJpaFm2nY9bL+SHgyE+Bb8BR5LkCg== +api: eJztVm2L20YQ/itiPrWgWE6afhFJwK3T1A30zJ1LP5xNGWvH1ubWu5vd0bWu0H8vqzfLZztcm6MQyCdjzfszMztPCYxbD+ktXJNn4whWMVh0uCMmFwQlaNwRpCAFxCA1pGCRc4jB0cdCOhKQsisoBp/ltENIS+C9DRaendRbqKq4d7LG7K6ws6dwZZ35QBk/iS+pM1UImpIipt7hx4LcHs54WBujCDXEIGiDhWJIN6g8DV2ilc/uyXlp9EN/gnzmpOUgSmGRUxRyJs8kosl8Fh3MLuU+CAzPoapWoWxvjfbkg/aL8Tj8HAe6eg8xZEYzaa5d0l+cWIUht/I0lFkHeCEOQFtyLBvXO2IUyLWmLpTCtaIG6ioGz8iFPys69vJAXMWAQsiQKKr5QLOGNQaWHHS7Ib1ua52ygdrWWiUzDObJB2+++Hrqznz5hQTrl+OXp5P4q+HoJ1No8RQD2UhPN+Sk0DbXR2ge0GpVpWbakoMYNsbtkJtP3704ZyyIUapHxZHaM+rsMUldbER5qAzmzqwV7aZ1Bv6zV+Mrsp9C9j8t6VdIL0MazL4/d7hmmslpVNENuXty0VvnjKt7MJnPplc/dpf+2OodcdQ+S9F6H9U8YUecGwEpbKnuTWAMKSQtlfBJ2ZOKKny8l4KcTyauWOPoho3DLSUNhfFJ2XGZKnFNGJ+UUlThbNd5NuypcApSyJmtT5MErRxhcJcpU4hRZnYQjrenrHCS97XFD4SOHKS3q6HoJkxYM0SdQt8HtPI9nTKLmfbkOPrl90XE5o4CoWjJyaTg3Dj5d/0udPQkJxTU4Cr1xtT+214dITBvgRlNrDyJeVEz+nmxmAd6s9RLPTV/amVQRJxT9Aqj3NHm9RISY0mjlYlv7J91PRiFPVtCxOi2xK+X8Mdaob5bwpvoypIOpGkjFb1K8A3E0PGnFJ6PxqMxhCNnPO+wXtUWgnPjcVRKj+7gLFVx08+yHZ3bjoV6iCEdMtJ+eiA+xgTilgTXJgM+3A1R+CxF4OG58RxilOUaPf3mVFWFzw2NDJMipA9bJ/pzfEf7c2z2HlURKoHAT0+MHlTdH+RPMtOz2DThj5nvIfYq/HGyeSfOZX8xkW+uW07/bXQpdLcJej+M2SMi/mXpnx2xb+z/HPcwg9WqirudDnA38kmWkeWB5dD5avBCvnu7gKr6B0eS5Ao= sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/get-snapshot.ParamsDetails.json b/docs/documents/storage/get-snapshot.ParamsDetails.json new file mode 100644 index 0000000..3716e97 --- /dev/null +++ b/docs/documents/storage/get-snapshot.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"includeDeleted","in":"query","description":"","schema":{"type":"boolean","default":false}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/get-snapshot.RequestSchema.json b/docs/documents/storage/get-snapshot.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/get-snapshot.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/get-snapshot.StatusCodes.json b/docs/documents/storage/get-snapshot.StatusCodes.json new file mode 100644 index 0000000..f8d5470 --- /dev/null +++ b/docs/documents/storage/get-snapshot.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/get-snapshot.api.mdx b/docs/documents/storage/get-snapshot.api.mdx index 1db5f3e..4bce417 100644 --- a/docs/documents/storage/get-snapshot.api.mdx +++ b/docs/documents/storage/get-snapshot.api.mdx @@ -5,7 +5,7 @@ description: "Get Snapshot" sidebar_label: "Get Snapshot" hide_title: true hide_table_of_contents: true -api: eJztVktv00AQ/ivWnkAKcXhdLEAKpJSCRCsaxKGJ0MaexNtudt3dcaFY+e/M+BWnSaryOoA4xdmd5zczO18hUC68iM7EqZGZTy2KaU9k0sklIDi+KYShPyISmbPnEONRInpCGT6QmNJ3Aj52KkNl+ZAOHFzmykEiInQ59ISPU1hKERUCrzO25NEpsxCrVa81rv6MVRPrPIERaMqm9XCZg7ve5WLL5MxaDdKUsnOZaxTRXGoPXR8yUw+uCCq2cquDcQoBJwGeYgmGJ0fBWm1fMh3H4iGlNmUcfGaNB8/SjwYD/tl0dPyO9GJrEAyWJuErhpmWHFux7crOuKykQgXOwKGqTFMDyERiKWlyreVMQ4X9iuJFibnfebVp5cY13cskURyo1CcdyRLWnkCFLNt244c62RFaUSpnmVaxZP3w3Nu/P6GyNv9AJqz+ZPBkuxnfWwxe29wkv6Mnq9vtIdnKtA72DpJruGpRRTEuwJHs3LqlxOro8aNdygkVQuk7+VGGPJn4LkHtrUSxzkzQOWksR2UE/peH4z+ytyH7U1P6H9L9kLLa012764gScmQpOAVH6zE4cM66sga0MEfHr5rtv6l1CBi0BKbH72NqiSiIBZRlYUYRibAmMD4sWiqz4sMrldAiDocun8n+KVonFxD62hxJq2TFK7oMqGJEuSMcRYqY+SgMiQH0JSvH2uZJP7ZLwYvaQ5w7hdelxkuQjuoUnU27V6fcSlW3NAIt4GT1HWyziCN6ch0Gbz+NA7QXwOShJiLDnLJ26lv5ADRUJAVJyZUAKjO3pf26KBv5ntQw9IeZ2vK5VzJ4Mx6fMJWZmIkZ2S9GW5kESETnmQxSB/PnExFSSxCWKvSV/oMG8T4P1EQEKB3ViSQ/z7Q0FxPxIjgmFSZIc6XhWShfUEQNVyIe1B/0B4LXmfW4lOVM1hDc6IONLFpgO6uHjJSlLOoeOWtIriftqEt42zah7w04uDOaVmElIrJU4JRCY3NFMZMePjq9WvFxRQy5HxLleYiSdr1eUK13ENYrqXMOWjDj3FK6kWC7X2/lmjthqNxvctm17yn/caoa+13R7w3k3oeatt8P9rlu+t1cd302Ia2L8GMI/LJjKuRqSlL1BHHa1cUwjiHDjkrX6rTz+hwejGnwvgNTnqVE +api: eJztVkuP2zYQ/ivCnBpAsZw0vQhJALdOUzdA18i6yGFtFLQ4tpilSYYcbeoK+u/F6GV5bS+2TXtokZNhzvubGc1XAoltgPQGro1wIbcEqxic8GKHhJ4lJRixQ0jBefsRM5pJiEEZfhCUQwwSQ+aVI2X5EWLw+KlQHiWk5AuMIWQ57gSkJdDesadAXpktVFXcO1f/jleT6ULiFDUS9hE+Fej350KcuFxbq1GYWncjCk2QboQOOIwhnHp6hz6wlwcDLHKMuAgMhDKazGfRwexSMYPA8AyqasU4BGdNwMDaz8dj/jkOdPUOYsisITRUu8TfKXFacG7laSi75rZCzA126Ek1rndIQgqqNU2htVhrbLCvYggkqAhnRcde7omrGISUihMVej7QrGGNgRSxbj+N79tip2ShNnZOq0ywffIx2P9+QXVv/geVsPmL8YvTYfzFUvSjLYz8J2aykZ4uyUmlbbKP0DzA1aoqQ7hFDzFsrN8Jap6+fX7OWCIJpR8VR5lAwmSPSepiJ8pDZTD3dq1xN60zCF+8HF+RfQjZv7WlXyG9DCmbfXfuds0MoTdCR9fo79BHb7y3vu7BZD6bXv3QXf9jq7dIUU9gYv4+5lZCClus28KMIoWkJTAhKXsqU/HjnZLoQzLxxVqMrsl6scUktO5CUipZ8YmuE2oYUeE1pJATuZAmiXBqJNg407aQo8zugA91wKzwiva1xfcoPHpIb1ZD0TWPUjMtnUIPuHDqHZ6yiJkJ6Cn6+cMiInuLTB5aIjIpKLde/VF/ADoqkqOQ2ACozMbW/tumHNU7b2EYTZw6iXlRM/ppsZgzlVmapZnaz0ZbISPKMXopotzj5tUSEuvQCKeS0Ng/7RAf8UItISLht0ivlvDbWgtzu4TX0ZVDwwRpozS+TMRriKHjSik8G41HY+BzZgPtRL2TLQT35uCoih7Ywemp4qaVZTsjNx3JDRBDOiS8/ZhAfAwHT0Y3KmykJDPo3AZid2W5FgF/9bqq+LkhhjwPUgVeItmf11vcnyOsd0IXnDQw4zwxuldgf18f5JpnYWjCH3PZQ+wV//GqWftz2V9M5Jv3LW1/El0K3c272Q9jdikdmvDXEPjiwEpCtariboO47EYwyTJ0NDAZel0Nvj5v3yygqv4EU56lRA== sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/list-backups.ParamsDetails.json b/docs/documents/storage/list-backups.ParamsDetails.json new file mode 100644 index 0000000..0e74aeb --- /dev/null +++ b/docs/documents/storage/list-backups.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/list-backups.RequestSchema.json b/docs/documents/storage/list-backups.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/list-backups.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/list-backups.StatusCodes.json b/docs/documents/storage/list-backups.StatusCodes.json new file mode 100644 index 0000000..1e14a31 --- /dev/null +++ b/docs/documents/storage/list-backups.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}},"additionalProperties":false,"title":"BackupListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}},"additionalProperties":false,"title":"BackupListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}},"additionalProperties":false,"title":"BackupListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/list-backups.api.mdx b/docs/documents/storage/list-backups.api.mdx index 86067be..d266a4d 100644 --- a/docs/documents/storage/list-backups.api.mdx +++ b/docs/documents/storage/list-backups.api.mdx @@ -5,7 +5,7 @@ description: "List Backups" sidebar_label: "List Backups" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cEPq1AaqVdugehLeAs3eq2WIzERR9iozhLlMWGJlWS8uYJ/t97pw9biu1EyzoUA/QkibzvOx5Pv5w5WFgW3LBzCG+zlM1OWAoGltxxQ+s5U/jBApYa/YWHbhSxEyYULYBL8N3wr5kwPGKBMxk/YTZM+BJYkDO3TonROiPUgm02J1tZsZAovhb0NeNmzbpxWm3cY/gq64VWj+HWcWz5w3qFcnxR+BVrswRXLv38vCVLiqX4TqIgFU9XmKYDXkXchkakhcMBmyTcozxx63jkDccjb8d2zH+SEUMmSfUzVDujVNtUK8stUT8/PaVHW9Hle+QLNRqvXCGS/+X8VALZlu+r0nNKCrJgelJunChFO+1APhiMX87YBs3nMj5kvMqkhLnkZVluSAVfdSJUaHMnwlgY241SQkfCFcisikFJCsYA5VM4vrQPRw6PLUTgihjvCbcOXGYPbrWl7G0vQcGCR+frTk4cMQB3IIoEVQrIcUNhDNJi43DCEW3ViK6qWrtwGovvn/F+ENa1+ZE9TaUIgST4X6zu67Gvxx9aj0Vn7AuxL8QfW4gk4OzQTX4OkXdVjgzf5UovdjvEqDK4A+Uuaw/NTIdSgfUgZCc9QqEmFXYx6mg28p1nDNeRY3lRWGD//eXUR/aeyD6uzfYhPRrSsmGc7TeMP7TzftOZivp20beL/2tk+3bxH7SLF4fmixE6ZFCSd83NihvvjTHaFDkYjkcXl7/WcFKbiwYYr5xlLJqIU12iI1xfFOhMgUgFzK/AHuvnW9BqQ4srEXFj/aHJ5jC4dtrg7ObPt9JsYUkJemUGA8gS51Ib+D6kYgDEFUqdRYNQLxnhIZaHmRFuXXCcczCYoOBm1ty6phoqy6Qm2I2wqXjP98GaEQ5nxnnvPk08p285YTQV3jPM0F0j/oYmjpVwQK+KyAkV60J+lY2Wo+PK/8EwFXs6j1J6byeTMSFGUzVVF/pPJTUOhi7h3kvwEsPjV1PmYy0odMa3Jf/TOtQDOklT5jkwmCCk/DyXoG6n7LV3iSyEQ8VC8pc+vEaLakgqYM8Gp4NT+odJtXU4YhczcxmCOwXQ8mIb2Madg0KKVOZVcdzUSCBxB01Mc1sf+N4KB37XNYKJTTT9sdywPJ+D5R+N3GxoucTdqA4iYenURNsR/BZz3IA8iz8ZXGAE5B0hrlDOLqQtYLMLwxbL7EJcg5X3097Jwvb2vxd3PJirUmsb19zpntGHEWVTOhTqo4b8dFWh1E+8Y6rrQ6nWTZ13woyVspkhcXXoyIhyfxiGPG1Gqil81uhUv7+Z4Fn9BoSRIus= +api: eJztWG1v2zYQ/ivCfdoA1Uq7bB+EtoCzdJvXYTESD/sQG8NZOllsKFIlT149Q/99oF4cKbYTLetQDPAnw+S9Pnc8Us8WGFcWwlu4wOiuyGHhQ44GM2Iybn0LCjOCEHKjP1DEkxh8EMotIKfgg6GPhTAUQ8imIB9slFKGEG6BN7lTtGyEWkFZ+jtbiZBMpjX0sSCzgWGaVht+jl4TvdDqOdo6SSw97VcoplWVV6JNhlwvffOqZ0uKTHwmU5iLF2sy9kBWMdnIiLxKOIRZSp6rE1mm2BtPJ9692rH8nY0EC+lcv4SyXLhS21wrS9ZJvzo7cz99R1fvwYdIKybFlUn6xEEu0cW23Xell64o4Lvy5GRY1KZZM8onwfjuHEofLMnkUPCqkBKXkuq2LJ0LWg8SVPSJBwkmwthhkhIHCq5RFg0GtSgag66egimzTyOXEWOMXGG8Z9wycmEPbvWt7G1nqHBF8cVmUBJHAih9wDgWrlNQTjsOE5SWfGDBTrYZRNdNr12yhvIf6v4iLPf1fcA8lyJCZyH4YPWpH0/9+EX7sZqMp0Y8NeKXbURn4PzQTX6BsXddPxk+y5Ve7Q7AqAl4gOR91Z56Mx0qBTEKOciPUJZRRUOCOlqN7X1mMDV6KSm7rCKw//5yOiH7CLLPG7MnSI9CWg+M8/2B8atm7wddqPg0Lk7j4v+K7Glc/Afj4ttD74uJYjIKpXdDZk3Ge2eMNlUNxtPJ5dX3LZ3U13IPGK9+y1jw3asu1TGEsKrYmYqRCiFoyB4bbHekVekW1yImY4OxKZY4umFtcEXBcmfNVpHUpFdhJISQMuc2DALMxQidViR1EY8inYHjQyxFhRG8qTQuCA0ZCG8X3a0b10N1m7QC90/YXLynfbJmoiwZ9n7+feaxviPH0TR8z7jgVBvxF3Z5rJQwpho5oRJd2W+q0Ut02uQ/Gudiz+dRSe+n2WzqGKO5mqtL/aeSGmOPU/Jeo5caSt7MIdA5KcxFYGv9Fy3UI3eS5uAxmhXxmzn8sZSo7ubw1rvKSTkeKhGSXgf4FnxoKakQXo7ORmfuGybXljOsDmMDwYMG6GWxA7Zz55R+Xcpt0xy3LRPotMMup7nrD/D7cIAPbY8sfEi1+2K5he12iZZ+M7Is3XLNu7k+iIV1pybePcHvaNOlPKsvGQgBHJF3RLhhOYeI9ojNIQo7LnOIcEtWPi77oAq72/9R3vFgrWqvfV7z3vfC/TGiHkqHoD4ayFfXDUv9tXfMdXso1abr8wHMkxjKRem3h84FUe+Po4jyLlJd44vOpPrx3QzK8m+EkSLr sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/list-block-storage.ParamsDetails.json b/docs/documents/storage/list-block-storage.ParamsDetails.json new file mode 100644 index 0000000..04245b5 --- /dev/null +++ b/docs/documents/storage/list-block-storage.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/list-block-storage.RequestSchema.json b/docs/documents/storage/list-block-storage.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/list-block-storage.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/list-block-storage.StatusCodes.json b/docs/documents/storage/list-block-storage.StatusCodes.json new file mode 100644 index 0000000..3a3f008 --- /dev/null +++ b/docs/documents/storage/list-block-storage.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}},"additionalProperties":false,"title":"VolumeListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}},"additionalProperties":false,"title":"VolumeListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}},"additionalProperties":false,"title":"VolumeListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/list-block-storage.api.mdx b/docs/documents/storage/list-block-storage.api.mdx index 125dfa2..69e618b 100644 --- a/docs/documents/storage/list-block-storage.api.mdx +++ b/docs/documents/storage/list-block-storage.api.mdx @@ -5,7 +5,7 @@ description: "List BlockStorage" sidebar_label: "List BlockStorage" hide_title: true hide_table_of_contents: true -api: eJztWG1v2zYQ/isCP21AaqVdtg9CV8BZ2s3r0BiJt32IjeEsURYbilRJylsm+L/vTi+2FNuJlr4ABfTJFnlvvOd4Oj0Fc7CyLLhh51KHt9dOG1hxyxYnLAMDKXfc0HbBFD6wgGVGv+ehm0TshAlFC+AS/B9xGxqROaFpERcM/5ALwyMWOJPzE2bDhKfAgoK5u4wsWWeEWrHN5mRrPBYS/TWWP+Tc3LF+mlYb9xS9+jgU9RO0dRxb/rhfoRxfleeKtUnBVUvfvejYkiIVn8gUZOLZGnE7cKouTLOEe4QTt45H3ng68XZqx85PNmLIJbl+jm4XBLXNtLJYNij94vSUfrqOLt+iXqgxeOVKk/wf52cSKLZi35VeEiiogvBk3DhRmXbagXw0GT+csQ2Gz2V8KHiVSwlLyauy3JALvu4lqDDmXoKxMLafpISegmuQeZ2DShSMAcJTOJ7axzOH9xgicGWO94xbBy63B7e6Vva2G5NdsAkWo0B65fbeaVAPokiQMMhpy0EM0mKjcMKRLPtDyzzlV3VtXTiNxfb/dH8T1nX1UT3LpAiBLPjvrR7qb6i/L1p/ZecbCm8ovC9beGTg7NCb+Rwi76oaAT7JK7rc7QFsHXAPyR1Kj81AB5QjxF/IXn6EQk8q7BPUUTSK3ckYrqNGelFGYD/+5TNk9oHMPq2tDik9mtKqYZztN4x32nlvdK6ioV0M7eJrzezQLj5Du/j+0HwxaWaia27W3HivjdGmxGA8nVxc/tTQQ10tGmC8NiOFceIol+gIN1cl5VLyTgHzawbH+sWWmtrQ4lpE3Fh/bPIljGor/rJDctGwTEFVBFduMJcscS6zge9DJkZAuqHUeTQKdcqI6rA8zI1wd6XGOQeDWAU3i/bWNZVTVTGNwG56zcRbvs/DTHBOM8779c+Z5/QtJ/qlpnLGOR7aiH+hTVElHPBsZRKFinVpvwamc9xpnYXROBN7Po9Ker/MZlMig+Zqri7030pqnBFdwr2X4CWGxz/OmY9lofAwvq30nzUJH9GlmjPPgUGYUPKvpQR1O2evvEtUIYopFpK/9OEVRtSwTQF7PjodndLnS6atS6G8l3UKDtVC5yjb7LbeQWipxLOo6+SmYfoI9aBNYm5LBf93coLPy/ucaKLpu+WGFcUSLP/dyM2Glit2jUoiEpbuUrQdzG8R7haxWX7P4AIjuu6IcM1l9hHt0Jd9FLaMZR/hhpJ8WPYeFtuZ4EF28SBildcue7nzvaAHI6pWdSjVRwP55qrmor/1jrlu7qe6a/u8l2asl80Chev7R0FU++Mw5Fk7U23ji1br+vn1DK/tfzn4JOk= +api: eJztWNtu20YQ/RVinhqAEZ3U7QORBJDrtFVTxILtpg+WUIzIobTxksvsDt24Av+9GF5k0pJs1k0DFNCToN257ZnZ2eFZA+PSQXgFJ9pE1xdsLC7JwdyHHC2mxGRlew0ZpgQh5NZ8pIgnMfigMllAXoEPMbnIqpyVkUXwwdKnQlmKIWRbkA8uWlGKEK6Bb3Ox5NiqbAll6W+MJ0oz2dbyp4LsLQzTdMbyU/Sa40jUT9A2SeLocb8qY1pW50qMTZHrpW9f9mxplaovZApz9fyGrNtxqn6aLlfkSZ7IMcXeeDrx7tT2nV9sJFhocf0CynIuqXa5yRw5kX55dCQ/fUdn78CHyGRMGVcm6TMHuUaJbb3tyiwkKeBLenKyrGrTbBj1o2B8fwylD450siv4rNAaF5rqsizFBd0MEszoMw8STJR1wyQ1DhS8QV00GNSiaC1KPhVT6h5HLiXGGLnCeMu4Y+TC7dzqW9nabk32ky1psRlqr9reOk3pA8axEmHU046DBLUjH1ixyMIHo4uUzpvaOmUD5T/U/VU57uv7gHmuVYRiIfjozKH+DvX3Veuv6nyHwjsU3tctPDFwvOtlPsHYO69HgC/yRFe7AxLbBDxA8i5Lj81AO5RjYlR6kB+VOcYsGhLU3mys704GU2sWmtLTKgL37x+fA7IPIPu0tnqAdC+kdcM43m4Y7w17P5oiiw/t4tAu/q/IHtrFf9Auvts1X0zameiC7A1Z7621xlY5GE8np2c/tPRQX0sGGK/LSIEvo9zKxBDCsqJcKt4phKBhcFyw3lBTpSzeqJisC8a2WOCosRIseiSXDMsSVE1wFVZDCCvm3IVBgLkaoehG2hTxKDIpCNXhKCqs4ttK44TQkoXwat7dupByqiumFbibXnP1jrZ5mEnmyLL3y++XHptrEvqloXLGBa+MVX9hl6JaEcZUg6iyxFT2m8T0jjttUBiNc7Xlc6+k9/Pl5VTIoFk2y07Nn5k2GHu8Iu8VeitLyesZBCanDHMVuFr/eQv4SC7VDDxGuyR+PYM/Fhqz6xm88c5yyoRiSpSmVwG+AR9atimEF6Oj0ZF8vuTGcYrVvWwg2FULvaNs0O28QaVf53Pd1MlVy/RJ1sMuibkpFfD7mIAPi/uc6MrId8sVrNcLdPSb1WUpyzW7JiURKyd3Kd4M5td02yU2q+8ZIUiFrtsj3HCZQ0R79OUQhQ1jOUS4pSQflr2Xi81M8CC7uDNjtdc+e3nney5/rKpb1S6o9wbyzXnDRT/z9rlu72d22/V5D+ZJDOW89Nv7J0HU++MooryLVNf4vNO6fnp7CWX5Nzn4JOk= sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/list-restores.ParamsDetails.json b/docs/documents/storage/list-restores.ParamsDetails.json new file mode 100644 index 0000000..983a7d7 --- /dev/null +++ b/docs/documents/storage/list-restores.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","required":true,"schema":{"type":"string"}},{"name":"backupId","in":"path","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/list-restores.RequestSchema.json b/docs/documents/storage/list-restores.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/list-restores.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/list-restores.StatusCodes.json b/docs/documents/storage/list-restores.StatusCodes.json new file mode 100644 index 0000000..54d1d76 --- /dev/null +++ b/docs/documents/storage/list-restores.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}},"additionalProperties":false,"title":"RestoreListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}},"additionalProperties":false,"title":"RestoreListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}},"additionalProperties":false,"title":"RestoreListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/list-restores.api.mdx b/docs/documents/storage/list-restores.api.mdx index e4fe7b2..242717f 100644 --- a/docs/documents/storage/list-restores.api.mdx +++ b/docs/documents/storage/list-restores.api.mdx @@ -5,7 +5,7 @@ description: "List Restores" sidebar_label: "List Restores" hide_title: true hide_table_of_contents: true -api: eJztWN1v00gQ/1esfQKpxAUKDxYghSvH9UC0aoN4aCI0sdfx0s2u2V2X60X+35nxV+wmaU3oPZzkp8S78/mb8ez6t2IOFpYFl+ycW6cNZ7MDloKBJXfc0MaKKXxgAUuN/sZDdxKxAyYULYBL8L/h3zNheMQCZzJ+wGyY8CWwYMXcTUqK1hmhFizPDxpbcwivsvRBTMVCYqS1oe8ZNzesn6bVxu2jVwEhtNpHW8ex5ff7FcrxRZFXrM0SXLn0/FnHlhRL8UCmIBVPrrHiW7KKuA2NSIuEAzZJuEd1wnbhkTc+O/HWarvyJxsxZJJcP0W3Myq1TbWy3JL0s8ND+uk6Ov2AeqHG4JUrTPJ/nJ9KoNhWm670nIqCKlielBsnStNOO5D3gvHyiOUYPpfxtuBVJiXMJS/bMicX/LqXoMKYewnGwth+khJ6Cl6DzCoMSlEwBqiewvGlvR85nAAQgSsw3jBuHbjMbt3qWrm1jfsQRYJKDPKsJRmDtPjGO+FItp5G51WXHDuNbfOLyh+FdV0DqJ+mUoRAJvxvVg+tNLTSvq1UzKOhh4Ye2ruHyMLRtqPvLUTeeXnGPsgZWOz2qFEVcQ/JNeD3XTK2KEdYSiF7+REKPamwT1A7y7FaZ8ZwHTWWx0UE9vePhAHZO5Ddb0IOkO6EtBwYR5sD45N23p86U9EwLoZx8X9FdhgX/8G4eLHtfnGCCRm05F1wg1/v3jtjtClqgN/zx6d/1PxLV4suMF51mbEYI97IEh3hxqLgMwoOJ2B+RY9Yf9UwRjktXouIG+uPTTaH0QUagQX3SyIIZWtGKPfN2oMtwitZqMwgqixxLrWB70MqRkCWQqmzaBTqJSNWwfIwM8LdFBpvORisWnA5a29dUGOVvVMLrK+kqfjANymPE7yxGef9/WXiOX3FiemoWJNxhhAY8S+02aCEA2ZawClUrAv7VYk6yZ9VmIzGqdjwuVPS+2syOSPeZaqm6lj/UFLjbdEl3HsFXmJ4/HrKfGwQhcn4ttR/UsM/otdryjwHBouGkl/nEtTVlL3xTlGF2JxYSP7KhzcYUU3sBOzp6HB0SN8kqbZuCcUbWkFwuys6aTTItk4itFLUclV1zGVNqJF20GYZm6bB/x088LlqHFJpkYlN72DBE01fJpdshb1l+Wcj85yWS1aL+iMSll6xqLmwX2HtW4Ri8cWCC4xosh3CFYfYR7RDG/ZRaJjCPsI1FXi37K3iNFeFO1m9rSUsvXZZw7XvGT0YUU6wbVDvDOTRecUBP/Z2ua5fVnXT9nkLZmyHX0Pgtx03bZjPULYaApR8uT0OQ562K9S2PWtN0/fvJjg7fgLoPy38 +api: eJztWN1v2zYQ/1eEe9oA1Uq7bA9CW8Bdus3rsBiJhz3ExnCWTjYbmlTJk1dP0P8+UB+2FNuJ6mYPA/xkmLwP3u+Ox9MvB8aFhfAObsiyNgQzH1I0uCIm4zZyULgiCCE1+iNFPIrBB6HcAvISfDD0KROGYgjZZOSDjZa0Qghz4E3qFC0boRZQFP7W1hyj+yx9FlOJkEymMfQpI7OBfppWGz5FrwZCaHWKtk4SS0/7FYppUcaVaLNCrpa+e9WxJcVKPJMpTMWLNRl7IKqYbGREWgYcwmRJnssTWabYG45H3k7tWPzORoKZdK5fQlHMXKptqpUl66RfXVy4n66j6w/gQ6QVk+LSJH3mIJXozpbvu9JzlxTwXXpSMiwq06wZ5ZNg/HAJhQ+WZHLo8CqTEueSqrIsnAta9xJU9Jl7CSbC2H6SEnsKrlFmNQaVKBqDLp+CaWWfRm5FjDFyifGeccvImT241bXyYLvwAeNYuBSjHLckE5SWfGDBTrbpRjd1lVyxhuJLlX8TlrsGfMA0lSJCZyL4aPW5lM6ldGoplf3oXEPnGjq5hpyFy0NP3zuMvZvqjX2WN7Dc7ZGj+sQ9JHeAPzVkHFCOiVHIXn6Esowq6nOoo+nId5HB2Oi5pNVVeQL79U/CGdlHkD2tQ54hPQpp1TAu9xvG75q9n3Sm4nO7OLeL/yuy53bxH7SL7w/NFyPFZBRK75bMmoz33hhtyhwMx6Or6x8b/qWr5QYYrx5mLPhuIlvqGEJYlHxGyeGEENT0iA3yLWNUuMW1iMnYYGiyOQ5uWRtcUFARQTbIG0aoCMzOgy2PV7FQmZEQwpI5tWEQYCoG6CxFUmfxINIrcKyCpSgzgjelxjtCQwbCu1l769YVVlU7jcBuJE3FB9qnPEbKkmHv1z8nHut7ckxHzZoMM15qI/7BNhu0JIypglOoRJf26xR1gh/XmAyGqdjzeVTS+2UyGTveZaqm6kr/raTG2OMlea/RWxpK3kwh0CkpTEVgK/0XDfwDd72m4DGaBfGbKfw1l6jup/DWu05JOTYnEZJeB/gWfGiInRBeDi4GF+6bJNWWV1je0BqCh1XRCWOLbOslKvwql3ldMXcNoea0wzbLuC0a8Lt4gF8ziKVKi0zc1s7Mh6V2XyZ3kOdztPSHkUXhlitWy9VHLKy7YvF2YL+nTZtQLL9YIARwNNkR4ZpD7CPaoQ37KGyZwj7CDRX4uOyD5GxHhUdZvYMprLx2WcOd75n7Y0TVwQ5BffQg39zUHPC33jHXzWVVm7bPBzCP4i9E4Ksdb8uwmBV+0wRc8NX2MIoobWeobXvW6qY/v59AUfwL6D8t/A== sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/list-snapshot.ParamsDetails.json b/docs/documents/storage/list-snapshot.ParamsDetails.json new file mode 100644 index 0000000..04245b5 --- /dev/null +++ b/docs/documents/storage/list-snapshot.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"filter","in":"query","schema":{"type":"string"}},{"name":"sort","in":"query","schema":{"type":"string"}},{"name":"projection","in":"query","schema":{"type":"string"}},{"name":"offset","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"limit","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/list-snapshot.RequestSchema.json b/docs/documents/storage/list-snapshot.RequestSchema.json new file mode 100644 index 0000000..c96bced --- /dev/null +++ b/docs/documents/storage/list-snapshot.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body"} \ No newline at end of file diff --git a/docs/documents/storage/list-snapshot.StatusCodes.json b/docs/documents/storage/list-snapshot.StatusCodes.json new file mode 100644 index 0000000..c2c4559 --- /dev/null +++ b/docs/documents/storage/list-snapshot.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}},"additionalProperties":false,"title":"SnapshotListResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}},"additionalProperties":false,"title":"SnapshotListResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"total":{"type":"integer","format":"int64"},"self":{"type":"string","nullable":true},"prev":{"type":"string","nullable":true},"next":{"type":"string","nullable":true},"first":{"type":"string","nullable":true},"last":{"type":"string","nullable":true},"values":{"type":"array","items":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}},"additionalProperties":false,"title":"SnapshotListResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/list-snapshot.api.mdx b/docs/documents/storage/list-snapshot.api.mdx index 6e56c40..189321a 100644 --- a/docs/documents/storage/list-snapshot.api.mdx +++ b/docs/documents/storage/list-snapshot.api.mdx @@ -5,7 +5,7 @@ description: "List Snapshot" sidebar_label: "List Snapshot" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cEPq2Aa6VdtgehK+Au3ZZ1aILEQx9iozhLlMWGJlmSypYJ/t93J8my5I9ETbuHAXqyTN4X73c8kr+CeVg6Ft2wawXGZdqz+YgZsLDinluaKZjCPyxixupPPPbnCRsxoWgAfIbfCXexFcYLTYM4YPnnXFiesMjbnI+YizO+AhYVzN8bsuS8FWrJ1utRYzwVEv1tLH/Oub1n/TSdtv4pevVyKOonaOs0dfxxv0J5vizXlWq7Al8Nff+yY0uKlfhGpsCI53eI24FVdWGaZjwgnLjzPAkml+fBVu3Y+slGCrkk1y/Q7ZygdkYrxx1Jvzw5oZ+uo4t3qBdrDF750iT/24dGAsVW7LvSCwIFVRAew60XlWmvPchHk/HjKVtj+Fymh4JXuZSwkLwqyzW54He9BBXG3EswFdb1k5TQU/AOZF7noBIFa4HwFJ6v3OOZw30MCfgyx3vGnQefu4NTXSs70zgPSSIIYpCXLckUpMMd74Un2aapXNVlcuY11s2Xav8h3I4FNGCMFDGQjfCT00MxDcX09GIqe9JQRUMVfUUVkYnTQwfgG0iCq+qk/SYnYTnbA6U65B6S25Q/dtU4oJwgmEL28iMUelJxn6CO4lFsV8ZwHDVWZ2UE7uuPhSGzD2T2aT1ySOnRlFYN43S/YbzXPvhF5yoZ2sXQLv6vmR3axX/QLn44dL84xwVZtBRcc4tv+OCttdqWGOCr/uzi5w0L09WiC0zQcD4jupNlOsGJZclqlNROxMKaJHFh0bA/axq8Ewm3LpzYfAHja68tLHnoanOOOIQymIo/yi3mkGXeGxeFIRgxBtKLpc6TcaxXjJgEx+PcCn9farzhYBGj6GbenrqmMqoqZSOwvYIa8Y7v0xzneD+zPvj9wzTw+pYTu1EzJZMcF2zFP9BmgDIOuK4yeUKlurRfA9JZ6mWdgfHEiD2fRyWD36bTS+JaZmqmzvRfSmq8G/qMB68gyCxPf5qxEMsB0yhCV+k/3yR7TJtpxgIPFiFCyY8LCep2xl4HF6hCDE4qJH8VwmuMaEPmROzF+GR8Qm8Qo51fQbkf6xTs1kBnGU1mW+cOWimxLOr6uNmQaIR41OYHmxLB704+qDSaMkFsM02PjhtWFAtw/E8r12sarkgrKoVEONo7SXMVv0WYW3xh+Rgh3pFYsCPCNUXYR7TDCvZRaIjAPsIbpu9h2R0cmjvAg6TdQbQqr11ScOt7Tn+sqFrToVQfDeS7q5rifRYcc73Zl+q+7XMnzVgr6zkK1/uOgqjmJ3HMTTtTbePzVrv69e0Ut+u/tQjn8Q== +api: eJztWN9v2zYQ/leEe1oB1Uq7bA9CW8Bdus3r0BhJhj7ExnCWThYbmlTJk1fP0P8+nCQ7cmInWto9DPCTYfJ+8bvj8fStgXHuIb6GS4OFzy3DNIQCHS6IycnOGgwuCGIonP1ECY9SCEEZWUDOIYSUfOJUwcrKIoTg6HOpHKUQsyspBJ/ktECI18CrQix5dsrMoarCrfFMaSa3sfy5JLeCfpreOn6KXnscifoJ2jbLPD3uVxmmeX2uzLoFcrP0/csdW1ot1DcyhYV6viTn95xqN01XOQWSJ/JMaTAcj4JbtUPnFxsZllpcv4CqmkqqfWGNJy/SL09O5GfX0fl7CCGxhslwbZK+cFRolNjW913ZmSQFQklPQY5VY5oto34UjB9PoQrBk872BW9KrXGmqSnLSlzQspegoS/cSzBTzveT1NhTcIm6bDFoRNE5lHwqpoV/HLkFMabINcb3jHtGLv3erV0rd7arEDBNlaQY9bgjmaH2FAIrFtltU7loy+SMLVT/Wvt35e9YCAGLQqsExUb0ydtjMR2L6enFVPekYxUdq+grqkhMnO57AN9iGlw0L+03eQnr3R5ZakPuIXkL+WOjxh7llBiV7uVHGc9okj5BHczH+vZkMHZ2pmlxVkfgv/5ZOCL7ALJP65FHSA9C2jSM0/sN44Pl4GdbmvTYLo7t4v+K7LFd/Aft4od988XIMDmDOrgktyQXvHPOujoHw/Ho7PynDQuzqyUDTLDlfEKZyXKbQgzzmtWoqZ0YopYk8dF6y/5UsrhUKTkfDV05w8ElW4dzinxrzguHUAfT8Eel0xBDzlz4OIqwUAMUvUTbMh0kdgHCJHhKSqd4VWu8JXTkIL6edrcupYyaStkI3I6ghXpP92mOkfHkOPjt41XA9oaE3WiZkmHJuXXqb+wyQDlhSg14ymS2tt8mZOeo4xaBwbBQ93welAx+vboaC9cyMRNzZv8y2mIacE7BKwxyR9nrCUS2IIOFinyj/3wD9kAu0wQCRjcnfj2BP2cazc0E3gTnBRlhcDKl6VWEbyCEDZkTw4vByeBEvkEK63mB9X1sIbhbAzvH2CLbeXeqsMnluq2P6w2JJhmPu/zgtkQg3MVDSmNbJtMQcisfHdewXs/Q0x9OV5UsN6SVlEKqvNyddDuK39CqyxfWHyPCOwoLdkC4pQj7iO6wgn0UtkRgH+EN0/ew7J08bGeAB0m7vdlqvO6Sgre+p/LHqaY17YP6YCDfXbQU77PgkOvNvTSrrs87MI9SqKZVuLl3EkSzP0wSKrpIdY1PO+3ql3dXUFX/ALUI5/E= sidebar_class_name: "get api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/sidebar.ts b/docs/documents/storage/sidebar.ts index 55bf88e..74d22bb 100644 --- a/docs/documents/storage/sidebar.ts +++ b/docs/documents/storage/sidebar.ts @@ -1,158 +1,156 @@ - import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebar: SidebarsConfig = { - "apisidebar": [ + apisidebar: [ { - "type": "doc", - "id": "documents/storage/aruba-storageprovider-api" + type: "doc", + id: "documents/storage/aruba-storageprovider-api", }, { - "type": "category", - "label": "Backup", - "items": [ + type: "category", + label: "Backup", + items: [ { - "type": "doc", - "id": "documents/storage/create-backup", - "label": "Create Backup", - "className": "api-method post" + type: "doc", + id: "documents/storage/get-backup", + label: "Get Backup", + className: "api-method get", }, { - "type": "doc", - "id": "documents/storage/get-backup", - "label": "Get Backup", - "className": "api-method get" + type: "doc", + id: "documents/storage/update-backup", + label: "Update Backup", + className: "api-method put", }, { - "type": "doc", - "id": "documents/storage/update-backup", - "label": "Update Backup", - "className": "api-method put" + type: "doc", + id: "documents/storage/delete-backup", + label: "Delete Backup", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/storage/delete-backup", - "label": "Delete Backup", - "className": "api-method delete" + type: "doc", + id: "documents/storage/list-backups", + label: "List Backups", + className: "api-method get", }, { - "type": "doc", - "id": "documents/storage/list-backups", - "label": "List Backups", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/storage/create-backup", + label: "Create Backup", + className: "api-method post", + }, + ], }, { - "type": "category", - "label": "BlockStorages", - "items": [ + type: "category", + label: "BlockStorages", + items: [ { - "type": "doc", - "id": "documents/storage/create-block-storage", - "label": "Create BlockStorage", - "className": "api-method post" + type: "doc", + id: "documents/storage/create-block-storage", + label: "Create BlockStorage", + className: "api-method post", }, { - "type": "doc", - "id": "documents/storage/get-block-storage", - "label": "Get BlockStorage", - "className": "api-method get" + type: "doc", + id: "documents/storage/list-block-storage", + label: "List BlockStorage", + className: "api-method get", }, { - "type": "doc", - "id": "documents/storage/update-block-storage", - "label": "Update BlockStorage", - "className": "api-method put" + type: "doc", + id: "documents/storage/update-block-storage", + label: "Update BlockStorage", + className: "api-method put", }, { - "type": "doc", - "id": "documents/storage/delete-block-storage", - "label": "Delete BlockStorage", - "className": "api-method delete" + type: "doc", + id: "documents/storage/delete-block-storage", + label: "Delete BlockStorage", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/storage/list-block-storage", - "label": "List BlockStorage", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/storage/get-block-storage", + label: "Get BlockStorage", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Restore", - "items": [ + type: "category", + label: "Restore", + items: [ { - "type": "doc", - "id": "documents/storage/create-restore", - "label": "Create Restore", - "className": "api-method post" + type: "doc", + id: "documents/storage/create-restore", + label: "Create Restore", + className: "api-method post", }, { - "type": "doc", - "id": "documents/storage/get-restore-by-id", - "label": "Get Restore by Id", - "className": "api-method get" + type: "doc", + id: "documents/storage/list-restores", + label: "List Restores", + className: "api-method get", }, { - "type": "doc", - "id": "documents/storage/update-restore", - "label": "Update Restore", - "className": "api-method put" + type: "doc", + id: "documents/storage/update-restore", + label: "Update Restore", + className: "api-method put", }, { - "type": "doc", - "id": "documents/storage/delete-restore", - "label": "Delete Restore", - "className": "api-method delete" + type: "doc", + id: "documents/storage/delete-restore", + label: "Delete Restore", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/storage/list-restores", - "label": "List Restores", - "className": "api-method get" - } - ] + type: "doc", + id: "documents/storage/get-restore-by-id", + label: "Get Restore by Id", + className: "api-method get", + }, + ], }, { - "type": "category", - "label": "Snapshot", - "items": [ + type: "category", + label: "Snapshot", + items: [ { - "type": "doc", - "id": "documents/storage/create-snapshot", - "label": "Create Snapshot", - "className": "api-method post" + type: "doc", + id: "documents/storage/create-snapshot", + label: "Create Snapshot", + className: "api-method post", }, { - "type": "doc", - "id": "documents/storage/get-snapshot", - "label": "Get Snapshot", - "className": "api-method get" + type: "doc", + id: "documents/storage/list-snapshot", + label: "List Snapshot", + className: "api-method get", }, { - "type": "doc", - "id": "documents/storage/update-snapshot", - "label": "Update Snapshot", - "className": "api-method put" + type: "doc", + id: "documents/storage/update-snapshot", + label: "Update Snapshot", + className: "api-method put", }, { - "type": "doc", - "id": "documents/storage/delete-snapshot", - "label": "Delete Snapshot", - "className": "api-method delete" + type: "doc", + id: "documents/storage/delete-snapshot", + label: "Delete Snapshot", + className: "api-method delete", }, { - "type": "doc", - "id": "documents/storage/list-snapshot", - "label": "List Snapshot", - "className": "api-method get" - } - ] - } - ] + type: "doc", + id: "documents/storage/get-snapshot", + label: "Get Snapshot", + className: "api-method get", + }, + ], + }, + ], }; export default sidebar.apisidebar; - \ No newline at end of file diff --git a/docs/documents/storage/update-backup.ParamsDetails.json b/docs/documents/storage/update-backup.ParamsDetails.json new file mode 100644 index 0000000..d28168b --- /dev/null +++ b/docs/documents/storage/update-backup.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/update-backup.RequestSchema.json b/docs/documents/storage/update-backup.RequestSchema.json new file mode 100644 index 0000000..75a3d36 --- /dev/null +++ b/docs/documents/storage/update-backup.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"BackupUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"BackupUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"BackupUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/update-backup.StatusCodes.json b/docs/documents/storage/update-backup.StatusCodes.json new file mode 100644 index 0000000..8f85796 --- /dev/null +++ b/docs/documents/storage/update-backup.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"type":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true},"sourceVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"bootable":{"type":"boolean","nullable":true}},"additionalProperties":false,"description":"Source volume of backup","title":"BackupVolumeResponseDto"}],"description":"The source volume for this backup","nullable":true},"retentionDays":{"type":"integer","description":"Retention days for the backup","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The backup type (Full, Incremental)","nullable":true}},"additionalProperties":false,"title":"BackupPropertiesResponseDto"}],"nullable":true},"managedBy":{"type":"string","nullable":true},"data":{"allOf":[{"type":"object","properties":{"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"nameSpace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ValueResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"InfrastructureResponseDto"}],"nullable":true},"info":{"allOf":[{"type":"object","properties":{"sizeBytes":{"type":"integer","format":"int64","nullable":true},"expireAt":{"type":"string","format":"date-time","nullable":true},"backupChain":{"allOf":[{"type":"object","properties":{"full":{"type":"string","description":"Uri of the Full backup in the chain.","nullable":true},"previous":{"type":"string","description":"Uri of the previous backup in the chain (null if Full).","nullable":true},"next":{"type":"string","description":"Uri of the next incremental backup in the chain (null if last).","nullable":true}},"additionalProperties":false,"title":"BackupChainResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataInfoResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupInternalDataResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"BackupResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/update-backup.api.mdx b/docs/documents/storage/update-backup.api.mdx index 9b69748..8f57b5b 100644 --- a/docs/documents/storage/update-backup.api.mdx +++ b/docs/documents/storage/update-backup.api.mdx @@ -5,7 +5,7 @@ description: "Update Backup" sidebar_label: "Update Backup" hide_title: true hide_table_of_contents: true -api: eJztWVuT2jYU/isa9aUXwJtt+sKkmYHdpKFJs8wu2z4sTEfYAhRsy5FkNpThv/ccycbGhoRtt/vQOA8ZVjrX71ws6WyoYXNNu3e0z/xlmtBJiyZMsYgbrnB9Q2P4g3apCGiLihh+Jcws4HfAta9EYoTERVhQ/GMqFA9o16iUt6j2FzxitLuhZp2gCG2UiOd0u23tpCZKfuC+Gfwnwlki2itwA4Vk4j+mXK1r8kcLTlAB14YHpDcckILtmCKUMWNpaGDpGaidOBtBRF8Ga6Sv+eDL2PDY4B5LklD4DPe8DxoJNiVNLAyvZhb8TKecIkogAvBKuDKCa6SDKLGAmbJ1RygdIod8KNv4HqiInBFj8dAyVT6n2xYNpTP1y3pWLExPUPQ7khWa5rBKREzuF8Jf7Gkn9yIMyZQTawIPOmM1jnsrJkI2DXNWTZghCbAAuF0kaJPBqP9Lu8/VnEVyHI/j11KRSCoOWmZSRdabFgHA/aXV94KRheKzn8fUC6SvvRxZ75vc9zaLgzYutX1Qw9WYEsPUnBvg+XMasng5pi+BN41g23K88NjLDiYkZUEgcIWFwxJaMxZqXkXmAnKECXCpZChhU5kaa+e1wwqQY0WEWtQIEyLc7zJjL43EuLna3gWDKcUw+YXhkT5QOlVb3gltbJBADAFr9vOiReM0tGFwNflAR3/LEK7lW+FNTpJ5s59pp9bIFBIIvBtyJWTw5czEVpCxkMTyWM+nkAbLGyMVm/MOuYrDNXkD5hIBuUcg6UVAXOo/GJXcWdd/bxNwmBdk1vXJowh1opDV8E+m6TpN12m6TtN1nq7rlI883//QtJ+m/TTtp2k/T9R+kBnATqBuHELnZ+f1O1rP93kCBbd/V7PHpSRkotKwTm9TFUfgUgnFkuqDW5UWVt2OWAzRCPrrQ1GtUR8x4GFIXme4WSwrjbzexr9WVI4cqr9OOJD5+dlZvcL6LIB2bp9JHqPI3O4JPmbGnkBZoJ6RCrBxzhXQum+TW/rx/CCUEE8RnqQHPneGxf4pRh2NxKbwjMI6cESX1gL9rwu1QfZzyP6jYm8gPQ6paxjP6w3jvTTktUzjR/kmNxFo2kXTLv4HkCLbT4fOFwO8pYIkcsPViivySimpbAx6w8Hl1UU+PtrncncFko3AWngsW+C9iSapjQvOpLrUy4ZV2tvsxlZbXFyJgCvt9VQ6ZZ3svuRNrTCgFcEWx0jWHjdRSxXASBfGJLrreSwRHYasfijToOPLyF5+NPdTJczacvQ5UxCm7t2kvHWDmeSSJScorr2JeMvrk64BHNGUIb/+MSJGLjkOuLJhWS8Fn5X4y715ZOOyBWfgmsUP0/e6GHC9+sSixKXd3iHWCdtFu/yIkj2TlG7e+ewxW5nUTraVe2xpyEfxqcD6m+XIHvrDLCidXiJqGBylJG9GoyGO//Dx5FLex6GE42rlpQTMiwFcTzv+dh7/DgJ08H2EXAELDhVnIuT4PgIW5fPFLn3WOeuc2Zu+1AYO7iUUq2m558Yu0qVPIUixubXJUvYun69q4O6WZ627rIXfe3jA31nmIosIcCC8AMtQ2GYzZZrfqnC7xWU3S8X0DITGkg4Ov3psig/3ZyetB/1ZQhJXJ7l5Itk6WTElXD95kCHfXmcD5e/IMdV5JcXrss7cJIAGR81PqLGI3xYrJatNdNvtXzhV7RFKKfhrn3U023G4944SbdmcSakPDm9HmBjZYDuSARIrdo+DefjfGimtz7Zs7dqGQv7PU8ypLnWK8d/fN2lmHQ== +api: eJztWUtz2zYQ/iuY7aUPSnLS9KJJMiPHSeM2jTW20h4iT2dFrCTEIMAAoBxVo//eWYK0qFcit2kOjXQEd7G73z4E4FtAwImH7ls4xfSmyOE6gRwdZhTI8foCDGYEXVASElAGupBjmEICknzqVB6U5UVIwNH7QjmS0A2uoAR8OqUMobuAMM95Cx+cMhNYLpO7XXNn31Eazv+TzTFXrRk5z5tU278vyM239h9MSbAB8oGk6PXPxUptnyHeY4yFDtCFB7BcXkcfyYdTK+csvxVDak0gE/gb5rlWKfK3zjvPAouGJdT6YlyCX9m0I0YJEsYrJxcUeZbLKKDE0PRuj2REZFcMTR9fY0bCjkUo8fC2cCnBMgFto6uftjNDXRxg6HcWW1maKGuEMuJ2qtLpmnVxq7QWIxKlCyTbQzc0vRkqjSNdq3qBQeSOPJnQZYGWOB+c/tw6JTfBzA7N0LywTmTWkVBmbF1WRpOIdErpTWnvMYqpo/GTIXSkTX2nRrbzTR17C41s8VIrJRPIDUEEdBMKT4bw50ijuRnCU2nTIiMTSo3HHXza5oIElFLxCup+A60xak+byDyzJqAyvumowJEtQunnZcTKjgWuMpRAUEEz3K8qZ8+C5bzF3r5LBjqHXPwqUOZ3tM6mL6+UD2WScOLF2Lr1ukjAFLpMQ+zJewb6W4XwVr2toqlFqmjWK+3QHhkprZWZ9MkpKz9dmTwKKhWRlzpl5CNt05urYB1OqC0ujJ6Ll7ZwQnmBYoZaSRFL/96o1MHG+fsmlxhoJVaGfv1ZNo1bsWqgD+E4dY5T5zh1jlPny02d5pHn+x+O4+c4fo7j5zh+vtD4YWVHPrfGR4QenjzcvqP10pTyQHL9rlYel3KNamNgHT6mNgJJwAcMhd/5aWOEbX7O0OCE5Ol8V1a3pPc4cD8kLyvcSiw3Bvn2GP9aUdlzqP464WDlRycn2x12ilJcxmeSz9Fk8esBMVbOHiC5Qr0SVSbQhBwkEP+b4tKPD3dCSQGVPsiOMj6gSQ9xam8mFqvIoO/sSFN2Vnrg/3WjHpH9GLL/qNmPkO6HNA6MR9sD47UN4oUtzGf5Tz5m4DgujuPifwApq/2063xxzrdUg1pckZuRE8+ds67MQa9/fnbxrKaP1rXiXUFUFFjCx7Ip35sgL8q8MCfVhU5FVvnO4o62WvLiTElyvtNzxQjb1X2pMyo3852FkkumkUp/IqNWOA1dmIaQ+26ng7lqI6um2hayndqsvPx4SgunwrzUOCV05KD79rr56YorKRZLLbC69ubqV9pmus6NJxfEL38MRLA3xARXRZb1ijC1Tv0V3zwqumxKKCnix+V7uSK4nn/ALI9lt3aIjZvdZbv5iFI9kzRu3jX3WK1cb51sN+6xDZIP+KmgjLeqkTX0+1VS2r1cbWGwV1K8HAz6TP/x48mZvTXaotx8KbE5GcxVx0f9Vp3/NgO0831EXORkmFQcK038PgIJ1PxiFx60T9on5U3f+pChaaC4WZZrYdxluvFXuExibS2qkn1b86seEug2uda7qoVkHQ9IoKpcVlGSCeGp9YE3WyxG6OmN08slL0culctTKs8tLXe/eixWf9wfZVp3xnND8y0mty6ksk9m6FScJ/dy5NvLilD+TuwzXXeSmTdt1i4pCUw1f0GLq/wtuVOq3uSw4/dn0VRrwLus9Lf+1tntqBHfOxqyTXeuG3Ow/2bAhVER25mVLOzwlol5vI1O2jLmsm3LtQVoNJOCa6oL0TD//gY3aWYd sidebar_class_name: "put api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/update-block-storage.ParamsDetails.json b/docs/documents/storage/update-block-storage.ParamsDetails.json new file mode 100644 index 0000000..d28168b --- /dev/null +++ b/docs/documents/storage/update-block-storage.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/update-block-storage.RequestSchema.json b/docs/documents/storage/update-block-storage.RequestSchema.json new file mode 100644 index 0000000..fa612a2 --- /dev/null +++ b/docs/documents/storage/update-block-storage.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."}},"additionalProperties":false,"title":"VolumeUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."}},"additionalProperties":false,"title":"VolumeUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32"},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value"},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation."}},"additionalProperties":false,"title":"VolumeUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/update-block-storage.StatusCodes.json b/docs/documents/storage/update-block-storage.StatusCodes.json new file mode 100644 index 0000000..f71b5f3 --- /dev/null +++ b/docs/documents/storage/update-block-storage.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The typology of the volume (es. Standard, Performance)","nullable":true},"bootable":{"type":"boolean","description":"If the Volume is Bootable","nullable":true},"image":{"type":"string","description":"Volume image if it's bootable","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"description":"The resource you can link to your BlockStorage. It's for future use"}},"additionalProperties":false,"title":"VolumePropertiesResponseDto"}],"nullable":true},"data":{"allOf":[{"type":"object","properties":{"private":{"allOf":[{"type":"object","properties":{"nodeId":{"type":"string","nullable":true},"detaching":{"type":"boolean"},"attaching":{"type":"boolean"},"state":{"type":"string","nullable":true},"kaasId":{"type":"string","nullable":true},"failureReason":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataPrivateDto"}],"nullable":true},"infrastructure":{"allOf":[{"type":"object","properties":{"type":{"type":"string","nullable":true},"value":{"allOf":[{"type":"object","properties":{"uid":{"type":"string","nullable":true},"resourceId":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"namespace":{"type":"string","nullable":true},"projectId":{"type":"string","nullable":true},"ocmResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataInfrastructureValueDto"}]}},"additionalProperties":false,"description":"","title":"VolumeInternalDataInfrastructureDto"}],"description":"","nullable":true},"info":{"allOf":[{"type":"object","properties":{"device":{"type":"string","nullable":true},"osResourceId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"VolumeInfoDto"}],"nullable":true}},"additionalProperties":false,"title":"VolumeInternalDataDto"}],"description":"internal data","nullable":true}},"additionalProperties":false,"title":"VolumeResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/update-block-storage.api.mdx b/docs/documents/storage/update-block-storage.api.mdx index 4e8f17b..9877325 100644 --- a/docs/documents/storage/update-block-storage.api.mdx +++ b/docs/documents/storage/update-block-storage.api.mdx @@ -5,7 +5,7 @@ description: "Update BlockStorage" sidebar_label: "Update BlockStorage" hide_title: true hide_table_of_contents: true -api: eJztWluT2jYU/isa9aE3wCRNX5g0M7CbC22aZXbZ9GFhOrItQFnbciSZDWH47z1HssHGkLBt2tlpnIcMK+vcvnPR5WhNDZtr2ruhg0gGt1dGKjbnmk5bNGWKxdxwhZ/XNIE/aI+KkLaoSOBXyswCfodcB0qkRkgchAHF32dC8ZD2jMp4i+pgwWNGe2tqVimy0EaJZE43m9aWa6rkOx6Y4b/CnKWivQQzkEnO/n3G1arGf7zgBAVwbXhI+qMh2ZEdE4Q8ZiyLDAw9ArFTpyOwGMhwhfNrNgQyMTwx+I2laSQCht+8dxonrEuSWBRdzCz4uUzpI0rAAvBKuTICPAXzwEssZKas3ZGZDpFDNpR1fAOziJwRY/HQMlMBp5sWhQhhbsrn5CxZlJ0g6C1O20mawygRCblbiGBRkU7uRBQRnxOrAg87EzVJ+ksmIuZHBakmzJAUSADcHk5ok+F48LI94GrOYjlJJskLqUgsFQcpM6lia02LAODBrZX3lJGF4rNfJtQLZaC9Alnvm8L2NkvCNg61AxDD1YQSw9ScG6D5049Ycjuhz4A2i+GzpXjqsWcdDEjKwlDgCItGJbRmLNJ8H5kziBEmwKSSooT5MjNWz0uHFSDHdh5qUSNMhHC/zpU9NxL95lJ86wymFMPgF4bH+kDq7OvyWmhjnQRsCGhTjYsWTbLIusHl5D0N/T1HuBZvO2uKKbk11Ug7NUe0+Mhf+iVrBXhvztXBIuDntRBL4beaIC3G5VzMmb8yqJtzimPz02NUy4cIBfhGXAkZfj70rRhHQlJLY6H1S1W4Qy6SaEVeAR5EQHATyCoREpdb6CXA5MwG4WnicL4LWsgwrnIztRO2zbBAccywB54tRWy8lRHQXqcgg++m2UiZ3jsyDzF1rJDU8A+mKdJNkW6KdFOkmyL9QIt0eUP9w49NtW6qdVOtm2rdVOuHWK2RGGIzhTLjAupx93H9wqQfBDwF9KoXJ3YznkZM7NX306v6niEtcDMzmT74aa/i738uWFYVx2xQgIoNkvvndBW5yxwni93eOldf5b4WFI4cyb4O85H4SbdblzlgIaxm9g7ySySN+1qvhjUEcmVPmLlDubZy7K0CB4hD8J+ITpIDq71hSXCKUkc9sd5ZRmEcKOJzq4H+x4nYIPspZP9WcjeQHofUFYwn9YLxRhryQmbJF1ljGw805aIpF/8DSJHs50P7i2Gxp7niagknn+dKSWV90B8Nzy/Oit5slcrt/Um5zQyawmZsgWc7mmbWO9j27VEv7wdrb73tDG9wcClCrrTXV5nPOjkXr3zAAwoRbrBfa3VzretMAaR0YUyqe57HUtFhyCCIZBZ2Ahnbg43mQaaEWVmKAWcKz4A30/KnK4wqFzjFhN0NQCp+4/WW8hC2a8qQX/8YEyNvOXaS8650PwPLlfjorn/yvvSCMzDQYomhfLnrJD//wOLUhWBlA+uYbT1fvk/Kb4xKlxBFrz8fmdZ2tcWRvls7fJdOwaUzcqndTvFEawHJA6ripFHuu04/FTWQjs4kr8bjETbi8eh8Lu+SSMLedu+cDPongL6Xn7rbRZh0EMGDp2NyASTY3p+JiOPpGDQqOv09+qjT7XTtrYjUJmZJCebDMVwxZhsQpdUTeNkQXOfxfVO8d9BA3Su/fdiGOPyuoAJ/V8IcCUWIzzQWoCWyXK99pvm1ijYbHHYvHDCWQ6GxFoSHb4vWuxX/k+8fDlp1CxG//76iiDqbVEumhCtE91Lku8v8mcf35JjoIu2SVVlmoRJAgw9A/kOJOy9uMK3yREaz3fczJ6o9Ri47+tp+ANV2FO7iozS3rM60VDpH12MMj/y5SSxDnKzYHT6Xgf+tktLabHPcjq0p5MI8w8jqUScY//0FMVivSw== +api: eJztWt1zEzcQ/1c06kO/znag9MUDzDgJ0LSUeEKgDzjTWZ/WtohOOiRdgvH4f++sdGeffTY4Le0w5e5R0n7qt3tarRbcw9Tx/ht+rEx6/dIbC1N0/CrhOVjI0KOl6QXXkCHvcyl4wqXmfZ6Dn/GEC3SplbmXhgZ5wi2+K6RFwfveFphwl84wA95fcD/PiYXzVuopXy6TFdfcmreY+rN/hTnksnOD1hGTkv27Au28wf9yhowEoPMo2GB4xtZk+wQRjwkUyvM+v8eXy6uoIzp/bMSc1jdsSI32qD3NQZ4rmQLN9d46WrCoSQKlzifB+aVMMyYv8YT8laP1Eh2ty9CDAF/Xbs/K6JFdNtR1fAEZMjNhPvjDmcKmyJcJVyaq+mk5N6CKAwS9pmVrSVNpNJOa3c5kOtuQzm6lUmyMLKiAojuyIz24AalgrCpSx8Cz3KJD7fu0oMPOLo+fdY7RTiEzIz3ST41lmbHIpJ4YmwVrEpbOML0O8h4Cm1mcPBrxnjCp61We7X1T2d4BLTo01ElRe7QjzjzYKfpHI/7nWIG+HvHHwqRFhtoHioc9eNwlQHIQQtIIqGHNWxNQDrc9c2K0B6ldXVEGY1P4oOdF9JWZMFjvUMK99Irc/bxU9tQb2rcY4qvNAGuBwC89Zm5H6Gzr8lw6HzYJpo5NjN3ERcJ1ocI2xJi8o6G/lx5u4G1tTbWktGYTaYfGiJMf8Nm4Zq3UHqdodyaBcZkLKRV+6xjREi6ncgrjuSfd4qZENj/dJ7XGUimpp0O00ohPQz+IiSQsDzTBteNaFu6yc63m7BdTWCYdA3YDSgoWY4t2CTycBBAeJo7WR9Cy2xna0kwXha0iLLVIEfaFR0uFjddGFRm+ygV4XC8LSLm6MzJ3MY2siNTje98m6TZJt0m6TdJtkv5Ck3T9QP3Dj222brN1m63bbN1m6y8xWxOxRZcb7SKg7h/db16YDNIUc49i8+IkHMZzBXIrvx+e1bcMSbjz4Au3c2or429PVyw3FadosBpUAMndY3rTcxeln4Lvtv5zzb/c1+KFPSXZ12E+ET84OmrKPAbBLuId5OcImjjbzIYND5TKHrBy7eXGn2PrL7CDWKAHqQ6SI7XzoNNDlNq7E4u1ZXxozVhhdho0cP84EFvPfsyzfyu4W5fud2lMGA+aCeOF8eypKfRn+ce2O9CmizZd/A9cSmQ/7zpfnFVnmpdob9CyJ9YaG/ZgMDw7PT+perObVPHsz+ptZp7QYWxGtR3Pi7A71Pbt817ZD3a9xaozvKTBGynQut7AFmPollx69QLP9RZSLKlfG3SLrevCKt7nM+9z1+/1IJddIAapMoXopiYLhY3DtLDSzwPFMYKlGvDNVX3qJaEqAqdasL4ByOVv2Gwpn2mH1rNf/7hk3lwjdZLLrvSg8DNj5Yd4/VP2pWcIAqMvCcoX607yk/eQ5RGCGwfYyGy18/X7pPLGqHYJUfX6y5Grxqm2KumPGsV3rQqu1ci1djunijY4pATUxiYNy73rDnLZcNLeleyXy8shNeKpdD41t1oZENt1sslRQy57ZdXdqWDSJQ/urI7ZeY6a2vsTqZCqY57wqtPf5/e6R92jcCtinM9A19y8G8MbxqwAUft7LpMIwUWJ7zfVewfHE96vv31YQZwnm17hCd+AORFKQc80ZsZ5YrlYjMHhK6uWSxqOLxwIy0I6ygVi923RYv3H/+j7h51WXeO88b6iQl0IqhuwMiaiOyny3UX5zON7tk90FXZ6XpdZqSQFpwcg/6HE9S4uKazKQCaz4/xJFNW5JC5r+sZ5gNSOFPHio7a2rs5VLXUOX10SPMrnJpkRtNjCLT2XgduopAk2hxgPYwuuQE8LQlafR8H0/QUxWK9L sidebar_class_name: "put api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/update-restore.ParamsDetails.json b/docs/documents/storage/update-restore.ParamsDetails.json new file mode 100644 index 0000000..03ec0cd --- /dev/null +++ b/docs/documents/storage/update-restore.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"backupId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/update-restore.RequestSchema.json b/docs/documents/storage/update-restore.RequestSchema.json new file mode 100644 index 0000000..4ddf830 --- /dev/null +++ b/docs/documents/storage/update-restore.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","additionalProperties":false,"title":"RestoreUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","additionalProperties":false,"title":"RestoreUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","additionalProperties":false,"title":"RestoreUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/update-restore.StatusCodes.json b/docs/documents/storage/update-restore.StatusCodes.json new file mode 100644 index 0000000..ab2600a --- /dev/null +++ b/docs/documents/storage/update-restore.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"destinationVolume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The source volume for this restore","nullable":true}},"additionalProperties":false,"title":"RestorePropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"RestoreResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/update-restore.api.mdx b/docs/documents/storage/update-restore.api.mdx index e9c412e..48f2219 100644 --- a/docs/documents/storage/update-restore.api.mdx +++ b/docs/documents/storage/update-restore.api.mdx @@ -5,7 +5,7 @@ description: "Update Restore" sidebar_label: "Update Restore" hide_title: true hide_table_of_contents: true -api: eJztWd1z2kYQ/1duri/9AOS46QuTZgbbSUubxoyN2wfDdBbpgIslnXJ3wnEZ/vfu3klIIHDt5mMmHvzggdN+729Xt+ySW5gZ3r3mF8JYpQUft3gGGhJhhaYHS57iF97lMuItLlP8lIGd4+dImFDLzEpFh3igxftcahHxrtW5aHETzkUCvLvk9i4jEcZqmc74atVaS820eidC2/8swicQ3uTZ55ENmWwvMEQkpBD/Phf6riF/OBeMFGB8RcR6gz6r2PYpIhlTyGOLR89Q7djbiCJOVHRH9A0fQpVakVp6BlkWyxDoWfDOEMGypgni+HzqElvoVBPKAIrAXGRCWykM0SECIAJbt24PpY/ILh/qNr5FKqamzLp4GJXrUPBVi8fKm/rfehYQ5w9Q9CeRVZpmeMpkym7nMpxvaGe3Mo7ZRDBngog6Iz1KewuQMUziktUwsCxDFgxulwjarD88+aV9IvQMEjVKR+lrpVmCtYNapkonzpsWw4CHN07fC2BzLaY/j3gQqdAEZWSDb0rf25BGbTpqh6hG6BFnFvRMWOT5exJDejPiL5E3T/Cx43gRwMsOAZJDFEk6gXhQi9YUYiO2I3OKGAGJLtUMZTBRuXV2XvhYYeSgylCLW2ljCvebwtgzqyhvvnGskwFaA4FfWpGYHaWzbcsbaaxLEophaM0mLlo8zWOXBl+Tj3T0jyLCDbxV3pQkhTebSNtfI/caUcoueulVhgpERedUjR/t2k6pXhbxWvHBHsr8UOaHMn/SZV5/qX//w6HeD/V+qPenW+/Ejd5lCFRv+vHRcfPa3wtDkSHCN6//7kKQxSC3OsTD+8KWJzinIDpzs/PRVs/4qBhcFB67KGz1vGbH+/r82XNV+9ocIe7nR0dNPJ5AhN3GzamfApL+afO90HC1sPYBlFW8ClKJNs6ERlrfOv3Rj8e7mCPMhIwfpAe7sYU0fIhRe1OxrDzjeI4cyZmzwHx0cRwie19k/1eZHkK6P6S+YTxvNoy3yrLXKk8/yRvskIFDuzi0iycQUmL7adf9ok9DFEpil0IvhGavtFba5aA36J+dn5a/329y+Zs1KxccLbpRzVVE+4DcJYa2Al0eFKsIEyzXS4kVHS5kJLQJejqfQOcSZcBMBH61gLTljmEVaK8Az2S0oh/3nZF+h5JrjC2fW5uZbhBAJjtA4sJY5VEnVIkbIIwIcy3tneM4EaAxd93rcf3RJcHLI6gkqEa1TP4umvuHPt7btGW//TVkVt0IWjsUK4xejnHQ8h8/pxdLjLkAdNcFlTB9Ua0dXn2AJPNY3LiTemFrCNQH/2K0r02L5bqpOBlvX1RXDmBT5fwqALIR+UGRkE4vkw1f91KyX4fDAS1faLA/U7dprPCuujXFoxkpBjEwnr9d5r5Dgdg5u7NzZKGVzlTGgmZ3tKjc7nT5s85R58hNocrYBNJatBqY3PBjndLaixDFOBAtC7xel6szg9zd+hptDVn8vBEQ/F7Allhqy7ESuXQsI1oBztFi0rFEfBtxpePVio79hovgGUlDdR7tntSX1dv83v3XTjdvEMTb+7USSK5OFqClbzKPMuTbi2LN9x3bp7qspPSurrM0CUNDC8AvqLFK6xdWvAbHiiq06AkUbv/41GtqD0lIxd64Y5DVnsP/VFGjrVszrvXkwdWQcFqsORMVEbGGW4Ip/nc2Kuey64LubMmxHmc5QbzLvWL6+xeHkdRF +api: eJztWVtv2zYU/isE97KLbKVd9yK0BZym3bJ2rZE620McDMfisc1GIlWSSpoJ+u/DISVbtuwuXS9AC/uRPPebePxV3MHC8uSCn6F12iC/jHgBBnJ0aOii4gpy5AmXgkdcKp7wAtySR1ygTY0snNR0yCNu8G0pDQqeOFNixG26xBx4UnF3W5AI64xUC17X0UpqYfQbTN3pZxE+g/SqLD6PbCjk4BqNJSGN+Lclmtue/MkSGSlA61Cw0fiUrdn2KSIZcygzxxN+j9f1ZbARrTvW4pboez6kWjlUju6gKDKZAt3FbywRVB1NkGWv5j6xjU49owzwiHJRoHESLdHl6ECA61q3hzJEZJcPXRtfQo5Mz5nz8bC6NCnyOuKZDqb+t55ryMo7KPqTyNaaFlIrJhW7Wcp0uaGd3cgsYzNk3gQUw6mZqtE1yAxmWctqGThWGLSoXEIEA3Y6Of51cIxmAbmeqql6pg3LtUEm1Vyb3HsTsXSJ6ZXX9xDY0uD80ZTHQqc2biMbf9f6PgAlBnQ0SFE5NFPOHJgFukdT/vcsA3U15Y+FTssclfMcD2N4PKSC5CCEpBPIxp1ozSGzuB2ZJ1o5kMp2DWUw06Xzdp6FWOk5g3WGIu6kyyjcLxpjT5ymvIXBsUoGGANU/NJhbne0zrYtL6R1PkmwsGyuzWZdRFyVmU9D6MkPdPSPJsK9elt705I03mxW2v4eea8Rrexmlp4XAhyu6byqyw92bafUIIt4Hb5zhzY/tPmhzb/pNu9+1H/86dDvh34/9Pu32+/EbdAWWtlg+v2j+/1n/yhNsXAoNp///kFQZCC3JsTd58KWJxG3Dlxpd15tzYyPisFZ47GPwtbM60+8r8+fPU+1r80R4n5wdNSvx2MQ7CzsqZ+iJMNt/7vQc7Wx9g6U63g1pFI5XKDhEQ+jMxz9fH8Xs0AHMruTHqmsA5Xexai9qajWnvGx0bMM8xNvgf3o5jhE9n2R/V9tegjp/pCGgfGgPzBeasee6VJ9ki/YIQOHcXEYF99ASIntl13vi1NaohRk7DWaazTsqTHa+ByMxqcnr560/99vcoWXNWsBjoheVEstCA8ofWIIFUh43EARNq5WoERNh9dSoLHxyJQzGL522sAC4wAt2LhqMYY6NkGBjSspavpz3xsZMJTSZDzhS+cKm8QxFHIIJC7NdCmGqc79AmExLY10t57jGMGg4cnFZffqNZVXqKCWYL2qFfI59vGHU2XROPb7XxPm9BUS7NBAGKPSLbWR/4Q9vQExlggCQ1Cpps/WsMPTd5AXoRY33qRB2KoEuot/s9p3tsUWbmpOLrcfqrUvsLn2fjUFshH5cZOQ4aiQPV/3UrLfJpMxgS+02J/oG5VpENtbvC5QQSFjG/gHbe6HFIiduzt7VaAiSGcuM6TdnUe8RXcSfm94NDzyW6i2LgfViVavJjf8WKW08yGso1BEVVOvFy10ZnnEky6MtipZHm0GhEcNIuZZOuBYW7l0LAVBgEttHemoqhlYPDdZXdNxQLioPIW01Odi96Zerb/m78W/drp5hbc9fK0tJN8n12BkGDIfZMj3Zw3M9wPbp7rtJHXb1dmaJAUnAPALalyn9QsrXhVHTR3azAQKd7h+EjQNJiRkzd57Y5DVgSP8VdGh7Vpz2ZnJ4/MJ1WkDc+ZaELGBGypTuAk2au+yn4L+rOIZqEVJJZ7woJh+/wKHkdRF sidebar_class_name: "put api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docs/documents/storage/update-snapshot.ParamsDetails.json b/docs/documents/storage/update-snapshot.ParamsDetails.json new file mode 100644 index 0000000..d28168b --- /dev/null +++ b/docs/documents/storage/update-snapshot.ParamsDetails.json @@ -0,0 +1 @@ +{"parameters":[{"name":"id","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"projectId","in":"path","description":"","required":true,"schema":{"type":"string"}},{"name":"api-version","in":"query","description":"The requested API version","schema":{"type":"string","default":"1"}}]} \ No newline at end of file diff --git a/docs/documents/storage/update-snapshot.RequestSchema.json b/docs/documents/storage/update-snapshot.RequestSchema.json new file mode 100644 index 0000000..772f194 --- /dev/null +++ b/docs/documents/storage/update-snapshot.RequestSchema.json @@ -0,0 +1 @@ +{"title":"Body","body":{"description":"","content":{"application/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"SnapshotUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotUpdateDto"}]}},"text/json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"SnapshotUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotUpdateDto"}]}},"application/*+json":{"schema":{"allOf":[{"type":"object","properties":{"metadata":{"type":"object","properties":{"name":{"type":"string","description":"Name of the resource"},"location":{"type":"object","properties":{"value":{"type":"string","description":"Value of the region in which the resource will be located.\r\nAvailable regions at present:\r\n- ITBG-Bergamo\n\nFor more information, check the documentation."}},"additionalProperties":false,"description":"Contains information about the Region of a resource","title":"LocationDto"},"tags":{"type":"array","items":{"type":"string"},"description":"List of tags for the resource","nullable":true}},"additionalProperties":false,"description":"Metadata of the resource","title":"MetadataDto"},"properties":{"allOf":[{"type":"object","properties":{"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true}},"additionalProperties":false,"title":"SnapshotUpdatePropertiesDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotUpdateDto"}]}}}}} \ No newline at end of file diff --git a/docs/documents/storage/update-snapshot.StatusCodes.json b/docs/documents/storage/update-snapshot.StatusCodes.json new file mode 100644 index 0000000..9a47549 --- /dev/null +++ b/docs/documents/storage/update-snapshot.StatusCodes.json @@ -0,0 +1 @@ +{"responses":{"202":{"description":"Accepted","content":{"text/plain":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"application/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}},"text/json":{"schema":{"type":"object","properties":{"metadata":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"uri":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"location":{"allOf":[{"type":"object","properties":{"code":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false,"title":"LocationResponseDto"}],"nullable":true},"project":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"folderId":{"type":"string","nullable":true}},"additionalProperties":false,"title":"ProjectResponseDto"}],"nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"category":{"allOf":[{"type":"object","properties":{"name":{"type":"string","nullable":true},"provider":{"type":"string","nullable":true},"typology":{"allOf":[{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"additionalProperties":false,"title":"TypologyResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"CategoryResponseDto"}],"nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"createdBy":{"type":"string","nullable":true},"ownerId":{"type":"string","nullable":true},"updateDate":{"type":"string","format":"date-time","nullable":true},"updatedBy":{"type":"string","nullable":true},"version":{"type":"string","nullable":true},"createdUser":{"type":"string","nullable":true},"updatedUser":{"type":"string","nullable":true},"linkedResources":{"type":"array","items":{"type":"object","properties":{"uri":{"type":"string","nullable":true},"strictCorrelation":{"type":"boolean"}},"additionalProperties":false,"title":"LinkedResourceResponseDto"},"nullable":true},"managedBy":{"type":"string","nullable":true},"annotations":{"type":"object","additionalProperties":{},"nullable":true}},"additionalProperties":false,"title":"MetadataResponseDto"}],"nullable":true},"status":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true},"disableStatusInfo":{"allOf":[{"type":"object","properties":{"isDisabled":{"type":"boolean"},"reasons":{"type":"array","items":{"type":"string"}},"previousStatus":{"allOf":[{"type":"object","properties":{"state":{"type":"string","nullable":true},"creationDate":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false,"title":"PreviousStatusResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"DisableStatusInfoResponseDto"}],"nullable":true},"failureReason":{"type":"string","nullable":true},"error":{"allOf":[{"type":"object","properties":{"reason":{"type":"string","nullable":true},"message":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusErrorResponseDto"}],"nullable":true},"reservedTo":{"type":"string","nullable":true}},"additionalProperties":false,"title":"StatusResponseDto"}],"nullable":true},"properties":{"allOf":[{"type":"object","properties":{"sizeGb":{"type":"integer","description":"The blockStoages's size in gigabyte","format":"int32","nullable":true},"billingPeriod":{"type":"string","description":"The billing period for blockStorage. Only Hour is a valid value","nullable":true},"volume":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the volume","nullable":true},"name":{"type":"string","description":"Current name of the volume","nullable":true},"compoundResource":{"allOf":[{"type":"object","properties":{"uri":{"type":"string","description":"Uri of the resource","nullable":true}},"additionalProperties":false,"title":"GenericResourceResponseDto"}],"description":"The resource used by the volume at the time the snapshot was created","nullable":true}},"additionalProperties":false,"title":"SnapshotVolumeResponseDto"}],"description":"Original volume the snapshot was created from","nullable":true},"dataCenter":{"type":"string","description":"The datacenter where blockstorage will be created\n\nFor more information, check the documentation.","nullable":true},"type":{"type":"string","description":"The type of the original volume from which the snapshot was created","nullable":true},"bootable":{"type":"boolean","description":"True if the original volume of the snapshot was a bootable disk"}},"additionalProperties":false,"title":"SnapshotPropertiesResponseDto"}],"nullable":true}},"additionalProperties":false,"title":"SnapshotResponseDto"}}}},"400":{"description":"Bad Request","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"404":{"description":"Not Found","content":{"text/plain":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}},"text/json":{"schema":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{},"title":"ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}} \ No newline at end of file diff --git a/docs/documents/storage/update-snapshot.api.mdx b/docs/documents/storage/update-snapshot.api.mdx index 43912bf..765b724 100644 --- a/docs/documents/storage/update-snapshot.api.mdx +++ b/docs/documents/storage/update-snapshot.api.mdx @@ -5,7 +5,7 @@ description: "Update Snapshot" sidebar_label: "Update Snapshot" hide_title: true hide_table_of_contents: true -api: eJztWVtv2zYU/isE97KLbaVZ9yJ0BZykXb11jZE420NsDLRE22wkUSUpp57g/75zSMmSLbt11ixAB/WhcMhz/c5FJE9ODZtr6t/S64SleiENnXRoyhSLueEKd3KawB/UpyKkHSoS+JUys4DfIdeBEqkREhdhQfEPmVA8pL5RGe9QHSx4zKifU7NKUYQ2SiRzul53NlJTJd/zwAz+E+EsFd0luIFCCvEfMq5WDfmjBSeogGvDQ9IfDkjFdkgRypixLDKw9AzUTpyNIOJMhiukb/gQyMTwxOAeS9NIBAz3vPcaCfKaJhZFlzMLfqFTThElEAF4pVwZwTXSQZRYyEzdugOUDpF9PtRtfAdURM6IsXhomamA03WHRtKZ+nk9SxZlRyj6A8kqTXNYJSIh9wsRLLa0k3sRRWTKiTWBh72xGif9JRMRm0YlqybMkBRYAFwfCbpkMDr7pXvG1ZzFcpyMk9dSkVgqDlpmUsXWmw4BwIM7q+8FIwvFZz+PqRfKQHslst43pe9dloRdXOoGoIarMSWGqTk3wPPXNGLJ3Zi+BN4shm3L8cJjL3uYkJSFocAVFg1raM1YpPkuMueQI0yASzVDCZvKzFg7rxxWgByrItShRpgI4X5bGHthJMbNVfcmGEwphskvDI/1ntLZteWt0MYGCcQQsGY7Lzo0ySIbBleTD3T09wLhRr5V3pQkhTfbmXZsjUwhgcC7IVdChp/PTGwFBQtJLY/1fAppcHdtpGJz3iOXSbQib8BcIiD3CCS9CIlL/QejUjpbduCbFFzmFaF1fvJIYp0wZDb8o2k7T9t52s7Tdp6n7Tz1o8/3P7QtqG1BbQtqW9ATtiBkB8BTqB2H0unJafO+1g8CnkLRbd/b7LEpjZjYaVrHt6odV+CCCQWT6b1bO23sy0C4Kly2MOz04WYX/godOnCk/eo8QfbnJyfNlDxjIfRA+8bwGFnpdps9oeFrYe4RlBVgBakAG+dcAa1r6G7px9N9zCGEQkRH6YFvhGFJcIxRB2ORV55RWAeO+MJaoL+4PFpkP4Xsv6rTFtLDkLqG8bzZMN5JQ17LLHmUj1gbgbZdtO3ifwApsv2073wxwKsdSCLXXC25Iq+UksrGoD8cXFyel7OXbS53uCabCVIHz1QLvG7QNLORwZGOT71i1qO9fDP1WePiUoRcaa+vsinrFdcMTxfigFqEa5zDWJvcSCpTACVdGJNq3/NYKnoMmYNIZmEvkLG9M2geZEqYleU440xBqPzbSX3rGrPJJUxJUN0XU/Ebb46KBnBMU4b8+ueIGHnHcUJUTJv6GXitxN/usaCYNy04A+cshpjCV9WE6NVHFqcu9bbOoE7YJuL114fifaF2ZS3Hd8XKpHEw3bkA1qZkFO/Y1t8iT7bwHxZh6fVT0cDgICV5MxoNcX6Grw4X8j6JJBxZd54YwDyIrfC04++WGdBDgPY+LJBLYMGp3ExEHB8WwKJyQOfTZ72T3om9IkttYpbUUGym5pYjm1jXPoggx2ZXXqTtbTmi1MDt18eVm8yF31uIYLKW2YtMIsSp6gKsQ3F5PmWa36hovcZlN5DEFA2FxtIO9z8Z5NUH/JPjyr0e3UEi745Dy2SytbJkSri+8iBDvr0qprLfkUOqy2pKVnWdpUkADc5rn1BjFcE1VktRn+i22z93qrojlFLxNz7vaLbjcA8FNdq6OZNaNxzejIBqWkyHYxkisWL3ON2G/62R0vpsS9eu5RRqYJ5hVvnUKcZ//wD5kil0 +api: eJztWW2T0zYQ/iua7Ze+OMlB6RcPMJPjoFyhXOYutB/ITWdjbxJxsmQkOUeayX/vrGUnTpzAUSgzdJKP8r4+u9pIepbgceogfgNXGnM3Mx6uI8jRYkaeLH9ZgsaMIAaZQgRSQww5+hlEkJJLrMy9NLwIEVh6V0hLKcTeFhSBS2aUIcRL8IucTThvpZ7CahWtrebWvKXEn/8nxjGXnTlZx0Yq8+8KsouW/eGMBDsg5ykV/cG52KgdcsQ2JlgoDzHcg9XqOsRIzp+adMHyrRwSoz1pz98wz5VMkL/13joWWDY8oVIXkxL8yqcZM0oQMV45WS/JsVxGHlP0zegOSAZE9uXQjPEVZiTMRPgSD2cKmxCsIlAmhPpxP3NUxR0c/cFiG09TabSQWtzOZDLb8i5upVJiTKIMgdLuyI50f45S4VjVqk6gF7klR9rHLNAR58PTXzunZKeYmZEe6WfGisxYElJPjM3KbCKRzCi5Kf09RDGzNHk0gl5qEterke19V+feQZ12eKmTkPZkRyA82in5RyP4a6xQ34zgcWqSIiPtS42HPXzc5YYETFPJK6gGDbQmqBztIvPEaI9Su2agAsem8GWclwErMxG4qVAEXnrFcL+sgj3zhusWdve6GGgtcvNLT5nbs3V2Y3kpnS+LhFMnJsZu90UEulBlGcKe/MREf68QbvXbJptapMpmu9PuukfGUimppwOy0qQf70weBZWKyEudMvOxMsnNlTcWp9QVF1otxHNTWCGdQDFHJVMRWv+TUamTrSfw6zxFTxvBMvnrL2Q2GGNlT+/9cfIcJ89x8hwnz9edPM2jz48/HUfQcQQdR9BxBH3FEcTqllxutAso3T+5376v9ZOEck/p9r2tPDblCuXO0Lr7qNpJJQLn0Rdu76edMfZ5IFxWKZcw7Mzh9hT+BhM6cKT95jJh9QcnJ+2WPMVUXIY3hi/RleFreya0cq3CvYPkBrBKVGpPU7IQQRjoYenn+/uUU/Io1Z38SO086uQuQR2sxXKTGQysGSvKzsoI3GdvjyOyH0L2X+3TI6SHIQ0D40F7YLwyXjwzhf4if2LHChzHxXFc/A8gZbVf9p0vzvlqp1GJK7JzsuKptcaWNegPzs8untTcy7ZWOFyLNYMU8ZlqxtcNyIuyMkzpxNCruB7XW65ZnxUvzmVK1vX6thhjt7pm9FxlzvWWMl0xD1PGFCipwiqIYeZ97uJeD3PZRVZOlCnSbmKy8s7gKCms9ItS45TQkoX4zXXz0xV3U2iYWmBzX8zlC2pTRefakfXitz+HwpsbYoaoYpv6hZ8ZK/8OjwUV3zQjTClgyC18uWGInr7HLA+tt3UGDcbWFW++PlTvC40ra03fVSvXrYPpzgWwwZIB37HLfKs+2cJ/UJWl289lC4ODkuL5cDhg/oxfHc7MrVYG090nBpOTxlz2XNDv1B3QZYD2PiyIi5w0s3ITqYgfFiCCmqCL4V73pHtSXpGN8xnqBort1txKZF3rxh/iKgrdtaza9k1NUTqIIG7SlevOhWgbEW7WuntZSabMqs6M82xuuRyjo9dWrVa8HAhJbtFUOt7a6f4ng+XmD/yDdOXejG5o0aJD62Yq98ocrQxz5ZMC+f6yYmV/EIdc17tJL5o+65BkCszXfkWPmwqueLdU+5PTDt+fBFedIVvZ6Lf+3jnsoBEeChqyzXCuG9Nw8HoIEYwrdjgzKQtbvGV2G29DkKbMudy65doSFOppwV0VQ3DMv38A+ZIpdA== sidebar_class_name: "put api-method" info_path: docs/documents/storage/aruba-storageprovider-api custom_edit_url: null diff --git a/docusaurus.config.js b/docusaurus.config.js index 8499392..76170b9 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -302,7 +302,21 @@ const config = { ], [ require.resolve('./plugins/custom-encoding'),{} - ] + ], + function webpackFallbackPlugin() { + return { + name: 'webpack-fallback-plugin', + configureWebpack() { + return { + resolve: { + fallback: { + path: false, + }, + }, + }; + }, + }; + }, // [ // require.resolve("@cmfcmf/docusaurus-search-local"), // { diff --git a/jest.config.ts b/jest.config.ts index 069f488..3cef204 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -1,5 +1,5 @@ export default { - displayName: 'cmp-catalog-api', + displayName: 'arubacloud-api-portal', preset: '../../jest.preset.js', setupFilesAfterEnv: ['/src/test-setup.ts'], globals: { diff --git a/package-lock.json b/package-lock.json index 3d84a0a..215f602 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,13 @@ { - "name": "cmp-catalog-api", - "version": "1.6.0", + "name": "arubacloud-api-portal", + "version": "1.26.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "cmp-catalog-api", - "version": "1.6.0", + "name": "arubacloud-api-portal", + "version": "1.26.0", + "hasInstallScript": true, "dependencies": { "@docusaurus/core": "^3.7.0", "@docusaurus/preset-classic": "^3.7.0", @@ -14,8 +15,8 @@ "axios": "^1.7.2", "clsx": "^2.0.0", "docusaurus-lunr-search": "^3.3.2", - "docusaurus-plugin-openapi-docs": "^4.1.0", - "docusaurus-theme-openapi-docs": "^4.1.0", + "docusaurus-plugin-openapi-docs": "4.1.0", + "docusaurus-theme-openapi-docs": "4.1.0", "dotenv": "^16.3.1", "prism-react-renderer": "^2.3.0", "react": "^18.0.0", @@ -38,134 +39,147 @@ "node": ">=18.0" } }, - "node_modules/@algolia/autocomplete-core": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz", - "integrity": "sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==", + "node_modules/@algolia/abtesting": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.18.1.tgz", + "integrity": "sha512-aehCadlWOGvrT91KUIZpC0MbB8KBW9yUuvTJFd2xesR7le/IsT4nJUnjCCZ4ZqZCeTcPHPV5mo//fZ5oxcSVYw==", + "license": "MIT", "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.17.9", - "@algolia/autocomplete-shared": "1.17.9" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz", - "integrity": "sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==", + "node_modules/@algolia/autocomplete-core": { + "version": "1.19.8", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.8.tgz", + "integrity": "sha512-3YEorYg44niXcm7gkft3nXYItHd44e8tmh4D33CTszPgP0QWkaLEaFywiNyJBo7UL/mqObA/G9RYuU7R8tN1IA==", + "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.17.9" - }, - "peerDependencies": { - "search-insights": ">= 1 < 3" + "@algolia/autocomplete-plugin-algolia-insights": "1.19.8", + "@algolia/autocomplete-shared": "1.19.8" } }, - "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz", - "integrity": "sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==", + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.19.8", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.8.tgz", + "integrity": "sha512-ZvJWO8ZZJDpc1LNM2TTBdmQsZBLMR4rU5iNR2OYvEeFBiaf/0ESnRSSLQbryarJY4SVxtoz6A2ZtDMNM+iQEAA==", + "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.17.9" + "@algolia/autocomplete-shared": "1.19.8" }, "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" + "search-insights": ">= 1 < 3" } }, "node_modules/@algolia/autocomplete-shared": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz", - "integrity": "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==", + "version": "1.19.8", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.8.tgz", + "integrity": "sha512-h5hf2t8ejF6vlOgvLaZzQbWs5SyH2z4PAWygNAvvD/2RI29hdQ54ldUGwqVuj9Srs+n8XUKTPUqb7fvhBhQrnQ==", + "license": "MIT", "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", "algoliasearch": ">= 4.9.1 < 6" } }, "node_modules/@algolia/client-abtesting": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.20.0.tgz", - "integrity": "sha512-YaEoNc1Xf2Yk6oCfXXkZ4+dIPLulCx8Ivqj0OsdkHWnsI3aOJChY5qsfyHhDBNSOhqn2ilgHWxSfyZrjxBcAww==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.52.1.tgz", + "integrity": "sha512-HmXOGBOAOJPounpBzBpuY0zDYeiCpxgHnQmuA7JO6ScukcBdGp3/XM9zJk5pJx/xNGD68mbPGXWpDxGtl6BwDQ==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-analytics": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.20.0.tgz", - "integrity": "sha512-CIT9ni0+5sYwqehw+t5cesjho3ugKQjPVy/iPiJvtJX4g8Cdb6je6SPt2uX72cf2ISiXCAX9U3cY0nN0efnRDw==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.52.1.tgz", + "integrity": "sha512-5oo4+I8iixie9vXhCyNFCzeIr8pqA3FQ//VsLHTDvZAV4ttYOPGvYHGQq5NSalrLx5Jc3dRro/5uDOlnUMcBJg==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-common": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.20.0.tgz", - "integrity": "sha512-iSTFT3IU8KNpbAHcBUJw2HUrPnMXeXLyGajmCL7gIzWOsYM4GabZDHXOFx93WGiXMti1dymz8k8R+bfHv1YZmA==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.52.1.tgz", + "integrity": "sha512-qCDoZfx5MpX7XQzvQ3bC4tSEMkQWQMaF/ABtLuoze03Y/flR563CCSws02qIJ23oX7lxl92LsilZjINVyTdtLw==", + "license": "MIT", "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-insights": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.20.0.tgz", - "integrity": "sha512-w9RIojD45z1csvW1vZmAko82fqE/Dm+Ovsy2ElTsjFDB0HMAiLh2FO86hMHbEXDPz6GhHKgGNmBRiRP8dDPgJg==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.52.1.tgz", + "integrity": "sha512-hnGs0/lsFJ2PWDxNBz7pxreXo/Xz7gxYRcfePBUjsH26ad0kU/sgnVZd9LwWBpsQv65z2jlb5dkyaB9WE9M9FQ==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-personalization": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.20.0.tgz", - "integrity": "sha512-p/hftHhrbiHaEcxubYOzqVV4gUqYWLpTwK+nl2xN3eTrSW9SNuFlAvUBFqPXSVBqc6J5XL9dNKn3y8OA1KElSQ==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.52.1.tgz", + "integrity": "sha512-2VxxNc/uBysyKvGeBdSM5n9eIDKH8kWD7wd9/yqbJAiVwU4Yv6tU1LSJusHKrXV/aCu1KW7t9Gug9QyeEmtn/Q==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-query-suggestions": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.20.0.tgz", - "integrity": "sha512-m4aAuis5vZi7P4gTfiEs6YPrk/9hNTESj3gEmGFgfJw3hO2ubdS4jSId1URd6dGdt0ax2QuapXufcrN58hPUcw==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.52.1.tgz", + "integrity": "sha512-O6mPtsw3xEfNOe6gWFpYLeAZAIljNa4Hgna3bq15PwyN7nbjTY0wXJFRbzs/0YVf75Br+SbOQUmjKxXYjDiSiQ==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-search": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.20.0.tgz", - "integrity": "sha512-KL1zWTzrlN4MSiaK1ea560iCA/UewMbS4ZsLQRPoDTWyrbDKVbztkPwwv764LAqgXk0fvkNZvJ3IelcK7DqhjQ==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.52.1.tgz", + "integrity": "sha512-gA8oJOV1LnQQkDf91iebNnFInHuW0gRPEgLSOQ7EfipCEjYTHm5swm1DlH9H5RaRw4RrHuzHBegnlzc0MAstcg==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" @@ -174,78 +188,85 @@ "node_modules/@algolia/events": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz", - "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" + "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==", + "license": "MIT" }, "node_modules/@algolia/ingestion": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.20.0.tgz", - "integrity": "sha512-shj2lTdzl9un4XJblrgqg54DoK6JeKFO8K8qInMu4XhE2JuB8De6PUuXAQwiRigZupbI0xq8aM0LKdc9+qiLQA==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.52.1.tgz", + "integrity": "sha512-U9zZfc5xIu9wRxZkt+HceJUAD4VKHKbAyLSloJdEyMRmphXeibfrY9cxqIXBcmPeZzGhn3Imb35Dq8l19PkJhw==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/monitoring": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.20.0.tgz", - "integrity": "sha512-aF9blPwOhKtWvkjyyXh9P5peqmhCA1XxLBRgItT+K6pbT0q4hBDQrCid+pQZJYy4HFUKjB/NDDwyzFhj/rwKhw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.52.1.tgz", + "integrity": "sha512-a3SGNceHmkQfq77iG8Ka+w1pvwfZa/0lzEIgse30fL0kD+yKnd/dg0dQvSfFPAEt2f21DMcGkDSSeJlO3KdQjQ==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/recommend": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.20.0.tgz", - "integrity": "sha512-T6B/WPdZR3b89/F9Vvk6QCbt/wrLAtrGoL8z4qPXDFApQ8MuTFWbleN/4rHn6APWO3ps+BUePIEbue2rY5MlRw==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.52.1.tgz", + "integrity": "sha512-z98QEguCFDpxb4S/PyrUK1igqF8tPsdbqOUUO6ON91vJ58w+Gwa6ncrI0oNXSFcrkxA5EqPKPQ2A1PBCn08TYQ==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" + "@algolia/client-common": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/requester-browser-xhr": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.20.0.tgz", - "integrity": "sha512-t6//lXsq8E85JMenHrI6mhViipUT5riNhEfCcvtRsTV+KIBpC6Od18eK864dmBhoc5MubM0f+sGpKOqJIlBSCg==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.52.1.tgz", + "integrity": "sha512-CI7+/0I11QeZM59Uc8whd2or0kqzFVjpaPn9Qpwll/krHcBAxk24WkAQ6WX+IwDVMfpont4YGbKwAmCre3vE8Q==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0" + "@algolia/client-common": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/requester-fetch": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.20.0.tgz", - "integrity": "sha512-FHxYGqRY+6bgjKsK4aUsTAg6xMs2S21elPe4Y50GB0Y041ihvw41Vlwy2QS6K9ldoftX4JvXodbKTcmuQxywdQ==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.52.1.tgz", + "integrity": "sha512-S6bDuw9byfOvm3T71cgdoZgrgnZq6hpdMLkx52Louh57nUAmvGQESz2aojOynQHjbTiV55smvAFbgn0qT4tJrg==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0" + "@algolia/client-common": "5.52.1" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/requester-node-http": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.20.0.tgz", - "integrity": "sha512-kmtQClq/w3vtPteDSPvaW9SPZL/xrIgMrxZyAgsFwrJk0vJxqyC5/hwHmrCraDnStnGSADnLpBf4SpZnwnkwWw==", + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.52.1.tgz", + "integrity": "sha512-tqZXM+54rWo4mk5jL5Z/flE11nPmNEdXwFBM5py9DkOmbjeCNemfVd45FyM97XdzfZ0dl9uOJC6PYn1FpkeyQg==", + "license": "MIT", "dependencies": { - "@algolia/client-common": "5.20.0" + "@algolia/client-common": "5.52.1" }, "engines": { "node": ">= 14.0.0" @@ -253,7 +274,8 @@ }, "node_modules/@ampproject/remapping": { "version": "2.2.1", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -314,12 +336,12 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1602.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1602.14.tgz", - "integrity": "sha512-eSdONEV5dbtLNiOMBy9Ue9DdJ1ct6dH9RdZfYiedq6VZn0lejePAjY36MYVXgq2jTE+v/uIiaNy7caea5pt55A==", + "version": "0.1602.16", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1602.16.tgz", + "integrity": "sha512-aWEeGU4UlbrSKpcAZsldVNxNXAWEeu9hM2BPk77GftbRC8PBMWpgYyrJWTz2ryn8aSmGKT3T8OyBH4gZA/667w==", "dev": true, "dependencies": { - "@angular-devkit/core": "16.2.14", + "@angular-devkit/core": "16.2.16", "rxjs": "7.8.1" }, "engines": { @@ -328,17 +350,26 @@ "yarn": ">= 1.13.0" } }, + "node_modules/@angular-devkit/architect/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, "node_modules/@angular-devkit/build-angular": { - "version": "16.2.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.2.14.tgz", - "integrity": "sha512-bXQ6i7QPhwmYHuh+DSNkBhjTIHQF0C6fqZEg2ApJA3NmnzE98oQnmJ9AnGnAkdf1Mjn3xi2gxoZWPDDxGEINMw==", + "version": "16.2.16", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.2.16.tgz", + "integrity": "sha512-gEni21kza41xaRnVWP1sMuiWHS/rdoym5FEEGDo9PG60LwRC4lekIgT09GpTlmMu007UEfo0ccQnGroD6+MqWg==", "dev": true, "peer": true, "dependencies": { "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1602.14", - "@angular-devkit/build-webpack": "0.1602.14", - "@angular-devkit/core": "16.2.14", + "@angular-devkit/architect": "0.1602.16", + "@angular-devkit/build-webpack": "0.1602.16", + "@angular-devkit/core": "16.2.16", "@babel/core": "7.22.9", "@babel/generator": "7.22.9", "@babel/helper-annotate-as-pure": "7.22.5", @@ -350,7 +381,7 @@ "@babel/runtime": "7.22.6", "@babel/template": "7.22.5", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.2.14", + "@ngtools/webpack": "16.2.16", "@vitejs/plugin-basic-ssl": "1.0.1", "ansi-colors": "4.1.3", "autoprefixer": "10.4.14", @@ -393,8 +424,8 @@ "text-table": "0.2.0", "tree-kill": "1.2.2", "tslib": "2.6.1", - "vite": "4.5.3", - "webpack": "5.88.2", + "vite": "4.5.5", + "webpack": "5.94.0", "webpack-dev-middleware": "6.1.2", "webpack-dev-server": "4.15.1", "webpack-merge": "5.9.0", @@ -451,1054 +482,913 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/core": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz", - "integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==", + "node_modules/@angular-devkit/build-angular/node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dev": true, "peer": true, "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.9", - "@babel/helper-module-transforms": "^7.22.9", - "@babel/helpers": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.8", - "@babel/types": "^7.22.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/@angular-devkit/build-angular/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peer": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "peer": true + }, + "node_modules/@angular-devkit/build-angular/node_modules/immutable": { + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.8.tgz", + "integrity": "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==", + "dev": true, + "peer": true + }, + "node_modules/@angular-devkit/build-angular/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "peer": true + }, + "node_modules/@angular-devkit/build-angular/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "peer": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/sass": { + "version": "1.64.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.1.tgz", + "integrity": "sha512-16rRACSOFEE8VN7SCgBu1MpYCyN7urj9At898tyzdXFhC+a+yOX5dXwAR7L8/IdPJ1NB8OYoXmD55DM30B2kEQ==", "dev": true, "peer": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, "bin": { - "semver": "bin/semver.js" + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/generator": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz", - "integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==", + "node_modules/@angular-devkit/build-angular/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=6.9.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "node_modules/@angular-devkit/build-angular/node_modules/webpack": { + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", "dev": true, "peer": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" }, "engines": { - "node": ">=6.9.0" + "node": ">=10.13.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/plugin-transform-runtime": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz", - "integrity": "sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==", + "node_modules/@angular-devkit/build-webpack": { + "version": "0.1602.16", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1602.16.tgz", + "integrity": "sha512-b99Sj0btI0C2GIfzoyP8epDMIOLqSTqXOxw6klGtBLaGZfM5KAxqFzekXh8cAnHxWCj20WdNhezS1eUTLOkaIA==", "dev": true, "peer": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", - "semver": "^6.3.1" + "@angular-devkit/architect": "0.1602.16", + "rxjs": "7.8.1" }, "engines": { - "node": ">=6.9.0" + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "webpack": "^5.30.0", + "webpack-dev-server": "^4.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/@angular-devkit/build-webpack/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, "peer": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "tslib": "^2.1.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.9.tgz", - "integrity": "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==", + "node_modules/@angular-devkit/core": { + "version": "16.2.16", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.2.16.tgz", + "integrity": "sha512-5xHs9JFmp78sydrOAg0UGErxfMVv5c2f3RXoikS7eBOOXTWEi5pmnOkOvSJ3loQFGVs3Y7i+u02G3VrF5ZxOrA==", + "dev": true, + "dependencies": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "picomatch": "2.3.1", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/core/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@angular/common": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.2.12.tgz", + "integrity": "sha512-B+WY/cT2VgEaz9HfJitBmgdk4I333XG/ybC98CMC4Wz8E49T8yzivmmxXB3OD6qvjcOB6ftuicl6WBqLbZNg2w==", "dev": true, "peer": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.9", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.7", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.6", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.6", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" + "tslib": "^2.3.0" }, "engines": { - "node": ">=6.9.0" + "node": "^16.14.0 || >=18.10.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@angular/core": "16.2.12", + "rxjs": "^6.5.3 || ^7.4.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/@angular/compiler": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.2.12.tgz", + "integrity": "sha512-6SMXUgSVekGM7R6l1Z9rCtUGtlg58GFmgbpMCsGf+VXxP468Njw8rjT2YZkf5aEPxEuRpSHhDYjqz7n14cwCXQ==", "dev": true, "peer": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "tslib": "^2.3.0" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0" + }, + "peerDependencies": { + "@angular/core": "16.2.12" + }, + "peerDependenciesMeta": { + "@angular/core": { + "optional": true + } } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-modules": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", - "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", + "node_modules/@angular/compiler-cli": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.2.12.tgz", + "integrity": "sha512-pWSrr152562ujh6lsFZR8NfNc5Ljj+zSTQO44DsuB0tZjwEpnRcjJEgzuhGXr+CoiBf+jTSPZKemtSktDk5aaA==", "dev": true, "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" + "@babel/core": "7.23.2", + "@jridgewell/sourcemap-codec": "^1.4.14", + "chokidar": "^3.0.0", + "convert-source-map": "^1.5.1", + "reflect-metadata": "^0.1.2", + "semver": "^7.0.0", + "tslib": "^2.3.0", + "yargs": "^17.2.1" + }, + "bin": { + "ng-xi18n": "bundles/src/bin/ng_xi18n.js", + "ngc": "bundles/src/bin/ngc.js", + "ngcc": "bundles/ngcc/index.js" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + "@angular/compiler": "16.2.12", + "typescript": ">=4.9.3 <5.2" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/runtime": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", - "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", + "node_modules/@angular/compiler-cli/node_modules/@babel/core": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", + "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", "dev": true, "peer": true, "dependencies": { - "regenerator-runtime": "^0.13.11" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "peer": true + }, + "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "peer": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", "dev": true, "peer": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "node_modules/@angular/compiler-cli/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], "peer": true, "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "node_modules/@angular/compiler-cli/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, - "peer": true + "peer": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } }, - "node_modules/@angular-devkit/build-angular/node_modules/css-loader": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", - "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "node_modules/@angular/core": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.2.12.tgz", + "integrity": "sha512-GLLlDeke/NjroaLYOks0uyzFVo6HyLl7VOm0K1QpLXnYvW63W9Ql/T3yguRZa7tRkOAeFZ3jw+1wnBD4O8MoUA==", "dev": true, "peer": true, "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.21", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.3", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" + "tslib": "^2.3.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^16.14.0 || >=18.10.0" }, "peerDependencies": { - "webpack": "^5.0.0" + "rxjs": "^6.5.3 || ^7.4.0", + "zone.js": "~0.13.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "node_modules/@angular/platform-browser": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.2.12.tgz", + "integrity": "sha512-NnH7ju1iirmVEsUq432DTm0nZBGQsBrU40M3ZeVHMQ2subnGiyUs3QyzDz8+VWLL/T5xTxWLt9BkDn65vgzlIQ==", "dev": true, "peer": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "tslib": "^2.3.0" }, "engines": { - "node": ">=8.6.0" + "node": "^16.14.0 || >=18.10.0" + }, + "peerDependencies": { + "@angular/animations": "16.2.12", + "@angular/common": "16.2.12", + "@angular/core": "16.2.12" + }, + "peerDependenciesMeta": { + "@angular/animations": { + "optional": true + } } }, - "node_modules/@angular-devkit/build-angular/node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "node_modules/@angular/platform-browser-dynamic": { + "version": "16.2.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.2.12.tgz", + "integrity": "sha512-ya54jerNgreCVAR278wZavwjrUWImMr2F8yM5n9HBvsMBbFaAQ83anwbOEiHEF2BlR+gJiEBLfpuPRMw20pHqw==", "dev": true, "peer": true, + "dependencies": { + "tslib": "^2.3.0" + }, "engines": { - "node": ">= 12.13.0" + "node": "^16.14.0 || >=18.10.0" + }, + "peerDependencies": { + "@angular/common": "16.2.12", + "@angular/compiler": "16.2.12", + "@angular/core": "16.2.12", + "@angular/platform-browser": "16.2.12" } }, - "node_modules/@angular-devkit/build-angular/node_modules/mini-css-extract-plugin": { - "version": "2.7.6", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", - "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", - "dev": true, - "peer": true, + "node_modules/@apidevtools/json-schema-ref-parser": { + "version": "11.9.3", + "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.9.3.tgz", + "integrity": "sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ==", "dependencies": { - "schema-utils": "^4.0.0" + "@jsdevtools/ono": "^7.1.3", + "@types/json-schema": "^7.0.15", + "js-yaml": "^4.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sponsors/philsturgeon" } }, - "node_modules/@angular-devkit/build-angular/node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "node_modules/@assemblyscript/loader": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", + "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", "dev": true, - "peer": true, - "engines": { - "node": ">=10" - } + "peer": true }, - "node_modules/@angular-devkit/build-angular/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "peer": true, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/postcss-loader": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.3.tgz", - "integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==", - "dev": true, - "peer": true, + "node_modules/@babel/compat-data": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.3.tgz", + "integrity": "sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz", + "integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==", "dependencies": { - "cosmiconfig": "^8.2.0", - "jiti": "^1.18.2", - "semver": "^7.3.8" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.9", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.6", + "@babel/parser": "^7.22.7", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.8", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.1" }, "engines": { - "node": ">= 14.15.0" + "node": ">=6.9.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "url": "https://opencollective.com/babel" } }, - "node_modules/@angular-devkit/build-angular/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true, - "peer": true + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/@angular-devkit/build-angular/node_modules/sass": { - "version": "1.64.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.1.tgz", - "integrity": "sha512-16rRACSOFEE8VN7SCgBu1MpYCyN7urj9At898tyzdXFhC+a+yOX5dXwAR7L8/IdPJ1NB8OYoXmD55DM30B2kEQ==", - "dev": true, - "peer": true, + "node_modules/@babel/generator": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz", + "integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==", "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" }, "engines": { - "node": ">=14.0.0" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/sass-loader": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.2.tgz", - "integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==", + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, "peer": true, "dependencies": { - "neo-async": "^2.6.2" + "@babel/types": "^7.22.5" }, "engines": { - "node": ">= 14.15.0" + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.3.tgz", + "integrity": "sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.29.0", + "semver": "^6.3.1" }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" + "engines": { + "node": ">=6.9.0" }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - } + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/terser": { - "version": "5.19.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", - "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" + "@babel/types": "^7.27.3" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { - "terser": "bin/terser" + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" }, "engines": { - "node": ">=10" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/tslib": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", - "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==", - "dev": true, - "peer": true - }, - "node_modules/@angular-devkit/build-angular/node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" + "@babel/types": "^7.27.3" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/webpack-dev-middleware": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.2.tgz", - "integrity": "sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz", + "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==", "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.12", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.11" }, "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - } + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/webpack-merge": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", - "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", "dev": true, "peer": true, "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" + "@babel/types": "^7.24.7" }, "engines": { - "node": ">=10.0.0" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/build-webpack": { - "version": "0.1602.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1602.14.tgz", - "integrity": "sha512-f+ZTCjOoA1SCQEaX3L/63ubqr/vlHkwDXAtKjBsQgyz6srnETcjy96Us5k/LoK7/hPc85zFneqLinfqOMVWHJQ==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", "dependencies": { - "@angular-devkit/architect": "0.1602.14", - "rxjs": "7.8.1" + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "webpack": "^5.30.0", - "webpack-dev-server": "^4.0.0" + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/core": { - "version": "16.2.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.2.14.tgz", - "integrity": "sha512-Ui14/d2+p7lnmXlK/AX2ieQEGInBV75lonNtPQgwrYgskF8ufCuN0DyVZQUy9fJDkC+xQxbJyYrby/BS0R0e7w==", - "dev": true, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "picomatch": "2.3.1", - "rxjs": "7.8.1", - "source-map": "0.7.4" + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" }, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" + "node": ">=6.9.0" }, "peerDependencies": { - "chokidar": "^3.5.2" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } + "@babel/core": "^7.0.0" } }, - "node_modules/@angular-devkit/core/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@babel/types": "^7.27.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@angular-devkit/core/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", "engines": { - "node": ">= 8" + "node": ">=6.9.0" } }, - "node_modules/@angular/common": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.2.12.tgz", - "integrity": "sha512-B+WY/cT2VgEaz9HfJitBmgdk4I333XG/ybC98CMC4Wz8E49T8yzivmmxXB3OD6qvjcOB6ftuicl6WBqLbZNg2w==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", "dependencies": { - "tslib": "^2.3.0" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": ">=6.9.0" }, "peerDependencies": { - "@angular/core": "16.2.12", - "rxjs": "^6.5.3 || ^7.4.0" + "@babel/core": "^7.0.0" } }, - "node_modules/@angular/compiler": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.2.12.tgz", - "integrity": "sha512-6SMXUgSVekGM7R6l1Z9rCtUGtlg58GFmgbpMCsGf+VXxP468Njw8rjT2YZkf5aEPxEuRpSHhDYjqz7n14cwCXQ==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dependencies": { - "tslib": "^2.3.0" + "@babel/types": "^7.27.3" }, "engines": { - "node": "^16.14.0 || >=18.10.0" - }, - "peerDependencies": { - "@angular/core": "16.2.12" - }, - "peerDependenciesMeta": { - "@angular/core": { - "optional": true - } + "node": ">=6.9.0" } }, - "node_modules/@angular/compiler-cli": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.2.12.tgz", - "integrity": "sha512-pWSrr152562ujh6lsFZR8NfNc5Ljj+zSTQO44DsuB0tZjwEpnRcjJEgzuhGXr+CoiBf+jTSPZKemtSktDk5aaA==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-replace-supers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", "dependencies": { - "@babel/core": "7.23.2", - "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", - "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", - "semver": "^7.0.0", - "tslib": "^2.3.0", - "yargs": "^17.2.1" - }, - "bin": { - "ng-xi18n": "bundles/src/bin/ng_xi18n.js", - "ngc": "bundles/src/bin/ngc.js", - "ngcc": "bundles/ngcc/index.js" + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": ">=6.9.0" }, "peerDependencies": { - "@angular/compiler": "16.2.12", - "typescript": ">=4.9.3 <5.2" + "@babel/core": "^7.0.0" } }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", - "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" } }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true, - "peer": true - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "peer": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@angular/compiler-cli/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true, - "peer": true + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@angular/core": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.2.12.tgz", - "integrity": "sha512-GLLlDeke/NjroaLYOks0uyzFVo6HyLl7VOm0K1QpLXnYvW63W9Ql/T3yguRZa7tRkOAeFZ3jw+1wnBD4O8MoUA==", - "dev": true, - "peer": true, - "dependencies": { - "tslib": "^2.3.0" - }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "engines": { - "node": "^16.14.0 || >=18.10.0" - }, - "peerDependencies": { - "rxjs": "^6.5.3 || ^7.4.0", - "zone.js": "~0.13.0" + "node": ">=6.9.0" } }, - "node_modules/@angular/platform-browser": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.2.12.tgz", - "integrity": "sha512-NnH7ju1iirmVEsUq432DTm0nZBGQsBrU40M3ZeVHMQ2subnGiyUs3QyzDz8+VWLL/T5xTxWLt9BkDn65vgzlIQ==", - "dev": true, - "peer": true, - "dependencies": { - "tslib": "^2.3.0" - }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "engines": { - "node": "^16.14.0 || >=18.10.0" - }, - "peerDependencies": { - "@angular/animations": "16.2.12", - "@angular/common": "16.2.12", - "@angular/core": "16.2.12" - }, - "peerDependenciesMeta": { - "@angular/animations": { - "optional": true - } + "node": ">=6.9.0" } }, - "node_modules/@angular/platform-browser-dynamic": { - "version": "16.2.12", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.2.12.tgz", - "integrity": "sha512-ya54jerNgreCVAR278wZavwjrUWImMr2F8yM5n9HBvsMBbFaAQ83anwbOEiHEF2BlR+gJiEBLfpuPRMw20pHqw==", - "dev": true, - "peer": true, + "node_modules/@babel/helper-wrap-function": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz", + "integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==", "dependencies": { - "tslib": "^2.3.0" + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { - "node": "^16.14.0 || >=18.10.0" - }, - "peerDependencies": { - "@angular/common": "16.2.12", - "@angular/compiler": "16.2.12", - "@angular/core": "16.2.12", - "@angular/platform-browser": "16.2.12" + "node": ">=6.9.0" } }, - "node_modules/@apidevtools/json-schema-ref-parser": { - "version": "11.7.0", - "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.7.0.tgz", - "integrity": "sha512-pRrmXMCwnmrkS3MLgAIW5dXRzeTv6GLjkjb4HmxNnvAKXN1Nfzp4KmGADBQvlVUcqi+a5D+hfGDLLnd5NnYxog==", + "node_modules/@babel/helper-wrap-function/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", "dependencies": { - "@jsdevtools/ono": "^7.1.3", - "@types/json-schema": "^7.0.15", - "js-yaml": "^4.1.0" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { - "node": ">= 16" - }, - "funding": { - "url": "https://github.com/sponsors/philsturgeon" + "node": ">=6.9.0" } }, - "node_modules/@assemblyscript/loader": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", - "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", - "dev": true, - "peer": true - }, - "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/compat-data": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", - "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz", - "integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==", + "node_modules/@babel/helpers/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.5", - "@babel/helper-compilation-targets": "^7.26.5", - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helpers": "^7.26.7", - "@babel/parser": "^7.26.7", - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.26.7", - "@babel/types": "^7.26.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" } }, - "node_modules/@babel/generator": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", - "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", + "node_modules/@babel/parser": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", + "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", "dependencies": { - "@babel/parser": "^7.26.5", - "@babel/types": "^7.26.5", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^3.0.2" + "@babel/types": "^7.29.0" }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator/node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "bin": { - "jsesc": "bin/jsesc" + "parser": "bin/babel-parser.js" }, "engines": { - "node": ">=6" + "node": ">=6.0.0" } }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "dev": true, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", - "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", - "dependencies": { - "@babel/compat-data": "^7.26.5", - "@babel/helper-validator-option": "^7.25.9", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "license": "ISC", + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "license": "MIT", "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "license": "ISC" - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", - "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/traverse": "^7.25.9", - "semver": "^6.3.1" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1507,33 +1397,28 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", - "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "node_modules/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array/-/plugin-bugfix-safari-rest-destructuring-rhs-array-7.29.3.tgz", + "integrity": "sha512-SRS46DFR4HqzUzCVgi90/xMoL+zeBDBvWdKYXSEzh79kXswNFEglUpMKxR04//dPqwYXWUBJ3mpUd933ru9Kmg==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "regexpu-core": "^6.2.0", - "semver": "^6.3.1" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1542,382 +1427,103 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.1", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.4", - "dev": true, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz", + "integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.24.7" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", - "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-module-imports": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", - "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", - "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", - "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/helper-plugin-utils": "^7.8.0" }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", - "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", - "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-wrap-function": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", - "dependencies": { - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", - "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/traverse": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", - "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", - "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", - "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", - "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", - "dependencies": { - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz", - "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==", - "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz", - "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==", - "dependencies": { - "@babel/types": "^7.26.7" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", - "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", - "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", - "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/plugin-transform-optional-chaining": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", - "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", - "dev": true, - "peer": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", - "dev": true, - "peer": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" @@ -1925,8 +1531,8 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -1936,9 +1542,8 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", - "dev": true, - "license": "MIT", - "peer": true, + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1951,7 +1556,8 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1961,9 +1567,8 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", - "dev": true, - "license": "MIT", - "peer": true, + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -1972,11 +1577,11 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", - "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz", + "integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -1986,11 +1591,11 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", - "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2001,8 +1606,8 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -2012,8 +1617,8 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -2022,11 +1627,11 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", - "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2037,8 +1642,8 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -2048,8 +1653,8 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -2059,8 +1664,8 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -2070,8 +1675,8 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -2081,8 +1686,8 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -2092,8 +1697,8 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -2103,9 +1708,8 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", - "dev": true, - "license": "MIT", - "peer": true, + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -2118,8 +1722,8 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", - "dev": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -2131,11 +1735,11 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", - "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", + "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2146,7 +1750,8 @@ }, "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -2159,11 +1764,11 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", - "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2173,13 +1778,13 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", - "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.0.tgz", + "integrity": "sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-remap-async-to-generator": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.29.0" }, "engines": { "node": ">=6.9.0" @@ -2189,13 +1794,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", - "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-remap-async-to-generator": "^7.25.9" + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2205,11 +1810,11 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", - "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2219,11 +1824,11 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", - "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz", + "integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2233,12 +1838,12 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", - "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz", + "integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2248,12 +1853,12 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", - "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz", + "integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2263,16 +1868,16 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", - "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9", - "@babel/traverse": "^7.25.9", - "globals": "^11.1.0" + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz", + "integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/traverse": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2282,23 +1887,23 @@ } }, "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", - "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz", + "integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/template": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/template": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2307,12 +1912,26 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-computed-properties/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", - "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2322,12 +1941,12 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", - "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz", + "integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2337,11 +1956,11 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", - "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2351,12 +1970,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2366,11 +1986,11 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", - "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2379,12 +1999,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", - "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz", + "integrity": "sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2393,12 +2015,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", - "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz", + "integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2407,13 +2029,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", - "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2422,14 +2043,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", - "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2438,12 +2058,28 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", - "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz", + "integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2453,11 +2089,11 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", - "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2467,11 +2103,11 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", - "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz", + "integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2481,11 +2117,11 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", - "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2495,12 +2131,12 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", - "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2510,12 +2146,12 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", - "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz", + "integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==", "dependencies": { - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2525,14 +2161,14 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", - "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "version": "7.29.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.4.tgz", + "integrity": "sha512-N7QmZ0xRZfjHOfZeQLJjwgX2zS9pdGHSVl/cjSGlo4dXMqvurfxXDMKY4RqEKzPozV78VMcd0lxyG13mlbKc4w==", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.29.0" }, "engines": { "node": ">=6.9.0" @@ -2542,12 +2178,12 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", - "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2557,12 +2193,12 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2572,11 +2208,11 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", - "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2586,11 +2222,11 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.26.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", - "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz", + "integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2600,11 +2236,11 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", - "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz", + "integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2614,13 +2250,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", - "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz", + "integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==", "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-transform-parameters": "^7.25.9" + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2630,12 +2268,12 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", - "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2645,11 +2283,11 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", - "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz", + "integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2659,12 +2297,12 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz", + "integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2674,11 +2312,11 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", - "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2688,12 +2326,12 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", - "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz", + "integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2703,13 +2341,13 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", - "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz", + "integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2719,22 +2357,22 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", - "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2744,11 +2382,12 @@ } }, "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.1.tgz", - "integrity": "sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz", + "integrity": "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2758,11 +2397,12 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", - "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2772,15 +2412,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", - "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.28.6.tgz", + "integrity": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-syntax-jsx": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-jsx": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2790,11 +2431,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", - "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", + "license": "MIT", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.25.9" + "@babel/plugin-transform-react-jsx": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2804,23 +2446,25 @@ } }, "node_modules/@babel/plugin-transform-react-jsx/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", - "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2830,23 +2474,23 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", - "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.0.tgz", + "integrity": "sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "regenerator-transform": "^0.15.2" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2856,12 +2500,13 @@ } }, "node_modules/@babel/plugin-transform-regexp-modifiers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", - "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz", + "integrity": "sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -2871,11 +2516,11 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", - "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2885,15 +2530,17 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz", - "integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.6", - "babel-plugin-polyfill-regenerator": "^0.6.1", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz", + "integrity": "sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.4", + "babel-plugin-polyfill-corejs3": "^0.8.2", + "babel-plugin-polyfill-regenerator": "^0.5.1", "semver": "^6.3.1" }, "engines": { @@ -2903,58 +2550,22 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", - "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", - "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2", - "core-js-compat": "^3.38.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", - "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.3" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "peer": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", - "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2964,12 +2575,12 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", - "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz", + "integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2979,11 +2590,11 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", - "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2993,11 +2604,11 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", - "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -3007,11 +2618,11 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz", - "integrity": "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -3021,15 +2632,16 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.7.tgz", - "integrity": "sha512-5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz", + "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/plugin-syntax-typescript": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -3039,22 +2651,23 @@ } }, "node_modules/@babel/plugin-transform-typescript/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", - "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -3064,12 +2677,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", - "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz", + "integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -3079,12 +2692,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", - "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -3094,12 +2707,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", - "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz", + "integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -3109,78 +2722,89 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.7.tgz", - "integrity": "sha512-Ycg2tnXwixaXOVb29rana8HNPgLVBof8qqtNQ9LE22IoyZboQbGSxI6ZySMdW3K5nAe6gu35IaJefUJflhUFTQ==", - "dependencies": { - "@babel/compat-data": "^7.26.5", - "@babel/helper-compilation-targets": "^7.26.5", - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", - "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.9.tgz", + "integrity": "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==", + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.9", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-import-assertions": "^7.26.0", - "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.25.9", - "@babel/plugin-transform-async-generator-functions": "^7.25.9", - "@babel/plugin-transform-async-to-generator": "^7.25.9", - "@babel/plugin-transform-block-scoped-functions": "^7.26.5", - "@babel/plugin-transform-block-scoping": "^7.25.9", - "@babel/plugin-transform-class-properties": "^7.25.9", - "@babel/plugin-transform-class-static-block": "^7.26.0", - "@babel/plugin-transform-classes": "^7.25.9", - "@babel/plugin-transform-computed-properties": "^7.25.9", - "@babel/plugin-transform-destructuring": "^7.25.9", - "@babel/plugin-transform-dotall-regex": "^7.25.9", - "@babel/plugin-transform-duplicate-keys": "^7.25.9", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", - "@babel/plugin-transform-dynamic-import": "^7.25.9", - "@babel/plugin-transform-exponentiation-operator": "^7.26.3", - "@babel/plugin-transform-export-namespace-from": "^7.25.9", - "@babel/plugin-transform-for-of": "^7.25.9", - "@babel/plugin-transform-function-name": "^7.25.9", - "@babel/plugin-transform-json-strings": "^7.25.9", - "@babel/plugin-transform-literals": "^7.25.9", - "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", - "@babel/plugin-transform-member-expression-literals": "^7.25.9", - "@babel/plugin-transform-modules-amd": "^7.25.9", - "@babel/plugin-transform-modules-commonjs": "^7.26.3", - "@babel/plugin-transform-modules-systemjs": "^7.25.9", - "@babel/plugin-transform-modules-umd": "^7.25.9", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", - "@babel/plugin-transform-new-target": "^7.25.9", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", - "@babel/plugin-transform-numeric-separator": "^7.25.9", - "@babel/plugin-transform-object-rest-spread": "^7.25.9", - "@babel/plugin-transform-object-super": "^7.25.9", - "@babel/plugin-transform-optional-catch-binding": "^7.25.9", - "@babel/plugin-transform-optional-chaining": "^7.25.9", - "@babel/plugin-transform-parameters": "^7.25.9", - "@babel/plugin-transform-private-methods": "^7.25.9", - "@babel/plugin-transform-private-property-in-object": "^7.25.9", - "@babel/plugin-transform-property-literals": "^7.25.9", - "@babel/plugin-transform-regenerator": "^7.25.9", - "@babel/plugin-transform-regexp-modifiers": "^7.26.0", - "@babel/plugin-transform-reserved-words": "^7.25.9", - "@babel/plugin-transform-shorthand-properties": "^7.25.9", - "@babel/plugin-transform-spread": "^7.25.9", - "@babel/plugin-transform-sticky-regex": "^7.25.9", - "@babel/plugin-transform-template-literals": "^7.25.9", - "@babel/plugin-transform-typeof-symbol": "^7.26.7", - "@babel/plugin-transform-unicode-escapes": "^7.25.9", - "@babel/plugin-transform-unicode-property-regex": "^7.25.9", - "@babel/plugin-transform-unicode-regex": "^7.25.9", - "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.6", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.38.1", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.7", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.5", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.6", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.5", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.6", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.5", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.5", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.4", + "babel-plugin-polyfill-corejs3": "^0.8.2", + "babel-plugin-polyfill-regenerator": "^0.5.1", + "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, "engines": { @@ -3190,56 +2814,22 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", - "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", - "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2", - "core-js-compat": "^3.38.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", - "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.3" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, "node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.1", - "license": "ISC", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "license": "MIT", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", + "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, @@ -3248,16 +2838,17 @@ } }, "node_modules/@babel/preset-react": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", - "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.28.5.tgz", + "integrity": "sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-transform-react-display-name": "^7.25.9", - "@babel/plugin-transform-react-jsx": "^7.25.9", - "@babel/plugin-transform-react-jsx-development": "^7.25.9", - "@babel/plugin-transform-react-pure-annotations": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-react-display-name": "^7.28.0", + "@babel/plugin-transform-react-jsx": "^7.27.1", + "@babel/plugin-transform-react-jsx-development": "^7.27.1", + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -3267,15 +2858,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", - "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz", + "integrity": "sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-syntax-jsx": "^7.25.9", - "@babel/plugin-transform-modules-commonjs": "^7.25.9", - "@babel/plugin-transform-typescript": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -3285,65 +2877,92 @@ } }, "node_modules/@babel/runtime": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.7.tgz", - "integrity": "sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", + "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", "dependencies": { - "regenerator-runtime": "^0.14.0" + "regenerator-runtime": "^0.13.11" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.7.tgz", - "integrity": "sha512-55gRV8vGrCIYZnaQHQrD92Lo/hYE3Sj5tmbuf0hhHR7sj2CWhEhHU89hbq+UVDXvFG1zUVXJhUkEq1eAfqXtFw==", + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", "dependencies": { - "core-js-pure": "^3.30.2", - "regenerator-runtime": "^0.14.0" + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/template": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", - "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/parser": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/traverse": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz", - "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==", + "node_modules/@babel/traverse/node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.5", - "@babel/parser": "^7.26.7", - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.7", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/traverse/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/@babel/types": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz", - "integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", "dependencies": { - "@babel/helper-string-parser": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -3356,43 +2975,31 @@ "dev": true }, "node_modules/@casualbot/jest-sonar-reporter": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@casualbot/jest-sonar-reporter/-/jest-sonar-reporter-2.3.1.tgz", - "integrity": "sha512-gND9elyG+0024l9g1nebd/9rdLyR6K28tycLiVOgWYaML/X7rSFjvzdbO693CKsV+M8c+6Rl9EocmPasNJukXg==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@casualbot/jest-sonar-reporter/-/jest-sonar-reporter-2.7.1.tgz", + "integrity": "sha512-C/lzwYEXnHueUufmvSLRKSz8ANVCrFv7HjtGsLoPDUYwugn6CYB1E7gEiCUlWaDeq+DUib2xMUX0nMYpwxUYzA==", "dev": true, "dependencies": { "mkdirp": "1.0.4", - "uuid": "8.3.2", "xml": "1.0.1" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@casualbot/jest-sonar-reporter/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@colors/colors": { "version": "1.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "optional": true, "engines": { "node": ">=0.1.90" } }, "node_modules/@csstools/cascade-layer-name-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.4.tgz", - "integrity": "sha512-7DFHlPuIxviKYZrOiwVU/PiHLm3lLUR23OMuEEtfEOQTOp9hzQ2JjdY6X5H18RVuUPJqSCI+qNnD5iOLMVE0bA==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz", + "integrity": "sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A==", "funding": [ { "type": "github", @@ -3403,18 +3010,19 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/color-helpers": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz", - "integrity": "sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", + "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", "funding": [ { "type": "github", @@ -3425,14 +3033,15 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" } }, "node_modules/@csstools/css-calc": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz", - "integrity": "sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", + "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", "funding": [ { "type": "github", @@ -3443,18 +3052,19 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-color-parser": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz", - "integrity": "sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", + "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", "funding": [ { "type": "github", @@ -3465,22 +3075,23 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^5.0.1", - "@csstools/css-calc": "^2.1.1" + "@csstools/color-helpers": "^5.1.0", + "@csstools/css-calc": "^2.1.4" }, "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", - "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", + "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", "funding": [ { "type": "github", @@ -3491,17 +3102,18 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-tokenizer": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", - "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", + "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", "funding": [ { "type": "github", @@ -3512,14 +3124,15 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/@csstools/media-query-list-parser": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", - "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz", + "integrity": "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==", "funding": [ { "type": "github", @@ -3530,18 +3143,19 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, - "node_modules/@csstools/postcss-cascade-layers": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.1.tgz", - "integrity": "sha512-XOfhI7GShVcKiKwmPAnWSqd2tBR0uxt+runAxttbSp/LY2U16yAVPmAf7e9q4JJ0d+xMNmpwNDLBXnmRCl3HMQ==", + "node_modules/@csstools/postcss-alpha-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz", + "integrity": "sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==", "funding": [ { "type": "github", @@ -3552,9 +3166,13 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/selector-specificity": "^5.0.0", - "postcss-selector-parser": "^7.0.0" + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" }, "engines": { "node": ">=18" @@ -3563,10 +3181,10 @@ "postcss": "^8.4" } }, - "node_modules/@csstools/postcss-cascade-layers/node_modules/@csstools/selector-specificity": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", - "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "node_modules/@csstools/postcss-cascade-layers": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz", + "integrity": "sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==", "funding": [ { "type": "github", @@ -3577,17 +3195,45 @@ "url": "https://opencollective.com/csstools" } ], - "engines": { - "node": ">=18" + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-cascade-layers/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "node_modules/@csstools/postcss-cascade-layers/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3597,9 +3243,38 @@ } }, "node_modules/@csstools/postcss-color-function": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.7.tgz", - "integrity": "sha512-aDHYmhNIHR6iLw4ElWhf+tRqqaXwKnMl0YsQ/X105Zc4dQwe6yJpMrTN6BwOoESrkDjOYMOfORviSSLeDTJkdQ==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz", + "integrity": "sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-function-display-p3-linear": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz", + "integrity": "sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==", "funding": [ { "type": "github", @@ -3610,11 +3285,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3625,9 +3301,38 @@ } }, "node_modules/@csstools/postcss-color-mix-function": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.7.tgz", - "integrity": "sha512-e68Nev4CxZYCLcrfWhHH4u/N1YocOfTmw67/kVX5Rb7rnguqqLyxPjhHWjSBX8o4bmyuukmNf3wrUSU3//kT7g==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz", + "integrity": "sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz", + "integrity": "sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==", "funding": [ { "type": "github", @@ -3638,11 +3343,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3653,9 +3359,37 @@ } }, "node_modules/@csstools/postcss-content-alt-text": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.4.tgz", - "integrity": "sha512-YItlZUOuZJCBlRaCf8Aucc1lgN41qYGALMly0qQllrxYJhiyzlI6RxOTMUvtWk+KhS8GphMDsDhKQ7KTPfEMSw==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz", + "integrity": "sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-contrast-color-function": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz", + "integrity": "sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==", "funding": [ { "type": "github", @@ -3666,10 +3400,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3680,9 +3416,9 @@ } }, "node_modules/@csstools/postcss-exponential-functions": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.6.tgz", - "integrity": "sha512-IgJA5DQsQLu/upA3HcdvC6xEMR051ufebBTIXZ5E9/9iiaA7juXWz1ceYj814lnDYP/7eWjZnw0grRJlX4eI6g==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz", + "integrity": "sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==", "funding": [ { "type": "github", @@ -3693,10 +3429,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3719,6 +3456,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" @@ -3731,9 +3469,9 @@ } }, "node_modules/@csstools/postcss-gamut-mapping": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.7.tgz", - "integrity": "sha512-gzFEZPoOkY0HqGdyeBXR3JP218Owr683u7KOZazTK7tQZBE8s2yhg06W1tshOqk7R7SWvw9gkw2TQogKpIW8Xw==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz", + "integrity": "sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==", "funding": [ { "type": "github", @@ -3744,10 +3482,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3757,9 +3496,9 @@ } }, "node_modules/@csstools/postcss-gradients-interpolation-method": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.7.tgz", - "integrity": "sha512-WgEyBeg6glUeTdS2XT7qeTFBthTJuXlS9GFro/DVomj7W7WMTamAwpoP4oQCq/0Ki2gvfRYFi/uZtmRE14/DFA==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz", + "integrity": "sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==", "funding": [ { "type": "github", @@ -3770,11 +3509,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3785,9 +3525,9 @@ } }, "node_modules/@csstools/postcss-hwb-function": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.7.tgz", - "integrity": "sha512-LKYqjO+wGwDCfNIEllessCBWfR4MS/sS1WXO+j00KKyOjm7jDW2L6jzUmqASEiv/kkJO39GcoIOvTTfB3yeBUA==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz", + "integrity": "sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==", "funding": [ { "type": "github", @@ -3798,11 +3538,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3813,9 +3554,9 @@ } }, "node_modules/@csstools/postcss-ic-unit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.0.tgz", - "integrity": "sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz", + "integrity": "sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==", "funding": [ { "type": "github", @@ -3826,8 +3567,9 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" }, @@ -3839,9 +3581,9 @@ } }, "node_modules/@csstools/postcss-initial": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.0.tgz", - "integrity": "sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.1.tgz", + "integrity": "sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==", "funding": [ { "type": "github", @@ -3852,6 +3594,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -3860,9 +3603,9 @@ } }, "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.1.tgz", - "integrity": "sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz", + "integrity": "sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==", "funding": [ { "type": "github", @@ -3873,6 +3616,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" @@ -3898,6 +3642,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -3906,9 +3651,10 @@ } }, "node_modules/@csstools/postcss-is-pseudo-class/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3918,9 +3664,9 @@ } }, "node_modules/@csstools/postcss-light-dark-function": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.7.tgz", - "integrity": "sha512-ZZ0rwlanYKOHekyIPaU+sVm3BEHCe+Ha0/px+bmHe62n0Uc1lL34vbwrLYn6ote8PHlsqzKeTQdIejQCJ05tfw==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz", + "integrity": "sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==", "funding": [ { "type": "github", @@ -3931,10 +3677,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3958,6 +3705,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -3979,6 +3727,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -4000,6 +3749,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -4021,6 +3771,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -4032,9 +3783,9 @@ } }, "node_modules/@csstools/postcss-logical-viewport-units": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.3.tgz", - "integrity": "sha512-OC1IlG/yoGJdi0Y+7duz/kU/beCwO+Gua01sD6GtOtLi7ByQUpcIqs7UE/xuRPay4cHgOMatWdnDdsIDjnWpPw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz", + "integrity": "sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==", "funding": [ { "type": "github", @@ -4045,8 +3796,9 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-tokenizer": "^3.0.3", + "@csstools/css-tokenizer": "^3.0.4", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -4057,9 +3809,9 @@ } }, "node_modules/@csstools/postcss-media-minmax": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.6.tgz", - "integrity": "sha512-J1+4Fr2W3pLZsfxkFazK+9kr96LhEYqoeBszLmFjb6AjYs+g9oDAw3J5oQignLKk3rC9XHW+ebPTZ9FaW5u5pg==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz", + "integrity": "sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==", "funding": [ { "type": "github", @@ -4070,11 +3822,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" }, "engines": { "node": ">=18" @@ -4084,9 +3837,9 @@ } }, "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.4.tgz", - "integrity": "sha512-AnGjVslHMm5xw9keusQYvjVWvuS7KWK+OJagaG0+m9QnIjZsrysD2kJP/tr/UJIyYtMCtu8OkUd+Rajb4DqtIQ==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz", + "integrity": "sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==", "funding": [ { "type": "github", @@ -4097,10 +3850,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" }, "engines": { "node": ">=18" @@ -4123,6 +3877,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" @@ -4135,9 +3890,9 @@ } }, "node_modules/@csstools/postcss-normalize-display-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz", - "integrity": "sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz", + "integrity": "sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==", "funding": [ { "type": "github", @@ -4148,6 +3903,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -4159,9 +3915,9 @@ } }, "node_modules/@csstools/postcss-oklab-function": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.7.tgz", - "integrity": "sha512-I6WFQIbEKG2IO3vhaMGZDkucbCaUSXMxvHNzDdnfsTCF5tc0UlV3Oe2AhamatQoKFjBi75dSEMrgWq3+RegsOQ==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz", + "integrity": "sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==", "funding": [ { "type": "github", @@ -4172,11 +3928,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -4186,10 +3943,32 @@ "postcss": "^8.4" } }, + "node_modules/@csstools/postcss-position-area-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-1.0.0.tgz", + "integrity": "sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.0.tgz", - "integrity": "sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz", + "integrity": "sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==", "funding": [ { "type": "github", @@ -4200,6 +3979,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -4210,10 +3990,36 @@ "postcss": "^8.4" } }, + "node_modules/@csstools/postcss-property-rule-prelude-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-1.0.0.tgz", + "integrity": "sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/@csstools/postcss-random-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-1.0.2.tgz", - "integrity": "sha512-vBCT6JvgdEkvRc91NFoNrLjgGtkLWt47GKT6E2UDn3nd8ZkMBiziQ1Md1OiKoSsgzxsSnGKG3RVdhlbdZEkHjA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz", + "integrity": "sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==", "funding": [ { "type": "github", @@ -4224,10 +4030,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -4237,9 +4044,9 @@ } }, "node_modules/@csstools/postcss-relative-color-syntax": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.7.tgz", - "integrity": "sha512-apbT31vsJVd18MabfPOnE977xgct5B1I+Jpf+Munw3n6kKb1MMuUmGGH+PT9Hm/fFs6fe61Q/EWnkrb4bNoNQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz", + "integrity": "sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==", "funding": [ { "type": "github", @@ -4250,11 +4057,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -4278,6 +4086,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { "postcss-selector-parser": "^7.0.0" }, @@ -4289,9 +4098,10 @@ } }, "node_modules/@csstools/postcss-scope-pseudo-class/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -4301,9 +4111,9 @@ } }, "node_modules/@csstools/postcss-sign-functions": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.1.tgz", - "integrity": "sha512-MslYkZCeMQDxetNkfmmQYgKCy4c+w9pPDfgOBCJOo/RI1RveEUdZQYtOfrC6cIZB7sD7/PHr2VGOcMXlZawrnA==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz", + "integrity": "sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==", "funding": [ { "type": "github", @@ -4314,10 +4124,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -4327,9 +4138,61 @@ } }, "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.6.tgz", - "integrity": "sha512-/dwlO9w8vfKgiADxpxUbZOWlL5zKoRIsCymYoh1IPuBsXODKanKnfuZRr32DEqT0//3Av1VjfNZU9yhxtEfIeA==", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz", + "integrity": "sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-syntax-descriptor-syntax-production": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-1.0.1.tgz", + "integrity": "sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-tokenizer": "^3.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-system-ui-font-family": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-1.0.0.tgz", + "integrity": "sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==", "funding": [ { "type": "github", @@ -4340,10 +4203,10 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -4353,9 +4216,9 @@ } }, "node_modules/@csstools/postcss-text-decoration-shorthand": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.1.tgz", - "integrity": "sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz", + "integrity": "sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==", "funding": [ { "type": "github", @@ -4366,8 +4229,9 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/color-helpers": "^5.0.1", + "@csstools/color-helpers": "^5.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -4378,9 +4242,9 @@ } }, "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.6.tgz", - "integrity": "sha512-c4Y1D2Why/PeccaSouXnTt6WcNHJkoJRidV2VW9s5gJ97cNxnLgQ4Qj8qOqkIR9VmTQKJyNcbF4hy79ZQnWD7A==", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz", + "integrity": "sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==", "funding": [ { "type": "github", @@ -4391,10 +4255,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.1", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -4417,6 +4282,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -4438,6 +4304,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -4447,30 +4314,54 @@ }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "engines": { "node": ">=10.0.0" } }, + "node_modules/@docsearch/core": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/@docsearch/core/-/core-4.6.3.tgz", + "integrity": "sha512-rUOujwIpxJRgD7+kicVsI3D5sqBvdiRTquzWBpTEXZs8ZXfGbfzpus5HqumaNYTppN2HvH8E2yNuRwYdHJeOlA==", + "license": "MIT", + "peerDependencies": { + "@types/react": ">= 16.8.0 < 20.0.0", + "react": ">= 16.8.0 < 20.0.0", + "react-dom": ">= 16.8.0 < 20.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, "node_modules/@docsearch/css": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.3.tgz", - "integrity": "sha512-1nELpMV40JDLJ6rpVVFX48R1jsBFIQ6RnEQDsLFGmzOjPWTOMlZqUcXcvRx8VmYV/TqnS1l784Ofz+ZEb+wEOQ==" + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-4.6.3.tgz", + "integrity": "sha512-nlOwcXcsNAptQl4vlL4MA78qNJKO0Qlds5GuBjCoePgkebTXLSf8Qt1oyZ3YBshYupKXG9VRGEsk1zr23d+bzQ==", + "license": "MIT" }, "node_modules/@docsearch/react": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.3.tgz", - "integrity": "sha512-6UNrg88K7lJWmuS6zFPL/xgL+n326qXqZ7Ybyy4E8P/6Rcblk3GE8RXxeol4Pd5pFpKMhOhBhzABKKwHtbJCIg==", + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-4.6.3.tgz", + "integrity": "sha512-Bg2wdDsoQVlNCcEKuEJAU04tvHCqgx8rIu+uIoM4pRtcx3TBKJuXutJik3LTA8LRc9YEyHkrYUrmcC0D7BYf+g==", + "license": "MIT", "dependencies": { - "@algolia/autocomplete-core": "1.17.9", - "@algolia/autocomplete-preset-algolia": "1.17.9", - "@docsearch/css": "3.8.3", - "algoliasearch": "^5.14.2" + "@algolia/autocomplete-core": "1.19.2", + "@docsearch/core": "4.6.3", + "@docsearch/css": "4.6.3" }, "peerDependencies": { - "@types/react": ">= 16.8.0 < 19.0.0", - "react": ">= 16.8.0 < 19.0.0", - "react-dom": ">= 16.8.0 < 19.0.0", + "@types/react": ">= 16.8.0 < 20.0.0", + "react": ">= 16.8.0 < 20.0.0", + "react-dom": ">= 16.8.0 < 20.0.0", "search-insights": ">= 1 < 3" }, "peerDependenciesMeta": { @@ -4488,10 +4379,43 @@ } } }, + "node_modules/@docsearch/react/node_modules/@algolia/autocomplete-core": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz", + "integrity": "sha512-mKv7RyuAzXvwmq+0XRK8HqZXt9iZ5Kkm2huLjgn5JoCPtDy+oh9yxUMfDDaVCw0oyzZ1isdJBc7l9nuCyyR7Nw==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.19.2", + "@algolia/autocomplete-shared": "1.19.2" + } + }, + "node_modules/@docsearch/react/node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz", + "integrity": "sha512-TjxbcC/r4vwmnZaPwrHtkXNeqvlpdyR+oR9Wi2XyfORkiGkLTVhX2j+O9SaCCINbKoDfc+c2PB8NjfOnz7+oKg==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.19.2" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@docsearch/react/node_modules/@algolia/autocomplete-shared": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz", + "integrity": "sha512-jEazxZTVD2nLrC+wYlVHQgpBoBB5KPStrJxLzsIFl6Kqd1AlG9sIAGl39V5tECLpIQzB3Qa2T6ZPJ1ChkwMK/w==", + "license": "MIT", + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, "node_modules/@docusaurus/babel": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.7.0.tgz", - "integrity": "sha512-0H5uoJLm14S/oKV3Keihxvh8RV+vrid+6Gv+2qhuzbqHanawga8tYnsdpjEyt36ucJjqlby2/Md2ObWjA02UXQ==", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.10.1.tgz", + "integrity": "sha512-DZzFO1K3v/GoEt1fx1DiYHF4en+PuhtQf1AkQJa5zu3CoeKSpr5cpQRUlz3jr0m44wyzmSXu9bVpfir+N4+8bg==", + "license": "MIT", "dependencies": { "@babel/core": "^7.25.9", "@babel/generator": "^7.25.9", @@ -4501,9964 +4425,10552 @@ "@babel/preset-react": "^7.25.9", "@babel/preset-typescript": "^7.25.9", "@babel/runtime": "^7.25.9", - "@babel/runtime-corejs3": "^7.25.9", "@babel/traverse": "^7.25.9", - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", + "@docusaurus/logger": "3.10.1", + "@docusaurus/utils": "3.10.1", "babel-plugin-dynamic-import-node": "^2.3.3", "fs-extra": "^11.1.1", "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" } }, - "node_modules/@docusaurus/bundler": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.7.0.tgz", - "integrity": "sha512-CUUT9VlSGukrCU5ctZucykvgCISivct+cby28wJwCC/fkQFgAHRp/GKv2tx38ZmXb7nacrKzFTcp++f9txUYGg==", + "node_modules/@docusaurus/babel/node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "license": "MIT", "dependencies": { - "@babel/core": "^7.25.9", - "@docusaurus/babel": "3.7.0", - "@docusaurus/cssnano-preset": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "babel-loader": "^9.2.1", - "clean-css": "^5.3.2", - "copy-webpack-plugin": "^11.0.0", - "css-loader": "^6.8.1", - "css-minimizer-webpack-plugin": "^5.0.1", - "cssnano": "^6.1.2", - "file-loader": "^6.2.0", - "html-minifier-terser": "^7.2.0", - "mini-css-extract-plugin": "^2.9.1", - "null-loader": "^4.0.1", - "postcss": "^8.4.26", - "postcss-loader": "^7.3.3", - "postcss-preset-env": "^10.1.0", - "react-dev-utils": "^12.0.1", - "terser-webpack-plugin": "^5.3.9", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "webpack": "^5.95.0", - "webpackbar": "^6.0.1" + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "@docusaurus/faster": "*" + "node": ">=6.9.0" }, - "peerDependenciesMeta": { - "@docusaurus/faster": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@docusaurus/bundler/node_modules/babel-loader": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", - "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", + "node_modules/@docusaurus/babel/node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "license": "MIT", "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "node": ">=6.9.0" } }, - "node_modules/@docusaurus/core": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz", - "integrity": "sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ==", - "dependencies": { - "@docusaurus/babel": "3.7.0", - "@docusaurus/bundler": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cli-table3": "^0.6.3", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "core-js": "^3.31.1", - "del": "^6.1.1", - "detect-port": "^1.5.1", - "escape-html": "^1.0.3", - "eta": "^2.2.0", - "eval": "^0.1.8", - "fs-extra": "^11.1.1", - "html-tags": "^3.3.1", - "html-webpack-plugin": "^5.6.0", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "p-map": "^4.0.0", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.4", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.4", - "semver": "^7.5.4", - "serve-handler": "^6.1.6", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "update-notifier": "^6.0.2", - "webpack": "^5.95.0", - "webpack-bundle-analyzer": "^4.10.2", - "webpack-dev-server": "^4.15.2", - "webpack-merge": "^6.0.1" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" + "node_modules/@docusaurus/babel/node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz", + "integrity": "sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1" }, "engines": { - "node": ">=18.0" + "node": ">=6.9.0" }, "peerDependencies": { - "@mdx-js/react": "^3.0.0", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@docusaurus/core/node_modules/commander": { - "version": "5.1.0", + "node_modules/@docusaurus/babel/node_modules/@babel/plugin-transform-runtime": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.29.0.tgz", + "integrity": "sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==", "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@docusaurus/core/node_modules/webpack-dev-server": { - "version": "4.15.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", - "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.4", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "semver": "^6.3.1" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=6.9.0" }, "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "@babel/core": "^7.0.0-0" } }, - "node_modules/@docusaurus/core/node_modules/webpack-merge": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", - "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "node_modules/@docusaurus/babel/node_modules/@babel/preset-env": { + "version": "7.29.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.29.5.tgz", + "integrity": "sha512-/69t2aEzGKHD76DyLbHysF/QH2LJOB8iFnYO37unDTKBTubzcMRv0f3H5EiN1Q6ajOd/eB7dAInF0qdFVS06kA==", + "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.1" + "@babel/compat-data": "^7.29.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": "^7.29.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.28.6", + "@babel/plugin-syntax-import-attributes": "^7.28.6", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.29.0", + "@babel/plugin-transform-async-to-generator": "^7.28.6", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.6", + "@babel/plugin-transform-class-properties": "^7.28.6", + "@babel/plugin-transform-class-static-block": "^7.28.6", + "@babel/plugin-transform-classes": "^7.28.6", + "@babel/plugin-transform-computed-properties": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.28.6", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.6", + "@babel/plugin-transform-exponentiation-operator": "^7.28.6", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.28.6", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.6", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.28.6", + "@babel/plugin-transform-modules-systemjs": "^7.29.4", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6", + "@babel/plugin-transform-numeric-separator": "^7.28.6", + "@babel/plugin-transform-object-rest-spread": "^7.28.6", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.28.6", + "@babel/plugin-transform-optional-chaining": "^7.28.6", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/plugin-transform-private-property-in-object": "^7.28.6", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.29.0", + "@babel/plugin-transform-regexp-modifiers": "^7.28.6", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.28.6", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.28.6", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.28.6", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.15", + "babel-plugin-polyfill-corejs3": "^0.14.0", + "babel-plugin-polyfill-regenerator": "^0.6.6", + "core-js-compat": "^3.48.0", + "semver": "^6.3.1" }, "engines": { - "node": ">=18.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@docusaurus/core/node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "engines": { - "node": ">=10.0.0" + "node_modules/@docusaurus/babel/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz", + "integrity": "sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8", + "core-js-compat": "^3.48.0" }, "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@docusaurus/cssnano-preset": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.7.0.tgz", - "integrity": "sha512-X9GYgruZBSOozg4w4dzv9uOz8oK/EpPVQXkp0MM6Tsgp/nRIU9hJzJ0Pxg1aRa3xCeEQTOimZHcocQFlLwYajQ==", + "node_modules/@docusaurus/babel/node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", "dependencies": { - "cssnano-preset-advanced": "^6.1.2", - "postcss": "^8.4.38", - "postcss-sort-media-queries": "^5.2.0", - "tslib": "^2.6.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@docusaurus/babel/node_modules/@babel/runtime": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz", + "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==", + "license": "MIT", "engines": { - "node": ">=18.0" + "node": ">=6.9.0" } }, - "node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", + "node_modules/@docusaurus/babel/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "license": "MIT", "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.6.0" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, "engines": { - "node": ">=18.0" + "node": ">=6.9.0" } }, - "node_modules/@docusaurus/mdx-loader": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz", - "integrity": "sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA==", + "node_modules/@docusaurus/babel/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/mdx": "^3.0.0", - "@slorber/remark-comment": "^1.0.0", - "escape-html": "^1.0.3", - "estree-util-value-to-estree": "^3.0.1", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "image-size": "^1.0.2", - "mdast-util-mdx": "^3.0.0", - "mdast-util-to-string": "^4.0.0", - "rehype-raw": "^7.0.0", - "remark-directive": "^3.0.0", - "remark-emoji": "^4.0.0", - "remark-frontmatter": "^5.0.0", - "remark-gfm": "^4.0.0", - "stringify-object": "^3.3.0", - "tslib": "^2.6.0", - "unified": "^11.0.3", - "unist-util-visit": "^5.0.0", - "url-loader": "^4.1.1", - "vfile": "^6.0.1", - "webpack": "^5.88.1" - }, - "engines": { - "node": ">=18.0" + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/hast-util-from-parse5": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.2.tgz", - "integrity": "sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==", + "node_modules/@docusaurus/babel/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", + "license": "MIT", "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "hastscript": "^9.0.0", - "property-information": "^6.0.0", - "vfile": "^6.0.0", - "vfile-location": "^5.0.0", - "web-namespaces": "^2.0.0" + "@babel/helper-define-polyfill-provider": "^0.6.8" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/hast-util-parse-selector": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", - "dependencies": { - "@types/hast": "^3.0.0" + "node_modules/@docusaurus/babel/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/@docusaurus/babel/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/hast-util-raw": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", - "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "@ungap/structured-clone": "^1.0.0", - "hast-util-from-parse5": "^8.0.0", - "hast-util-to-parse5": "^8.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "parse5": "^7.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/@docusaurus/babel/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/hast-util-to-parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", + "node_modules/@docusaurus/bundler": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.10.1.tgz", + "integrity": "sha512-HIqQPvbqnnQRe4NsBd1774KRarjXqS6wHsWELtyuSs1gCfvixJO2jUGH/OEBtr1Gvzpw+ze5CjGMvSJ8UE1KUw==", + "license": "MIT", "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" + "@babel/core": "^7.25.9", + "@docusaurus/babel": "3.10.1", + "@docusaurus/cssnano-preset": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "babel-loader": "^9.2.1", + "clean-css": "^5.3.3", + "copy-webpack-plugin": "^11.0.0", + "css-loader": "^6.11.0", + "css-minimizer-webpack-plugin": "^5.0.1", + "cssnano": "^6.1.2", + "file-loader": "^6.2.0", + "html-minifier-terser": "^7.2.0", + "mini-css-extract-plugin": "^2.9.2", + "null-loader": "^4.0.1", + "postcss": "^8.5.4", + "postcss-loader": "^7.3.4", + "postcss-preset-env": "^10.2.1", + "terser-webpack-plugin": "^5.3.9", + "tslib": "^2.6.0", + "url-loader": "^4.1.1", + "webpack": "^5.95.0", + "webpackbar": "^7.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=20.0" + }, + "peerDependencies": { + "@docusaurus/faster": "*" + }, + "peerDependenciesMeta": { + "@docusaurus/faster": { + "optional": true + } } }, - "node_modules/@docusaurus/mdx-loader/node_modules/hastscript": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.0.tgz", - "integrity": "sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==", + "node_modules/@docusaurus/bundler/node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "license": "MIT", "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/babel" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/html-void-elements": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/@docusaurus/bundler/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/rehype-raw": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", - "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", + "node_modules/@docusaurus/bundler/node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "license": "MIT", "dependencies": { - "@types/hast": "^3.0.0", - "hast-util-raw": "^9.0.0", - "vfile": "^6.0.0" + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/vfile-location": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", - "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", + "node_modules/@docusaurus/bundler/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "license": "MIT", "dependencies": { - "@types/unist": "^3.0.0", - "vfile": "^6.0.0" + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@docusaurus/module-type-aliases": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.7.0.tgz", - "integrity": "sha512-g7WdPqDNaqA60CmBrr0cORTrsOit77hbsTj7xE2l71YhBn79sxdm7WMK7wfhcaafkbpIh7jv5ef5TOpf1Xv9Lg==", + "node_modules/@docusaurus/bundler/node_modules/babel-loader": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", + "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "@types/react-router-dom": "*", - "react-helmet-async": "npm:@slorber/react-helmet-async@*", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" }, - "peerDependencies": { - "react": "*", - "react-dom": "*" - } - }, - "node_modules/@docusaurus/module-type-aliases/node_modules/react-helmet-async": { - "version": "2.0.4", - "license": "Apache-2.0", - "dependencies": { - "invariant": "^2.2.4", - "react-fast-compare": "^3.2.2", - "shallowequal": "^1.1.0" + "engines": { + "node": ">= 14.15.0" }, "peerDependencies": { - "react": "^16.6.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0" + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/@docusaurus/plugin-content-blog": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.7.0.tgz", - "integrity": "sha512-EFLgEz6tGHYWdPU0rK8tSscZwx+AsyuBW/r+tNig2kbccHYGUJmZtYN38GjAa3Fda4NU+6wqUO5kTXQSRBQD3g==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "cheerio": "1.0.0-rc.12", - "feed": "^4.2.2", - "fs-extra": "^11.1.1", - "lodash": "^4.17.21", - "reading-time": "^1.5.0", - "srcset": "^4.0.0", - "tslib": "^2.6.0", - "unist-util-visit": "^5.0.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "node_modules/@docusaurus/bundler/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/@docusaurus/bundler/node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=18.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/@docusaurus/plugin-content-docs": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.7.0.tgz", - "integrity": "sha512-GXg5V7kC9FZE4FkUZA8oo/NrlRb06UwuICzI6tcbzj0+TVgjq/mpUXXzSgKzMS82YByi4dY2Q808njcBCyy6tQ==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@types/react-router-config": "^5.0.7", - "combine-promises": "^1.1.0", - "fs-extra": "^11.1.1", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "node_modules/@docusaurus/bundler/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "node": ">=6" } }, - "node_modules/@docusaurus/plugin-content-pages": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.7.0.tgz", - "integrity": "sha512-YJSU3tjIJf032/Aeao8SZjFOrXJbz/FACMveSMjLyMH4itQyZ2XgUIzt4y+1ISvvk5zrW4DABVT2awTCqBkx0Q==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "fs-extra": "^11.1.1", - "tslib": "^2.6.0", - "webpack": "^5.88.1" + "node_modules/@docusaurus/bundler/node_modules/mini-css-extract-plugin": { + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz", + "integrity": "sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" }, "engines": { - "node": ">=18.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "webpack": "^5.0.0" } }, - "node_modules/@docusaurus/plugin-debug": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.7.0.tgz", - "integrity": "sha512-Qgg+IjG/z4svtbCNyTocjIwvNTNEwgRjSXXSJkKVG0oWoH0eX/HAPiu+TS1HBwRPQV+tTYPWLrUypYFepfujZA==", + "node_modules/@docusaurus/bundler/node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "fs-extra": "^11.1.1", - "react-json-view-lite": "^1.2.0", - "tslib": "^2.6.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "node": "^10 || ^12 || >=14" } }, - "node_modules/@docusaurus/plugin-google-analytics": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.7.0.tgz", - "integrity": "sha512-otIqiRV/jka6Snjf+AqB360XCeSv7lQC+DKYW+EUZf6XbuE8utz5PeUQ8VuOcD8Bk5zvT1MC4JKcd5zPfDuMWA==", + "node_modules/@docusaurus/bundler/node_modules/postcss-loader": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz", + "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==", + "license": "MIT", "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "tslib": "^2.6.0" + "cosmiconfig": "^8.3.5", + "jiti": "^1.20.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=18.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/@docusaurus/plugin-google-gtag": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.7.0.tgz", - "integrity": "sha512-M3vrMct1tY65ModbyeDaMoA+fNJTSPe5qmchhAbtqhDD/iALri0g9LrEpIOwNaoLmm6lO88sfBUADQrSRSGSWA==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@types/gtag.js": "^0.0.12", - "tslib": "^2.6.0" + "node_modules/@docusaurus/core": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.10.1.tgz", + "integrity": "sha512-3pf2fXXw0eVk8WnC3T4LIigRDupcpvngpKo9Vy7mYyBhuddc0klDUuZAIfzMoK6z05pdlk6EFC/vBSX43+1O5w==", + "license": "MIT", + "dependencies": { + "@docusaurus/babel": "3.10.1", + "@docusaurus/bundler": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "boxen": "^6.2.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cli-table3": "^0.6.3", + "combine-promises": "^1.1.0", + "commander": "^5.1.0", + "core-js": "^3.31.1", + "detect-port": "^1.5.1", + "escape-html": "^1.0.3", + "eta": "^2.2.0", + "eval": "^0.1.8", + "execa": "^5.1.1", + "fs-extra": "^11.1.1", + "html-tags": "^3.3.1", + "html-webpack-plugin": "^5.6.0", + "leven": "^3.1.0", + "lodash": "^4.17.21", + "open": "^8.4.0", + "p-map": "^4.0.0", + "prompts": "^2.4.2", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", + "react-loadable-ssr-addon-v5-slorber": "^1.0.3", + "react-router": "^5.3.4", + "react-router-config": "^5.1.1", + "react-router-dom": "^5.3.4", + "semver": "^7.5.4", + "serve-handler": "^6.1.7", + "tinypool": "^1.0.2", + "tslib": "^2.6.0", + "update-notifier": "^6.0.2", + "webpack": "^5.95.0", + "webpack-bundle-analyzer": "^4.10.2", + "webpack-dev-server": "^5.2.2", + "webpack-merge": "^6.0.1" + }, + "bin": { + "docusaurus": "bin/docusaurus.mjs" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { + "@docusaurus/faster": "*", + "@mdx-js/react": "^3.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@docusaurus/faster": { + "optional": true + } } }, - "node_modules/@docusaurus/plugin-google-tag-manager": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.7.0.tgz", - "integrity": "sha512-X8U78nb8eiMiPNg3jb9zDIVuuo/rE1LjGDGu+5m5CX4UBZzjMy+klOY2fNya6x8ACyE/L3K2erO1ErheP55W/w==", + "node_modules/@docusaurus/core/node_modules/@types/express-serve-static-core": { + "version": "4.19.8", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", + "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", + "license": "MIT", "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@docusaurus/plugin-sitemap": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.7.0.tgz", - "integrity": "sha512-bTRT9YLZ/8I/wYWKMQke18+PF9MV8Qub34Sku6aw/vlZ/U+kuEuRpQ8bTcNOjaTSfYsWkK4tTwDMHK2p5S86cA==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "fs-extra": "^11.1.1", - "sitemap": "^7.1.1", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" - } + "node_modules/@docusaurus/core/node_modules/@types/retry": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", + "license": "MIT" }, - "node_modules/@docusaurus/plugin-svgr": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.7.0.tgz", - "integrity": "sha512-HByXIZTbc4GV5VAUkZ2DXtXv1Qdlnpk3IpuImwSnEzCDBkUMYcec5282hPjn6skZqB25M1TYCmWS91UbhBGxQg==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@svgr/core": "8.1.0", - "@svgr/webpack": "^8.1.0", - "tslib": "^2.6.0", - "webpack": "^5.88.1" + "node_modules/@docusaurus/core/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">=18.0" + "node": ">= 8.10.0" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/@docusaurus/preset-classic": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.7.0.tgz", - "integrity": "sha512-nPHj8AxDLAaQXs+O6+BwILFuhiWbjfQWrdw2tifOClQoNfuXDjfjogee6zfx6NGHWqshR23LrcN115DmkHC91Q==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/plugin-content-blog": "3.7.0", - "@docusaurus/plugin-content-docs": "3.7.0", - "@docusaurus/plugin-content-pages": "3.7.0", - "@docusaurus/plugin-debug": "3.7.0", - "@docusaurus/plugin-google-analytics": "3.7.0", - "@docusaurus/plugin-google-gtag": "3.7.0", - "@docusaurus/plugin-google-tag-manager": "3.7.0", - "@docusaurus/plugin-sitemap": "3.7.0", - "@docusaurus/plugin-svgr": "3.7.0", - "@docusaurus/theme-classic": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/theme-search-algolia": "3.7.0", - "@docusaurus/types": "3.7.0" - }, + "node_modules/@docusaurus/core/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/@docusaurus/core/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "license": "MIT", "engines": { - "node": ">=18.0" + "node": ">=12" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@docusaurus/theme-classic": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.7.0.tgz", - "integrity": "sha512-MnLxG39WcvLCl4eUzHr0gNcpHQfWoGqzADCly54aqCofQX6UozOS9Th4RK3ARbM9m7zIRv3qbhggI53dQtx/hQ==", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/plugin-content-blog": "3.7.0", - "@docusaurus/plugin-content-docs": "3.7.0", - "@docusaurus/plugin-content-pages": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/theme-translations": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/react": "^3.0.0", - "clsx": "^2.0.0", - "copy-text-to-clipboard": "^3.2.0", - "infima": "0.2.0-alpha.45", - "lodash": "^4.17.21", - "nprogress": "^0.2.0", - "postcss": "^8.4.26", - "prism-react-renderer": "^2.3.0", - "prismjs": "^1.29.0", - "react-router-dom": "^5.3.4", - "rtlcss": "^4.1.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "node_modules/@docusaurus/core/node_modules/memfs": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.57.2.tgz", + "integrity": "sha512-2nWzSsJzrukurSDna4Z0WywuScK4Id3tSKejgu74u8KCdW4uNrseKRSIDg75C6Yw5ZRqBe0F0EtMNlTbUq8bAQ==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-core": "4.57.2", + "@jsonjoy.com/fs-fsa": "4.57.2", + "@jsonjoy.com/fs-node": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-to-fsa": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "@jsonjoy.com/fs-print": "4.57.2", + "@jsonjoy.com/fs-snapshot": "4.57.2", + "@jsonjoy.com/json-pack": "^1.11.0", + "@jsonjoy.com/util": "^1.9.0", + "glob-to-regex.js": "^1.0.1", + "thingies": "^2.5.0", + "tree-dump": "^1.0.3", + "tslib": "^2.0.0" }, - "engines": { - "node": ">=18.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "tslib": "2" } }, - "node_modules/@docusaurus/theme-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz", - "integrity": "sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A==", - "dependencies": { - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^2.0.0", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^2.3.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" - }, + "node_modules/@docusaurus/core/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "node": ">= 0.6" } }, - "node_modules/@docusaurus/theme-search-algolia": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.7.0.tgz", - "integrity": "sha512-Al/j5OdzwRU1m3falm+sYy9AaB93S1XF1Lgk9Yc6amp80dNxJVplQdQTR4cYdzkGtuQqbzUA8+kaoYYO0RbK6g==", - "dependencies": { - "@docsearch/react": "^3.8.1", - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/plugin-content-docs": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/theme-translations": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "algoliasearch": "^5.17.1", - "algoliasearch-helper": "^3.22.6", - "clsx": "^2.0.0", - "eta": "^2.2.0", - "fs-extra": "^11.1.1", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "node_modules/@docusaurus/core/node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" }, "engines": { - "node": ">=18.0" + "node": ">=18" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/@docusaurus/theme-translations": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.7.0.tgz", - "integrity": "sha512-Ewq3bEraWDmienM6eaNK7fx+/lHMtGDHQyd1O+4+3EsDxxUmrzPkV7Ct3nBWTuE0MsoZr3yNwQVKjllzCMuU3g==", + "node_modules/@docusaurus/core/node_modules/p-retry": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz", + "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==", + "license": "MIT", "dependencies": { - "fs-extra": "^11.1.1", - "tslib": "^2.6.0" + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", + "retry": "^0.13.1" }, "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/types": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.7.0.tgz", - "integrity": "sha512-kOmZg5RRqJfH31m+6ZpnwVbkqMJrPOG5t0IOl4i/+3ruXyNfWzZ0lVtVrD0u4ONc/0NOsS9sWYaxxWNkH1LdLQ==", - "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.95.0", - "webpack-merge": "^5.9.0" + "node": ">=16.17" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@docusaurus/types/node_modules/commander": { - "version": "5.1.0", + "node_modules/@docusaurus/core/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "license": "MIT", "engines": { - "node": ">= 6" + "node": ">= 0.6" } }, - "node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "node_modules/@docusaurus/core/node_modules/selfsigned": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz", + "integrity": "sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==", + "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "@peculiar/x509": "^1.14.2", + "pkijs": "^3.3.3" }, "engines": { - "node": ">=18.0" + "node": ">=18" } }, - "node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@docusaurus/core/node_modules/webpack-dev-middleware": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz", + "integrity": "sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==", + "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", - "tslib": "^2.6.0" + "colorette": "^2.0.10", + "memfs": "^4.43.1", + "mime-types": "^3.0.1", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/utils-validation": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz", - "integrity": "sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA==", - "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "fs-extra": "^11.2.0", - "joi": "^17.9.2", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0" + "node": ">= 18.12.0" }, - "engines": { - "node": ">=18.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } } }, - "node_modules/@esbuild/android-arm": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz", - "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], + "node_modules/@docusaurus/core/node_modules/webpack-dev-server": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.4.tgz", + "integrity": "sha512-GqDPGZN9bRqKBTkp4aWkobDDHMsrXKoGSdOH56smIri8qR0JG8gfL8/v/f/OZR3/OKXjG8uwJbFVhKm/FNU/UA==", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.25", + "@types/express-serve-static-core": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", + "colorette": "^2.0.10", + "compression": "^1.8.1", + "connect-history-api-fallback": "^2.0.0", + "express": "^4.22.1", + "graceful-fs": "^4.2.6", + "http-proxy-middleware": "^2.0.9", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "schema-utils": "^4.2.0", + "selfsigned": "^5.5.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^7.4.2", + "ws": "^8.18.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, "engines": { - "node": ">=12" + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } } }, - "node_modules/@esbuild/android-arm64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz", - "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], + "node_modules/@docusaurus/core/node_modules/webpack-dev-server/node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "license": "MIT", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" + }, "engines": { - "node": ">=12" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@esbuild/android-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz", - "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], + "node_modules/@docusaurus/core/node_modules/webpack-merge": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=18.0.0" } }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz", - "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@docusaurus/core/node_modules/ws": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz", + "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz", - "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@docusaurus/cssnano-preset": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.10.1.tgz", + "integrity": "sha512-eNfHGcTKCSq6xmcavAkX3RRclHaE2xRCMParlDXLdXVP01/a2e/jKXMj/0ULnLFQSNwwuI62L0Ge8J+nZsR7UQ==", + "license": "MIT", + "dependencies": { + "cssnano-preset-advanced": "^6.1.2", + "postcss": "^8.5.4", + "postcss-sort-media-queries": "^5.2.0", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" } }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz", - "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" + "node_modules/@docusaurus/cssnano-preset/node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >=14" } }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz", - "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "node_modules/@docusaurus/logger": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.10.1.tgz", + "integrity": "sha512-oPjNFnfJsRCkePVjkGrxWGq4MvJKRQT0r9jOP0eRBTZ7Wr9FAbzdP/Gjs0I2Ss6YRkPoEgygKG112OkE6skvJw==", + "dependencies": { + "chalk": "^4.1.2", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" } }, - "node_modules/@esbuild/linux-arm": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz", - "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/mdx-loader": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.10.1.tgz", + "integrity": "sha512-GRmeb/wQ+iXRrFwcHBfgQhrJxGElgCsoTWZYDhccjsZVne1p8MK/EpQVIloXttz76TCe78kKD5AEG9n1xc1oxQ==", + "dependencies": { + "@docusaurus/logger": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "@mdx-js/mdx": "^3.0.0", + "@slorber/remark-comment": "^1.0.0", + "escape-html": "^1.0.3", + "estree-util-value-to-estree": "^3.0.1", + "file-loader": "^6.2.0", + "fs-extra": "^11.1.1", + "image-size": "^2.0.2", + "mdast-util-mdx": "^3.0.0", + "mdast-util-to-string": "^4.0.0", + "rehype-raw": "^7.0.0", + "remark-directive": "^3.0.0", + "remark-emoji": "^4.0.0", + "remark-frontmatter": "^5.0.0", + "remark-gfm": "^4.0.0", + "stringify-object": "^3.3.0", + "tslib": "^2.6.0", + "unified": "^11.0.3", + "unist-util-visit": "^5.0.0", + "url-loader": "^4.1.1", + "vfile": "^6.0.1", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz", - "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@docusaurus/module-type-aliases": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.10.1.tgz", + "integrity": "sha512-YoOZKUdGlp8xSYhuAkGdSo5Ydkbq4V4eK3sD8v0a2hloxCWdQbNBhkc+Ko9QyjpESc0BYcIGM5iHVAy5hdFV6w==", + "license": "MIT", + "dependencies": { + "@docusaurus/types": "3.10.1", + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router-config": "*", + "@types/react-router-dom": "*", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz", - "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-content-blog": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.10.1.tgz", + "integrity": "sha512-mmkgE6Q2+K74tnkou7tXlpDLvoCU/qkSa2GSQ3XUiHWvcebCoDQzS670RR3tO8PmaWlIyWWISYWzZLuMfxunRA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/theme-common": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "cheerio": "1.0.0-rc.12", + "combine-promises": "^1.1.0", + "feed": "^4.2.2", + "fs-extra": "^11.1.1", + "lodash": "^4.17.21", + "schema-dts": "^1.1.2", + "srcset": "^4.0.0", + "tslib": "^2.6.0", + "unist-util-visit": "^5.0.0", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz", - "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-content-docs": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.10.1.tgz", + "integrity": "sha512-2jRVrtzjf8LClGTHQlwlwuD3wQXRx3WEoF7XUarJ8Ou+0onV+SLtejsyfY9JLpfUh9hPhXM4pbBGkyAY4Bi3HQ==", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/module-type-aliases": "3.10.1", + "@docusaurus/theme-common": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "@types/react-router-config": "^5.0.7", + "combine-promises": "^1.1.0", + "fs-extra": "^11.1.1", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "schema-dts": "^1.1.2", + "tslib": "^2.6.0", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz", - "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-content-pages": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.10.1.tgz", + "integrity": "sha512-huJpaRPMl42nsFwuCXvV8bVDj2MazuwRJIUylI/RSlmZeJssVoZXeCjVf1y+1Drtpa9SKcdGn8yoJ76IRJijtw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "fs-extra": "^11.1.1", + "tslib": "^2.6.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz", - "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-css-cascade-layers": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.10.1.tgz", + "integrity": "sha512-r//fn+MNHkE1wCof8T29VAQezt1enGCpsFxoziBbvLgBM4JfXN2P3rxrBaavHmvLvm7lYkpJeitcDthwnmWCTw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" } }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz", - "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-debug": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.10.1.tgz", + "integrity": "sha512-9KqOpKNfAyqGZykRb9LhIT/vyRF6sm/ykhjj/39JvaJahDS+jZJE0Z1Wfz9q3DUNDTMNN0Q7u/kk4rKKU+IJuA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "fs-extra": "^11.1.1", + "react-json-view-lite": "^2.3.0", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz", - "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-google-analytics": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.10.1.tgz", + "integrity": "sha512-8o0P1KtmgdYQHH+oInitPpRWI0Of5XednAX4+DMhQNSmGSRNrsEEHg1ebv35m9AgRClfAytCJ5jA9KvcASTyuA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/linux-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz", - "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@docusaurus/plugin-google-gtag": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.10.1.tgz", + "integrity": "sha512-pu3xIUo5o/zCMLfUY9BO5KOwSH0zIsAGyFRPvXHayFSA5XIhCU/SFuB0g0ZNjFn9niZLCaNvoeAuOGFJZq0fdw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "@types/gtag.js": "^0.0.20", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz", - "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "node_modules/@docusaurus/plugin-google-tag-manager": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.10.1.tgz", + "integrity": "sha512-f6fyGHiCm7kJHBtAisGQS5oNBnpnMTYQZxDXeVrnw/3zWU+LMA22pr6UHGYkBKDbN+qPC5QHG3NuOfzQLq3+Lw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz", - "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "node_modules/@docusaurus/plugin-sitemap": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.10.1.tgz", + "integrity": "sha512-C26MbmmqgdjkDq1htaZ3aD7LzEDKFWXfpyQpt0EOUThuq5nV77zDaedV20yHcVo9p+3ey9aZ4pbHA0D3QcZTzg==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "fs-extra": "^11.1.1", + "sitemap": "^7.1.1", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz", - "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "node_modules/@docusaurus/plugin-svgr": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.10.1.tgz", + "integrity": "sha512-6SFxsmjWFkVLDmBUvFK6i72QjUwqyQFe4Ovz+SUJophJjOyVG3ZZG5IQpBC/kX/Gfv1yWeU9nWauH6F6Q7QX/Q==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "@svgr/core": "8.1.0", + "@svgr/webpack": "^8.1.0", + "tslib": "^2.6.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz", - "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], + "node_modules/@docusaurus/preset-classic": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.10.1.tgz", + "integrity": "sha512-YO/FL8v1zmbxoTso6mjMz/RDjhaTJxb1UpFFTDdY5847LLDCeyYiYlrhyTbgN1RIN3xnkLKZ9Lj1x8hUzI4JOg==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/plugin-content-blog": "3.10.1", + "@docusaurus/plugin-content-docs": "3.10.1", + "@docusaurus/plugin-content-pages": "3.10.1", + "@docusaurus/plugin-css-cascade-layers": "3.10.1", + "@docusaurus/plugin-debug": "3.10.1", + "@docusaurus/plugin-google-analytics": "3.10.1", + "@docusaurus/plugin-google-gtag": "3.10.1", + "@docusaurus/plugin-google-tag-manager": "3.10.1", + "@docusaurus/plugin-sitemap": "3.10.1", + "@docusaurus/plugin-svgr": "3.10.1", + "@docusaurus/theme-classic": "3.10.1", + "@docusaurus/theme-common": "3.10.1", + "@docusaurus/theme-search-algolia": "3.10.1", + "@docusaurus/types": "3.10.1" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz", - "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], + "node_modules/@docusaurus/theme-classic": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.10.1.tgz", + "integrity": "sha512-VU1RK0qb2pab0si4r7HFK37cYco8VzqLj3u1PspVipSr/z/GPVKHO4/HXbnePqHoWDk8urjyGSeatH0NIMBM1A==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/module-type-aliases": "3.10.1", + "@docusaurus/plugin-content-blog": "3.10.1", + "@docusaurus/plugin-content-docs": "3.10.1", + "@docusaurus/plugin-content-pages": "3.10.1", + "@docusaurus/theme-common": "3.10.1", + "@docusaurus/theme-translations": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "@mdx-js/react": "^3.0.0", + "clsx": "^2.0.0", + "copy-text-to-clipboard": "^3.2.0", + "infima": "0.2.0-alpha.45", + "lodash": "^4.17.21", + "nprogress": "^0.2.0", + "postcss": "^8.5.4", + "prism-react-renderer": "^2.3.0", + "prismjs": "^1.29.0", + "react-router-dom": "^5.3.4", + "rtlcss": "^4.1.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@esbuild/win32-x64": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz", - "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" + "node_modules/@docusaurus/theme-classic/node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@exodus/schemasafe": { - "version": "1.3.0", - "license": "MIT" - }, - "node_modules/@faker-js/faker": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", - "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==" - }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@hookform/error-message": { - "version": "2.0.1", "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0", - "react-hook-form": "^7.0.0" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "license": "ISC", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >=14" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", + "node_modules/@docusaurus/theme-common": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.10.1.tgz", + "integrity": "sha512-0YtmIeoNo1fIw65LO8+/1dPgmDV86UmhMkow37gzjytuiCSQm9xob6PJy0L4kuQEMTLfUOGvkXvZr7GPrHquMA==", + "dependencies": { + "@docusaurus/mdx-loader": "3.10.1", + "@docusaurus/module-type-aliases": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router-config": "*", + "clsx": "^2.0.0", + "parse-numeric-range": "^1.3.0", + "prism-react-renderer": "^2.3.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" + }, "engines": { - "node": ">=12" + "node": ">=20.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "node_modules/@docusaurus/theme-search-algolia": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.10.1.tgz", + "integrity": "sha512-OTaARARVZj2GvkJQjB+1jOIxntRaXea+G+fMsNqrZBAU1O1vJKDW22R7kECOHW27oJCLFN9HKaZeRrfAUyviug==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "^1.19.2", + "@docsearch/react": "^3.9.0 || ^4.3.2", + "@docusaurus/core": "3.10.1", + "@docusaurus/logger": "3.10.1", + "@docusaurus/plugin-content-docs": "3.10.1", + "@docusaurus/theme-common": "3.10.1", + "@docusaurus/theme-translations": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-validation": "3.10.1", + "algoliasearch": "^5.37.0", + "algoliasearch-helper": "^3.26.0", + "clsx": "^2.0.0", + "eta": "^2.2.0", + "fs-extra": "^11.1.1", + "lodash": "^4.17.21", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" }, "engines": { - "node": ">=12" + "node": ">=20.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/@docusaurus/theme-translations": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.10.1.tgz", + "integrity": "sha512-cLMyaKivjBVWKMJuWqyFVVgtqe8DPJNPkog0bn8W1MDVAKcPdxRFycBfC1We1RaNp7Rdk513bmtW78RR6OBxBw==", "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=20.0" } }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, + "node_modules/@docusaurus/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.10.1.tgz", + "integrity": "sha512-XYMK8k1szDCFMw2V+Xyen0g7Kee1sP3dtFnl7vkGkZOkeAJ/oPDQPL8iz4HBKOo/cwU8QeV6onVjMqtP+tFzsw==", + "license": "MIT", "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" + "@mdx-js/mdx": "^3.0.0", + "@types/history": "^4.7.11", + "@types/mdast": "^4.0.2", + "@types/react": "*", + "commander": "^5.1.0", + "joi": "^17.9.2", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", + "utility-types": "^3.10.0", + "webpack": "^5.95.0", + "webpack-merge": "^5.9.0" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, + "node_modules/@docusaurus/utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.10.1.tgz", + "integrity": "sha512-3ojeJry9xBYdJO6qoyyzqeJFSJBVx2mXhyDzSdjwL2+URFQMf+h25gG38iswGImicK0ELjTd1EL2xzk8hf3QPw==", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "@docusaurus/logger": "3.10.1", + "@docusaurus/types": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "escape-string-regexp": "^4.0.0", + "execa": "^5.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^11.1.1", + "github-slugger": "^1.5.0", + "globby": "^11.1.0", + "gray-matter": "^4.0.3", + "jiti": "^1.20.0", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "micromatch": "^4.0.5", + "p-queue": "^6.6.2", + "prompts": "^2.4.2", + "resolve-pathname": "^3.0.0", + "tslib": "^2.6.0", + "url-loader": "^4.1.1", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" }, "engines": { - "node": ">=8" + "node": ">=20.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, + "node_modules/@docusaurus/utils-common": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.10.1.tgz", + "integrity": "sha512-5mFSgEADtnFxFH7RLw02QA5MpU5JVUCj0MPeIvi/aF4Fi45tQRIuTwXoXDqJ+1VfQJuYJGz3SI63wmGz4HvXzA==", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "@docusaurus/types": "3.10.1", + "tslib": "^2.6.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=20.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, + "node_modules/@docusaurus/utils-validation": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.10.1.tgz", + "integrity": "sha512-cRv1X69jwaWv47waglllgZVWzeBFLhl53XT/XED/83BerVBTC5FTP8WTcVl8Z6sZOegDSwitu/wpCSPCDOT6lg==", "dependencies": { - "p-locate": "^4.1.0" + "@docusaurus/logger": "3.10.1", + "@docusaurus/utils": "3.10.1", + "@docusaurus/utils-common": "3.10.1", + "fs-extra": "^11.2.0", + "joi": "^17.9.2", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "tslib": "^2.6.0" }, "engines": { - "node": ">=8" + "node": ">=20.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/@esbuild/android-arm": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz", + "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@esbuild/android-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz", + "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "node_modules/@esbuild/android-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz", + "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/@jest/console": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz", + "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/core": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz", + "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/reporters": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.7.0", - "jest-config": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-resolve-dependencies": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "jest-watcher": "^29.7.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=12" } }, - "node_modules/@jest/environment": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz", + "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz", + "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "expect": "^29.7.0", - "jest-snapshot": "^29.7.0" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/expect-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", - "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "node_modules/@esbuild/linux-arm": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz", + "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "jest-get-type": "^29.6.3" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/fake-timers": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", - "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz", + "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/globals": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", - "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz", + "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/types": "^29.6.3", - "jest-mock": "^29.7.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/reporters": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", - "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz", + "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==", + "cpu": [ + "loong64" + ], "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^6.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=12" } }, - "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz", + "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/@jest/reporters/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz", + "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz", + "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/source-map": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", - "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz", + "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==", + "cpu": [ + "s390x" + ], "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/test-result": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", - "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "node_modules/@esbuild/linux-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz", + "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/test-sequencer": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", - "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz", + "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@jest/test-result": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "slash": "^3.0.0" - }, + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/transform": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", - "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz", + "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jest/transform/node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz", + "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12" } }, - "node_modules/@jest/types": { - "version": "29.6.3", - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz", + "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz", + "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.0.0" + "node": ">=12" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "license": "MIT", + "node_modules/@esbuild/win32-x64": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz", + "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.0.0" + "node": ">=12" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } + "node_modules/@exodus/schemasafe": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", + "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", + "license": "MIT" }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.5", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", + "node_modules/@faker-js/faker": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", + "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==", + "deprecated": "Please update to a newer version.", "license": "MIT" }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@jsdevtools/ono": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", - "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "license": "MIT" + "node_modules/@hookform/error-message": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", + "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0", + "react-hook-form": "^7.0.0" + } }, - "node_modules/@mdx-js/mdx": { - "version": "3.0.0", - "license": "MIT", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdx": "^2.0.0", - "collapse-white-space": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-build-jsx": "^3.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "estree-util-to-js": "^2.0.0", - "estree-walker": "^3.0.0", - "hast-util-to-estree": "^3.0.0", - "hast-util-to-jsx-runtime": "^2.0.0", - "markdown-extensions": "^2.0.0", - "periscopic": "^3.0.0", - "remark-mdx": "^3.0.0", - "remark-parse": "^11.0.0", - "remark-rehype": "^11.0.0", - "source-map": "^0.7.0", - "unified": "^11.0.0", - "unist-util-position-from-estree": "^2.0.0", - "unist-util-stringify-position": "^4.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/@mdx-js/mdx/node_modules/remark-rehype": { - "version": "11.1.0", - "license": "MIT", + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "mdast-util-to-hast": "^13.0.0", - "unified": "^11.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "sprintf-js": "~1.0.2" } }, - "node_modules/@mdx-js/mdx/node_modules/source-map": { - "version": "0.7.4", - "license": "BSD-3-Clause", + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=6" } }, - "node_modules/@mdx-js/react": { - "version": "3.0.0", - "license": "MIT", + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "dev": true, "dependencies": { - "@types/mdx": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "peerDependencies": { - "@types/react": ">=16", - "react": ">=16" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@ngtools/webpack": { - "version": "16.2.14", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.2.14.tgz", - "integrity": "sha512-3+zPP3Wir46qrZ3FEiTz5/emSoVHYUCH+WgBmJ57mZCx1qBOYh2VgllnPr/Yusl1sc/jUZjdwq/es/9ZNw+zDQ==", + "node_modules/@istanbuljs/schema": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", + "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", "dev": true, - "peer": true, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "@angular/compiler-cli": "^16.0.0", - "typescript": ">=4.9.3 <5.2", - "webpack": "^5.54.0" + "node": ">=8" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "license": "MIT", + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "license": "MIT", + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "license": "MIT", + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", - "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", - "hasInstallScript": true, - "optional": true, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", - "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", - "@parcel/watcher-win32-arm64": "2.5.1", - "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", - "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", - "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", - "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", - "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, "engines": { - "node": ">= 10.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", - "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@jest/reporters/node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=6.9.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://opencollective.com/babel" } }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", - "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node_modules/@jest/reporters/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", - "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/reporters/node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", - "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/reporters/node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", - "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/reporters/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=10" } }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", - "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/reporters/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=6" } }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", - "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", - "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@parcel/watcher/node_modules/node-addon-api": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", - "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", - "optional": true - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "license": "MIT", - "optional": true, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, "engines": { - "node": ">=14" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "license": "MIT", + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, "engines": { - "node": ">=12.22.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "license": "MIT", + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, "dependencies": { - "graceful-fs": "4.2.10" + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" }, "engines": { - "node": ">=12.22.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "license": "ISC" + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, - "node_modules/@pnpm/npm-conf": { - "version": "2.2.2", - "license": "MIT", + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@polka/url": { - "version": "1.0.0-next.28", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", - "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==" + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } }, - "node_modules/@redocly/ajv": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", - "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js-replace": "^1.0.1" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@jsdevtools/ono": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", + "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" + }, + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@redocly/config": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.11.0.tgz", - "integrity": "sha512-vAc77vCuWsVgLx2LN02P6jqLBhHuot6O1LsSJEAAkWEvXARSGSQVon50QW7jlbCMg9OFTYYYRPN4W6K/YmnM3w==" - }, - "node_modules/@redocly/openapi-core": { - "version": "1.25.3", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.25.3.tgz", - "integrity": "sha512-dqJkyydgagW3FXX5cjtSUAnabsld4K6yq7RFgQ+ngI1m43PkEoSQt8pp+SfQDszSEoMbc7QKj8afbe7mZw17TA==", - "dependencies": { - "@redocly/ajv": "^8.11.2", - "@redocly/config": "^0.11.0", - "colorette": "^1.2.0", - "https-proxy-agent": "^7.0.4", - "js-levenshtein": "^1.1.6", - "js-yaml": "^4.1.0", - "lodash.isequal": "^4.5.0", - "minimatch": "^5.0.1", - "node-fetch": "^2.6.1", - "pluralize": "^8.0.0", - "yaml-ast-parser": "0.0.43" + "node_modules/@jsonjoy.com/buffers": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz", + "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/codegen": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz", + "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==", + "license": "Apache-2.0", "engines": { - "node": ">=14.19.0", - "npm": ">=7.0.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@redocly/openapi-core/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "node_modules/@jsonjoy.com/fs-core": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.2.tgz", + "integrity": "sha512-SVjwklkpIV5wrynpYtuYnfYH1QF4/nDuLBX7VXdb+3miglcAgBVZb/5y0cOsehRV/9Vb+3UqhkMq3/NR3ztdkQ==", + "license": "Apache-2.0", "dependencies": { - "debug": "^4.3.4" + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "thingies": "^2.5.0" }, "engines": { - "node": ">= 14" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@redocly/openapi-core/node_modules/colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" - }, - "node_modules/@redocly/openapi-core/node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "node_modules/@jsonjoy.com/fs-fsa": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.2.tgz", + "integrity": "sha512-fhO8+iR2I+OCw668ISDJdn1aArc9zx033sWejIyzQ8RBeXa9bDSaUeA3ix0poYOfrj1KdOzytmYNv2/uLDfV6g==", + "license": "Apache-2.0", "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "@jsonjoy.com/fs-core": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "thingies": "^2.5.0" }, "engines": { - "node": ">= 14" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@redocly/openapi-core/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/@jsonjoy.com/fs-node": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.2.tgz", + "integrity": "sha512-nX2AdL6cOFwLdju9G4/nbRnYevmCJbh7N7hvR3gGm97Cs60uEjyd0rpR+YBS7cTg175zzl22pGKXR5USaQMvKg==", + "license": "Apache-2.0", "dependencies": { - "brace-expansion": "^2.0.1" + "@jsonjoy.com/fs-core": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "@jsonjoy.com/fs-print": "4.57.2", + "@jsonjoy.com/fs-snapshot": "4.57.2", + "glob-to-regex.js": "^1.0.0", + "thingies": "^2.5.0" }, "engines": { - "node": ">=10" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@reduxjs/toolkit": { - "version": "1.9.7", - "license": "MIT", - "dependencies": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" + "node_modules/@jsonjoy.com/fs-node-builtins": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.2.tgz", + "integrity": "sha512-xhiegylRmhw43Ki2HO1ZBL7DQ5ja/qpRsL29VtQ2xuUHiuDGbgf2uD4p9Qd8hJI5P6RCtGYD50IXHXVq/Ocjcg==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" }, - "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", - "react-redux": "^7.2.1 || ^8.0.2" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-redux": { - "optional": true - } + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@sideway/address": { - "version": "4.1.4", - "license": "BSD-3-Clause", + "node_modules/@jsonjoy.com/fs-node-to-fsa": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.2.tgz", + "integrity": "sha512-18LmWTSONhoAPW+IWRuf8w/+zRolPFGPeGwMxlAhhfY11EKzX+5XHDBPAw67dBF5dxDErHJbl40U+3IXSDRXSQ==", + "license": "Apache-2.0", "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@sideway/formula": { - "version": "3.0.1", - "license": "BSD-3-Clause" - }, - "node_modules/@sideway/pinpoint": { - "version": "2.0.0", - "license": "BSD-3-Clause" - }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "license": "MIT" - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "license": "MIT", + "@jsonjoy.com/fs-fsa": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2" + }, "engines": { - "node": ">=10" + "node": ">=10.0" }, "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@sinonjs/commons": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", - "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", - "dev": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^3.0.0" - } - }, - "node_modules/@slorber/remark-comment": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.1.0", - "micromark-util-symbol": "^1.0.1" - } - }, - "node_modules/@slorber/remark-comment/node_modules/micromark-factory-space": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@slorber/remark-comment/node_modules/micromark-util-character": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/@jsonjoy.com/fs-node-utils": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.2.tgz", + "integrity": "sha512-rsPSJgekz43IlNbLyAM/Ab+ouYLWGp5DDBfYBNNEqDaSpsbXfthBn29Q4muFA9L0F+Z3mKo+CWlgSCXrf+mOyQ==", + "license": "Apache-2.0", "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/@slorber/remark-comment/node_modules/micromark-util-symbol": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/@slorber/remark-comment/node_modules/micromark-util-types": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "@jsonjoy.com/fs-node-builtins": "4.57.2" + }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "node_modules/@jsonjoy.com/fs-print": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.2.tgz", + "integrity": "sha512-wK9NSow48i4DbDl9F1CQE5TqnyZOJ04elU3WFG5aJ76p+YxO/ulyBBQvKsessPxdo381Bc2pcEoyPujMOhcRqQ==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-node-utils": "4.57.2", + "tree-dump": "^1.1.0" + }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", - "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "node_modules/@jsonjoy.com/fs-snapshot": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.2.tgz", + "integrity": "sha512-GdduDZuoP5V/QCgJkx9+BZ6SC0EZ/smXAdTS7PfMqgMTGXLlt/bH/FqMYaqB9JmLf05sJPtO0XRbAwwkEEPbVw==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "^17.65.0", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "@jsonjoy.com/json-pack": "^17.65.0", + "@jsonjoy.com/util": "^17.65.0" + }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", - "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz", + "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==", + "license": "Apache-2.0", "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", - "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz", + "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==", + "license": "Apache-2.0", "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", - "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz", + "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/base64": "17.67.0", + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0", + "@jsonjoy.com/json-pointer": "17.67.0", + "@jsonjoy.com/util": "17.67.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" + }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", - "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz", + "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/util": "17.67.0" + }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", - "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz", + "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0" + }, "engines": { - "node": ">=12" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/babel-preset": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", - "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz", + "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==", + "license": "Apache-2.0", "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", - "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", - "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", - "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", - "@svgr/babel-plugin-transform-svg-component": "8.0.0" + "@jsonjoy.com/base64": "^1.1.2", + "@jsonjoy.com/buffers": "^1.2.0", + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/json-pointer": "^1.0.2", + "@jsonjoy.com/util": "^1.9.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "tslib": "2" } }, - "node_modules/@svgr/core": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", - "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", - "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^8.1.3", - "snake-case": "^3.0.4" - }, + "node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", + "license": "Apache-2.0", "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", - "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "node_modules/@jsonjoy.com/json-pointer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz", + "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==", + "license": "Apache-2.0", "dependencies": { - "@babel/types": "^7.21.3", - "entities": "^4.4.0" + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/util": "^1.9.0" }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@svgr/plugin-jsx": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", - "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "node_modules/@jsonjoy.com/util": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz", + "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==", + "license": "Apache-2.0", "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "@svgr/hast-util-to-babel-ast": "8.0.0", - "svg-parser": "^2.0.4" + "@jsonjoy.com/buffers": "^1.0.0", + "@jsonjoy.com/codegen": "^1.0.0" }, "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@svgr/core": "*" + "tslib": "2" } }, - "node_modules/@svgr/plugin-svgo": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", - "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", - "dependencies": { - "cosmiconfig": "^8.1.3", - "deepmerge": "^4.3.1", - "svgo": "^3.0.2" - }, + "node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", + "license": "Apache-2.0", "engines": { - "node": ">=14" + "node": ">=10.0" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@svgr/core": "*" + "tslib": "2" } }, - "node_modules/@svgr/webpack": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", - "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + }, + "node_modules/@mdx-js/mdx": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz", + "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==", "dependencies": { - "@babel/core": "^7.21.3", - "@babel/plugin-transform-react-constant-elements": "^7.21.3", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.21.0", - "@svgr/core": "8.1.0", - "@svgr/plugin-jsx": "8.1.0", - "@svgr/plugin-svgo": "8.1.0" - }, - "engines": { - "node": ">=14" + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdx": "^2.0.0", + "acorn": "^8.0.0", + "collapse-white-space": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-util-scope": "^1.0.0", + "estree-walker": "^3.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "markdown-extensions": "^2.0.0", + "recma-build-jsx": "^1.0.0", + "recma-jsx": "^1.0.0", + "recma-stringify": "^1.0.0", + "rehype-recma": "^1.0.0", + "remark-mdx": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "source-map": "^0.7.0", + "unified": "^11.0.0", + "unist-util-position-from-estree": "^2.0.0", + "unist-util-stringify-position": "^4.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "license": "MIT", + "node_modules/@mdx-js/react": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz", + "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==", "dependencies": { - "defer-to-connect": "^2.0.1" + "@types/mdx": "^2.0.0" }, - "engines": { - "node": ">=14.16" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "node_modules/@ngtools/webpack": { + "version": "16.2.16", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.2.16.tgz", + "integrity": "sha512-4gm2allK0Pjy/Lxb9IGRnhEZNEOJSOTWwy09VOdHouV2ODRK7Tto2LgteaFJUUSLkuvWRsI7pfuA6yrz8KDfHw==", "dev": true, "peer": true, "engines": { - "node": ">= 6" + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^16.0.0", + "typescript": ">=4.9.3 <5.2", + "webpack": "^5.54.0" } }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", + "license": "MIT", "engines": { - "node": ">=10.13.0" + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@types/acorn": { - "version": "4.0.6", - "license": "MIT", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dependencies": { - "@types/estree": "*" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dependencies": { - "@babel/types": "^7.0.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, + "node_modules/@parcel/watcher": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", + "hasInstallScript": true, + "optional": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/body-parser": { - "version": "1.19.5", - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/bonjour": { - "version": "3.5.13", - "license": "MIT", - "dependencies": { - "@types/node": "*" + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/connect": { - "version": "3.4.38", - "license": "MIT", - "dependencies": { - "@types/node": "*" + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.4", - "license": "MIT", - "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/debug": { - "version": "4.1.12", - "license": "MIT", - "dependencies": { - "@types/ms": "*" + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/eslint": { - "version": "8.56.2", - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "node_modules/@types/estree-jsx": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "@types/estree": "*" + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/express": { - "version": "4.17.21", - "license": "MIT", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "dependencies": { - "@types/node": "*" + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@types/gtag.js": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz", - "integrity": "sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==" + "node_modules/@parcel/watcher/node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "optional": true }, - "node_modules/@types/hast": { - "version": "3.0.3", + "node_modules/@parcel/watcher/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "optional": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@peculiar/asn1-cms": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.7.0.tgz", + "integrity": "sha512-hew63shtzzvBcSHbhm+cyAmKe6AIfinT9hzEqSPjDC6opTTMKmTkQ0gHuN2KsWlvqiKw1S/fS94fhag/FJkioQ==", "license": "MIT", "dependencies": { - "@types/unist": "*" + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "@peculiar/asn1-x509-attr": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/history": { - "version": "4.7.11", - "license": "MIT" + "node_modules/@peculiar/asn1-cms/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", + "node_modules/@peculiar/asn1-csr": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.7.0.tgz", + "integrity": "sha512-VVsAyGqErT9D1SY4aEqozThXMVI+ssVRiv2DDeYuvpBKLIgZ3hYs3Ay3u/VSoKq6ESFi9cf6rf3IOOzfwh7oMA==", "license": "MIT", "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "license": "MIT" + "node_modules/@peculiar/asn1-csr/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "license": "MIT" + "node_modules/@peculiar/asn1-ecc": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.7.0.tgz", + "integrity": "sha512-n7KEs/Q/wrB415cxy4fHOBhegp4NdJ15fkJPwcB/3/8iNBQC2L/N7SChJPKDJPZGYH0jD4Tg4/0vnHmwghnbKw==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "license": "MIT" + "node_modules/@peculiar/asn1-ecc/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/http-proxy": { - "version": "1.17.14", + "node_modules/@peculiar/asn1-pfx": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.7.0.tgz", + "integrity": "sha512-V/nrlQVmhg7lYAsM7E13UDL5erAwFv6kCIVFqNaMIHSVi7dngcT839JkRTkQBqznMG98l2XjxYk74ZztAohZzA==", "license": "MIT", "dependencies": { - "@types/node": "*" + "@peculiar/asn1-cms": "^2.7.0", + "@peculiar/asn1-pkcs8": "^2.7.0", + "@peculiar/asn1-rsa": "^2.7.0", + "@peculiar/asn1-schema": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "license": "MIT" + "node_modules/@peculiar/asn1-pfx/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", + "node_modules/@peculiar/asn1-pkcs8": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.7.0.tgz", + "integrity": "sha512-9GTl1nE8Mx1kTZ+7QyYatDyKsm34QcWRBFkY1iPvWC3X4Dona5s/tlLiQsx5WzVdZqiMBZNYT0buyw4/vbhnjw==", "license": "MIT", "dependencies": { - "@types/istanbul-lib-coverage": "*" + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", + "node_modules/@peculiar/asn1-pkcs8/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/@peculiar/asn1-pkcs9": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.7.0.tgz", + "integrity": "sha512-Bh7m+OuIaSEllPQcSd9OSp93F4ROWH7sbITWV8MI+8dwsjE5111/87VxiWVvYFKyww3vp39geLv9ENqhwWHcew==", "license": "MIT", "dependencies": { - "@types/istanbul-lib-report": "*" + "@peculiar/asn1-cms": "^2.7.0", + "@peculiar/asn1-pfx": "^2.7.0", + "@peculiar/asn1-pkcs8": "^2.7.0", + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "@peculiar/asn1-x509-attr": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/jest": { - "version": "29.5.12", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", - "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", - "dev": true, + "node_modules/@peculiar/asn1-pkcs9/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/@peculiar/asn1-rsa": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.7.0.tgz", + "integrity": "sha512-/qvENQrXyTZURjMqSeofHul0JJt2sNSzSwk36pl2olkHbaioMQgrASDZAlHXl0xUlnVbHj0uGgOrBMTb5x2aJQ==", + "license": "MIT", "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", - "dev": true, + "node_modules/@peculiar/asn1-rsa/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.7.0.tgz", + "integrity": "sha512-W8ZfWzLmQnrcky+eh3tni4IozMdqBDiHWU0N+vve/UGjMaUs8c0L7A2oEdkBXS8rTpWDpK/aoI3DG/L/hxmxPg==", + "license": "MIT", "dependencies": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "license": "MIT" + "node_modules/@peculiar/asn1-schema/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/mdast": { - "version": "4.0.3", + "node_modules/@peculiar/asn1-x509": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.7.0.tgz", + "integrity": "sha512-mUn9RRrkGDnG4ALfunDmzyRW5dg+sWCj/pfnCCqEHYbkGxEpvUt6iVJv8Yw1cyp6SWZ26ZE5oSmI5SqEaen15g==", "license": "MIT", "dependencies": { - "@types/unist": "*" + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" } }, - "node_modules/@types/mdx": { - "version": "2.0.10", - "license": "MIT" + "node_modules/@peculiar/asn1-x509-attr": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.7.0.tgz", + "integrity": "sha512-NS8e7SOgXipkzUPLF/sce7ukpMpWjhxYsH0n6Y+bHYo4TTxOb95Zv7hqwSuL212mj5YxovjdOKQOgH1As3E94w==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } }, - "node_modules/@types/mime": { - "version": "3.0.4", - "license": "MIT" + "node_modules/@peculiar/asn1-x509-attr/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/ms": { - "version": "0.7.34", - "license": "MIT" + "node_modules/@peculiar/asn1-x509/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/node": { - "version": "20.11.5", + "node_modules/@peculiar/utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz", + "integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==", "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "tslib": "^2.8.1" } }, - "node_modules/@types/node-forge": { - "version": "1.3.11", + "node_modules/@peculiar/utils/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/@peculiar/x509": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz", + "integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==", "license": "MIT", "dependencies": { - "@types/node": "*" + "@peculiar/asn1-cms": "^2.6.0", + "@peculiar/asn1-csr": "^2.6.0", + "@peculiar/asn1-ecc": "^2.6.0", + "@peculiar/asn1-pkcs9": "^2.6.0", + "@peculiar/asn1-rsa": "^2.6.0", + "@peculiar/asn1-schema": "^2.6.0", + "@peculiar/asn1-x509": "^2.6.0", + "pvtsutils": "^1.3.6", + "reflect-metadata": "^0.2.2", + "tslib": "^2.8.1", + "tsyringe": "^4.10.0" + }, + "engines": { + "node": ">=20.0.0" } }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "license": "MIT" - }, - "node_modules/@types/parse5": { - "version": "6.0.3", - "license": "MIT" - }, - "node_modules/@types/prismjs": { - "version": "1.26.3", - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.11", - "license": "MIT" - }, - "node_modules/@types/qs": { - "version": "6.9.11", - "license": "MIT" + "node_modules/@peculiar/x509/node_modules/reflect-metadata": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", + "license": "Apache-2.0" }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "license": "MIT" + "node_modules/@peculiar/x509/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, - "node_modules/@types/react": { - "version": "18.2.48", - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "engines": { + "node": ">=12.22.0" } }, - "node_modules/@types/react-redux": { - "version": "7.1.33", - "license": "MIT", + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" } }, - "node_modules/@types/react-router": { - "version": "5.1.20", - "license": "MIT", - "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*" - } + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, - "node_modules/@types/react-router-config": { - "version": "5.0.11", - "license": "MIT", + "node_modules/@pnpm/npm-conf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-3.0.2.tgz", + "integrity": "sha512-h104Kh26rR8tm+a3Qkc5S4VLYint3FE48as7+/5oCEcKR2idC/pF1G6AhIXKI+eHPJa/3J9i5z0Al47IeGHPkA==", "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "^5.1.0" + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/react-router-dom": { - "version": "5.3.3", - "license": "MIT", + "node_modules/@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" + }, + "node_modules/@redocly/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "*" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js-replace": "^1.0.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "license": "MIT" + "node_modules/@redocly/config": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.0.tgz", + "integrity": "sha512-gAy93Ddo01Z3bHuVdPWfCwzgfaYgMdaZPcfL7JZ7hWJoK9V0lXDbigTWkhiPFAaLWzbOJ+kbUQG1+XwIm0KRGQ==" }, - "node_modules/@types/sax": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", - "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", - "dependencies": { - "@types/node": "*" + "node_modules/@redocly/openapi-core": { + "version": "1.34.14", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.14.tgz", + "integrity": "sha512-y+xFx+Zz54Xhr8jUdnLENYnt7Y7GEDL6Q03ga7rTtX8DVwefX9H+hQEPgJp1nda7vdH+wJ9/HBVvyfBuW9x6rA==", + "dependencies": { + "@redocly/ajv": "8.11.2", + "@redocly/config": "0.22.0", + "colorette": "1.4.0", + "https-proxy-agent": "7.0.6", + "js-levenshtein": "1.1.6", + "js-yaml": "4.1.1", + "minimatch": "5.1.9", + "pluralize": "8.0.0", + "yaml-ast-parser": "0.0.43" + }, + "engines": { + "node": ">=18.17.0", + "npm": ">=9.5.0" } }, - "node_modules/@types/scheduler": { - "version": "0.16.8", - "license": "MIT" + "node_modules/@redocly/openapi-core/node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "engines": { + "node": ">= 14" + } }, - "node_modules/@types/send": { - "version": "0.17.4", - "license": "MIT", + "node_modules/@redocly/openapi-core/node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "balanced-match": "^1.0.0" } }, - "node_modules/@types/send/node_modules/@types/mime": { - "version": "1.3.5", - "license": "MIT" + "node_modules/@redocly/openapi-core/node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } }, - "node_modules/@types/serve-index": { - "version": "1.9.4", - "license": "MIT", + "node_modules/@redocly/openapi-core/node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", "dependencies": { - "@types/express": "*" + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/serve-static": { - "version": "1.15.5", + "node_modules/@reduxjs/toolkit": { + "version": "1.9.7", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", + "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", "license": "MIT", "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "immer": "^9.0.21", + "redux": "^4.2.1", + "redux-thunk": "^2.4.2", + "reselect": "^4.1.8" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18", + "react-redux": "^7.2.1 || ^8.0.2" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } } }, - "node_modules/@types/sockjs": { - "version": "0.3.36", - "license": "MIT", + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", "dependencies": { - "@types/node": "*" + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" }, - "node_modules/@types/tough-cookie": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", - "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", - "dev": true + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, - "node_modules/@types/unist": { - "version": "3.0.2", - "license": "MIT" + "node_modules/@sinclair/typebox": { + "version": "0.27.10", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.10.tgz", + "integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==" }, - "node_modules/@types/ws": { - "version": "8.5.10", - "license": "MIT", - "dependencies": { - "@types/node": "*" + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@types/yargs": { - "version": "17.0.32", - "license": "MIT", + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "type-detect": "4.0.8" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "license": "MIT" + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "license": "ISC" + "node_modules/@slorber/remark-comment": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz", + "integrity": "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==", + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.1.0", + "micromark-util-symbol": "^1.0.1" + } }, - "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", - "dev": true, - "peer": true, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "license": "MIT", "engines": { - "node": ">=14.6.0" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.13.2", - "@webassemblyjs/helper-api-error": "1.13.2", - "@xtuc/long": "4.2.2" + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/wasm-gen": "1.14.1" + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", - "dependencies": { - "@xtuc/long": "4.2.2" + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/helper-wasm-section": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-opt": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1", - "@webassemblyjs/wast-printer": "1.14.1" + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "node_modules/@svgr/babel-preset": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1" + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "node_modules/@svgr/core": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-api-error": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@xtuc/long": "4.2.2" + "@babel/types": "^7.21.3", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@wessberg/ts-evaluator": { - "version": "0.0.27", - "resolved": "https://registry.npmjs.org/@wessberg/ts-evaluator/-/ts-evaluator-0.0.27.tgz", - "integrity": "sha512-7gOpVm3yYojUp/Yn7F4ZybJRxyqfMNf0LXK5KJiawbPfL0XTsJV+0mgrEDjOIR6Bi0OYk2Cyg4tjFu1r8MCZaA==", - "deprecated": "this package has been renamed to ts-evaluator. Please install ts-evaluator instead", - "dev": true, - "peer": true, + "node_modules/@svgr/plugin-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "jsdom": "^16.4.0", - "object-path": "^0.11.5", - "tslib": "^2.0.3" + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "^2.0.4" }, "engines": { - "node": ">=10.1.0" + "node": ">=14" }, "funding": { "type": "github", - "url": "https://github.com/wessberg/ts-evaluator?sponsor=1" + "url": "https://github.com/sponsors/gregberge" }, "peerDependencies": { - "typescript": ">=3.2.x || >= 4.x" + "@svgr/core": "*" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/@svgr/plugin-svgo": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", + "license": "MIT", "dependencies": { - "event-target-shim": "^5.0.0" + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" }, "engines": { - "node": ">=6.5" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" } }, - "node_modules/accepts": { - "version": "1.3.8", + "node_modules/@svgr/webpack": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", + "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", "license": "MIT", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" }, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", - "bin": { - "acorn": "bin/acorn" + "node": ">=14" }, - "engines": { - "node": ">=0.4.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "peer": true, + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "peer": true, - "bin": { - "acorn": "bin/acorn" + "defer-to-connect": "^2.0.1" }, "engines": { - "node": ">=0.4.0" + "node": ">=14.16" } }, - "node_modules/acorn-globals/node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, "peer": true, "engines": { - "node": ">=0.4.0" + "node": ">= 6" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, - "license": "MIT", - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.2", - "license": "MIT", - "engines": { - "node": ">=0.4.0" + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/address": { - "version": "1.2.2", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" } }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, - "peer": true, "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", "dev": true, "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" + "@babel/types": "^7.28.2" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "license": "MIT", + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/ajv": { - "version": "6.12.6", - "license": "MIT", + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "@types/node": "*" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "@types/node": "*" } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "dependencies": { + "@types/ms": "*" } }, - "node_modules/ajv/node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/algoliasearch": { - "version": "5.20.0", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.20.0.tgz", - "integrity": "sha512-groO71Fvi5SWpxjI9Ia+chy0QBwT61mg6yxJV27f5YFf+Mw+STT75K6SHySpP8Co5LsCrtsbCH5dJZSRtkSKaQ==", - "dependencies": { - "@algolia/client-abtesting": "5.20.0", - "@algolia/client-analytics": "5.20.0", - "@algolia/client-common": "5.20.0", - "@algolia/client-insights": "5.20.0", - "@algolia/client-personalization": "5.20.0", - "@algolia/client-query-suggestions": "5.20.0", - "@algolia/client-search": "5.20.0", - "@algolia/ingestion": "1.20.0", - "@algolia/monitoring": "1.20.0", - "@algolia/recommend": "5.20.0", - "@algolia/requester-browser-xhr": "5.20.0", - "@algolia/requester-fetch": "5.20.0", - "@algolia/requester-node-http": "5.20.0" - }, - "engines": { - "node": ">= 14.0.0" + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/algoliasearch-helper": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.24.1.tgz", - "integrity": "sha512-knYRACqLH9UpeR+WRUrBzBFR2ulGuOjI2b525k4PNeqZxeFMHJE7YcL7s6Jh12Qza0rtHqZdgHMfeuaaAkf4wA==", + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dependencies": { - "@algolia/events": "^4.0.1" - }, - "peerDependencies": { - "algoliasearch": ">= 3.1 < 6" + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/allof-merge": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/allof-merge/-/allof-merge-0.6.6.tgz", - "integrity": "sha512-116eZBf2he0/J4Tl7EYMz96I5Anaeio+VL0j/H2yxW9CoYQAMMv8gYcwkVRoO7XfIOv/qzSTfVzDVGAYxKFi3g==", + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", "dependencies": { - "json-crawl": "^0.5.3" + "@types/estree": "*" } }, - "node_modules/ansi-align": { - "version": "3.0.1", - "license": "ISC", + "node_modules/@types/express": { + "version": "4.17.25", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz", + "integrity": "sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==", "dependencies": { - "string-width": "^4.1.0" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "^1" } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" + "node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz", + "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.8", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", + "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" - } + "node_modules/@types/gtag.js": { + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.20.tgz", + "integrity": "sha512-wwAbk3SA2QeU67unN7zPxjEHmPmlXwZXZvQEpbEUQuMCRGgKyE1m6XDuTUA9b6pCGb/GqJmdfMOY5LuDjJSbbg==", + "license": "MIT" }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dependencies": { + "@types/unist": "*" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz", + "integrity": "sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "hoist-non-react-statics": "^3.3.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@types/react": "*" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "license": "MIT" + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" }, - "node_modules/anymatch": { - "version": "3.1.3", - "license": "ISC", + "node_modules/@types/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==" + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.17", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz", + "integrity": "sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" + "@types/node": "*" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } }, - "node_modules/argparse": { - "version": "2.0.1", - "license": "Python-2.0" + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "license": "MIT" + "node_modules/@types/jest": { + "version": "29.5.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", + "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } }, - "node_modules/array-union": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" } }, - "node_modules/asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "@types/unist": "*" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==" }, - "node_modules/assert": { + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + }, + "node_modules/@types/ms": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" + }, + "node_modules/@types/node": { + "version": "25.8.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.8.0.tgz", + "integrity": "sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==", "dependencies": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" + "undici-types": ">=7.24.0 <7.24.7" } }, - "node_modules/astring": { - "version": "1.8.6", - "license": "MIT", - "bin": { - "astring": "bin/astring" + "node_modules/@types/node-forge": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz", + "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", + "dev": true, + "peer": true, + "dependencies": { + "@types/node": "*" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + "node_modules/@types/parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", + "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "node_modules/@types/prismjs": { + "version": "1.26.6", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.6.tgz", + "integrity": "sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==" }, - "node_modules/at-least-node": { - "version": "1.0.0", - "license": "ISC", - "engines": { - "node": ">= 4.0.0" - } + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "license": "MIT" }, - "node_modules/autocomplete.js": { - "version": "0.37.1", - "resolved": "https://registry.npmjs.org/autocomplete.js/-/autocomplete.js-0.37.1.tgz", - "integrity": "sha512-PgSe9fHYhZEsm/9jggbjtVsGXJkPLvd+9mC7gZJ662vVL5CRWEtm/mIrrzCx0MrNxHVwxD5d00UOn6NsmL2LUQ==", + "node_modules/@types/qs": { + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", "dependencies": { - "immediate": "^3.2.3" + "csstype": "^3.2.2" } }, - "node_modules/autoprefixer": { - "version": "10.4.20", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", - "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/@types/react-redux": { + "version": "7.1.34", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz", + "integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==", + "license": "MIT", "dependencies": { - "browserslist": "^4.23.3", - "caniuse-lite": "^1.0.30001646", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "node_modules/@types/react-router": { + "version": "5.1.20", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", + "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/history": "^4.7.11", + "@types/react": "*" } }, - "node_modules/axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "node_modules/@types/react-router-config": { + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz", + "integrity": "sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "^5.1.0" } }, - "node_modules/babel-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", - "dev": true, + "node_modules/@types/react-router-dom": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", "dependencies": { - "@jest/transform": "^29.7.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "*" } }, - "node_modules/babel-loader": { - "version": "9.1.3", + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true, + "peer": true + }, + "node_modules/@types/sax": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", "license": "MIT", - "peer": true, "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "@types/node": "*" } }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "node_modules/@types/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", "dependencies": { - "object.assign": "^4.1.0" + "@types/node": "*" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" + "@types/express": "*" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, + "node_modules/@types/serve-static": { + "version": "1.15.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz", + "integrity": "sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==", "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "<1" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.12", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", - "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", + "node_modules/@types/serve-static/node_modules/@types/send": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz", + "integrity": "sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==", "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.3", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", - "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "@types/node": "*" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.7", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.4", - "core-js-compat": "^3.33.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.4", - "dev": true, - "license": "MIT", - "peer": true, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.4" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "@types/node": "*" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, + "node_modules/@types/yargs": { + "version": "17.0.35", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", + "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@types/yargs-parser": "*" } }, - "node_modules/babel-preset-jest": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz", + "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==" + }, + "node_modules/@vitejs/plugin-basic-ssl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", + "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0" - }, + "peer": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=14.6.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "vite": "^3.0.0 || ^4.0.0" } }, - "node_modules/bail": { - "version": "2.0.2", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "license": "MIT" + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, - "node_modules/base64-js": { - "version": "1.5.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, - "node_modules/batch": { - "version": "0.6.1", - "license": "MIT" + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, - "node_modules/bcp-47-match": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-1.0.3.tgz", - "integrity": "sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" } }, - "node_modules/big.js": { - "version": "5.2.2", - "license": "MIT", - "engines": { - "node": "*" - } + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "peer": true, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/bl/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "@xtuc/long": "4.2.2" } }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, - "node_modules/body-parser": { - "version": "1.20.1", - "license": "MIT", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dependencies": { - "ms": "2.0.0" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/bonjour-service": { - "version": "1.2.1", - "license": "MIT", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dependencies": { - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "license": "ISC" + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } }, - "node_modules/boxen": { - "version": "6.2.1", - "license": "MIT", + "node_modules/@wessberg/ts-evaluator": { + "version": "0.0.27", + "resolved": "https://registry.npmjs.org/@wessberg/ts-evaluator/-/ts-evaluator-0.0.27.tgz", + "integrity": "sha512-7gOpVm3yYojUp/Yn7F4ZybJRxyqfMNf0LXK5KJiawbPfL0XTsJV+0mgrEDjOIR6Bi0OYk2Cyg4tjFu1r8MCZaA==", + "deprecated": "this package has been renamed to ts-evaluator. Please install ts-evaluator instead", + "dev": true, + "peer": true, "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^6.2.0", - "chalk": "^4.1.2", - "cli-boxes": "^3.0.0", - "string-width": "^5.0.1", - "type-fest": "^2.5.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" + "chalk": "^4.1.0", + "jsdom": "^16.4.0", + "object-path": "^0.11.5", + "tslib": "^2.0.3" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10.1.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" + "type": "github", + "url": "https://github.com/wessberg/ts-evaluator?sponsor=1" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "typescript": ">=3.2.x || >= 4.x" } }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" }, - "node_modules/boxen/node_modules/string-width": { - "version": "5.1.2", + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6.5" } }, - "node_modules/boxen/node_modules/strip-ansi": { - "version": "7.1.0", - "license": "MIT", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dependencies": { - "ansi-regex": "^6.0.1" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/braces": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "peer": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "peer": true + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "dev": true, + "peer": true, + "peerDependencies": { + "acorn": "^8" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "acorn": "^8.14.0" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/browserify-rsa": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", - "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "peer": true, "dependencies": { - "bn.js": "^5.2.1", - "randombytes": "^2.1.0", - "safe-buffer": "^5.2.1" + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" }, "engines": { - "node": ">= 0.10" + "node": ">=8.9" } }, - "node_modules/browserify-sign": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz", - "integrity": "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==", + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "peer": true, "dependencies": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.5", - "hash-base": "~3.0", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.7", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">= 0.12" + "node": ">=8.9.0" } }, - "node_modules/browserify-sign/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/browserify-sign/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dependencies": { - "safe-buffer": "~5.1.0" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { - "pako": "~1.0.5" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/browserslist": { - "version": "4.24.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", - "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" + "node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "license": "MIT", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true } - ], + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dependencies": { - "caniuse-lite": "^1.0.30001688", - "electron-to-chromium": "^1.5.73", - "node-releases": "^2.0.19", - "update-browserslist-db": "^1.1.1" + "ajv": "^8.0.0" }, - "bin": { - "browserslist": "cli.js" + "peerDependencies": { + "ajv": "^8.0.0" }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dependencies": { - "fast-json-stable-stringify": "2.x" + "fast-deep-equal": "^3.1.3" }, - "engines": { - "node": ">= 6" + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" + "node_modules/algoliasearch": { + "version": "5.52.1", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.52.1.tgz", + "integrity": "sha512-fHA8+kXTbjagw3jkLiaS7KKrH8qe2DyOsiUhGlN4cdT77PEsfqXZl7ewDk1hsg+pJnPlnE50XtLxjR91iJOpmg==", + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.18.1", + "@algolia/client-abtesting": "5.52.1", + "@algolia/client-analytics": "5.52.1", + "@algolia/client-common": "5.52.1", + "@algolia/client-insights": "5.52.1", + "@algolia/client-personalization": "5.52.1", + "@algolia/client-query-suggestions": "5.52.1", + "@algolia/client-search": "5.52.1", + "@algolia/ingestion": "1.52.1", + "@algolia/monitoring": "1.52.1", + "@algolia/recommend": "5.52.1", + "@algolia/requester-browser-xhr": "5.52.1", + "@algolia/requester-fetch": "5.52.1", + "@algolia/requester-node-http": "5.52.1" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/algoliasearch-helper": { + "version": "3.29.1", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.29.1.tgz", + "integrity": "sha512-6ck2YFudF2Pje7szQoPBiRFTGfd+1I+0I/WfLPGn0bj1kvrFoOQmNyedNiDxTk3/r4IfSLDYk+RA4G7u8H6+yA==", + "license": "MIT", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "@algolia/events": "^4.0.1" + }, + "peerDependencies": { + "algoliasearch": ">= 3.1 < 6" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/bytes": { - "version": "3.0.0", - "license": "MIT", + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "license": "MIT", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "peer": true, "engines": { - "node": ">=14.16" + "node": ">=6" } }, - "node_modules/cacheable-request": { - "version": "10.2.14", - "license": "MIT", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, "dependencies": { - "@types/http-cache-semantics": "^4.0.2", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.3", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" + "type-fest": "^0.21.3" }, "engines": { - "node": ">=14.16" - } - }, - "node_modules/cacheable-request/node_modules/mimic-response": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacheable-request/node_modules/normalize-url": { - "version": "8.0.0", - "license": "MIT", + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/call-bind": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", - "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "call-bind-apply-helpers": "^1.0.0", - "es-define-property": "^1.0.0", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.2" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/call-bind-apply-helpers": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", - "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" - }, + "node_modules/ansis": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz", + "integrity": "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==", + "license": "ISC", "engines": { - "node": ">= 0.4" + "node": ">=14" } }, - "node_modules/call-bound": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", - "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "get-intrinsic": "^1.2.6" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 8" } }, - "node_modules/call-me-maybe": { - "version": "1.0.2", + "node_modules/aproba": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.1.0.tgz", + "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, - "node_modules/callsites": { - "version": "3.1.0", - "license": "MIT", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/camel-case": { - "version": "4.1.2", + "node_modules/asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", "license": "MIT", "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, - "node_modules/camelcase": { - "version": "6.3.0", + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "license": "MIT" + }, + "node_modules/asn1js": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz", + "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==", + "license": "BSD-3-Clause", + "dependencies": { + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.5", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/asn1js/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" + } + }, + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", + "bin": { + "astring": "bin/astring" + } + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 4.0.0" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/autocomplete.js": { + "version": "0.37.1", + "resolved": "https://registry.npmjs.org/autocomplete.js/-/autocomplete.js-0.37.1.tgz", + "integrity": "sha512-PgSe9fHYhZEsm/9jggbjtVsGXJkPLvd+9mC7gZJ662vVL5CRWEtm/mIrrzCx0MrNxHVwxD5d00UOn6NsmL2LUQ==", "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "immediate": "^3.2.3" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001696", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001696.tgz", - "integrity": "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==", + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "dev": true, "funding": [ { "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" + "url": "https://tidelift.com/funding/github/npm/autoprefixer" } - ] - }, - "node_modules/ccount": { - "version": "2.0.1", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", + ], + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/character-entities": { - "version": "2.0.2", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "license": "MIT", + "node": ">= 0.4" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/axios": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz", + "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==", + "dependencies": { + "follow-redirects": "^1.16.0", + "form-data": "^4.0.5", + "https-proxy-agent": "^5.0.1", + "proxy-from-env": "^2.1.0" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, - "peer": true - }, - "node_modules/charset": { - "version": "1.0.1", - "license": "MIT", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, "engines": { - "node": ">=4.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" } }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "node_modules/babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "peer": true, "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">= 14.15.0" }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "object.assign": "^4.1.0" } }, - "node_modules/cheerio-select/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": ">=8" } }, - "node_modules/chokidar": { - "version": "3.5.3", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=6.0" + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/ci-info": { - "version": "3.9.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/cipher-base": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.6.tgz", - "integrity": "sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", + "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" + "@babel/helper-define-polyfill-provider": "^0.4.4", + "core-js-compat": "^3.33.1" }, - "engines": { - "node": ">= 0.10" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/cjs-module-lexer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", - "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", - "dev": true - }, - "node_modules/clean-css": { - "version": "5.3.3", - "license": "MIT", + "node_modules/babel-plugin-polyfill-corejs3/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", + "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", "dependencies": { - "source-map": "~0.6.0" + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, - "engines": { - "node": ">= 10.0" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", + "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=10" + "node_modules/babel-plugin-polyfill-regenerator/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", + "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", "dev": true, - "peer": true, "dependencies": { - "restore-cursor": "^3.1.0" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "@babel/core": "^7.0.0 || ^8.0.0-0" } }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, - "peer": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cli-table3": { - "version": "0.6.3", - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.29", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz", + "integrity": "sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": ">=6.0.0" } }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 10" + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bcp-47-match": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-1.0.3.tgz", + "integrity": "sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cliui": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "engines": { - "node": ">=12" + "node": "*" } }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "peer": true, - "engines": { - "node": ">=0.8" + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "license": "MIT", + "node_modules/bl/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peer": true, "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/clone-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "license": "MIT", + "node_modules/bn.js": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.3.tgz", + "integrity": "sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.5", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz", + "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==", "dependencies": { - "isobject": "^3.0.1" + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.15.1", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clsx": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": ">= 0.8" } }, - "node_modules/collapse-white-space": { - "version": "2.1.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", + "node_modules/bonjour-service": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "bin": { - "color-support": "bin.js" + "node_modules/boxen": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", + "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^6.2.0", + "chalk": "^4.1.2", + "cli-boxes": "^3.0.0", + "string-width": "^5.0.1", + "type-fest": "^2.5.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + "node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } }, - "node_modules/colorette": { - "version": "2.0.20", + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", "license": "MIT" }, - "node_modules/combine-promises": { + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true, + "peer": true + }, + "node_modules/browserify-aes": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "license": "MIT", "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "license": "ISC" - }, - "node_modules/compressible": { - "version": "2.0.18", + "node_modules/browserify-rsa": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", + "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", "license": "MIT", "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "bn.js": "^5.2.1", + "randombytes": "^2.1.0", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.10" } }, - "node_modules/compression": { - "version": "1.7.4", - "license": "MIT", + "node_modules/browserify-sign": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.5.tgz", + "integrity": "sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==", + "license": "ISC", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "bn.js": "^5.2.2", + "browserify-rsa": "^4.1.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.6.1", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.9", + "readable-stream": "^2.3.8", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.10" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", + "node_modules/browserify-sign/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/compression/node_modules/safe-buffer": { + "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, - "node_modules/compute-gcd": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", - "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } - }, - "node_modules/compute-lcm": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", - "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", + "node_modules/browserify-sign/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", "dependencies": { - "compute-gcd": "^1.2.1", - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/concat-map": { - "version": "0.0.1", + "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, - "node_modules/config-chain": { - "version": "1.1.13", + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", "license": "MIT", "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "pako": "~1.0.5" } }, - "node_modules/configstore": { - "version": "6.0.0", - "license": "BSD-2-Clause", + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" }, - "engines": { - "node": ">=12" + "bin": { + "browserslist": "cli.js" }, - "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" - } - }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "license": "MIT", "engines": { - "node": ">=0.8" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/consola": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", - "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, "engines": { - "node": "^14.18.0 || >=16.10.0" + "node": ">= 6" } }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, - "node_modules/content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", - "engines": { - "node": ">= 0.6" - } + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "license": "MIT" }, - "node_modules/content-type": { - "version": "1.0.5", + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "license": "MIT" + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "license": "MIT", + "dependencies": { + "run-applescript": "^7.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "license": "MIT" + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/cookie": { - "version": "0.5.0", - "license": "MIT", + "node_modules/bytestreamjs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz", + "integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==", + "license": "BSD-3-Clause", "engines": { - "node": ">= 0.6" + "node": ">=6.0.0" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "license": "MIT" + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "engines": { + "node": ">=14.16" + } }, - "node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "peer": true, + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "dependencies": { - "is-what": "^3.14.1" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/copy-text-to-clipboard": { - "version": "3.2.0", - "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14.16" } }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", + "node_modules/call-bind": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", + "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", "license": "MIT", "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "get-intrinsic": "^1.3.0", + "set-function-length": "^1.2.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "license": "ISC", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "dependencies": { - "is-glob": "^4.0.3" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.2", - "license": "MIT", + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", - "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "license": "MIT", + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "license": "MIT" + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "engines": { - "node": ">=12" + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/core-js": { - "version": "3.35.0", - "hasInstallScript": true, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-compat": { - "version": "3.40.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz", - "integrity": "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==", "dependencies": { - "browserslist": "^4.24.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/core-js-pure": { - "version": "3.40.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.40.0.tgz", - "integrity": "sha512-AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==", - "hasInstallScript": true, + "node_modules/caniuse-lite": { + "version": "1.0.30001792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", + "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=14" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/create-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", - "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "prompts": "^2.0.1" - }, - "bin": { - "create-jest": "bin/create-jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/critters": { - "version": "0.0.20", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.20.tgz", - "integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==", - "dev": true, - "peer": true, - "dependencies": { - "chalk": "^4.1.0", - "css-select": "^5.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.2", - "htmlparser2": "^8.0.2", - "postcss": "^8.4.23", - "pretty-bytes": "^5.3.0" + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/critters/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "peer": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", "funding": { - "url": "https://github.com/sponsors/fb55" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true, + "peer": true + }, + "node_modules/charset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", + "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==", "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, "engines": { - "node": ">= 8" + "node": ">=4.0.0" } }, - "node_modules/crypto-browserify": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", - "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", + "node_modules/cheerio": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "license": "MIT", "dependencies": { - "browserify-cipher": "^1.0.1", - "browserify-sign": "^4.2.3", - "create-ecdh": "^4.0.4", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "diffie-hellman": "^5.0.3", - "hash-base": "~3.0.4", - "inherits": "^2.0.4", - "pbkdf2": "^3.1.2", - "public-encrypt": "^4.0.3", - "randombytes": "^2.1.0", - "randomfill": "^1.0.4" + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">= 6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "license": "MIT" + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "license": "MIT", + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "peer": true, "dependencies": { - "type-fest": "^1.0.1" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">=12" + "node": ">= 8.10.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "license": "(MIT OR CC0-1.0)", + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6.0" } }, - "node_modules/css-blank-pseudo": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz", - "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==", + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "funding": [ { "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "url": "https://github.com/sponsors/sibiraj-s" } ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz", + "integrity": "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.0.0" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.2" }, "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 0.10" } }, - "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "dev": true + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "source-map": "~0.6.0" }, "engines": { - "node": ">=4" + "node": ">= 10.0" } }, - "node_modules/css-declaration-sorter": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", - "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", + "engines": { + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.0.9" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-has-pseudo": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.2.tgz", - "integrity": "sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "peer": true, "dependencies": { - "@csstools/selector-specificity": "^5.0.0", - "postcss-selector-parser": "^7.0.0", - "postcss-value-parser": "^4.2.0" + "restore-cursor": "^3.1.0" }, "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", - "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "peer": true, "engines": { - "node": ">=18" + "node": ">=6" }, - "peerDependencies": { - "postcss-selector-parser": "^7.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "string-width": "^4.2.0" }, "engines": { - "node": ">=4" + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/css-loader": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", - "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "node_modules/cli-table3/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.1.0", - "postcss-modules-local-by-default": "^4.0.5", - "postcss-modules-scope": "^3.2.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.5.4" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } + "node": ">=8" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" - }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "peer": true, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "@swc/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "lightningcss": { - "optional": true - } + "node": ">= 10" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/css-prefers-color-scheme": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz", - "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/css-select": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": ">=8" } }, - "node_modules/css-select/node_modules/dom-serializer": { - "version": "1.4.1", - "license": "MIT", + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/css-select/node_modules/domhandler": { - "version": "4.3.1", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "peer": true, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">=0.8" } }, - "node_modules/css-select/node_modules/domutils": { - "version": "2.8.0", - "license": "BSD-2-Clause", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "engines": { + "node": ">=6" } }, - "node_modules/css-select/node_modules/entities": { - "version": "2.2.0", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "engines": { + "node": ">=6" } }, - "node_modules/css-selector-parser": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.4.1.tgz", - "integrity": "sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==" - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/css-what": { - "version": "6.1.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, + "node_modules/collapse-white-space": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", "funding": { - "url": "https://github.com/sponsors/fb55" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cssdb": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.2.3.tgz", - "integrity": "sha512-9BDG5XmJrJQQnJ51VFxXCAtpZ5ebDlAREmO8sxMOVU0aSxN/gocbctjIG5LMh3WBUq+xTlb/jw2LoljBEqraTA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - } - ] + "node_modules/collect-v8-coverage": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", + "dev": true }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/cssnano": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", - "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", - "dependencies": { - "cssnano-preset-default": "^6.1.2", - "lilconfig": "^3.1.1" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" } }, - "node_modules/cssnano-preset-advanced": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz", - "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==", - "dependencies": { - "autoprefixer": "^10.4.19", - "browserslist": "^4.23.0", - "cssnano-preset-default": "^6.1.2", - "postcss-discard-unused": "^6.0.5", - "postcss-merge-idents": "^6.0.3", - "postcss-reduce-idents": "^6.0.3", - "postcss-zindex": "^6.0.2" - }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "license": "MIT" + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + }, + "node_modules/combine-promises": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz", + "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==", "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=10" } }, - "node_modules/cssnano-preset-default": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", - "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { - "browserslist": "^4.23.0", - "css-declaration-sorter": "^7.2.0", - "cssnano-utils": "^4.0.2", - "postcss-calc": "^9.0.1", - "postcss-colormin": "^6.1.0", - "postcss-convert-values": "^6.1.0", - "postcss-discard-comments": "^6.0.2", - "postcss-discard-duplicates": "^6.0.3", - "postcss-discard-empty": "^6.0.3", - "postcss-discard-overridden": "^6.0.2", - "postcss-merge-longhand": "^6.0.5", - "postcss-merge-rules": "^6.1.1", - "postcss-minify-font-values": "^6.1.0", - "postcss-minify-gradients": "^6.0.3", - "postcss-minify-params": "^6.1.0", - "postcss-minify-selectors": "^6.0.4", - "postcss-normalize-charset": "^6.0.2", - "postcss-normalize-display-values": "^6.0.2", - "postcss-normalize-positions": "^6.0.2", - "postcss-normalize-repeat-style": "^6.0.2", - "postcss-normalize-string": "^6.0.2", - "postcss-normalize-timing-functions": "^6.0.2", - "postcss-normalize-unicode": "^6.1.0", - "postcss-normalize-url": "^6.0.2", - "postcss-normalize-whitespace": "^6.0.2", - "postcss-ordered-values": "^6.0.2", - "postcss-reduce-initial": "^6.1.0", - "postcss-reduce-transforms": "^6.0.2", - "postcss-svgo": "^6.0.3", - "postcss-unique-selectors": "^6.0.4" + "delayed-stream": "~1.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">= 0.8" } }, - "node_modules/cssnano-utils": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", - "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node_modules/comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dependencies": { - "css-tree": "~2.2.0" - }, + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "node": ">= 6" } }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" + "mime-db": ">= 1.43.0 < 2" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "node": ">= 0.6" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true, - "peer": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dependencies": { - "cssom": "~0.3.6" + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/csstype": { - "version": "3.1.3", - "license": "MIT" - }, - "node_modules/data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "dev": true, - "peer": true, - "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - }, + "node_modules/compression/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { - "node": ">=10" + "node": ">= 0.8" } }, - "node_modules/data-urls/node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "peer": true, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" + "ms": "2.0.0" } }, - "node_modules/data-urls/node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10.4" - } + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "peer": true, + "node_modules/compute-gcd": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", + "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" + "validate.io-array": "^1.0.3", + "validate.io-function": "^1.0.2", + "validate.io-integer-array": "^1.0.0" } }, - "node_modules/debounce": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" - }, - "node_modules/debug": { - "version": "4.3.4", - "license": "MIT", + "node_modules/compute-lcm": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", + "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "compute-gcd": "^1.2.1", + "validate.io-array": "^1.0.3", + "validate.io-function": "^1.0.2", + "validate.io-integer-array": "^1.0.0" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "license": "MIT", + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dependencies": { - "character-entities": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "ini": "^1.3.4", + "proto-list": "~1.2.1" } }, - "node_modules/decompress-response": { + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/configstore": { "version": "6.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", "dependencies": { - "mimic-response": "^3.1.0" + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/yeoman/configstore?sponsor=1" } }, - "node_modules/dedent": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", - "dev": true, - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" - }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "license": "MIT", + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "engines": { - "node": ">=4.0.0" + "node": ">=0.8" } }, - "node_modules/deepmerge": { - "version": "4.3.1", + "node_modules/consola": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz", + "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "execa": "^5.0.0" - }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", "engines": { - "node": ">= 10" + "node": ">= 0.6" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "peer": true, "dependencies": { - "clone": "^1.0.2" + "is-what": "^3.14.1" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "license": "MIT", + "node_modules/copy-text-to-clipboard": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz", + "integrity": "sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A==", "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">= 14.15.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "license": "MIT", + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=8" + "node": ">=10.13.0" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/del": { - "version": "6.1.1", - "license": "MIT", - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" + "node_modules/core-js": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz", + "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/depd": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "node_modules/core-js-compat": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", + "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "optional": true, - "bin": { - "detect-libc": "bin/detect-libc.js" + "browserslist": "^4.28.1" }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "license": "MIT" + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, - "node_modules/detect-package-manager": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz", - "integrity": "sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==", + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dependencies": { - "execa": "^5.1.1" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/detect-port": { - "version": "1.5.1", - "license": "MIT", - "dependencies": { - "address": "^1.0.1", - "debug": "4" + "node": ">=14" }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" - } - }, - "node_modules/detect-port-alt": { - "version": "1.1.6", - "license": "MIT", - "dependencies": { - "address": "^1.0.1", - "debug": "^2.6.0" + "funding": { + "url": "https://github.com/sponsors/d-fischer" }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "peerDependencies": { + "typescript": ">=4.9.5" }, - "engines": { - "node": ">= 4.2.1" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/detect-port-alt/node_modules/debug": { - "version": "2.6.9", + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" } }, - "node_modules/detect-port-alt/node_modules/ms": { - "version": "2.0.0", + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "license": "MIT" }, - "node_modules/devlop": { - "version": "1.1.0", + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "license": "MIT", "dependencies": { - "dequal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" } }, - "node_modules/diff": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "node_modules/critters": { + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.20.tgz", + "integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==", + "dev": true, + "peer": true, "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "chalk": "^4.1.0", + "css-select": "^5.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.2", + "htmlparser2": "^8.0.2", + "postcss": "^8.4.23", + "pretty-bytes": "^5.3.0" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "license": "MIT", + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dependencies": { - "path-type": "^4.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8" - } - }, - "node_modules/direction": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/direction/-/direction-1.0.4.tgz", - "integrity": "sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==", - "bin": { - "direction": "cli.js" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node": ">= 8" } }, - "node_modules/dns-packet": { - "version": "5.6.1", + "node_modules/crypto-browserify": { + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", + "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", "license": "MIT", "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" + "browserify-cipher": "^1.0.1", + "browserify-sign": "^4.2.3", + "create-ecdh": "^4.0.4", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "diffie-hellman": "^5.0.3", + "hash-base": "~3.0.4", + "inherits": "^2.0.4", + "pbkdf2": "^3.1.2", + "public-encrypt": "^4.0.3", + "randombytes": "^2.1.0", + "randomfill": "^1.0.4" }, "engines": { - "node": ">=6" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/docusaurus-lunr-search": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/docusaurus-lunr-search/-/docusaurus-lunr-search-3.3.2.tgz", - "integrity": "sha512-+TXfiRAwIAaNwME8bBZvC+osfoXjJSNs5BcZu92lIHoWc3Myct4Nw3jU0FMXQCQGQcQ0FgFqMDoh56LPCLVaxQ==", - "dependencies": { - "autocomplete.js": "^0.37.0", - "clsx": "^1.2.1", - "gauge": "^3.0.0", - "hast-util-select": "^4.0.0", - "hast-util-to-text": "^2.0.0", - "hogan.js": "^3.0.2", - "lunr": "^2.3.8", - "lunr-languages": "^1.4.0", - "mark.js": "^8.11.1", - "minimatch": "^3.0.4", - "rehype-parse": "^7.0.1", - "to-vfile": "^6.1.0", - "unified": "^9.0.0", - "unist-util-is": "^4.0.2" + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dependencies": { + "type-fest": "^1.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">=12" }, - "peerDependencies": { - "@docusaurus/core": "^2.0.0-alpha.60 || ^2.0.0 || ^3.0.0", - "react": "^16.8.4 || ^17 || ^18", - "react-dom": "^16.8.4 || ^17 || ^18" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-lunr-search/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/docusaurus-lunr-search/node_modules/bail": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", - "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "engines": { + "node": ">=10" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-lunr-search/node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/docusaurus-lunr-search/node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/docusaurus-lunr-search/node_modules/trough": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", - "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/docusaurus-lunr-search/node_modules/unified": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", - "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", + "node_modules/css-blank-pseudo": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz", + "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^2.0.0", - "trough": "^1.0.0", - "vfile": "^4.0.0" + "postcss-selector-parser": "^7.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/docusaurus-lunr-search/node_modules/unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/docusaurus-lunr-search/node_modules/unist-util-stringify-position": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", - "dependencies": { - "@types/unist": "^2.0.2" + "engines": { + "node": ">=18" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/docusaurus-lunr-search/node_modules/vfile": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^2.0.0", - "vfile-message": "^2.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=4" } }, - "node_modules/docusaurus-lunr-search/node_modules/vfile-message": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "node_modules/css-declaration-sorter": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz", + "integrity": "sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==", + "license": "ISC", + "engines": { + "node": "^14 || ^16 || >=18" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/docusaurus-plugin-openapi-docs": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-4.3.2.tgz", - "integrity": "sha512-UE7MzzpGboONj/sbpTAIX+i6y8LX1rjiHxmkuzU4afaJU5vW3LYsCWMSTBhM95Rk63C4G40BBkjsgF3JfEKOeg==", + "node_modules/css-has-pseudo": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz", + "integrity": "sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@apidevtools/json-schema-ref-parser": "^11.5.4", - "@redocly/openapi-core": "^1.10.5", - "allof-merge": "^0.6.6", - "chalk": "^4.1.2", - "clsx": "^1.1.1", - "fs-extra": "^9.0.1", - "json-pointer": "^0.6.2", - "json5": "^2.2.3", - "lodash": "^4.17.20", - "mustache": "^4.2.0", - "openapi-to-postmanv2": "^4.21.0", - "postman-collection": "^4.4.0", - "slugify": "^1.6.5", - "swagger2openapi": "^7.0.8", - "xml-formatter": "^2.6.1" + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { - "@docusaurus/plugin-content-docs": "^3.5.0", - "@docusaurus/utils": "^3.5.0", - "@docusaurus/utils-validation": "^3.5.0", - "react": "^16.8.4 || ^17.0.0 || ^18.0.0" + "postcss": "^8.4" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", + "node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/fs-extra": { - "version": "9.1.0", + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/docusaurus-plugin-sass": { - "version": "0.2.5", - "license": "MIT", + "node_modules/css-loader": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "dev": true, "peer": true, "dependencies": { - "sass-loader": "^10.1.1" + "icss-utils": "^5.1.0", + "postcss": "^8.4.21", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.3", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", - "sass": "^1.30.0" + "webpack": "^5.0.0" } }, - "node_modules/docusaurus-plugin-sass/node_modules/sass-loader": { - "version": "10.5.2", + "node_modules/css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "license": "MIT", - "peer": true, "dependencies": { - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "neo-async": "^2.6.2", - "schema-utils": "^3.0.0", - "semver": "^7.3.2" + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", - "sass": "^1.3.0", - "webpack": "^4.36.0 || ^5.0.0" + "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "fibers": { + "@parcel/css": { "optional": true }, - "node-sass": { + "@swc/css": { "optional": true }, - "sass": { + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { "optional": true } } }, - "node_modules/docusaurus-plugin-sass/node_modules/schema-utils": { - "version": "3.3.0", - "license": "MIT", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/docusaurus-theme-openapi-docs": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-4.3.2.tgz", - "integrity": "sha512-7uAZIQ2tXorO9Y0FxVBMSlXs2sKhggPob6JR8ywcjv5PdBXyK9IIBXidfh6PP4c2nqvsCCqti8kLon///3cYug==", - "dependencies": { - "@hookform/error-message": "^2.0.1", - "@reduxjs/toolkit": "^1.7.1", - "allof-merge": "^0.6.6", - "clsx": "^1.1.1", - "copy-text-to-clipboard": "^3.1.0", - "crypto-js": "^4.1.1", - "file-saver": "^2.0.5", - "lodash": "^4.17.20", - "node-polyfill-webpack-plugin": "^3.0.0", - "postman-code-generators": "^1.10.1", - "postman-collection": "^4.4.0", - "prism-react-renderer": "^2.3.0", - "react-hook-form": "^7.43.8", - "react-live": "^4.0.0", - "react-magic-dropzone": "^1.0.1", - "react-markdown": "^8.0.1", - "react-modal": "^3.15.1", - "react-redux": "^7.2.0", - "rehype-raw": "^6.1.1", - "remark-gfm": "3.0.1", - "sass": "^1.80.4", - "sass-loader": "^16.0.2", - "unist-util-visit": "^5.0.0", - "webpack": "^5.61.0", - "xml-formatter": "^2.6.1" - }, + "node_modules/css-prefers-color-scheme": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz", + "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { - "@docusaurus/theme-common": "^3.5.0", - "docusaurus-plugin-openapi-docs": "^4.0.0", - "docusaurus-plugin-sass": "^0.2.3", - "react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "postcss": "^8.4" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/mdast": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", - "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", "dependencies": { - "@types/unist": "^2" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/unist": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + "node_modules/css-selector-parser": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.4.1.tgz", + "integrity": "sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==" }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, "engines": { - "node": ">=6" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", "engines": { - "node": ">=12" + "node": ">= 6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-find-and-replace": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", - "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", - "dependencies": { - "@types/mdast": "^3.0.0", - "escape-string-regexp": "^5.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/cssdb": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.9.0.tgz", + "integrity": "sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "MIT-0" }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-from-markdown": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=4" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", - "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", + "node_modules/cssnano": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", + "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", + "license": "MIT", "dependencies": { - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-gfm-autolink-literal": "^1.0.0", - "mdast-util-gfm-footnote": "^1.0.0", - "mdast-util-gfm-strikethrough": "^1.0.0", - "mdast-util-gfm-table": "^1.0.0", - "mdast-util-gfm-task-list-item": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" + "cssnano-preset-default": "^6.1.2", + "lilconfig": "^3.1.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-autolink-literal": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", - "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", + "node_modules/cssnano-preset-advanced": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz", + "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==", + "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "ccount": "^2.0.0", - "mdast-util-find-and-replace": "^2.0.0", - "micromark-util-character": "^1.0.0" + "autoprefixer": "^10.4.19", + "browserslist": "^4.23.0", + "cssnano-preset-default": "^6.1.2", + "postcss-discard-unused": "^6.0.5", + "postcss-merge-idents": "^6.0.3", + "postcss-reduce-idents": "^6.0.3", + "postcss-zindex": "^6.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-footnote": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", - "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", + "node_modules/cssnano-preset-advanced/node_modules/autoprefixer": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", + "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.3.0", - "micromark-util-normalize-identifier": "^1.0.0" + "browserslist": "^4.28.2", + "caniuse-lite": "^1.0.30001787", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-strikethrough": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", - "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.3.0" + "node_modules/cssnano-preset-advanced/node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "license": "MIT", + "engines": { + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-table": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", - "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", - "dependencies": { - "@types/mdast": "^3.0.0", - "markdown-table": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.3.0" + "node_modules/cssnano-preset-default": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", + "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^4.0.2", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.1.0", + "postcss-convert-values": "^6.1.0", + "postcss-discard-comments": "^6.0.2", + "postcss-discard-duplicates": "^6.0.3", + "postcss-discard-empty": "^6.0.3", + "postcss-discard-overridden": "^6.0.2", + "postcss-merge-longhand": "^6.0.5", + "postcss-merge-rules": "^6.1.1", + "postcss-minify-font-values": "^6.1.0", + "postcss-minify-gradients": "^6.0.3", + "postcss-minify-params": "^6.1.0", + "postcss-minify-selectors": "^6.0.4", + "postcss-normalize-charset": "^6.0.2", + "postcss-normalize-display-values": "^6.0.2", + "postcss-normalize-positions": "^6.0.2", + "postcss-normalize-repeat-style": "^6.0.2", + "postcss-normalize-string": "^6.0.2", + "postcss-normalize-timing-functions": "^6.0.2", + "postcss-normalize-unicode": "^6.1.0", + "postcss-normalize-url": "^6.0.2", + "postcss-normalize-whitespace": "^6.0.2", + "postcss-ordered-values": "^6.0.2", + "postcss-reduce-initial": "^6.1.0", + "postcss-reduce-transforms": "^6.0.2", + "postcss-svgo": "^6.0.3", + "postcss-unique-selectors": "^6.0.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-task-list-item": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", - "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.3.0" + "node_modules/cssnano-utils": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", + "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "unist-util-is": "^5.0.0" + "css-tree": "~2.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^3.0.0", - "mdast-util-to-string": "^3.0.0", - "micromark-util-decode-string": "^1.0.0", - "unist-util-visit": "^4.0.0", - "zwitch": "^2.0.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true, + "peer": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "cssom": "~0.3.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "peer": true, "dependencies": { - "@types/mdast": "^3.0.0" + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", + "dev": true + }, + "node_modules/decode-named-character-reference": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz", - "integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==", + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dependencies": { - "micromark-extension-gfm-autolink-literal": "^1.0.0", - "micromark-extension-gfm-footnote": "^1.0.0", - "micromark-extension-gfm-strikethrough": "^1.0.0", - "micromark-extension-gfm-table": "^1.0.0", - "micromark-extension-gfm-tagfilter": "^1.0.0", - "micromark-extension-gfm-task-list-item": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-types": "^1.0.0" + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-autolink-literal": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz", - "integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-footnote": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz", - "integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==", + "node_modules/dedent": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.2.tgz", + "integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", + "license": "MIT", "dependencies": { - "micromark-core-commonmark": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-strikethrough": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz", - "integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==", - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "node_modules/default-browser-id": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz", + "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", + "license": "MIT", + "engines": { + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-table": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz", - "integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==", + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "peer": true, "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "execa": "^5.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 10" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-tagfilter": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", - "integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "peer": true, "dependencies": { - "micromark-util-types": "^1.0.0" + "clone": "^1.0.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-task-list-item": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz", - "integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-destination": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-label": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-space": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-title": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-character": { + "node_modules/destroy": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-chunked": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0" + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "optional": true, + "engines": { + "node": ">=8" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-package-manager": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz", + "integrity": "sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==", + "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "execa": "^5.1.1" + }, + "engines": { + "node": ">=12" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/detect-port": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-string": { + "node_modules/devlop": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] + "node_modules/diff": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz", + "integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0" + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-resolve-all": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "license": "MIT", "dependencies": { - "micromark-util-types": "^1.0.0" + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "license": "MIT" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-symbol": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/remark-gfm": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", - "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-gfm": "^2.0.0", - "micromark-extension-gfm": "^2.0.0", - "unified": "^10.0.0" + "node_modules/direction": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/direction/-/direction-1.0.4.tgz", + "integrity": "sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==", + "bin": { + "direction": "cli.js" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "@leichtgewicht/ip-codec": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dependencies": { - "@types/unist": "^2.0.0" + "node_modules/docusaurus-lunr-search": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/docusaurus-lunr-search/-/docusaurus-lunr-search-3.6.0.tgz", + "integrity": "sha512-CCEAnj5e67sUZmIb2hOl4xb4nDN07fb0fvRDDmdWlYpUvyS1CSKbw4lsGInLyUFEEEBzxQmT6zaVQdF/8Zretg==", + "dependencies": { + "autocomplete.js": "^0.37.1", + "clsx": "^2.1.1", + "gauge": "^3.0.2", + "hast-util-select": "^4.0.2", + "hast-util-to-text": "^2.0.1", + "hogan.js": "^3.0.2", + "lunr": "^2.3.9", + "lunr-languages": "^1.4.0", + "mark.js": "^8.11.1", + "minimatch": "^3.1.2", + "rehype-parse": "^7.0.1", + "to-vfile": "^6.1.0", + "unified": "^9.2.2", + "unist-util-is": "^4.1.0" + }, + "engines": { + "node": ">= 8.10.0" }, + "peerDependencies": { + "@docusaurus/core": "^2.0.0-alpha.60 || ^2.0.0 || ^3.0.0", + "react": "^16.8.4 || ^17 || ^18 || ^19", + "react-dom": "^16.8.4 || ^17 || ^18 || ^19" + } + }, + "node_modules/docusaurus-lunr-search/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/docusaurus-lunr-search/node_modules/bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "node_modules/docusaurus-lunr-search/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/docusaurus-lunr-search/node_modules/trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/docusaurus-lunr-search/node_modules/unified": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", + "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", "dependencies": { - "@types/unist": "^2.0.0" + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "node_modules/docusaurus-lunr-search/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "@types/unist": "^2.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "node_modules/docusaurus-lunr-search/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "node_modules/docusaurus-lunr-search/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", "dependencies": { "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "unist-util-stringify-position": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/dom-converter": { - "version": "0.2.0", - "license": "MIT", - "dependencies": { - "utila": "~0.4" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", + "node_modules/docusaurus-plugin-openapi-docs": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-4.1.0.tgz", + "integrity": "sha512-QBoRDFlRGJBKNyHi+4+wuSUlVPF4KrFR5sNyEr/s4eoPPVpaViB/Fwh8DmWbVXvWopNZ0UR1nk1r3Kwls6Qg2Q==", "license": "MIT", "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" + "@apidevtools/json-schema-ref-parser": "^11.5.4", + "@docusaurus/plugin-content-docs": "^3.5.0", + "@docusaurus/utils": "^3.5.0", + "@docusaurus/utils-validation": "^3.5.0", + "@redocly/openapi-core": "^1.10.5", + "chalk": "^4.1.2", + "clsx": "^1.1.1", + "fs-extra": "^9.0.1", + "json-pointer": "^0.6.2", + "json-schema-merge-allof": "^0.8.1", + "json5": "^2.2.3", + "lodash": "^4.17.20", + "mustache": "^4.2.0", + "openapi-to-postmanv2": "^4.21.0", + "postman-collection": "^4.4.0", + "slugify": "^1.6.5", + "swagger2openapi": "^7.0.8", + "xml-formatter": "^2.6.1" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domain-browser": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", - "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", "engines": { - "node": ">=10" + "node": ">=14" }, - "funding": { - "url": "https://bevry.me/fund" + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" + "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "deprecated": "Use your platform's native DOMException instead", - "dev": true, - "peer": true, + "node_modules/docusaurus-plugin-openapi-docs/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", "dependencies": { - "webidl-conversions": "^5.0.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" + "node_modules/docusaurus-plugin-sass": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.6.tgz", + "integrity": "sha512-2hKQQDkrufMong9upKoG/kSHJhuwd+FA3iAe/qzS/BmWpbIpe7XKmq5wlz4J5CJaOPu4x+iDJbgAxZqcoQf0kg==", + "dependencies": { + "sass-loader": "^16.0.2" + }, + "peerDependencies": { + "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", + "sass": "^1.30.0" } }, - "node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", + "node_modules/docusaurus-plugin-sass/node_modules/sass-loader": { + "version": "16.0.8", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.8.tgz", + "integrity": "sha512-hcov4ZwZJIGbEuyNr9EmiTmZueyrxSToE6GOzoZnq5JM7ecRO7ttyvilPn+VmRsqiP16+VYZzVnGZj/hzZgKBA==", "dependencies": { - "domelementtype": "^2.3.0" + "neo-async": "^2.6.2" }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "3.1.0", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" + "node": ">= 18.12.0" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "is-obj": "^2.0.0" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/dot-prop/node_modules/is-obj": { - "version": "2.0.0", + "node_modules/docusaurus-theme-openapi-docs": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-4.1.0.tgz", + "integrity": "sha512-KQ7zs82fTeGrK55VqPvHF9suPYecPhcpoTi0y68/HlCMjMnSl6RN+Q0eLbJr8WwM5r5o96QXObqAx8ot+Dc4BA==", "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/dotenv-defaults": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dotenv-defaults/-/dotenv-defaults-2.0.2.tgz", - "integrity": "sha512-iOIzovWfsUHU91L5i8bJce3NYK5JXeAwH50Jh6+ARUdLiiGlYWfGw6UkzsYqaXZH/hjE/eCd/PlfM/qqyK0AMg==", - "dev": true, - "dependencies": { - "dotenv": "^8.2.0" - } - }, - "node_modules/dotenv-defaults/node_modules/dotenv": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/dotenv-webpack": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/dotenv-webpack/-/dotenv-webpack-8.0.1.tgz", - "integrity": "sha512-CdrgfhZOnx4uB18SgaoP9XHRN2v48BbjuXQsZY5ixs5A8579NxQkmMxRtI7aTwSiSQcM2ao12Fdu+L3ZS3bG4w==", - "dev": true, "dependencies": { - "dotenv-defaults": "^2.0.2" + "@docusaurus/theme-common": "^3.5.0", + "@hookform/error-message": "^2.0.1", + "@reduxjs/toolkit": "^1.7.1", + "clsx": "^1.1.1", + "copy-text-to-clipboard": "^3.1.0", + "crypto-js": "^4.1.1", + "docusaurus-plugin-openapi-docs": "^4.1.0", + "docusaurus-plugin-sass": "^0.2.3", + "file-saver": "^2.0.5", + "lodash": "^4.17.20", + "node-polyfill-webpack-plugin": "^2.0.1", + "postman-code-generators": "^1.10.1", + "postman-collection": "^4.4.0", + "prism-react-renderer": "^2.3.0", + "react-hook-form": "^7.43.8", + "react-live": "^4.0.0", + "react-magic-dropzone": "^1.0.1", + "react-markdown": "^8.0.1", + "react-modal": "^3.15.1", + "react-redux": "^7.2.0", + "rehype-raw": "^6.1.1", + "remark-gfm": "3.0.1", + "sass": "^1.58.1", + "sass-loader": "^13.3.2", + "webpack": "^5.61.0", + "xml-formatter": "^2.6.1" }, "engines": { - "node": ">=10" + "node": ">=14" }, "peerDependencies": { - "webpack": "^4 || ^5" - } - }, - "node_modules/dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-errors": "^1.3.0", - "gopd": "^1.2.0" - }, - "engines": { - "node": ">= 0.4" + "react": "^16.8.4 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, - "node_modules/duplexer": { - "version": "0.1.2", - "license": "MIT" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", - "dev": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "license": "MIT", "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" + "@types/unist": "^2" } }, - "node_modules/electron-to-chromium": { - "version": "1.5.88", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.88.tgz", - "integrity": "sha512-K3C2qf1o+bGzbilTDCTBhTQcMS9KW60yTAaTeeXsfvQuTDDwlokLam/AdqlqcSy9u4UainDgsHV23ksXAOgamw==" - }, - "node_modules/elliptic": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", - "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "license": "MIT", "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "@types/unist": "^2" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/parse5": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", + "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", "license": "MIT" }, - "node_modules/emojilib": { - "version": "2.4.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", "license": "MIT" }, - "node_modules/emojis-list": { - "version": "3.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", "license": "MIT", "engines": { - "node": ">= 4" + "node": ">=6" } }, - "node_modules/emoticon": { - "version": "4.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/encodeurl": { - "version": "1.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "license": "MIT", "engines": { - "node": ">= 0.8" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.0.tgz", - "integrity": "sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "node": ">=12" }, - "engines": { - "node": ">=10.13.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/entities": { - "version": "4.5.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-from-parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", + "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "hastscript": "^7.0.0", + "property-information": "^6.0.0", + "vfile": "^5.0.0", + "vfile-location": "^4.0.0", + "web-namespaces": "^2.0.0" }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", + "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", + "license": "MIT", "dependencies": { - "prr": "~1.0.1" + "@types/hast": "^2.0.0" }, - "bin": { - "errno": "cli.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/error-ex": { - "version": "1.3.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-raw": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", + "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", "license": "MIT", "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-define-property": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", - "engines": { - "node": ">= 0.4" + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-util-from-parse5": "^7.0.0", + "hast-util-to-parse5": "^7.0.0", + "html-void-elements": "^2.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-to-parse5": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", + "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/es-module-lexer": { - "version": "1.4.1", - "license": "MIT" - }, - "node_modules/es-object-atoms": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hastscript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", + "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", + "license": "MIT", "dependencies": { - "es-errors": "^1.3.0" + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" }, - "engines": { - "node": ">= 0.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/es6-promise": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/esbuild": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.17.tgz", - "integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.17", - "@esbuild/android-arm64": "0.18.17", - "@esbuild/android-x64": "0.18.17", - "@esbuild/darwin-arm64": "0.18.17", - "@esbuild/darwin-x64": "0.18.17", - "@esbuild/freebsd-arm64": "0.18.17", - "@esbuild/freebsd-x64": "0.18.17", - "@esbuild/linux-arm": "0.18.17", - "@esbuild/linux-arm64": "0.18.17", - "@esbuild/linux-ia32": "0.18.17", - "@esbuild/linux-loong64": "0.18.17", - "@esbuild/linux-mips64el": "0.18.17", - "@esbuild/linux-ppc64": "0.18.17", - "@esbuild/linux-riscv64": "0.18.17", - "@esbuild/linux-s390x": "0.18.17", - "@esbuild/linux-x64": "0.18.17", - "@esbuild/netbsd-x64": "0.18.17", - "@esbuild/openbsd-x64": "0.18.17", - "@esbuild/sunos-x64": "0.18.17", - "@esbuild/win32-arm64": "0.18.17", - "@esbuild/win32-ia32": "0.18.17", - "@esbuild/win32-x64": "0.18.17" + "node_modules/docusaurus-theme-openapi-docs/node_modules/html-void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", + "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/esbuild-wasm": { - "version": "0.18.17", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.18.17.tgz", - "integrity": "sha512-9OHGcuRzy+I8ziF9FzjfKLWAPbvi0e/metACVg9k6bK+SI4FFxeV6PcZsz8RIVaMD4YNehw+qj6UMR3+qj/EuQ==", - "dev": true, - "bin": { - "esbuild": "bin/esbuild" + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-find-and-replace": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", + "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" }, - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "engines": { - "node": ">=6" + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/escape-goat": { - "version": "4.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", + "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-gfm-autolink-literal": "^1.0.0", + "mdast-util-gfm-footnote": "^1.0.0", + "mdast-util-gfm-strikethrough": "^1.0.0", + "mdast-util-gfm-table": "^1.0.0", + "mdast-util-gfm-task-list-item": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/escape-html": { + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-autolink-literal": { "version": "1.0.3", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", + "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "@types/mdast": "^3.0.0", + "ccount": "^2.0.0", + "mdast-util-find-and-replace": "^2.0.0", + "micromark-util-character": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-footnote": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", + "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", + "license": "MIT", "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-util-normalize-identifier": "^1.0.0" }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "license": "BSD-2-Clause", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-strikethrough": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", + "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/esprima": { - "version": "4.0.1", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", + "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", + "license": "MIT", "dependencies": { - "estraverse": "^5.2.0" + "@types/mdast": "^3.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/estree-util-attach-comments": { - "version": "3.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-task-list-item": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", + "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/estree-util-build-jsx": { + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-phrasing": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "estree-walker": "^3.0.0" + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/estree-util-is-identifier-name": { - "version": "3.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/estree-util-to-js": { - "version": "2.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "astring": "^1.8.0", - "source-map": "^0.7.0" + "@types/mdast": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/estree-util-to-js/node_modules/source-map": { - "version": "0.7.4", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/estree-util-value-to-estree": { - "version": "3.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0", - "is-plain-obj": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/remcohaszing" + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/estree-util-visit": { - "version": "2.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz", + "integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==", "license": "MIT", "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^3.0.0" + "micromark-extension-gfm-autolink-literal": "^1.0.0", + "micromark-extension-gfm-footnote": "^1.0.0", + "micromark-extension-gfm-strikethrough": "^1.0.0", + "micromark-extension-gfm-table": "^1.0.0", + "micromark-extension-gfm-tagfilter": "^1.0.0", + "micromark-extension-gfm-task-list-item": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/estree-walker": { - "version": "3.0.3", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-autolink-literal": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz", + "integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==", "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/eta": { - "version": "2.2.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-footnote": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz", + "integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==", "license": "MIT", - "engines": { - "node": ">=6.0.0" + "dependencies": { + "micromark-core-commonmark": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, "funding": { - "url": "https://github.com/eta-dev/eta?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/etag": { - "version": "1.8.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-strikethrough": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz", + "integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==", "license": "MIT", - "engines": { - "node": ">= 0.6" + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/eval": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz", - "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz", + "integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==", + "license": "MIT", "dependencies": { - "@types/node": "*", - "require-like": ">= 0.1.1" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">= 0.8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true, - "peer": true - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-tagfilter": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", + "integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==", "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/execa": { - "version": "5.1.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-task-list-item": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz", + "integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==", "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exenv": { - "version": "1.2.2", - "license": "BSD-3-Clause" - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", - "dev": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "@jest/expect-utils": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/express": { - "version": "4.18.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/express/node_modules/content-disposition": { - "version": "0.5.4", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "ms": "2.0.0" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "license": "MIT" - }, - "node_modules/extend": { - "version": "3.0.2", - "license": "MIT" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "peer": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "license": "MIT" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } }, - "node_modules/fast-glob": { - "version": "3.3.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "license": "MIT" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT" }, - "node_modules/fast-uri": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", - "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/fastq": { - "version": "1.16.0", - "license": "ISC", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "reusify": "^1.0.4" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/fault": { - "version": "2.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "format": "^0.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "micromark-util-types": "^1.0.0" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "license": "Apache-2.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.8.0" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "bser": "2.1.1" + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/feed": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", - "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", - "dependencies": { - "xml-js": "^1.6.11" - }, - "engines": { - "node": ">=0.4.0" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/rehype-raw": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-6.1.1.tgz", + "integrity": "sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==", + "license": "MIT", "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" + "@types/hast": "^2.0.0", + "hast-util-raw": "^7.2.0", + "unified": "^10.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/file-loader": { - "version": "6.2.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/remark-gfm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", + "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", "license": "MIT", "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" + "@types/mdast": "^3.0.0", + "mdast-util-gfm": "^2.0.0", + "micromark-extension-gfm": "^2.0.0", + "unified": "^10.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "url": "https://opencollective.com/unified" } }, - "node_modules/file-loader/node_modules/schema-utils": { - "version": "3.3.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://opencollective.com/unified" } }, - "node_modules/file-saver": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/file-type": { - "version": "3.9.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, "dependencies": { - "minimatch": "^5.0.1" + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/filesize": { - "version": "8.0.7", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fill-range": { - "version": "7.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/finalhandler": { - "version": "1.2.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "license": "MIT", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, - "engines": { - "node": ">= 0.8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/find-cache-dir": { - "version": "4.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile-location": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", + "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", "license": "MIT", "dependencies": { - "common-path-prefix": "^3.0.0", - "pkg-dir": "^7.0.0" - }, - "engines": { - "node": ">=14.16" + "@types/unist": "^2.0.0", + "vfile": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/find-up": { - "version": "5.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/flat": { - "version": "5.0.2", - "license": "BSD-3-Clause", - "bin": { - "flat": "cli.js" + "node_modules/docusaurus-theme-openapi-docs/node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "node_modules/docusaurus-theme-openapi-docs/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/for-each": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.4.tgz", - "integrity": "sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==", + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "dependencies": { - "is-callable": "^1.2.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "utila": "~0.4" } }, - "node_modules/foreach": { - "version": "2.0.6", - "license": "MIT" - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "license": "ISC", + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "license": "ISC", + "node_modules/domain-browser": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", + "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", + "license": "Artistic-2.0", "engines": { - "node": ">=14" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://bevry.me/fund" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.3", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=10", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "eslint": ">= 6", - "typescript": ">= 2.7", - "vue-template-compiler": "*", - "webpack": ">= 4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "vue-template-compiler": { - "optional": true + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" } - } + ] }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", - "license": "MIT", + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "peer": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" + "webidl-conversions": "^5.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "9.1.0", - "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, + "peer": true, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "2.7.0", - "license": "MIT", + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" + "domelementtype": "^2.3.0" }, "engines": { - "node": ">= 8.9.0" + "node": ">= 4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { - "version": "1.1.3", - "license": "MIT", - "engines": { - "node": ">=6" + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "dependencies": { + "is-obj": "^2.0.0" }, "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "license": "MIT", + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "engines": { - "node": ">= 14.17" + "node": ">=8" } }, - "node_modules/format": { - "version": "0.2.2", + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", "engines": { - "node": ">=0.4.x" + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" + "node_modules/dotenv-defaults": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dotenv-defaults/-/dotenv-defaults-2.0.2.tgz", + "integrity": "sha512-iOIzovWfsUHU91L5i8bJce3NYK5JXeAwH50Jh6+ARUdLiiGlYWfGw6UkzsYqaXZH/hjE/eCd/PlfM/qqyK0AMg==", + "dev": true, + "dependencies": { + "dotenv": "^8.2.0" } }, - "node_modules/fraction.js": { - "version": "4.3.7", - "license": "MIT", + "node_modules/dotenv-defaults/node_modules/dotenv": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "dev": true, "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" + "node": ">=10" } }, - "node_modules/fresh": { - "version": "0.5.2", - "license": "MIT", + "node_modules/dotenv-webpack": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/dotenv-webpack/-/dotenv-webpack-8.1.1.tgz", + "integrity": "sha512-+TY/AJ2k9bU2EML3mxgLmaAvEcqs1Wbv6deCIUSI3eW3Xeo8LBQumYib6puyaSwbjC9JCzg/y5Pwjd/lePX04w==", + "dev": true, + "dependencies": { + "dotenv-defaults": "^2.0.2" + }, "engines": { - "node": ">= 0.6" + "node": ">=10" + }, + "peerDependencies": { + "webpack": "^4 || ^5" } }, - "node_modules/fs-extra": { - "version": "11.2.0", - "license": "MIT", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" }, "engines": { - "node": ">=14.14" + "node": ">= 0.4" } }, - "node_modules/fs-monkey": { - "version": "1.0.5", - "license": "Unlicense" + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "license": "ISC" + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, - "node_modules/function-bind": { - "version": "1.1.2", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/electron-to-chromium": { + "version": "1.5.356", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.356.tgz", + "integrity": "sha512-9NgFd7m5t5MCJ5rUSjJITUXAH9mEGlrlofnMf4YEr+pz6JlP7cWmTAH+JFmbPnaSW8koVTkuW7pacORWAnA5Yw==" }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "node_modules/elliptic": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", + "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", + "license": "MIT", "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "license": "MIT", + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "license": "MIT" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, "engines": { - "node": ">=6.9.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "license": "ISC", + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">= 4" } }, - "node_modules/get-intrinsic": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", - "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "function-bind": "^1.1.2", - "get-proto": "^1.0.0", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - }, + "node_modules/emoticon": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-4.1.0.tgz", + "integrity": "sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==", "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.2", - "license": "ISC" - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "engines": { - "node": ">=8.0.0" + "node": ">= 0.8" } }, - "node_modules/get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "node_modules/enhanced-resolve": { + "version": "5.21.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.3.tgz", + "integrity": "sha512-QyL119InA+XXEkNLNTPCXPugSvOfhwv0JOlGNzvxs0hZaiHLNvXSpudUWsOlsXGWJh8G6ckCScEkVHfX3kw/2Q==", "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" }, "engines": { - "node": ">= 0.4" + "node": ">=10.13.0" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "license": "MIT", + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "engines": { - "node": ">=10" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/github-slugger": { - "version": "1.5.0", - "license": "ISC" - }, - "node_modules/glob": { - "version": "7.2.3", - "license": "ISC", + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" + "prr": "~1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "bin": { + "errno": "cli.js" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "license": "ISC", + "node_modules/error-ex": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", "dependencies": { - "is-glob": "^4.0.1" - }, + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "engines": { - "node": ">= 6" + "node": ">= 0.4" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "license": "BSD-2-Clause" + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "license": "MIT", + "node_modules/es-module-lexer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz", + "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==" + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dependencies": { - "ini": "2.0.0" + "es-errors": "^1.3.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.4" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "license": "ISC", + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" } }, - "node_modules/global-modules": { + "node_modules/es6-promise": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "license": "MIT" + }, + "node_modules/esast-util-from-estree": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz", + "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==", "dependencies": { - "global-prefix": "^3.0.0" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0" }, - "engines": { - "node": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/global-prefix": { - "version": "3.0.0", - "license": "MIT", + "node_modules/esast-util-from-js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz", + "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==", "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "@types/estree-jsx": "^1.0.0", + "acorn": "^8.0.0", + "esast-util-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" }, - "engines": { - "node": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" + "node_modules/esbuild": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.17.tgz", + "integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.17", + "@esbuild/android-arm64": "0.18.17", + "@esbuild/android-x64": "0.18.17", + "@esbuild/darwin-arm64": "0.18.17", + "@esbuild/darwin-x64": "0.18.17", + "@esbuild/freebsd-arm64": "0.18.17", + "@esbuild/freebsd-x64": "0.18.17", + "@esbuild/linux-arm": "0.18.17", + "@esbuild/linux-arm64": "0.18.17", + "@esbuild/linux-ia32": "0.18.17", + "@esbuild/linux-loong64": "0.18.17", + "@esbuild/linux-mips64el": "0.18.17", + "@esbuild/linux-ppc64": "0.18.17", + "@esbuild/linux-riscv64": "0.18.17", + "@esbuild/linux-s390x": "0.18.17", + "@esbuild/linux-x64": "0.18.17", + "@esbuild/netbsd-x64": "0.18.17", + "@esbuild/openbsd-x64": "0.18.17", + "@esbuild/sunos-x64": "0.18.17", + "@esbuild/win32-arm64": "0.18.17", + "@esbuild/win32-ia32": "0.18.17", + "@esbuild/win32-x64": "0.18.17" + } + }, + "node_modules/esbuild-wasm": { + "version": "0.18.17", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.18.17.tgz", + "integrity": "sha512-9OHGcuRzy+I8ziF9FzjfKLWAPbvi0e/metACVg9k6bK+SI4FFxeV6PcZsz8RIVaMD4YNehw+qj6UMR3+qj/EuQ==", + "dev": true, "bin": { - "which": "bin/which" + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" } }, - "node_modules/globals": { - "version": "11.12.0", - "license": "MIT", + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/globby": { - "version": "11.1.0", - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, + "node_modules/escape-goat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", + "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/got": { - "version": "12.6.1", - "license": "MIT", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=14.16" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/got/node_modules/@sindresorhus/is": { - "version": "5.6.0", - "license": "MIT", + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, "engines": { - "node": ">=14.16" + "node": ">=0.10.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "engines": { + "node": ">=8.0.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "license": "ISC" + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } }, - "node_modules/graphlib": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", - "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", - "dependencies": { - "lodash": "^4.17.15" - } - }, - "node_modules/gray-matter": { - "version": "4.0.3", - "license": "MIT", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/guess-parser": { - "version": "0.4.22", - "resolved": "https://registry.npmjs.org/guess-parser/-/guess-parser-0.4.22.tgz", - "integrity": "sha512-KcUWZ5ACGaBM69SbqwVIuWGoSAgD+9iJnchR9j/IarVI1jHVeXv+bUXBIMeqVMSKt3zrn0Dgf9UpcOEpPBLbSg==", - "dev": true, - "peer": true, - "dependencies": { - "@wessberg/ts-evaluator": "0.0.27" + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, - "peerDependencies": { - "typescript": ">=3.7.5" + "engines": { + "node": ">=4" } }, - "node_modules/gzip-size": { - "version": "6.0.0", - "license": "MIT", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dependencies": { - "duplexer": "^0.1.2" + "estraverse": "^5.2.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0" } }, - "node_modules/handle-thing": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/estree-util-attach-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", + "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "engines": { - "node": ">= 0.4" + "@types/estree": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "node_modules/estree-util-build-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", + "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-walker": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - }, - "node_modules/has-yarn": { + "node_modules/estree-util-is-identifier-name": { "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hash-base": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", - "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-from-parse5": { - "version": "7.1.2", - "license": "MIT", + "node_modules/estree-util-scope": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz", + "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==", "dependencies": { - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "hastscript": "^7.0.0", - "property-information": "^6.0.0", - "vfile": "^5.0.0", - "vfile-location": "^4.0.0", - "web-namespaces": "^2.0.0" + "@types/estree": "^1.0.0", + "devlop": "^1.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-from-parse5/node_modules/@types/hast": { - "version": "2.3.9", - "license": "MIT", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/hast-util-from-parse5/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/hast-util-from-parse5/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "license": "MIT", + "node_modules/estree-util-to-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", + "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", "dependencies": { - "@types/unist": "^2.0.0" + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-from-parse5/node_modules/vfile": { - "version": "5.3.7", - "license": "MIT", + "node_modules/estree-util-value-to-estree": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.5.0.tgz", + "integrity": "sha512-aMV56R27Gv3QmfmF1MY12GWkGzzeAezAX+UplqHVASfjc9wNzI/X6hC0S9oxq61WT4aQesLGslWP9tKk6ghRZQ==", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "@types/estree": "^1.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/remcohaszing" } }, - "node_modules/hast-util-from-parse5/node_modules/vfile-message": { - "version": "3.1.4", - "license": "MIT", + "node_modules/estree-util-visit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/hast-util-has-property": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-1.0.4.tgz", - "integrity": "sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" } }, - "node_modules/hast-util-is-element": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz", - "integrity": "sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hast-util-parse-selector": { - "version": "3.1.1", - "license": "MIT", - "dependencies": { - "@types/hast": "^2.0.0" + "node_modules/eta": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz", + "integrity": "sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==", + "engines": { + "node": ">=6.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/eta-dev/eta?sponsor=1" } }, - "node_modules/hast-util-parse-selector/node_modules/@types/hast": { - "version": "2.3.9", - "license": "MIT", - "dependencies": { - "@types/unist": "^2" + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/hast-util-parse-selector/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/hast-util-raw": { - "version": "7.2.3", - "license": "MIT", + "node_modules/eval": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz", + "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==", "dependencies": { - "@types/hast": "^2.0.0", - "@types/parse5": "^6.0.0", - "hast-util-from-parse5": "^7.0.0", - "hast-util-to-parse5": "^7.0.0", - "html-void-elements": "^2.0.0", - "parse5": "^6.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" + "@types/node": "*", + "require-like": ">= 0.1.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.8" } }, - "node_modules/hast-util-raw/node_modules/@types/hast": { - "version": "2.3.9", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "license": "MIT", - "dependencies": { - "@types/unist": "^2" + "engines": { + "node": ">=6" } }, - "node_modules/hast-util-raw/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" + "node_modules/eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "dev": true, + "peer": true }, - "node_modules/hast-util-raw/node_modules/parse5": { - "version": "6.0.1", - "license": "MIT" + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, - "node_modules/hast-util-raw/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" } }, - "node_modules/hast-util-raw/node_modules/unist-util-position": { - "version": "4.0.4", + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/hast-util-raw/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "license": "MIT", + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dependencies": { - "@types/unist": "^2.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/hast-util-raw/node_modules/unist-util-visit": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/hast-util-raw/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "license": "MIT", + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/hast-util-raw/node_modules/vfile": { - "version": "5.3.7", - "license": "MIT", + "node_modules/express": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz", + "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.5", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.15.1", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/express" } }, - "node_modules/hast-util-raw/node_modules/vfile-message": { - "version": "3.1.4", - "license": "MIT", + "node_modules/express/node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "safe-buffer": "5.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.6" } }, - "node_modules/hast-util-select": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-4.0.2.tgz", - "integrity": "sha512-8EEG2//bN5rrzboPWD2HdS3ugLijNioS1pqOTIolXNf67xxShYw4SQEmVXd3imiBG+U2bC2nVTySr/iRAA7Cjg==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "bcp-47-match": "^1.0.0", - "comma-separated-tokens": "^1.0.0", - "css-selector-parser": "^1.0.0", - "direction": "^1.0.0", - "hast-util-has-property": "^1.0.0", - "hast-util-is-element": "^1.0.0", - "hast-util-to-string": "^1.0.0", - "hast-util-whitespace": "^1.0.0", - "not": "^0.1.0", - "nth-check": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0", - "unist-util-visit": "^2.0.0", - "zwitch": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "ms": "2.0.0" } }, - "node_modules/hast-util-select/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/hast-util-select/node_modules/comma-separated-tokens": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", - "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz", + "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==" }, - "node_modules/hast-util-select/node_modules/hast-util-whitespace": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz", - "integrity": "sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/express/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/hast-util-select/node_modules/property-information": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", - "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dependencies": { - "xtend": "^4.0.0" + "is-extendable": "^0.1.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/hast-util-select/node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hast-util-select/node_modules/unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "peer": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" } }, - "node_modules/hast-util-select/node_modules/unist-util-visit": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", - "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8.6.0" } }, - "node_modules/hast-util-select/node_modules/unist-util-visit-parents": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", - "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "reusify": "^1.0.4" } }, - "node_modules/hast-util-select/node_modules/zwitch": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", - "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dependencies": { + "format": "^0.2.0" + }, "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/hast-util-to-estree": { - "version": "3.1.0", - "license": "MIT", + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-attach-comments": "^3.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.0", - "unist-util-position": "^5.0.0", - "zwitch": "^2.0.0" + "websocket-driver": ">=0.5.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/hast-util-to-jsx-runtime": { - "version": "2.3.0", - "license": "MIT", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, "dependencies": { - "@types/estree": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^1.0.0", - "unist-util-position": "^5.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bser": "2.1.1" } }, - "node_modules/hast-util-to-jsx-runtime/node_modules/inline-style-parser": { - "version": "0.2.2", - "license": "MIT" - }, - "node_modules/hast-util-to-jsx-runtime/node_modules/style-to-object": { - "version": "1.0.5", + "node_modules/feed": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", + "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", "license": "MIT", "dependencies": { - "inline-style-parser": "0.2.2" + "xml-js": "^1.6.11" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/hast-util-to-parse5": { - "version": "7.1.0", - "license": "MIT", + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "peer": true, "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hast-util-to-parse5/node_modules/@types/hast": { - "version": "2.3.9", - "license": "MIT", - "dependencies": { - "@types/unist": "^2" + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.0" } }, - "node_modules/hast-util-to-parse5/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/hast-util-to-string": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-1.0.4.tgz", - "integrity": "sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==", + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/hast-util-to-text": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-2.0.1.tgz", - "integrity": "sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ==", + "node_modules/file-loader/node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dependencies": { - "hast-util-is-element": "^1.0.0", - "repeat-string": "^1.0.0", - "unist-util-find-after": "^3.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "license": "MIT", + "node_modules/file-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/file-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dependencies": { - "@types/hast": "^3.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8.9.0" } }, - "node_modules/hastscript": { - "version": "7.2.0", - "license": "MIT", + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^3.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/webpack" } }, - "node_modules/hastscript/node_modules/@types/hast": { - "version": "2.3.9", + "node_modules/file-saver": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", + "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==" + }, + "node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", "license": "MIT", - "dependencies": { - "@types/unist": "^2" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hastscript/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", - "dev": true, - "peer": true, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true, - "peer": true - }, - "node_modules/he": { - "version": "1.2.0", + "node_modules/filter-obj": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", + "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", "license": "MIT", - "bin": { - "he": "bin/he" + "engines": { + "node": ">=8" } }, - "node_modules/history": { - "version": "4.10.1", - "license": "MIT", + "node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", "dependencies": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^3.0.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^1.0.1" + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "ms": "2.0.0" } }, - "node_modules/hogan.js": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz", - "integrity": "sha512-RqGs4wavGYJWE07t35JQccByczmNUXQT0E12ZYV1VKYu5UiAU9lsos/yBAcf840+zrUQQxgVduCR5/B8nNtibg==", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dependencies": { - "mkdirp": "0.3.0", - "nopt": "1.0.10" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, - "bin": { - "hulk": "bin/hulk" + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "license": "BSD-3-Clause", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "dependencies": { - "react-is": "^16.7.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/hpack.js": { - "version": "2.1.6", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" } }, - "node_modules/hpack.js/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "node_modules/follow-redirects": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/hpack.js/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" - }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, - "peer": true, - "dependencies": { - "whatwg-encoding": "^1.0.5" + "is-callable": "^1.2.7" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-entities": { - "version": "2.4.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" - }, - "node_modules/html-escaper": { - "version": "2.0.2", + "node_modules/foreach": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", "license": "MIT" }, - "node_modules/html-minifier-terser": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", - "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "~5.3.2", - "commander": "^10.0.0", - "entities": "^4.4.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.15.1" - }, - "bin": { - "html-minifier-terser": "cli.js" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": ">= 6" } }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", "engines": { - "node": ">=14" + "node": ">= 14.17" } }, - "node_modules/html-tags": { - "version": "3.3.1", - "license": "MIT", + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.4.x" } }, - "node_modules/html-void-elements": { - "version": "2.0.1", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" } }, - "node_modules/html-webpack-plugin": { - "version": "5.6.0", - "license": "MIT", - "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" - }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "peer": true, "engines": { - "node": ">=10.13.0" + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.20.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } + "type": "patreon", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/html-webpack-plugin/node_modules/commander": { - "version": "8.3.0", - "license": "MIT", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "engines": { - "node": ">= 12" + "node": ">= 0.6" } }, - "node_modules/html-webpack-plugin/node_modules/html-minifier-terser": { - "version": "6.1.0", - "license": "MIT", + "node_modules/fs-extra": { + "version": "11.3.5", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz", + "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==", "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, - "node_modules/htmlparser2": { - "version": "8.0.2", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } + "node_modules/fs-monkey": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", + "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", + "dev": true, + "peer": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "license": "BSD-2-Clause" - }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "license": "MIT" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/http-errors": { - "version": "2.0.0", - "license": "MIT", + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "deprecated": "This package is no longer supported.", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" }, "engines": { - "node": ">= 0.8" + "node": ">=10" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "license": "MIT" + "node_modules/gauge/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/http-proxy": { - "version": "1.18.1", - "license": "MIT", + "node_modules/gauge/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=8.0.0" + "node": ">=8" } }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "peer": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "license": "MIT", "engines": { - "node": ">= 6" + "node": ">= 0.4" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "license": "MIT", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=12.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "@types/express": "^4.17.13" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "engines": { + "node": ">= 0.4" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "license": "MIT", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "engines": { "node": ">=10" }, @@ -14466,1169 +14978,1307 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/http-reasons": { - "version": "0.1.0", - "license": "Apache-2.0" - }, - "node_modules/http2-client": { - "version": "1.3.5", - "license": "MIT" + "node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" }, - "node_modules/http2-wrapper": { - "version": "2.2.1", - "license": "MIT", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=10.19.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dependencies": { - "agent-base": "6", - "debug": "4" + "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, - "node_modules/human-signals": { - "version": "2.1.0", + "node_modules/glob-to-regex.js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz", + "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==", "license": "Apache-2.0", "engines": { - "node": ">=10.17.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "license": "MIT", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "ini": "2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "license": "ISC", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/ignore": { - "version": "5.3.0", - "license": "MIT", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "engines": { - "node": ">= 4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/image-size": { - "version": "1.1.1", - "license": "MIT", + "node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", "dependencies": { - "queue": "6.0.2" - }, - "bin": { - "image-size": "bin/image-size.js" + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">=16.x" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/immediate": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz", - "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==" - }, - "node_modules/immer": { - "version": "9.0.21", - "license": "MIT", + "node_modules/got/node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "engines": { + "node": ">=14.16" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/immutable": { - "version": "4.3.4", - "dev": true, - "license": "MIT", - "peer": true + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/import-fresh": { - "version": "3.3.0", + "node_modules/graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", + "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "lodash": "^4.17.15" + } + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6.0" } }, - "node_modules/import-lazy": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/gray-matter/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, + "node_modules/gray-matter/node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "bin": { - "import-local-fixture": "fixtures/cli.js" + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/guess-parser": { + "version": "0.4.22", + "resolved": "https://registry.npmjs.org/guess-parser/-/guess-parser-0.4.22.tgz", + "integrity": "sha512-KcUWZ5ACGaBM69SbqwVIuWGoSAgD+9iJnchR9j/IarVI1jHVeXv+bUXBIMeqVMSKt3zrn0Dgf9UpcOEpPBLbSg==", + "dev": true, + "peer": true, + "dependencies": { + "@wessberg/ts-evaluator": "0.0.27" + }, + "peerDependencies": { + "typescript": ">=3.7.5" + } + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-local/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/handlebars": { + "version": "4.7.9", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.9.tgz", + "integrity": "sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" }, "engines": { - "node": ">=8" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/import-local/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/import-local/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, - "node_modules/import-local/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", "dependencies": { - "find-up": "^4.0.0" + "es-define-property": "^1.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "license": "MIT", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "engines": { - "node": ">=0.8.19" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "license": "MIT", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/infima": { - "version": "0.2.0-alpha.45", - "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz", - "integrity": "sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/has-yarn": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", + "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", + "node_modules/hash-base": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", + "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", + "license": "MIT", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "license": "ISC" - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "peer": true, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" } }, - "node_modules/inquirer/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "peer": true, + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "function-bind": "^1.1.2" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "license": "MIT", "engines": { - "node": ">= 0.10" + "node": ">= 0.4" } }, - "node_modules/invariant": { - "version": "2.2.4", - "license": "MIT", + "node_modules/hast-util-from-parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", + "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ipaddr.js": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "license": "MIT", + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "license": "MIT", + "node_modules/hast-util-from-parse5/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + }, + "node_modules/hast-util-from-parse5/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" + "@types/unist": "^2.0.2" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-arguments": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", - "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "node_modules/hast-util-from-parse5/node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", "dependencies": { - "call-bound": "^1.0.2", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "license": "MIT", + "node_modules/hast-util-from-parse5/node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", "dependencies": { - "binary-extensions": "^2.0.0" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-buffer": { - "version": "2.0.5", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" + "node_modules/hast-util-has-property": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-1.0.4.tgz", + "integrity": "sha512-ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, + "node_modules/hast-util-is-element": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz", + "integrity": "sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==", "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" + "node_modules/hast-util-parse-selector": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-core-module": { - "version": "2.13.1", - "license": "MIT", + "node_modules/hast-util-raw": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", "dependencies": { - "hasown": "^2.0.0" + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-decimal": { - "version": "2.0.1", - "license": "MIT", + "node_modules/hast-util-raw/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" + "node_modules/hast-util-raw/node_modules/hast-util-from-parse5": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^7.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-extendable": { - "version": "0.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-generator-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", - "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "node_modules/hast-util-raw/node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", "dependencies": { - "call-bound": "^1.0.3", - "get-proto": "^1.0.0", - "has-tostringtag": "^1.0.2", - "safe-regex-test": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" + "@types/hast": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "license": "MIT", + "node_modules/hast-util-raw/node_modules/hastscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", "dependencies": { - "is-extglob": "^2.1.1" + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-hexadecimal": { - "version": "2.0.1", - "license": "MIT", + "node_modules/hast-util-raw/node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "license": "MIT", - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, + "node_modules/hast-util-raw/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "node_modules/hast-util-raw/node_modules/vfile-location": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-npm": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, + "node_modules/hast-util-raw/node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=0.12.0" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-obj": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/hast-util-raw/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node_modules/hast-util-select": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-4.0.2.tgz", + "integrity": "sha512-8EEG2//bN5rrzboPWD2HdS3ugLijNioS1pqOTIolXNf67xxShYw4SQEmVXd3imiBG+U2bC2nVTySr/iRAA7Cjg==", + "dependencies": { + "bcp-47-match": "^1.0.0", + "comma-separated-tokens": "^1.0.0", + "css-selector-parser": "^1.0.0", + "direction": "^1.0.0", + "hast-util-has-property": "^1.0.0", + "hast-util-is-element": "^1.0.0", + "hast-util-to-string": "^1.0.0", + "hast-util-whitespace": "^1.0.0", + "not": "^0.1.0", + "nth-check": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0", + "unist-util-visit": "^2.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "license": "MIT", - "engines": { - "node": ">=8" - } + "node_modules/hast-util-select/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "license": "MIT", - "engines": { - "node": ">=12" + "node_modules/hast-util-select/node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "node_modules/is-reference": { - "version": "3.0.2", - "license": "MIT", + "node_modules/hast-util-select/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dependencies": { - "@types/estree": "*" + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-regex": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", - "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "node_modules/hast-util-to-estree": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz", + "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==", "dependencies": { - "call-bound": "^1.0.2", - "gopd": "^1.2.0", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-attach-comments": "^3.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-regexp": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/hast-util-to-estree/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-root": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node_modules/hast-util-to-estree/node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, + "node_modules/hast-util-to-estree/node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", - "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", - "dependencies": { - "which-typed-array": "^1.1.16" - }, - "engines": { - "node": ">= 0.4" - }, + "node_modules/hast-util-to-estree/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "license": "MIT" + "node_modules/hast-util-to-estree/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10" + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true, - "peer": true + "node_modules/hast-util-to-jsx-runtime/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "license": "MIT", + "node_modules/hast-util-to-jsx-runtime/node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", "dependencies": { - "is-docker": "^2.0.0" + "@types/hast": "^3.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-yarn-global": { - "version": "0.4.1", - "license": "MIT", - "engines": { - "node": ">=12" + "node_modules/hast-util-to-jsx-runtime/node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/isarray": { - "version": "0.0.1", - "license": "MIT" + "node_modules/hast-util-to-jsx-runtime/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/isexe": { - "version": "2.0.0", - "license": "ISC" + "node_modules/hast-util-to-parse5": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", + "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } }, - "node_modules/isobject": { - "version": "3.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/hast-util-to-parse5/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/hast-util-to-parse5/node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" + "node_modules/hast-util-to-parse5/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node_modules/hast-util-to-parse5/node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "node_modules/hast-util-to-parse5/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "node_modules/hast-util-to-string": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-1.0.4.tgz", + "integrity": "sha512-eK0MxRX47AV2eZ+Lyr18DCpQgodvaS3fAQO2+b9Two9F5HEoRPhiUMNzoXArMJfZi2yieFzUBMRl3HNJ3Jus3w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, + "node_modules/hast-util-to-text": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-2.0.1.tgz", + "integrity": "sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ==", "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "hast-util-is-element": "^1.0.0", + "repeat-string": "^1.0.0", + "unist-util-find-after": "^3.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" + "node_modules/hast-util-whitespace": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz", + "integrity": "sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "license": "BlueOak-1.0.0", + "node_modules/hastscript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/jake": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", - "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", - "dev": true, + "node_modules/hastscript/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" + "@types/unist": "^2" } }, - "node_modules/jake/node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true + "node_modules/hastscript/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" }, - "node_modules/jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "node_modules/hdr-histogram-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", + "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", "dev": true, + "peer": true, "dependencies": { - "@jest/core": "^29.7.0", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.7.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" } }, - "node_modules/jest-changed-files": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "node_modules/hdr-histogram-percentiles-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", "dev": true, + "peer": true + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" } }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", - "dev": true, + "node_modules/hogan.js": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz", + "integrity": "sha512-RqGs4wavGYJWE07t35JQccByczmNUXQT0E12ZYV1VKYu5UiAU9lsos/yBAcf840+zrUQQxgVduCR5/B8nNtibg==", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.7.0", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.7.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "mkdirp": "0.3.0", + "nopt": "1.0.10" }, + "bin": { + "hulk": "bin/hulk" + } + }, + "node_modules/hogan.js/node_modules/mkdirp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", + "integrity": "sha512-OHsdUcVAQ6pOtg5JYWpCBo9W/GySVuwvP9hueRMW7UqshC0tbfzLv8wjySTPm3tfUZ/21CE9E1pJagOA91Pxew==", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "*" } }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, + "peer": true, "dependencies": { - "yocto-queue": "^0.1.0" + "whatwg-encoding": "^1.0.5" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "node_modules/html-entities": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", + "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "peer": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", + "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", + "license": "MIT", "dependencies": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" + "camel-case": "^4.1.2", + "clean-css": "~5.3.2", + "commander": "^10.0.0", + "entities": "^4.4.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.15.1" }, "bin": { - "jest": "bin/jest.js" + "html-minifier-terser": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": "^14.13.1 || >=16.0.0" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "engines": { + "node": ">=8" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-jest": "^29.7.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.7", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz", + "integrity": "sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" }, "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" }, "peerDependenciesMeta": { - "@types/node": { + "@rspack/core": { "optional": true }, - "ts-node": { + "webpack": { "optional": true } } }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, + "node_modules/html-webpack-plugin/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 12" } }, - "node_modules/jest-docblock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", - "dev": true, + "node_modules/html-webpack-plugin/node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dependencies": { - "detect-newline": "^3.0.0" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/jest-each": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", - "dev": true, + "node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "jest-util": "^29.7.0", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/jest-environment-jsdom": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", - "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", - "dev": true, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0", - "jsdom": "^20.0.0" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "canvas": "^2.5.0" + "node": ">= 0.8" }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/jest-environment-jsdom/node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } + "node_modules/http-parser-js": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", + "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==" }, - "node_modules/jest-environment-jsdom/node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "dev": true, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/jest-environment-jsdom/node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "dev": true - }, - "node_modules/jest-environment-jsdom/node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, + "peer": true, "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/jest-environment-jsdom/node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "deprecated": "Use your platform's native DOMException instead", - "dev": true, + "node_modules/http-proxy-middleware": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz", + "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==", "dependencies": { - "webidl-conversions": "^7.0.0" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">=12" + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": { + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dev": true, + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-reasons": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz", + "integrity": "sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==", + "license": "Apache-2.0" + }, + "node_modules/http2-client": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz", + "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==", + "license": "MIT" + }, + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dependencies": { - "whatwg-encoding": "^2.0.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" }, "engines": { - "node": ">=12" + "node": ">=10.19.0" } }, - "node_modules/jest-environment-jsdom/node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "license": "MIT" + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { - "@tootallnate/once": "2", "agent-base": "6", "debug": "4" }, @@ -15636,2064 +16286,3974 @@ "node": ">= 6" } }, - "node_modules/jest-environment-jsdom/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "license": "MIT", + "engines": { + "node": ">=10.18" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/jest-environment-jsdom/node_modules/jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "engines": { - "node": ">=14" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } + ] + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "engines": { + "node": ">= 4" } }, - "node_modules/jest-environment-jsdom/node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "dev": true, - "dependencies": { - "xmlchars": "^2.2.0" + "node_modules/image-size": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz", + "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==", + "bin": { + "image-size": "bin/image-size.js" }, "engines": { - "node": ">=v12.22.7" + "node": ">=16.x" } }, - "node_modules/jest-environment-jsdom/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, + "node_modules/immediate": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz", + "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==" + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dependencies": { - "punycode": "^2.1.1" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": { + "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "engines": { - "node": ">=14" + "node": ">=4" } }, - "node_modules/jest-environment-jsdom/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "dependencies": { - "iconv-lite": "0.6.3" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">=12" - } - }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "dev": true, - "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" + "find-up": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/jest-environment-jsdom/node_modules/ws": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", - "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "node": ">=0.8.19" } }, - "node_modules/jest-environment-jsdom/node_modules/xml-name-validator": { + "node_modules/indent-string": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/infima": { + "version": "0.2.0-alpha.45", + "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz", + "integrity": "sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw==", + "license": "MIT", "engines": { "node": ">=12" } }, - "node_modules/jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", - "dev": true, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==" }, - "node_modules/jest-haste-map/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "node_modules/inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", "dev": true, + "peer": true, "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12.0.0" } }, - "node_modules/jest-junit": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/jest-junit/-/jest-junit-16.0.0.tgz", - "integrity": "sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ==", + "node_modules/inquirer/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "peer": true + }, + "node_modules/inquirer/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "peer": true, "dependencies": { - "mkdirp": "^1.0.4", - "strip-ansi": "^6.0.1", - "uuid": "^8.3.2", - "xml": "^1.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10.12.0" + "node": ">=8" } }, - "node_modules/jest-junit/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/inquirer/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "peer": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/jest-leak-detector": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.10" } }, - "node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "dev": true, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "loose-envify": "^1.0.0" } }, - "node_modules/jest-message-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, + "node_modules/ipaddr.js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.4.0.tgz", + "integrity": "sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 10" } }, - "node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-preset-angular": { - "version": "13.1.6", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.6.tgz", - "integrity": "sha512-0pXSm6168Qn+qKp7DpzYoaIp0uyMHdQaWYVp8jlw7Mh+NEBtrBjKqts3kLeBHgAhGMQArp07S2IxZ6eCr8fc7Q==", - "dev": true, + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "license": "MIT", "dependencies": { - "bs-logger": "^0.2.6", - "esbuild-wasm": ">=0.13.8", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": "^14.15.0 || >=16.10.0" - }, - "optionalDependencies": { - "esbuild": ">=0.13.8" + "node": ">= 0.4" }, - "peerDependencies": { - "@angular-devkit/build-angular": ">=13.0.0 <18.0.0", - "@angular/compiler-cli": ">=13.0.0 <18.0.0", - "@angular/core": ">=13.0.0 <18.0.0", - "@angular/platform-browser-dynamic": ">=13.0.0 <18.0.0", - "jest": "^29.0.0", - "typescript": ">=4.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" }, - "node_modules/jest-resolve": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", - "dev": true, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-resolve-dependencies": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", - "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", - "dev": true, - "dependencies": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" - }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/jest-runner": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-leak-detector": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-util": "^29.7.0", - "jest-watcher": "^29.7.0", - "jest-worker": "^29.7.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "ci-info": "^3.2.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, + "node_modules/is-core-module": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", + "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", "dependencies": { - "yocto-queue": "^0.1.0" + "hasown": "^2.0.3" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-runtime": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/globals": "^29.7.0", - "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", - "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.7.0", - "semver": "^7.5.3" - }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-util": { - "version": "29.7.0", - "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-validate": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", - "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "leven": "^3.1.0", - "pretty-format": "^29.7.0" - }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-watcher": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "dependencies": { - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.7.0", - "string-length": "^4.0.1" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-worker": { - "version": "27.5.1", + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "license": "MIT", - "bin": { - "jiti": "bin/jiti.js" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/joi": { - "version": "17.11.1", - "license": "BSD-3-Clause", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { - "@hapi/hoek": "^9.3.0", - "@hapi/topo": "^5.1.0", - "@sideway/address": "^4.1.4", - "@sideway/formula": "^3.0.1", - "@sideway/pinpoint": "^2.0.0" - } - }, - "node_modules/js-levenshtein": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "is-extglob": "^2.1.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "license": "MIT" + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/js-yaml": { - "version": "4.1.0", + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "license": "MIT", "dependencies": { - "argparse": "^2.0.1" + "is-docker": "^3.0.0" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "dev": true, - "peer": true, - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "peer": true, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/jsdom/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true, - "peer": true - }, - "node_modules/jsdom/node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "peer": true, - "dependencies": { - "punycode": "^2.1.1" + "node": ">=10" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom/node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, "peer": true, "engines": { - "node": ">=10.4" + "node": ">=8" } }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "peer": true, + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "license": "MIT", "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "dev": true, + "node_modules/is-network-error": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz", + "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==", "license": "MIT", - "peer": true, - "bin": { - "jsesc": "bin/jsesc" - }, "engines": { - "node": ">=4" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/json-crawl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/json-crawl/-/json-crawl-0.5.3.tgz", - "integrity": "sha512-BEjjCw8c7SxzNK4orhlWD5cXQh8vCk2LqDr4WgQq4CV+5dvopeYwt1Tskg67SuSLKvoFH5g0yuYtg7rcfKV6YA==", + "node_modules/is-npm": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.1.0.tgz", + "integrity": "sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==", "engines": { - "node": ">=14.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "license": "MIT" - }, - "node_modules/json-pointer": { - "version": "0.6.2", - "license": "MIT", - "dependencies": { - "foreach": "^2.0.4" + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" } }, - "node_modules/json-schema-compare": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", - "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", - "dependencies": { - "lodash": "^4.17.4" + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/json-schema-merge-allof": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", - "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", - "dependencies": { - "compute-lcm": "^1.1.2", - "json-schema-compare": "^0.2.2", - "lodash": "^4.17.20" - }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "engines": { - "node": ">=12.0.0" + "node": ">=8" } }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/json5": { - "version": "2.2.3", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "license": "MIT", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dependencies": { - "universalify": "^2.0.0" + "isobject": "^3.0.1" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", - "dev": true, - "peer": true, - "dependencies": { - "source-map-support": "^0.5.5" - } + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true }, - "node_modules/keyv": { - "version": "4.5.4", + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "license": "MIT", "dependencies": { - "json-buffer": "3.0.1" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "license": "MIT", + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "engines": { "node": ">=0.10.0" } }, - "node_modules/kleur": { - "version": "3.0.3", - "license": "MIT", + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/klona": { - "version": "2.0.6", - "license": "MIT", - "peer": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/latest-version": { - "version": "7.0.0", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "license": "MIT", "dependencies": { - "package-json": "^8.1.0" + "which-typed-array": "^1.1.16" }, "engines": { - "node": ">=14.16" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/launch-editor": { - "version": "2.6.1", - "license": "MIT", - "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.8.1" - } + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, - "node_modules/less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, "peer": true, - "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" - }, "engines": { - "node": ">=6" + "node": ">=10" }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", "dev": true, - "peer": true, + "peer": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": { - "klona": "^2.0.4" + "is-docker": "^2.0.0" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "less": "^3.5.0 || ^4.0.0", - "webpack": "^5.0.0" + "node": ">=8" } }, - "node_modules/less/node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true, - "peer": true, - "bin": { - "image-size": "bin/image-size.js" - }, + "node_modules/is-yarn-global": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", + "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "engines": { "node": ">=0.10.0" } }, - "node_modules/less/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/less/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "optional": true, - "peer": true, "bin": { - "semver": "bin/semver" + "semver": "bin/semver.js" } }, - "node_modules/leven": { - "version": "3.1.0", - "license": "MIT", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/license-webpack-plugin": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", - "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "peer": true, "dependencies": { - "webpack-sources": "^3.0.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-sources": { - "optional": true - } - } - }, - "node_modules/lilconfig": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" + "node": ">=10" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "license": "MIT" - }, - "node_modules/liquid-json": { - "version": "0.3.1", - "license": "Apache-2.0", + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/loader-runner": { - "version": "4.3.0", - "license": "MIT", + "node_modules/istanbul-reports": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, "engines": { - "node": ">=6.11.5" + "node": ">=8" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "license": "MIT", + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": ">=8.9.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/locate-path": { - "version": "6.0.0", - "license": "MIT", + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, "dependencies": { - "p-locate": "^5.0.0" + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "license": "MIT" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "license": "MIT" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, - "peer": true, "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/longest-streak": { - "version": "3.1.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "license": "MIT", + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" }, "bin": { - "loose-envify": "cli.js" + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/lower-case": { - "version": "2.0.2", - "license": "MIT", + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "license": "MIT", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/lru-cache": { - "version": "6.0.0", - "license": "ISC", + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lunr": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" - }, - "node_modules/lunr-languages": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.14.0.tgz", - "integrity": "sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA==" + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/magic-string": { - "version": "0.30.1", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.1.tgz", - "integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==", + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, - "peer": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", "dev": true, "dependencies": { - "semver": "^7.5.3" + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true + "node_modules/jest-environment-jsdom/node_modules/@tootallnate/once": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.1.tgz", + "integrity": "sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==", + "dev": true, + "engines": { + "node": ">= 10" + } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/jest-environment-jsdom/node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dev": true, "dependencies": { - "tmpl": "1.0.5" + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" } }, - "node_modules/mark.js": { - "version": "8.11.1", - "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", - "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==" - }, - "node_modules/markdown-extensions": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=16" + "node_modules/jest-environment-jsdom/node_modules/acorn-walk": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", + "dev": true, + "dependencies": { + "acorn": "^8.11.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/markdown-table": { - "version": "3.0.3", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "node_modules/jest-environment-jsdom/node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true }, - "node_modules/math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "node_modules/jest-environment-jsdom/node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=12" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/jest-environment-jsdom/node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-definitions": { - "version": "5.1.2", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" + "whatwg-encoding": "^2.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-definitions/node_modules/@types/mdast": { - "version": "3.0.15", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, "dependencies": { - "@types/unist": "^2" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/mdast-util-definitions/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/mdast-util-definitions/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, "dependencies": { - "@types/unist": "^2.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { - "version": "4.1.2", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "xmlchars": "^2.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=v12.22.7" } }, - "node_modules/mdast-util-directive": { + "node_modules/jest-environment-jsdom/node_modules/tr46": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-visit-parents": "^6.0.0" + "punycode": "^2.1.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-find-and-replace": { - "version": "3.0.1", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "escape-string-regexp": "^5.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" + "xml-name-validator": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=14" } }, - "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { - "version": "5.0.0", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mdast-util-from-markdown": { + "node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "mdast-util-to-string": "^4.0.0", - "micromark": "^4.0.0", - "micromark-util-decode-numeric-character-reference": "^2.0.0", - "micromark-util-decode-string": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-stringify-position": "^4.0.0" + "iconv-lite": "0.6.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-from-markdown/node_modules/micromark-util-decode-numeric-character-reference": { - "version": "2.0.1", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0" + "node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-frontmatter": { - "version": "2.0.1", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "escape-string-regexp": "^5.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "micromark-extension-frontmatter": "^2.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp": { - "version": "5.0.0", - "license": "MIT", + "node_modules/jest-environment-jsdom/node_modules/ws": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz", + "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==", + "dev": true, "engines": { - "node": ">=12" + "node": ">=10.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/mdast-util-gfm": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-gfm-autolink-literal": "^2.0.0", - "mdast-util-gfm-footnote": "^2.0.0", - "mdast-util-gfm-strikethrough": "^2.0.0", - "mdast-util-gfm-table": "^2.0.0", - "mdast-util-gfm-task-list-item": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/jest-environment-jsdom/node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" } }, - "node_modules/mdast-util-gfm-autolink-literal": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "ccount": "^2.0.0", - "devlop": "^1.0.0", - "mdast-util-find-and-replace": "^3.0.0", - "micromark-util-character": "^2.0.0" + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-gfm-footnote": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "@types/mdast": "^4.0.0", - "devlop": "^1.1.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-gfm-strikethrough": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/mdast-util-gfm-table": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-junit": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/jest-junit/-/jest-junit-16.0.0.tgz", + "integrity": "sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "markdown-table": "^3.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "mkdirp": "^1.0.4", + "strip-ansi": "^6.0.1", + "uuid": "^8.3.2", + "xml": "^1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10.12.0" } }, - "node_modules/mdast-util-gfm-task-list-item": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-mdx": { - "version": "3.0.0", - "license": "MIT", + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, "dependencies": { - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-mdx-expression": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-mdx-jsx": { - "version": "3.0.0", - "license": "MIT", + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "devlop": "^1.1.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^5.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-mdxjs-esm": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/mdast-util-phrasing": { - "version": "4.0.0", - "license": "MIT", + "node_modules/jest-preset-angular": { + "version": "13.1.6", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.6.tgz", + "integrity": "sha512-0pXSm6168Qn+qKp7DpzYoaIp0uyMHdQaWYVp8jlw7Mh+NEBtrBjKqts3kLeBHgAhGMQArp07S2IxZ6eCr8fc7Q==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "unist-util-is": "^6.0.0" + "bs-logger": "^0.2.6", + "esbuild-wasm": ">=0.13.8", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || >=16.10.0" + }, + "optionalDependencies": { + "esbuild": ">=0.13.8" + }, + "peerDependencies": { + "@angular-devkit/build-angular": ">=13.0.0 <18.0.0", + "@angular/compiler-cli": ">=13.0.0 <18.0.0", + "@angular/core": ">=13.0.0 <18.0.0", + "@angular/platform-browser-dynamic": ">=13.0.0 <18.0.0", + "jest": "^29.0.0", + "typescript": ">=4.4" } }, - "node_modules/mdast-util-to-hast": { - "version": "13.1.0", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-to-markdown": { - "version": "2.1.0", - "license": "MIT", + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^4.0.0", - "mdast-util-to-string": "^4.0.0", - "micromark-util-decode-string": "^2.0.0", - "unist-util-visit": "^5.0.0", - "zwitch": "^2.0.0" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/mdast-util-to-string": { - "version": "4.0.0", - "license": "MIT", + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, "dependencies": { - "@types/mdast": "^4.0.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "license": "MIT", "engines": { - "node": ">= 0.6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/memfs": { - "version": "3.6.0", - "license": "Unlicense", + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, "dependencies": { - "fs-monkey": "^1.0.4" + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">= 4.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "license": "MIT", + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/methods": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/micromark": { - "version": "4.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-combine-extensions": "^2.0.0", - "micromark-util-decode-numeric-character-reference": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-resolve-all": "^2.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "micromark-util-subtokenize": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-core-commonmark": { - "version": "2.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-destination": "^2.0.0", - "micromark-factory-label": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-factory-title": "^2.0.0", - "micromark-factory-whitespace": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-classify-character": "^2.0.0", - "micromark-util-html-tag-name": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-resolve-all": "^2.0.0", - "micromark-util-subtokenize": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-core-commonmark/node_modules/micromark-util-subtokenize": { - "version": "2.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, "dependencies": { - "devlop": "^1.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-extension-directive": { - "version": "3.0.0", - "license": "MIT", + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dependencies": { - "devlop": "^1.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-factory-whitespace": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "parse-entities": "^4.0.0" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-extension-frontmatter": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, "dependencies": { - "fault": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-extension-gfm": { - "version": "3.0.0", - "license": "MIT", + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, "dependencies": { - "micromark-extension-gfm-autolink-literal": "^2.0.0", - "micromark-extension-gfm-footnote": "^2.0.0", - "micromark-extension-gfm-strikethrough": "^2.0.0", - "micromark-extension-gfm-table": "^2.0.0", - "micromark-extension-gfm-tagfilter": "^2.0.0", - "micromark-extension-gfm-task-list-item": "^2.0.0", - "micromark-util-combine-extensions": "^2.0.0", - "micromark-util-types": "^2.0.0" + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-extension-gfm-autolink-literal": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/micromark-extension-gfm-footnote": { - "version": "2.0.0", - "license": "MIT", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dependencies": { - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-normalize-identifier": "^2.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/micromark-extension-gfm-strikethrough": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "devlop": "^1.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-classify-character": "^2.0.0", - "micromark-util-resolve-all": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "bin": { + "jiti": "bin/jiti.js" } }, - "node_modules/micromark-extension-gfm-table": { - "version": "2.0.0", - "license": "MIT", + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", "dependencies": { - "devlop": "^1.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" } }, - "node_modules/micromark-extension-gfm-tagfilter": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node_modules/js-levenshtein": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-extension-gfm-task-list-item": { - "version": "2.0.1", - "license": "MIT", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dependencies": { - "devlop": "^1.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "argparse": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/micromark-extension-mdx-expression": { - "version": "3.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "peer": true, "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-mdx-expression": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/micromark-extension-mdx-jsx": { - "version": "3.0.0", - "license": "MIT", + "node_modules/jsdom/node_modules/form-data": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", + "dev": true, + "peer": true, "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "micromark-factory-mdx-expression": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "vfile-message": "^4.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 6" } }, - "node_modules/micromark-extension-mdx-md": { - "version": "2.0.0", + "node_modules/jsdom/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true, + "peer": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-pointer": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", + "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", "license": "MIT", "dependencies": { - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "foreach": "^2.0.4" } }, - "node_modules/micromark-extension-mdxjs": { - "version": "3.0.0", + "node_modules/json-schema-compare": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", + "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", "license": "MIT", "dependencies": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^3.0.0", - "micromark-extension-mdx-jsx": "^3.0.0", - "micromark-extension-mdx-md": "^2.0.0", - "micromark-extension-mdxjs-esm": "^3.0.0", - "micromark-util-combine-extensions": "^2.0.0", - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "lodash": "^4.17.4" } }, - "node_modules/micromark-extension-mdxjs-esm": { - "version": "3.0.0", + "node_modules/json-schema-merge-allof": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", + "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", "license": "MIT", "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" + "compute-lcm": "^1.1.2", + "json-schema-compare": "^0.2.2", + "lodash": "^4.17.20" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=12.0.0" } }, - "node_modules/micromark-factory-destination": { - "version": "2.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", + "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/micromark-factory-label": { - "version": "2.0.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "dev": true, + "peer": true, "dependencies": { - "devlop": "^1.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" + "source-map-support": "^0.5.5" } }, - "node_modules/micromark-factory-mdx-expression": { - "version": "2.0.1", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" + "json-buffer": "3.0.1" } }, - "node_modules/micromark-factory-space": { - "version": "2.0.0", - "funding": [ - { - "type": "GitHub Sponsors", + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", + "dependencies": { + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/launch-editor": { + "version": "2.13.2", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.13.2.tgz", + "integrity": "sha512-4VVDnbOpLXy/s8rdRCSXb+zfMeFR0WlJWpET1iA9CQdlZDfwyLjUuGQzXU4VeOoey6AicSAluWan7Etga6Kcmg==", + "dependencies": { + "picocolors": "^1.1.1", + "shell-quote": "^1.8.3" + } + }, + "node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "dev": true, + "peer": true, + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" + } + }, + "node_modules/less-loader": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", + "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "dev": true, + "peer": true, + "dependencies": { + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/less/node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "dev": true, + "peer": true, + "dependencies": { + "webpack-sources": "^3.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-sources": { + "optional": true + } + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/liquid-json": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz", + "integrity": "sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", + "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "peer": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lunr": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" + }, + "node_modules/lunr-languages": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/lunr-languages/-/lunr-languages-1.20.0.tgz", + "integrity": "sha512-3LVgE7ekWXt04NBci/hjm+NXJxXZeRXuyClL0kA0HONyBOjxhP3ZQkuWIM4Ok3pbeptUW/rj3XcJcJuJVPwPYA==" + }, + "node_modules/magic-string": { + "version": "0.30.1", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.1.tgz", + "integrity": "sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==" + }, + "node_modules/markdown-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", + "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/mdast-util-definitions/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-directive": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz", + "integrity": "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/mdast-util-frontmatter": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz", + "integrity": "sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "escape-string-regexp": "^5.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-extension-frontmatter": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing/node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown/node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "peer": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-directive": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz", + "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-frontmatter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz", + "integrity": "sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==", + "dependencies": { + "fault": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-frontmatter/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-frontmatter/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz", + "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz", + "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-extension-mdx-md": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^3.0.0", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs-esm": "^3.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-destination/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-destination/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-factory-mdx-expression": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz", + "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-space/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", "url": "https://github.com/sponsors/unifiedjs" }, { @@ -17701,14 +20261,15 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-factory-title": { - "version": "2.0.0", + "node_modules/micromark-factory-title/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17719,16 +20280,30 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, + "node_modules/micromark-factory-title/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-factory-whitespace": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", "funding": [ { "type": "GitHub Sponsors", @@ -17739,7 +20314,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", @@ -17747,8 +20321,29 @@ "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-character": { + "node_modules/micromark-factory-whitespace/node_modules/micromark-factory-space": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17759,14 +20354,64 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, + "node_modules/micromark-factory-whitespace/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-util-chunked": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", "funding": [ { "type": "GitHub Sponsors", @@ -17777,13 +20422,29 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0" } }, + "node_modules/micromark-util-chunked/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-util-classify-character": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17794,15 +20455,50 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, + "node_modules/micromark-util-classify-character/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-util-combine-extensions": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", "funding": [ { "type": "GitHub Sponsors", @@ -17813,14 +20509,15 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-chunked": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", "funding": [ { "type": "GitHub Sponsors", @@ -17831,13 +20528,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "micromark-util-symbol": "^2.0.0" } }, "node_modules/micromark-util-decode-numeric-character-reference/node_modules/micromark-util-symbol": { - "version": "1.1.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17847,11 +20545,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-decode-string": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", "funding": [ { "type": "GitHub Sponsors", @@ -17862,7 +20561,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^2.0.0", @@ -17870,8 +20568,10 @@ "micromark-util-symbol": "^2.0.0" } }, - "node_modules/micromark-util-decode-string/node_modules/micromark-util-decode-numeric-character-reference": { - "version": "2.0.1", + "node_modules/micromark-util-decode-string/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17882,13 +20582,30 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-util-symbol": "^2.0.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, + "node_modules/micromark-util-decode-string/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-util-encode": { - "version": "1.1.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", "funding": [ { "type": "GitHub Sponsors", @@ -17898,11 +20615,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-events-to-acorn": { - "version": "2.0.2", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz", + "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==", "funding": [ { "type": "GitHub Sponsors", @@ -17913,9 +20631,7 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "@types/acorn": "^4.0.0", "@types/estree": "^1.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", @@ -17925,8 +20641,25 @@ "vfile-message": "^4.0.0" } }, + "node_modules/micromark-util-events-to-acorn/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, "node_modules/micromark-util-html-tag-name": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", "funding": [ { "type": "GitHub Sponsors", @@ -17936,11 +20669,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-normalize-identifier": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17951,13 +20685,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0" } }, - "node_modules/micromark-util-resolve-all": { - "version": "2.0.0", + "node_modules/micromark-util-normalize-identifier/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -17967,14 +20702,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT", - "dependencies": { - "micromark-util-types": "^2.0.0" - } + ] }, - "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", "funding": [ { "type": "GitHub Sponsors", @@ -17985,15 +20718,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-encode": { - "version": "2.0.0", + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", "funding": [ { "type": "GitHub Sponsors", @@ -18004,10 +20736,16 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT" + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", + "node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", "funding": [ { "type": "GitHub Sponsors", @@ -18018,16 +20756,15 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-subtokenize/node_modules/micromark-util-chunked": { - "version": "1.1.0", + "node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -18037,14 +20774,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } + ] }, - "node_modules/micromark-util-subtokenize/node_modules/micromark-util-symbol": { - "version": "1.1.0", + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", "funding": [ { "type": "GitHub Sponsors", @@ -18055,10 +20790,17 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT" + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/micromark-util-subtokenize/node_modules/micromark-util-types": { - "version": "1.1.0", + "node_modules/micromark-util-subtokenize/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -18068,11 +20810,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-symbol": { - "version": "2.0.0", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", "funding": [ { "type": "GitHub Sponsors", @@ -18082,11 +20825,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-types": { - "version": "2.0.0", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", "funding": [ { "type": "GitHub Sponsors", @@ -18096,11 +20840,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, - "node_modules/micromark/node_modules/micromark-util-decode-numeric-character-reference": { + "node_modules/micromark/node_modules/micromark-factory-space": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", "funding": [ { "type": "GitHub Sponsors", @@ -18111,13 +20856,15 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { - "micromark-util-symbol": "^2.0.0" + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark/node_modules/micromark-util-encode": { - "version": "2.0.0", + "node_modules/micromark/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", "funding": [ { "type": "GitHub Sponsors", @@ -18128,10 +20875,15 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT" + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/micromark/node_modules/micromark-util-subtokenize": { - "version": "2.0.0", + "node_modules/micromark/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -18141,20 +20893,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT", - "dependencies": { - "devlop": "^1.0.0", - "micromark-util-chunked": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } + ] }, "node_modules/micromatch": { - "version": "4.0.5", - "license": "MIT", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -18165,6 +20911,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "license": "MIT", "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" @@ -18174,13 +20921,15 @@ } }, "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "license": "MIT" }, "node_modules/mime": { "version": "1.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "bin": { "mime": "cli.js" }, @@ -18190,13 +20939,16 @@ }, "node_modules/mime-db": { "version": "1.52.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-format": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz", + "integrity": "sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==", "license": "Apache-2.0", "dependencies": { "charset": "^1.0.0" @@ -18204,7 +20956,8 @@ }, "node_modules/mime-types": { "version": "2.1.35", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { "mime-db": "1.52.0" }, @@ -18214,28 +20967,31 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "engines": { "node": ">=6" } }, "node_modules/mimic-response": { - "version": "3.1.0", - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mini-css-extract-plugin": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", - "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "dev": true, + "peer": true, "dependencies": { - "schema-utils": "^4.0.0", - "tapable": "^2.2.1" + "schema-utils": "^4.0.0" }, "engines": { "node": ">= 12.13.0" @@ -18250,16 +21006,19 @@ }, "node_modules/minimalistic-assert": { "version": "1.0.1", - "license": "ISC" + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" }, "node_modules/minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" }, "node_modules/minimatch": { - "version": "3.1.2", - "license": "ISC", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -18267,59 +21026,54 @@ "node": "*" } }, - "node_modules/minimatch/node_modules/brace-expansion": { - "version": "1.1.11", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/minimist": { "version": "1.2.8", - "license": "MIT", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "7.0.4", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, "node_modules/mkdirp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", - "integrity": "sha512-OHsdUcVAQ6pOtg5JYWpCBo9W/GySVuwvP9hueRMW7UqshC0tbfzLv8wjySTPm3tfUZ/21CE9E1pJagOA91Pxew==", - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, "engines": { - "node": "*" + "node": ">=10" } }, "node_modules/mri": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/mrmime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", - "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true, + "peer": true, "engines": { "node": ">=10" } }, "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/multicast-dns": { "version": "7.2.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" @@ -18330,7 +21084,8 @@ }, "node_modules/mustache": { "version": "4.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", "bin": { "mustache": "bin/mustache" } @@ -18344,7 +21099,8 @@ }, "node_modules/mz": { "version": "2.7.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", @@ -18352,14 +21108,15 @@ } }, "node_modules/nanoid": { - "version": "3.3.7", + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -18374,9 +21131,9 @@ "dev": true }, "node_modules/needle": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", - "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.5.0.tgz", + "integrity": "sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==", "dev": true, "optional": true, "peer": true, @@ -18406,20 +21163,23 @@ } }, "node_modules/negotiator": { - "version": "0.6.3", - "license": "MIT", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "node_modules/neotraverse": { "version": "0.6.15", "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.15.tgz", "integrity": "sha512-HZpdkco+JeXq0G+WWpMJ4NsX3pqb5O7eR9uGz3FfoFt+LYzU8iRWp49nJtud6hsDoywM8tIrDo3gjgmOqJA8LA==", + "license": "MIT", "engines": { "node": ">= 10" } @@ -18442,7 +21202,8 @@ }, "node_modules/no-case": { "version": "3.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" @@ -18457,8 +21218,9 @@ "peer": true }, "node_modules/node-emoji": { - "version": "2.1.3", - "license": "MIT", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", + "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", "dependencies": { "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", @@ -18471,6 +21233,8 @@ }, "node_modules/node-fetch": { "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" @@ -18489,6 +21253,8 @@ }, "node_modules/node-fetch-h2": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz", + "integrity": "sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==", "license": "MIT", "dependencies": { "http2-client": "^1.2.5" @@ -18497,17 +21263,42 @@ "node": "4.x || >=6.0.0" } }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.4.0.tgz", + "integrity": "sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==", + "dev": true, + "peer": true, "engines": { "node": ">= 6.13.0" } }, "node_modules/node-gyp-build": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", - "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "dev": true, "optional": true, "peer": true, @@ -18524,11 +21315,12 @@ "dev": true }, "node_modules/node-polyfill-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-QpG496dDBiaelQZu9wDcVvpLbtk7h9Ctz693RaUMZBgl8DUoFToO90ZTLKq57gP7rwKqYtGbMBXkcEgLSag2jQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", + "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", + "license": "MIT", "dependencies": { - "assert": "^2.1.0", + "assert": "^2.0.0", "browserify-zlib": "^0.2.0", "buffer": "^6.0.3", "console-browserify": "^1.2.0", @@ -18536,25 +21328,26 @@ "crypto-browserify": "^3.12.0", "domain-browser": "^4.22.0", "events": "^3.3.0", + "filter-obj": "^2.0.2", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", "process": "^0.11.10", - "punycode": "^2.3.0", + "punycode": "^2.1.1", "querystring-es3": "^0.2.1", - "readable-stream": "^4.4.2", + "readable-stream": "^4.0.0", "stream-browserify": "^3.0.0", "stream-http": "^3.2.0", "string_decoder": "^1.3.0", "timers-browserify": "^2.0.12", "tty-browserify": "^0.0.1", - "type-fest": "^4.4.0", - "url": "^0.11.3", - "util": "^0.12.5", + "type-fest": "^2.14.0", + "url": "^0.11.0", + "util": "^0.12.4", "vm-browserify": "^1.1.2" }, "engines": { - "node": ">=14" + "node": ">=12" }, "peerDependencies": { "webpack": ">=5" @@ -18564,6 +21357,7 @@ "version": "4.7.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", @@ -18575,28 +21369,19 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.33.0.tgz", - "integrity": "sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/node-readfiles": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", + "integrity": "sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==", "license": "MIT", "dependencies": { "es6-promise": "^3.2.1" } }, "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" + "version": "2.0.44", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", + "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==" }, "node_modules/nopt": { "version": "1.0.10", @@ -18614,18 +21399,33 @@ }, "node_modules/normalize-path": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "peer": true, "engines": { "node": ">=0.10.0" } }, + "node_modules/normalize-url": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.1.1.tgz", + "integrity": "sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/not": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/not/-/not-0.1.0.tgz", @@ -18633,7 +21433,8 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dependencies": { "path-key": "^3.0.0" }, @@ -18644,11 +21445,13 @@ "node_modules/nprogress": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", - "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==" + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", + "license": "MIT" }, "node_modules/nth-check": { "version": "2.1.1", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { "boolbase": "^1.0.0" }, @@ -18660,6 +21463,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" @@ -18675,10 +21479,56 @@ "webpack": "^4.0.0 || ^5.0.0" } }, + "node_modules/null-loader/node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/null-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/null-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/null-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, "node_modules/null-loader/node_modules/schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -18693,13 +21543,15 @@ } }, "node_modules/nwsapi": { - "version": "2.2.12", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz", - "integrity": "sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==", + "version": "2.2.23", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", "dev": true }, "node_modules/oas-kit-common": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/oas-kit-common/-/oas-kit-common-1.0.8.tgz", + "integrity": "sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==", "license": "BSD-3-Clause", "dependencies": { "fast-safe-stringify": "^2.0.7" @@ -18707,6 +21559,8 @@ }, "node_modules/oas-linter": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/oas-linter/-/oas-linter-3.2.2.tgz", + "integrity": "sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==", "license": "BSD-3-Clause", "dependencies": { "@exodus/schemasafe": "^1.0.0-rc.2", @@ -18719,6 +21573,8 @@ }, "node_modules/oas-resolver": { "version": "2.5.6", + "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", + "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", "license": "BSD-3-Clause", "dependencies": { "node-fetch-h2": "^2.3.0", @@ -18738,6 +21594,7 @@ "version": "2.5.6", "resolved": "https://registry.npmjs.org/oas-resolver-browser/-/oas-resolver-browser-2.5.6.tgz", "integrity": "sha512-Jw5elT/kwUJrnGaVuRWe1D7hmnYWB8rfDDjBnpQ+RYY/dzAewGXeTexXzt4fGEo6PUE4eqKqPWF79MZxxvMppA==", + "license": "BSD-3-Clause", "dependencies": { "node-fetch-h2": "^2.3.0", "oas-kit-common": "^1.0.8", @@ -18755,6 +21612,8 @@ }, "node_modules/oas-schema-walker": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", + "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", "license": "BSD-3-Clause", "funding": { "url": "https://github.com/Mermade/oas-kit?sponsor=1" @@ -18762,6 +21621,8 @@ }, "node_modules/oas-validator": { "version": "5.0.8", + "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", + "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", @@ -18779,7 +21640,8 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } @@ -18788,14 +21650,15 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/object-inspect": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", - "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "engines": { "node": ">= 0.4" }, @@ -18807,6 +21670,7 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1" @@ -18822,6 +21686,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -18840,6 +21705,7 @@ "version": "4.1.7", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", @@ -18857,11 +21723,13 @@ }, "node_modules/obuf": { "version": "1.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" }, "node_modules/on-finished": { "version": "2.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dependencies": { "ee-first": "1.1.1" }, @@ -18870,22 +21738,25 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "license": "MIT", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -18898,7 +21769,8 @@ }, "node_modules/open": { "version": "8.4.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -18912,9 +21784,10 @@ } }, "node_modules/openapi-to-postmanv2": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/openapi-to-postmanv2/-/openapi-to-postmanv2-4.24.0.tgz", - "integrity": "sha512-SfWo8fftwTVmBs61ZY9SciNlQ7ddSBmPS7NTBdf+LyjHdzr2/TNuvFjyftGJ7Jnm48oghi+R9At2geq1NoBOLA==", + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/openapi-to-postmanv2/-/openapi-to-postmanv2-4.25.0.tgz", + "integrity": "sha512-sIymbkQby0gzxt2Yez8YKB6hoISEel05XwGwNrAhr6+vxJWXNxkmssQc/8UEtVkuJ9ZfUXLkip9PYACIpfPDWg==", + "license": "Apache-2.0", "dependencies": { "ajv": "8.11.0", "ajv-draft-04": "1.0.0", @@ -18945,6 +21818,7 @@ "version": "8.11.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -18956,19 +21830,30 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/openapi-to-postmanv2/node_modules/ajv-draft-04": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", - "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", - "peerDependencies": { - "ajv": "^8.5.0" + "node_modules/openapi-to-postmanv2/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/openapi-to-postmanv2/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "bin": { + "js-yaml": "bin/js-yaml.js" } }, + "node_modules/openapi-to-postmanv2/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, "node_modules/opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", @@ -19004,7 +21889,8 @@ "node_modules/os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "license": "MIT" }, "node_modules/os-tmpdir": { "version": "1.0.2", @@ -19018,42 +21904,68 @@ }, "node_modules/p-cancelable": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", "engines": { "node": ">=12.20" } }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "engines": { + "node": ">=4" + } + }, "node_modules/p-limit": { - "version": "2.3.0", - "license": "MIT", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, "dependencies": { - "p-try": "^2.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { - "version": "5.0.0", - "license": "MIT", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "p-try": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "3.1.0", - "license": "MIT", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dependencies": { - "yocto-queue": "^0.1.0" + "aggregate-error": "^3.0.0" }, "engines": { "node": ">=10" @@ -19062,14 +21974,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-map": { - "version": "4.0.0", - "license": "MIT", + "node_modules/p-queue": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", "dependencies": { - "aggregate-error": "^3.0.0" + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -19077,7 +21991,10 @@ }, "node_modules/p-retry": { "version": "4.6.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "peer": true, "dependencies": { "@types/retry": "0.12.0", "retry": "^0.13.1" @@ -19086,16 +22003,30 @@ "node": ">=8" } }, + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/p-try": { "version": "2.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, "engines": { "node": ">=6" } }, "node_modules/package-json": { "version": "8.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", "dependencies": { "got": "^12.1.0", "registry-auth-token": "^5.0.1", @@ -19111,11 +22042,14 @@ }, "node_modules/pako": { "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", "license": "(MIT AND Zlib)" }, "node_modules/param-case": { "version": "3.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -19123,7 +22057,8 @@ }, "node_modules/parent-module": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dependencies": { "callsites": "^3.0.0" }, @@ -19132,15 +22067,15 @@ } }, "node_modules/parse-asn1": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz", - "integrity": "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==", + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", + "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", + "license": "ISC", "dependencies": { "asn1.js": "^4.10.1", "browserify-aes": "^1.2.0", "evp_bytestokey": "^1.0.3", - "hash-base": "~3.0", - "pbkdf2": "^3.1.2", + "pbkdf2": "^3.1.5", "safe-buffer": "^5.2.1" }, "engines": { @@ -19148,11 +22083,11 @@ } }, "node_modules/parse-entities": { - "version": "4.0.1", - "license": "MIT", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", "dependencies": { "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", "character-entities-legacy": "^3.0.0", "character-reference-invalid": "^2.0.0", "decode-named-character-reference": "^1.0.0", @@ -19166,12 +22101,14 @@ } }, "node_modules/parse-entities/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" }, "node_modules/parse-json": { "version": "5.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -19197,13 +22134,15 @@ }, "node_modules/parse-numeric-range": { "version": "1.3.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz", + "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" }, "node_modules/parse5": { - "version": "7.1.2", - "license": "MIT", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", "dependencies": { - "entities": "^4.4.0" + "entities": "^6.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" @@ -19228,6 +22167,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", + "license": "MIT", "dependencies": { "domhandler": "^5.0.3", "parse5": "^7.0.0" @@ -19249,16 +22189,29 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, + "node_modules/parse5/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/parseurl": { "version": "1.3.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "engines": { "node": ">= 0.8" } }, "node_modules/pascal-case": { "version": "3.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" @@ -19268,6 +22221,7 @@ "version": "0.12.7", "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "license": "MIT", "dependencies": { "process": "^0.11.1", "util": "^0.10.3" @@ -19275,18 +22229,23 @@ }, "node_modules/path-browserify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", "license": "MIT" }, "node_modules/path-exists": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "engines": { "node": ">=0.10.0" } @@ -19298,44 +22257,29 @@ }, "node_modules/path-key": { "version": "3.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, - "node_modules/path-scurry": { - "version": "1.10.1", - "license": "BlueOak-1.0.0", + "node_modules/path-to-regexp": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz", + "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.1.0", - "license": "ISC", - "engines": { - "node": "14 || >=16.14" + "isarray": "0.0.1" } }, - "node_modules/path-to-regexp": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", - "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==" - }, "node_modules/path-type": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "engines": { "node": ">=8" } @@ -19343,535 +22287,246 @@ "node_modules/path/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" }, "node_modules/path/node_modules/util": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/periscopic": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - } - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/piscina": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.0.0.tgz", - "integrity": "sha512-641nAmJS4k4iqpNUqfggqUBUMmlw0ZoM5VZKdQkV2e970Inn3Tk9kroCc1wpsYLD07vCwpys5iY0d3xI/9WkTg==", - "dev": true, - "peer": true, - "dependencies": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0" - }, - "optionalDependencies": { - "nice-napi": "^1.0.2" - } - }, - "node_modules/pkg-dir": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "find-up": "^6.3.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "6.3.0", - "license": "MIT", - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "p-limit": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/pkg-dir/node_modules/yocto-queue": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-up": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "license": "MIT", "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" + "inherits": "2.0.3" } }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", + "node_modules/pbkdf2": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", + "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", "license": "MIT", "dependencies": { - "p-limit": "^2.0.0" + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "ripemd160": "^2.0.3", + "safe-buffer": "^5.2.1", + "sha.js": "^2.4.12", + "to-buffer": "^1.2.1" }, "engines": { - "node": ">=6" + "node": ">= 0.10" } }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { - "node": ">=4" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">= 0.4" + "node": ">=6" } }, - "node_modules/postcss": { - "version": "8.4.47", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", - "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.1.0", - "source-map-js": "^1.2.1" - }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 6" } }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz", - "integrity": "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/piscina": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.0.0.tgz", + "integrity": "sha512-641nAmJS4k4iqpNUqfggqUBUMmlw0ZoM5VZKdQkV2e970Inn3Tk9kroCc1wpsYLD07vCwpys5iY0d3xI/9WkTg==", + "dev": true, + "peer": true, "dependencies": { - "postcss-selector-parser": "^7.0.0" - }, - "engines": { - "node": ">=18" + "eventemitter-asyncresource": "^1.0.0", + "hdr-histogram-js": "^2.0.1", + "hdr-histogram-percentiles-obj": "^3.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "optionalDependencies": { + "nice-napi": "^1.0.2" } }, - "node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": { + "node_modules/pkg-dir": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "find-up": "^6.3.0" }, "engines": { - "node": ">=4" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-calc": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", - "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dependencies": { - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.2" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dependencies": { - "postcss-value-parser": "^4.2.0" + "p-locate": "^6.0.0" }, "engines": { - "node": ">=7.6.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.4.6" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-functional-notation": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.7.tgz", - "integrity": "sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", - "@csstools/utilities": "^2.0.0" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">=18" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-hex-alpha": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz", - "integrity": "sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dependencies": { - "@csstools/utilities": "^2.0.0", - "postcss-value-parser": "^4.2.0" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=18" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-rebeccapurple": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz", - "integrity": "sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/utilities": "^2.0.0", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/postcss-colormin": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz", - "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==", - "dependencies": { - "browserslist": "^4.23.0", - "caniuse-api": "^3.0.0", - "colord": "^2.9.3", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/pkg-dir/node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12.20" }, - "peerDependencies": { - "postcss": "^8.4.31" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-convert-values": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz", - "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==", + "node_modules/pkijs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz", + "integrity": "sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==", + "license": "BSD-3-Clause", "dependencies": { - "browserslist": "^4.23.0", - "postcss-value-parser": "^4.2.0" + "@noble/hashes": "1.4.0", + "asn1js": "^3.0.6", + "bytestreamjs": "^2.0.1", + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.3", + "tslib": "^2.8.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=16.0.0" } }, - "node_modules/postcss-custom-media": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz", - "integrity": "sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" - }, + "node_modules/pkijs/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=4" } }, - "node_modules/postcss-custom-properties": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz", - "integrity": "sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/utilities": "^2.0.0", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "license": "MIT", "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 0.4" } }, - "node_modules/postcss-custom-selectors": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.4.tgz", - "integrity": "sha512-ASOXqNvDCE0dAJ/5qixxPeL1aOVGHGW2JwSy7HyjWNbnWTQCl+fDc968HY1jCmZI0+BaYT5CxsOiUhavpG/7eg==", + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/csstools" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "postcss-selector-parser": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">=4" + "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-dir-pseudo-class": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz", - "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==", + "node_modules/postcss-attribute-case-insensitive": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz", + "integrity": "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==", "funding": [ { "type": "github", @@ -19882,6 +22537,7 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { "postcss-selector-parser": "^7.0.0" }, @@ -19892,10 +22548,11 @@ "postcss": "^8.4" } }, - "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -19904,68 +22561,41 @@ "node": ">=4" } }, - "node_modules/postcss-discard-comments": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz", - "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==", - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz", - "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==", - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-discard-empty": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz", - "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==", - "engines": { - "node": "^14 || ^16 || >=18.0" + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-discard-overridden": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz", - "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==", "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.2.2" } }, - "node_modules/postcss-discard-unused": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz", - "integrity": "sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==", + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.16" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=7.6.0" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.4.6" } }, - "node_modules/postcss-double-position-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz", - "integrity": "sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==", + "node_modules/postcss-color-functional-notation": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz", + "integrity": "sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==", "funding": [ { "type": "github", @@ -19976,10 +22606,13 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^4.0.0", - "@csstools/utilities": "^2.0.0", - "postcss-value-parser": "^4.2.0" + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" }, "engines": { "node": ">=18" @@ -19988,10 +22621,10 @@ "postcss": "^8.4" } }, - "node_modules/postcss-focus-visible": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz", - "integrity": "sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==", + "node_modules/postcss-color-hex-alpha": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz", + "integrity": "sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==", "funding": [ { "type": "github", @@ -20002,8 +22635,10 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.0.0" + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { "node": ">=18" @@ -20012,22 +22647,10 @@ "postcss": "^8.4" } }, - "node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-focus-within": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz", - "integrity": "sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==", + "node_modules/postcss-color-rebeccapurple": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz", + "integrity": "sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==", "funding": [ { "type": "github", @@ -20038,8 +22661,10 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "postcss-selector-parser": "^7.0.0" + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { "node": ">=18" @@ -20048,30 +22673,44 @@ "postcss": "^8.4" } }, - "node_modules/postcss-focus-within/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/postcss-colormin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz", + "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==", + "license": "MIT", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0", + "colord": "^2.9.3", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=4" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "node_modules/postcss-convert-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz", + "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4.31" } }, - "node_modules/postcss-gap-properties": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz", - "integrity": "sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==", + "node_modules/postcss-custom-media": { + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz", + "integrity": "sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==", "funding": [ { "type": "github", @@ -20082,6 +22721,13 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", + "dependencies": { + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" + }, "engines": { "node": ">=18" }, @@ -20089,10 +22735,10 @@ "postcss": "^8.4" } }, - "node_modules/postcss-image-set-function": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz", - "integrity": "sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==", + "node_modules/postcss-custom-properties": { + "version": "14.0.6", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz", + "integrity": "sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==", "funding": [ { "type": "github", @@ -20103,7 +22749,11 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" }, @@ -20114,10 +22764,10 @@ "postcss": "^8.4" } }, - "node_modules/postcss-lab-function": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.7.tgz", - "integrity": "sha512-+ONj2bpOQfsCKZE2T9VGMyVVdGcGUpr7u3SVfvkJlvhTRmDCfY25k4Jc8fubB9DclAPR4+w8uVtDZmdRgdAHig==", + "node_modules/postcss-custom-selectors": { + "version": "8.0.5", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz", + "integrity": "sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==", "funding": [ { "type": "github", @@ -20128,12 +22778,12 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT", "dependencies": { - "@csstools/css-color-parser": "^3.0.7", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", - "@csstools/utilities": "^2.0.0" + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "postcss-selector-parser": "^7.0.0" }, "engines": { "node": ">=18" @@ -20142,31 +22792,23 @@ "postcss": "^8.4" } }, - "node_modules/postcss-loader": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz", - "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==", + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { - "cosmiconfig": "^8.3.5", - "jiti": "^1.20.0", - "semver": "^7.5.4" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "node": ">=4" } }, - "node_modules/postcss-logical": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.0.0.tgz", - "integrity": "sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==", + "node_modules/postcss-dir-pseudo-class": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz", + "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==", "funding": [ { "type": "github", @@ -20177,8 +22819,9 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { "node": ">=18" @@ -20187,29 +22830,24 @@ "postcss": "^8.4" } }, - "node_modules/postcss-merge-idents": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz", - "integrity": "sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==", + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { - "cssnano-utils": "^4.0.2", - "postcss-value-parser": "^4.2.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=4" } }, - "node_modules/postcss-merge-longhand": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz", - "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.1.1" - }, + "node_modules/postcss-discard-comments": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz", + "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==", + "license": "MIT", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -20217,16 +22855,11 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-merge-rules": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz", - "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==", - "dependencies": { - "browserslist": "^4.23.0", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.2", - "postcss-selector-parser": "^6.0.16" - }, + "node_modules/postcss-discard-duplicates": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz", + "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==", + "license": "MIT", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -20234,13 +22867,11 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-font-values": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz", - "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/postcss-discard-empty": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz", + "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==", + "license": "MIT", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -20248,15 +22879,11 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-gradients": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz", - "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==", - "dependencies": { - "colord": "^2.9.3", - "cssnano-utils": "^4.0.2", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/postcss-discard-overridden": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz", + "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==", + "license": "MIT", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -20264,14 +22891,13 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-params": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz", - "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==", + "node_modules/postcss-discard-unused": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz", + "integrity": "sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==", + "license": "MIT", "dependencies": { - "browserslist": "^4.23.0", - "cssnano-utils": "^4.0.2", - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.16" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -20280,51 +22906,63 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-selectors": { + "node_modules/postcss-double-position-gradients": { "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz", - "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz", + "integrity": "sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "postcss-selector-parser": "^6.0.16" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", - "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", - "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "node_modules/postcss-focus-visible": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz", + "integrity": "sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^7.0.0", - "postcss-value-parser": "^4.1.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4" } }, - "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -20333,24 +22971,36 @@ "node": ">=4" } }, - "node_modules/postcss-modules-scope": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", - "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "node_modules/postcss-focus-within": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz", + "integrity": "sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4" } }, - "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/postcss-focus-within/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -20359,23 +23009,19 @@ "node": ">=4" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "license": "ISC", - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "license": "MIT", "peerDependencies": { "postcss": "^8.1.0" } }, - "node_modules/postcss-nesting": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz", - "integrity": "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==", + "node_modules/postcss-gap-properties": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz", + "integrity": "sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==", "funding": [ { "type": "github", @@ -20386,11 +23032,7 @@ "url": "https://opencollective.com/csstools" } ], - "dependencies": { - "@csstools/selector-resolve-nested": "^3.0.0", - "@csstools/selector-specificity": "^5.0.0", - "postcss-selector-parser": "^7.0.0" - }, + "license": "MIT-0", "engines": { "node": ">=18" }, @@ -20398,10 +23040,10 @@ "postcss": "^8.4" } }, - "node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz", - "integrity": "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==", + "node_modules/postcss-image-set-function": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz", + "integrity": "sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==", "funding": [ { "type": "github", @@ -20412,17 +23054,22 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { "node": ">=18" }, "peerDependencies": { - "postcss-selector-parser": "^7.0.0" + "postcss": "^8.4" } }, - "node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", - "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "node_modules/postcss-lab-function": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz", + "integrity": "sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==", "funding": [ { "type": "github", @@ -20433,83 +23080,76 @@ "url": "https://opencollective.com/csstools" } ], - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.0.0" - } - }, - "node_modules/postcss-nesting/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz", - "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==", - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-normalize-display-values": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz", - "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==", + "license": "MIT-0", "dependencies": { - "postcss-value-parser": "^4.2.0" + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-positions": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz", - "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==", + "node_modules/postcss-loader": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.3.tgz", + "integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==", + "dev": true, + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "cosmiconfig": "^8.2.0", + "jiti": "^1.18.2", + "semver": "^7.3.8" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz", - "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==", + "node_modules/postcss-logical": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.1.0.tgz", + "integrity": "sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-string": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz", - "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==", + "node_modules/postcss-merge-idents": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz", + "integrity": "sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==", + "license": "MIT", "dependencies": { + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -20519,12 +23159,14 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz", - "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==", + "node_modules/postcss-merge-longhand": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz", + "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==", + "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.1.1" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -20533,13 +23175,16 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-unicode": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz", - "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==", + "node_modules/postcss-merge-rules": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz", + "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==", + "license": "MIT", "dependencies": { "browserslist": "^4.23.0", - "postcss-value-parser": "^4.2.0" + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.2", + "postcss-selector-parser": "^6.0.16" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -20548,10 +23193,11 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-url": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz", - "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==", + "node_modules/postcss-minify-font-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz", + "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -20562,11 +23208,14 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz", - "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==", + "node_modules/postcss-minify-gradients": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz", + "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==", + "license": "MIT", "dependencies": { + "colord": "^2.9.3", + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -20576,32 +23225,13 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-opacity-percentage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz", - "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==", - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-ordered-values": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz", - "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==", + "node_modules/postcss-minify-params": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz", + "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==", + "license": "MIT", "dependencies": { + "browserslist": "^4.23.0", "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, @@ -20612,176 +23242,52 @@ "postcss": "^8.4.31" } }, - "node_modules/postcss-overflow-shorthand": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz", - "integrity": "sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "peerDependencies": { - "postcss": "^8" - } - }, - "node_modules/postcss-place": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz", - "integrity": "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/postcss-minify-selectors": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz", + "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==", + "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": ">=18" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.4.31" } }, - "node_modules/postcss-preset-env": { - "version": "10.1.3", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.3.tgz", - "integrity": "sha512-9qzVhcMFU/MnwYHyYpJz4JhGku/4+xEiPTmhn0hj3IxnUYlEF9vbh7OC1KoLAnenS6Fgg43TKNp9xcuMeAi4Zw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/postcss-cascade-layers": "^5.0.1", - "@csstools/postcss-color-function": "^4.0.7", - "@csstools/postcss-color-mix-function": "^3.0.7", - "@csstools/postcss-content-alt-text": "^2.0.4", - "@csstools/postcss-exponential-functions": "^2.0.6", - "@csstools/postcss-font-format-keywords": "^4.0.0", - "@csstools/postcss-gamut-mapping": "^2.0.7", - "@csstools/postcss-gradients-interpolation-method": "^5.0.7", - "@csstools/postcss-hwb-function": "^4.0.7", - "@csstools/postcss-ic-unit": "^4.0.0", - "@csstools/postcss-initial": "^2.0.0", - "@csstools/postcss-is-pseudo-class": "^5.0.1", - "@csstools/postcss-light-dark-function": "^2.0.7", - "@csstools/postcss-logical-float-and-clear": "^3.0.0", - "@csstools/postcss-logical-overflow": "^2.0.0", - "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", - "@csstools/postcss-logical-resize": "^3.0.0", - "@csstools/postcss-logical-viewport-units": "^3.0.3", - "@csstools/postcss-media-minmax": "^2.0.6", - "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4", - "@csstools/postcss-nested-calc": "^4.0.0", - "@csstools/postcss-normalize-display-values": "^4.0.0", - "@csstools/postcss-oklab-function": "^4.0.7", - "@csstools/postcss-progressive-custom-properties": "^4.0.0", - "@csstools/postcss-random-function": "^1.0.2", - "@csstools/postcss-relative-color-syntax": "^3.0.7", - "@csstools/postcss-scope-pseudo-class": "^4.0.1", - "@csstools/postcss-sign-functions": "^1.1.1", - "@csstools/postcss-stepped-value-functions": "^4.0.6", - "@csstools/postcss-text-decoration-shorthand": "^4.0.1", - "@csstools/postcss-trigonometric-functions": "^4.0.6", - "@csstools/postcss-unset-value": "^4.0.0", - "autoprefixer": "^10.4.19", - "browserslist": "^4.23.1", - "css-blank-pseudo": "^7.0.1", - "css-has-pseudo": "^7.0.2", - "css-prefers-color-scheme": "^10.0.0", - "cssdb": "^8.2.3", - "postcss-attribute-case-insensitive": "^7.0.1", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^7.0.7", - "postcss-color-hex-alpha": "^10.0.0", - "postcss-color-rebeccapurple": "^10.0.0", - "postcss-custom-media": "^11.0.5", - "postcss-custom-properties": "^14.0.4", - "postcss-custom-selectors": "^8.0.4", - "postcss-dir-pseudo-class": "^9.0.1", - "postcss-double-position-gradients": "^6.0.0", - "postcss-focus-visible": "^10.0.1", - "postcss-focus-within": "^9.0.1", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^6.0.0", - "postcss-image-set-function": "^7.0.0", - "postcss-lab-function": "^7.0.7", - "postcss-logical": "^8.0.0", - "postcss-nesting": "^13.0.1", - "postcss-opacity-percentage": "^3.0.0", - "postcss-overflow-shorthand": "^6.0.0", - "postcss-page-break": "^3.0.4", - "postcss-place": "^10.0.0", - "postcss-pseudo-class-any-link": "^10.0.1", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^8.0.1" - }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "engines": { - "node": ">=18" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.1.0" } }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz", - "integrity": "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dependencies": { - "postcss-selector-parser": "^7.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">=18" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.1.0" } }, - "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -20790,61 +23296,50 @@ "node": ">=4" } }, - "node_modules/postcss-reduce-idents": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz", - "integrity": "sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==", + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dependencies": { - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.1.0" } }, - "node_modules/postcss-reduce-initial": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz", - "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==", + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "dependencies": { - "browserslist": "^4.23.0", - "caniuse-api": "^3.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=4" } }, - "node_modules/postcss-reduce-transforms": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz", - "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dependencies": { - "postcss-value-parser": "^4.2.0" + "icss-utils": "^5.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "peerDependencies": { - "postcss": "^8.0.3" + "postcss": "^8.1.0" } }, - "node_modules/postcss-selector-not": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz", - "integrity": "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==", + "node_modules/postcss-nesting": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.2.tgz", + "integrity": "sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==", "funding": [ { "type": "github", @@ -20855,7 +23350,10 @@ "url": "https://opencollective.com/csstools" } ], + "license": "MIT-0", "dependencies": { + "@csstools/selector-resolve-nested": "^3.1.0", + "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, "engines": { @@ -20865,81 +23363,68 @@ "postcss": "^8.4" } }, - "node_modules/postcss-selector-not/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-sort-media-queries": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz", - "integrity": "sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==", - "dependencies": { - "sort-css-media-queries": "2.2.0" - }, + "node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz", + "integrity": "sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=14.0.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.4.23" + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/postcss-svgo": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz", - "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^3.2.0" - }, + "node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": "^14 || ^16 || >= 18" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/postcss-unique-selectors": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz", - "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==", + "node_modules/postcss-nesting/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.16" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=4" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/postcss-zindex": { + "node_modules/postcss-normalize-charset": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz", - "integrity": "sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz", + "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==", + "license": "MIT", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -20947,1619 +23432,1875 @@ "postcss": "^8.4.31" } }, - "node_modules/postman-code-generators": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/postman-code-generators/-/postman-code-generators-1.13.0.tgz", - "integrity": "sha512-rbKtX+PWp+4McQpAncnRCUKqDiynt4fDB1I7AzrsvBAQc74ab6k6K3IP8qvf0icqiPuf9nYHCSdy/LB922dQLQ==", - "hasInstallScript": true, + "node_modules/postcss-normalize-display-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz", + "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==", + "license": "MIT", "dependencies": { - "async": "3.2.2", - "detect-package-manager": "3.0.2", - "lodash": "4.17.21", - "path": "0.12.7", - "postman-collection": "^4.4.0", - "shelljs": "0.8.5" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/postman-code-generators/node_modules/async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" - }, - "node_modules/postman-collection": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/postman-collection/-/postman-collection-4.5.0.tgz", - "integrity": "sha512-152JSW9pdbaoJihwjc7Q8lc3nPg/PC9lPTHdMk7SHnHhu/GBJB7b2yb9zG7Qua578+3PxkQ/HYBuXpDSvsf7GQ==", - "dependencies": { - "@faker-js/faker": "5.5.3", - "file-type": "3.9.0", - "http-reasons": "0.1.0", - "iconv-lite": "0.6.3", - "liquid-json": "0.3.1", - "lodash": "4.17.21", - "mime-format": "2.0.1", - "mime-types": "2.1.35", - "postman-url-encoder": "3.0.5", - "semver": "7.6.3", - "uuid": "8.3.2" + "node": "^14 || ^16 || >=18.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/postman-collection/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/postcss-normalize-positions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz", + "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==", + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postman-collection/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" + "node": "^14 || ^16 || >=18.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/postman-url-encoder": { - "version": "3.0.5", - "license": "Apache-2.0", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz", + "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==", + "license": "MIT", "dependencies": { - "punycode": "^2.1.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pretty-error": { - "version": "4.0.0", + "node_modules/postcss-normalize-string": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz", + "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==", "license": "MIT", "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz", + "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==", + "license": "MIT", "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, + "node_modules/postcss-normalize-unicode": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz", + "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/pretty-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", - "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "node_modules/postcss-normalize-url": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz", + "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=4" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/prism-react-renderer": { - "version": "2.3.1", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz", + "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==", "license": "MIT", "dependencies": { - "@types/prismjs": "^1.26.0", - "clsx": "^2.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "react": ">=16.0.0" + "postcss": "^8.4.31" } }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", + "node_modules/postcss-opacity-percentage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz", + "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/process": { - "version": "0.11.10", + "node_modules/postcss-ordered-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz", + "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==", "license": "MIT", + "dependencies": { + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 0.6.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/prompts": { - "version": "2.4.2", - "license": "MIT", + "node_modules/postcss-overflow-shorthand": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz", + "integrity": "sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/prop-types": { - "version": "15.8.1", + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "peerDependencies": { + "postcss": "^8" } }, - "node_modules/property-information": { - "version": "6.4.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/postcss-place": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz", + "integrity": "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/proto-list": { - "version": "1.2.4", - "license": "ISC" + "node_modules/postcss-preset-env": { + "version": "10.6.1", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.6.1.tgz", + "integrity": "sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/postcss-alpha-function": "^1.0.1", + "@csstools/postcss-cascade-layers": "^5.0.2", + "@csstools/postcss-color-function": "^4.0.12", + "@csstools/postcss-color-function-display-p3-linear": "^1.0.1", + "@csstools/postcss-color-mix-function": "^3.0.12", + "@csstools/postcss-color-mix-variadic-function-arguments": "^1.0.2", + "@csstools/postcss-content-alt-text": "^2.0.8", + "@csstools/postcss-contrast-color-function": "^2.0.12", + "@csstools/postcss-exponential-functions": "^2.0.9", + "@csstools/postcss-font-format-keywords": "^4.0.0", + "@csstools/postcss-gamut-mapping": "^2.0.11", + "@csstools/postcss-gradients-interpolation-method": "^5.0.12", + "@csstools/postcss-hwb-function": "^4.0.12", + "@csstools/postcss-ic-unit": "^4.0.4", + "@csstools/postcss-initial": "^2.0.1", + "@csstools/postcss-is-pseudo-class": "^5.0.3", + "@csstools/postcss-light-dark-function": "^2.0.11", + "@csstools/postcss-logical-float-and-clear": "^3.0.0", + "@csstools/postcss-logical-overflow": "^2.0.0", + "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", + "@csstools/postcss-logical-resize": "^3.0.0", + "@csstools/postcss-logical-viewport-units": "^3.0.4", + "@csstools/postcss-media-minmax": "^2.0.9", + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.5", + "@csstools/postcss-nested-calc": "^4.0.0", + "@csstools/postcss-normalize-display-values": "^4.0.1", + "@csstools/postcss-oklab-function": "^4.0.12", + "@csstools/postcss-position-area-property": "^1.0.0", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/postcss-property-rule-prelude-list": "^1.0.0", + "@csstools/postcss-random-function": "^2.0.1", + "@csstools/postcss-relative-color-syntax": "^3.0.12", + "@csstools/postcss-scope-pseudo-class": "^4.0.1", + "@csstools/postcss-sign-functions": "^1.1.4", + "@csstools/postcss-stepped-value-functions": "^4.0.9", + "@csstools/postcss-syntax-descriptor-syntax-production": "^1.0.1", + "@csstools/postcss-system-ui-font-family": "^1.0.0", + "@csstools/postcss-text-decoration-shorthand": "^4.0.3", + "@csstools/postcss-trigonometric-functions": "^4.0.9", + "@csstools/postcss-unset-value": "^4.0.0", + "autoprefixer": "^10.4.23", + "browserslist": "^4.28.1", + "css-blank-pseudo": "^7.0.1", + "css-has-pseudo": "^7.0.3", + "css-prefers-color-scheme": "^10.0.0", + "cssdb": "^8.6.0", + "postcss-attribute-case-insensitive": "^7.0.1", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^7.0.12", + "postcss-color-hex-alpha": "^10.0.0", + "postcss-color-rebeccapurple": "^10.0.0", + "postcss-custom-media": "^11.0.6", + "postcss-custom-properties": "^14.0.6", + "postcss-custom-selectors": "^8.0.5", + "postcss-dir-pseudo-class": "^9.0.1", + "postcss-double-position-gradients": "^6.0.4", + "postcss-focus-visible": "^10.0.1", + "postcss-focus-within": "^9.0.1", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^6.0.0", + "postcss-image-set-function": "^7.0.0", + "postcss-lab-function": "^7.0.12", + "postcss-logical": "^8.1.0", + "postcss-nesting": "^13.0.2", + "postcss-opacity-percentage": "^3.0.0", + "postcss-overflow-shorthand": "^6.0.0", + "postcss-page-break": "^3.0.4", + "postcss-place": "^10.0.0", + "postcss-pseudo-class-any-link": "^10.0.1", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^8.0.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } }, - "node_modules/proxy-addr": { - "version": "2.0.7", + "node_modules/postcss-preset-env/node_modules/autoprefixer": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", + "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "browserslist": "^4.28.2", + "caniuse-lite": "^1.0.30001787", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">= 0.10" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", + "node_modules/postcss-preset-env/node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", "license": "MIT", "engines": { - "node": ">= 0.10" + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "node_modules/postcss-pseudo-class-any-link": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz", + "integrity": "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", - "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==" - }, - "node_modules/punycode": { - "version": "2.3.1", + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pupa": { - "version": "3.1.0", + "node_modules/postcss-reduce-idents": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz", + "integrity": "sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==", "license": "MIT", "dependencies": { - "escape-goat": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=12.20" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pure-rand": { + "node_modules/postcss-reduce-initial": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", - "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] - }, - "node_modules/qs": { - "version": "6.11.0", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz", + "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==", + "license": "MIT", "dependencies": { - "side-channel": "^1.0.4" + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0" }, "engines": { - "node": ">=0.6" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "node_modules/postcss-reduce-transforms": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz", + "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.4.x" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/queue": { - "version": "6.0.2", + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", "license": "MIT", - "dependencies": { - "inherits": "~2.0.3" + "peerDependencies": { + "postcss": "^8.0.3" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", + "node_modules/postcss-selector-not": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz", + "integrity": "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==", "funding": [ { "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "url": "https://github.com/sponsors/csstools" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "opencollective", + "url": "https://opencollective.com/csstools" } ], - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "5.1.1", "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/randombytes": { - "version": "2.1.0", + "node_modules/postcss-selector-not/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "license": "MIT", "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "license": "MIT", + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/raw-body": { - "version": "2.5.1", + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 0.8" + "node": ">=4" } }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", + "node_modules/postcss-sort-media-queries": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz", + "integrity": "sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==", "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "sort-css-media-queries": "2.2.0" }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.4.23" } }, - "node_modules/react": { - "version": "18.2.0", + "node_modules/postcss-svgo": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz", + "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0" + "postcss-value-parser": "^4.2.0", + "svgo": "^3.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/react-dev-utils": { - "version": "12.0.1", + "node_modules/postcss-unique-selectors": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz", + "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.16.0", - "address": "^1.1.2", - "browserslist": "^4.18.1", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "detect-port-alt": "^1.1.6", - "escape-string-regexp": "^4.0.0", - "filesize": "^8.0.6", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.5.0", - "global-modules": "^2.0.0", - "globby": "^11.0.4", - "gzip-size": "^6.0.0", - "immer": "^9.0.7", - "is-root": "^2.1.0", - "loader-utils": "^3.2.0", - "open": "^8.4.0", - "pkg-up": "^3.1.0", - "prompts": "^2.4.2", - "react-error-overlay": "^6.0.11", - "recursive-readdir": "^2.2.2", - "shell-quote": "^1.7.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": ">=14" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.1", + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/postcss-zindex": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz", + "integrity": "sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==", "license": "MIT", "engines": { - "node": ">= 12.13.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/react-dom": { - "version": "18.2.0", - "license": "MIT", + "node_modules/postman-code-generators": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/postman-code-generators/-/postman-code-generators-1.14.2.tgz", + "integrity": "sha512-qZAyyowfQAFE4MSCu2KtMGGQE/+oG1JhMZMJNMdZHYCSfQiVVeKxgk3oI4+KJ3d1y5rrm2D6C6x+Z+7iyqm+fA==", + "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" + "async": "3.2.2", + "detect-package-manager": "3.0.2", + "lodash": "4.17.21", + "path": "0.12.7", + "postman-collection": "^4.4.0", + "shelljs": "0.8.5" }, - "peerDependencies": { - "react": "^18.2.0" + "engines": { + "node": ">=12" } }, - "node_modules/react-error-overlay": { - "version": "6.0.11", + "node_modules/postman-code-generators/node_modules/async": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", + "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==", "license": "MIT" }, - "node_modules/react-fast-compare": { - "version": "3.2.2", + "node_modules/postman-code-generators/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, - "node_modules/react-helmet-async": { - "version": "1.3.0", + "node_modules/postman-collection": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/postman-collection/-/postman-collection-4.5.0.tgz", + "integrity": "sha512-152JSW9pdbaoJihwjc7Q8lc3nPg/PC9lPTHdMk7SHnHhu/GBJB7b2yb9zG7Qua578+3PxkQ/HYBuXpDSvsf7GQ==", "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.12.5", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "react-fast-compare": "^3.2.0", - "shallowequal": "^1.1.0" + "@faker-js/faker": "5.5.3", + "file-type": "3.9.0", + "http-reasons": "0.1.0", + "iconv-lite": "0.6.3", + "liquid-json": "0.3.1", + "lodash": "4.17.21", + "mime-format": "2.0.1", + "mime-types": "2.1.35", + "postman-url-encoder": "3.0.5", + "semver": "7.6.3", + "uuid": "8.3.2" }, - "peerDependencies": { - "react": "^16.6.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/react-hook-form": { - "version": "7.49.3", + "node_modules/postman-collection/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "license": "MIT", - "engines": { - "node": ">=18", - "pnpm": "8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/react-hook-form" + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17 || ^18" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/react-is": { - "version": "16.13.1", + "node_modules/postman-collection/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, - "node_modules/react-json-view-lite": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-1.5.0.tgz", - "integrity": "sha512-nWqA1E4jKPklL2jvHWs6s+7Na0qNgw9HCP6xehdQJeg6nPBTFZgGwyko9Q0oj+jQWKTTVRS30u0toM5wiuL3iw==", - "engines": { - "node": ">=14" + "node_modules/postman-collection/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, - "peerDependencies": { - "react": "^16.13.1 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "license": "MIT" - }, - "node_modules/react-live": { - "version": "4.1.5", - "license": "MIT", + "node_modules/postman-url-encoder": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz", + "integrity": "sha512-jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA==", + "license": "Apache-2.0", "dependencies": { - "prism-react-renderer": "^2.0.6", - "sucrase": "^3.31.0", - "use-editable": "^2.3.3" + "punycode": "^2.1.1" }, "engines": { - "node": ">= 0.12.0", - "npm": ">= 2.0.0" + "node": ">=10" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" }, - "peerDependencies": { - "react": ">=18.0.0", - "react-dom": ">=18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-loadable": { - "name": "@docusaurus/react-loadable", - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz", - "integrity": "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==", + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "dependencies": { - "@types/react": "*" - }, - "peerDependencies": { - "react": "*" + "lodash": "^4.17.20", + "renderkid": "^3.0.0" } }, - "node_modules/react-loadable-ssr-addon-v5-slorber": { - "version": "1.0.1", - "license": "MIT", + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.10.3" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">=10.13.0" - }, - "peerDependencies": { - "react-loadable": "*", - "webpack": ">=4.41.1 || 5.x" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/react-magic-dropzone": { - "version": "1.0.1", - "license": "MIT" + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/react-markdown": { - "version": "8.0.7", + "node_modules/pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/prism-react-renderer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz", + "integrity": "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==", "dependencies": { - "@types/hast": "^2.0.0", - "@types/prop-types": "^15.0.0", - "@types/unist": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-whitespace": "^2.0.0", - "prop-types": "^15.0.0", - "property-information": "^6.0.0", - "react-is": "^18.0.0", - "remark-parse": "^10.0.0", - "remark-rehype": "^10.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.0", - "unified": "^10.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "@types/prismjs": "^1.26.0", + "clsx": "^2.0.0" }, "peerDependencies": { - "@types/react": ">=16", - "react": ">=16" + "react": ">=16.0.0" } }, - "node_modules/react-markdown/node_modules/@types/hast": { - "version": "2.3.9", + "node_modules/prismjs": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", "license": "MIT", - "dependencies": { - "@types/unist": "^2" + "engines": { + "node": ">=6" } }, - "node_modules/react-markdown/node_modules/@types/mdast": { - "version": "3.0.15", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dependencies": { - "@types/unist": "^2" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, - "node_modules/react-markdown/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/react-markdown/node_modules/hast-util-whitespace": { - "version": "2.0.1", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "node_modules/react-markdown/node_modules/mdast-util-from-markdown": { - "version": "1.3.1", - "license": "MIT", + "node_modules/property-information": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" + "xtend": "^4.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/react-markdown/node_modules/mdast-util-to-string": { - "version": "3.2.0", - "license": "MIT", + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dependencies": { - "@types/mdast": "^3.0.0" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.10" } }, - "node_modules/react-markdown/node_modules/micromark": { - "version": "3.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" } }, - "node_modules/react-markdown/node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" + "node_modules/proxy-from-env": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "engines": { + "node": ">=10" } }, - "node_modules/react-markdown/node_modules/micromark-factory-destination": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/react-markdown/node_modules/micromark-factory-label": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dev": true, "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" } }, - "node_modules/react-markdown/node_modules/micromark-factory-space": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/react-markdown/node_modules/micromark-factory-title": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "license": "MIT" }, - "node_modules/react-markdown/node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" } }, - "node_modules/react-markdown/node_modules/micromark-util-character": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/pupa": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.3.0.tgz", + "integrity": "sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==", "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "escape-goat": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-markdown/node_modules/micromark-util-chunked": { - "version": "1.1.0", + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, "funding": [ { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" }, { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" + "type": "opencollective", + "url": "https://opencollective.com/fast-check" } - ], + ] + }, + "node_modules/pvtsutils": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz", + "integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==", "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "tslib": "^2.8.1" } }, - "node_modules/react-markdown/node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/pvtsutils/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/pvutils": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz", + "integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==", "license": "MIT", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/react-markdown/node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/qs": { + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/react-markdown/node_modules/micromark-util-decode-string": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" } }, - "node_modules/react-markdown/node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "funding": [ { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/react-markdown/node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" + "type": "patreon", + "url": "https://www.patreon.com/feross" }, { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" + "type": "consulting", + "url": "https://feross.org/support" } - ], - "license": "MIT", + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "safe-buffer": "^5.1.0" } }, - "node_modules/react-markdown/node_modules/micromark-util-resolve-all": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", "license": "MIT", "dependencies": { - "micromark-util-types": "^1.0.0" + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" } }, - "node_modules/react-markdown/node_modules/micromark-util-sanitize-uri": { + "node_modules/range-parser": { "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/react-markdown/node_modules/micromark-util-symbol": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/react-markdown/node_modules/micromark-util-types": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } }, - "node_modules/react-markdown/node_modules/react-is": { - "version": "18.2.0", - "license": "MIT" + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, - "node_modules/react-markdown/node_modules/remark-parse": { - "version": "10.0.2", - "license": "MIT", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" + "loose-envify": "^1.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" } }, - "node_modules/react-markdown/node_modules/unified": { - "version": "10.1.2", - "license": "MIT", + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + }, + "node_modules/react-helmet-async": { + "name": "@slorber/react-helmet-async", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@slorber/react-helmet-async/-/react-helmet-async-1.3.0.tgz", + "integrity": "sha512-e9/OK8VhwUSc67diWI8Rb3I0YgI9/SBQtnhe9aEuK6MhZm7ntZZimXgwXnd8W96YTmSOb9M4d8LwhRZyhWr/1A==", "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/react-markdown/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" + "node_modules/react-hook-form": { + "version": "7.75.0", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.75.0.tgz", + "integrity": "sha512-Ovv94H+0p3sJ7B9B5QxPuCP1u8V/cHuVGyH55cSwodYDtoJwK+fqk3vjfIgSX59I2U/bU4z0nRJ9HMLpNiWEmw==", + "engines": { + "node": ">=18.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" } }, - "node_modules/react-markdown/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "node_modules/react-json-view-lite": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz", + "integrity": "sha512-tk7o7QG9oYyELWHL8xiMQ8x4WzjCzbWNyig3uexmkLb54r8jO0yH3WCWx8UZS0c49eSA4QUmG5caiRJ8fAn58g==", "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" + "engines": { + "node": ">=18" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0" } }, - "node_modules/react-markdown/node_modules/unist-util-visit": { - "version": "4.1.2", - "license": "MIT", + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-live": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/react-live/-/react-live-4.1.8.tgz", + "integrity": "sha512-B2SgNqwPuS2ekqj4lcxi5TibEcjWkdVyYykBEUBshPAPDQ527x2zPEZg560n8egNtAjUpwXFQm7pcXV65aAYmg==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "prism-react-renderer": "^2.4.0", + "sucrase": "^3.35.0", + "use-editable": "^2.3.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.12.0", + "npm": ">= 2.0.0" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" } }, - "node_modules/react-markdown/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "license": "MIT", + "node_modules/react-loadable": { + "name": "@docusaurus/react-loadable", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz", + "integrity": "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "@types/react": "*" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": "*" } }, - "node_modules/react-markdown/node_modules/vfile": { - "version": "5.3.7", - "license": "MIT", + "node_modules/react-loadable-ssr-addon-v5-slorber": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.3.tgz", + "integrity": "sha512-GXfh9VLwB5ERaCsU6RULh7tkemeX15aNh6wuMEBtfdyMa7fFG8TXrhXlx1SoEK2Ty/l6XIkzzYIQmyaWW3JgdQ==", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "@babel/runtime": "^7.10.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "react-loadable": "*", + "webpack": ">=4.41.1 || 5.x" } }, - "node_modules/react-markdown/node_modules/vfile-message": { - "version": "3.1.4", + "node_modules/react-magic-dropzone": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-magic-dropzone/-/react-magic-dropzone-1.0.1.tgz", + "integrity": "sha512-0BIROPARmXHpk4AS3eWBOsewxoM5ndk2psYP/JmbCq8tz3uR2LIV1XiroZ9PKrmDRMctpW+TvsBCtWasuS8vFA==" + }, + "node_modules/react-markdown": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.7.tgz", + "integrity": "sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==", "license": "MIT", "dependencies": { + "@types/hast": "^2.0.0", + "@types/prop-types": "^15.0.0", "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "prop-types": "^15.0.0", + "property-information": "^6.0.0", + "react-is": "^18.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^10.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.0", + "unified": "^10.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/react-modal": { - "version": "3.16.1", + "node_modules/react-markdown/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "license": "MIT", "dependencies": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" + "@types/unist": "^2" } }, - "node_modules/react-redux": { - "version": "7.2.9", + "node_modules/react-markdown/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } + "@types/unist": "^2" } }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", + "node_modules/react-markdown/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", "license": "MIT" }, - "node_modules/react-router": { - "version": "5.3.4", + "node_modules/react-markdown/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "hoist-non-react-statics": "^3.1.0", - "loose-envify": "^1.3.1", - "path-to-regexp": "^1.7.0", - "prop-types": "^15.6.2", - "react-is": "^16.6.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" - }, - "peerDependencies": { - "react": ">=15" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/react-router-config": { - "version": "5.1.1", + "node_modules/react-markdown/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.1.2" - }, - "peerDependencies": { - "react": ">=15", - "react-router": ">=5" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/react-router-dom": { - "version": "5.3.4", + "node_modules/react-markdown/node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "license": "MIT" + }, + "node_modules/react-markdown/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "loose-envify": "^1.3.1", - "prop-types": "^15.6.2", - "react-router": "5.3.4", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" }, - "peerDependencies": { - "react": ">=15" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/react-router/node_modules/path-to-regexp": { - "version": "1.8.0", + "node_modules/react-markdown/node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", "license": "MIT", "dependencies": { - "isarray": "0.0.1" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/readable-stream": { - "version": "3.6.2", + "node_modules/react-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "@types/mdast": "^3.0.0" }, - "engines": { - "node": ">= 6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/readdirp": { - "version": "3.6.0", + "node_modules/react-markdown/node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/reading-time": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz", - "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" - }, - "node_modules/rechoir": { - "version": "0.6.2", + "node_modules/react-markdown/node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/recursive-readdir": { - "version": "2.2.3", + "node_modules/react-markdown/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=6.0.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/redux": { - "version": "4.2.1", + "node_modules/react-markdown/node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.9.2" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/redux-thunk": { - "version": "2.4.2", + "node_modules/react-markdown/node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/reflect-metadata": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.14.tgz", - "integrity": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==", - "dev": true, - "peer": true - }, - "node_modules/reftools": { - "version": "1.1.9", - "license": "BSD-3-Clause", - "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", - "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "node_modules/react-markdown/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", + "node_modules/react-markdown/node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.8.4" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/regex-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", - "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==", - "dev": true, - "peer": true - }, - "node_modules/regexpu-core": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", - "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "node_modules/react-markdown/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.2.0", - "regjsgen": "^0.8.0", - "regjsparser": "^0.12.0", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/registry-auth-token": { - "version": "5.0.2", + "node_modules/react-markdown/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/registry-url": { - "version": "6.0.1", + "node_modules/react-markdown/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==" - }, - "node_modules/regjsparser": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", - "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "node_modules/react-markdown/node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "jsesc": "~3.0.2" - }, - "bin": { - "regjsparser": "bin/parser" + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } + "node_modules/react-markdown/node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/rehype-parse": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-7.0.1.tgz", - "integrity": "sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw==", - "dependencies": { - "hast-util-from-parse5": "^6.0.0", - "parse5": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/react-markdown/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/rehype-parse/node_modules/@types/hast": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.9.tgz", - "integrity": "sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==", + "node_modules/react-markdown/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/rehype-parse/node_modules/@types/parse5": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", - "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" - }, - "node_modules/rehype-parse/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/rehype-parse/node_modules/comma-separated-tokens": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", - "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/rehype-parse/node_modules/hast-util-from-parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", - "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "node_modules/react-markdown/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "@types/parse5": "^5.0.0", - "hastscript": "^6.0.0", - "property-information": "^5.0.0", - "vfile": "^4.0.0", - "vfile-location": "^3.2.0", - "web-namespaces": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/rehype-parse/node_modules/hast-util-parse-selector": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", - "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-types": "^1.0.0" } }, - "node_modules/rehype-parse/node_modules/hastscript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", - "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "node_modules/react-markdown/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^1.0.0", - "hast-util-parse-selector": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/rehype-parse/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - }, - "node_modules/rehype-parse/node_modules/property-information": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", - "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "node_modules/react-markdown/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "xtend": "^4.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/rehype-parse/node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "node_modules/react-markdown/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/react-markdown/node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/rehype-parse/node_modules/unist-util-stringify-position": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "node_modules/react-markdown/node_modules/remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.2" + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-parse/node_modules/vfile": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "node_modules/react-markdown/node_modules/remark-rehype": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", + "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^2.0.0", - "vfile-message": "^2.0.0" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-parse/node_modules/vfile-location": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", - "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "node_modules/react-markdown/node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/rehype-parse/node_modules/vfile-message": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "node_modules/react-markdown/node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/react-markdown/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-parse/node_modules/web-namespaces": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", - "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", + "node_modules/react-markdown/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw": { - "version": "6.1.1", + "node_modules/react-markdown/node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "hast-util-raw": "^7.2.0", - "unified": "^10.0.0" + "@types/unist": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/@types/hast": { - "version": "2.3.9", + "node_modules/react-markdown/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "license": "MIT", "dependencies": { - "@types/unist": "^2" + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/rehype-raw/node_modules/unified": { - "version": "10.1.2", + "node_modules/react-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "node_modules/react-markdown/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/vfile": { + "node_modules/react-markdown/node_modules/vfile": { "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -22572,8 +25313,10 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/vfile-message": { + "node_modules/react-markdown/node_modules/vfile-message": { "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -22584,307 +25327,487 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/relateurl": { - "version": "0.2.7", - "license": "MIT", - "engines": { - "node": ">= 0.10" + "node_modules/react-modal": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.3.tgz", + "integrity": "sha512-yCYRJB5YkeQDQlTt17WGAgFJ7jr2QYcWa1SHqZ3PluDmnKJ/7+tVU+E6uKyZ0nODaeEj+xCpK4LcSnKXLMC0Nw==", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19" } }, - "node_modules/remark-directive": { - "version": "3.0.0", + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "license": "MIT", "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-directive": "^3.0.0", - "micromark-extension-directive": "^3.0.0", - "unified": "^11.0.0" + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/remark-emoji": { - "version": "4.0.1", - "license": "MIT", + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-router": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", "dependencies": { - "@types/mdast": "^4.0.2", - "emoticon": "^4.0.1", - "mdast-util-find-and-replace": "^3.0.1", - "node-emoji": "^2.1.0", - "unified": "^11.0.4" + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-config": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz", + "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==", + "dependencies": { + "@babel/runtime": "^7.1.2" + }, + "peerDependencies": { + "react": ">=15", + "react-router": ">=5" + } + }, + "node_modules/react-router-dom": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.3.4", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 6" } }, - "node_modules/remark-frontmatter": { - "version": "5.0.0", - "license": "MIT", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-frontmatter": "^2.0.0", - "micromark-extension-frontmatter": "^2.0.0", - "unified": "^11.0.0" + "picomatch": "^2.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8.10.0" } }, - "node_modules/remark-gfm": { - "version": "4.0.0", - "license": "MIT", + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-gfm": "^3.0.0", - "micromark-extension-gfm": "^3.0.0", - "remark-parse": "^11.0.0", - "remark-stringify": "^11.0.0", - "unified": "^11.0.0" + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recma-build-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz", + "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-util-build-jsx": "^3.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-mdx": { - "version": "3.0.0", - "license": "MIT", + "node_modules/recma-jsx": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz", + "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==", "dependencies": { - "mdast-util-mdx": "^3.0.0", - "micromark-extension-mdxjs": "^3.0.0" + "acorn-jsx": "^5.0.0", + "estree-util-to-js": "^2.0.0", + "recma-parse": "^1.0.0", + "recma-stringify": "^1.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/remark-parse": { - "version": "11.0.0", - "license": "MIT", + "node_modules/recma-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz", + "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==", "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-from-markdown": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unified": "^11.0.0" + "@types/estree": "^1.0.0", + "esast-util-from-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype": { - "version": "10.1.0", - "license": "MIT", + "node_modules/recma-stringify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz", + "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==", "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^12.1.0", - "unified": "^10.0.0" + "@types/estree": "^1.0.0", + "estree-util-to-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/@types/hast": { - "version": "2.3.9", + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", "license": "MIT", "dependencies": { - "@types/unist": "^2" + "@babel/runtime": "^7.9.2" } }, - "node_modules/remark-rehype/node_modules/@types/mdast": { - "version": "3.0.15", + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", "license": "MIT", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.14.tgz", + "integrity": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==", + "dev": true, + "peer": true + }, + "node_modules/reftools": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/reftools/-/reftools-1.1.9.tgz", + "integrity": "sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==", + "license": "BSD-3-Clause", + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", "dependencies": { - "@types/unist": "^2" + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" } }, - "node_modules/remark-rehype/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, - "node_modules/remark-rehype/node_modules/mdast-util-to-hast": { - "version": "12.3.0", - "license": "MIT", + "node_modules/regex-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", + "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==", + "dev": true, + "peer": true + }, + "node_modules/regexpu-core": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-definitions": "^5.0.0", - "micromark-util-sanitize-uri": "^1.1.0", - "trim-lines": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=4" } }, - "node_modules/remark-rehype/node_modules/micromark-util-character": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/registry-auth-token": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.1.tgz", + "integrity": "sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q==", "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "@pnpm/npm-conf": "^3.0.2" + }, + "engines": { + "node": ">=14" } }, - "node_modules/remark-rehype/node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "rc": "1.2.8" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/remark-rehype/node_modules/micromark-util-symbol": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==" }, - "node_modules/remark-rehype/node_modules/micromark-util-types": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "node_modules/regjsparser": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.1.tgz", + "integrity": "sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==", + "dependencies": { + "jsesc": "~3.1.0" + }, + "bin": { + "regjsparser": "bin/parser" + } }, - "node_modules/remark-rehype/node_modules/unified": { - "version": "10.1.2", - "license": "MIT", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rehype-parse": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-7.0.1.tgz", + "integrity": "sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw==", "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "hast-util-from-parse5": "^6.0.0", + "parse5": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", + "node_modules/rehype-parse/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", "dependencies": { - "@types/unist": "^2.0.0" + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-position": { - "version": "4.0.4", - "license": "MIT", + "node_modules/rehype-recma": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz", + "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==", "dependencies": { - "@types/unist": "^2.0.0" + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "hast-util-to-estree": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remark-directive": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz", + "integrity": "sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-directive": "^3.0.0", + "micromark-extension-directive": "^3.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "license": "MIT", + "node_modules/remark-emoji": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-4.0.1.tgz", + "integrity": "sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==", + "dependencies": { + "@types/mdast": "^4.0.2", + "emoticon": "^4.0.1", + "mdast-util-find-and-replace": "^3.0.1", + "node-emoji": "^2.1.0", + "unified": "^11.0.4" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/remark-frontmatter": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz", + "integrity": "sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==", "dependencies": { - "@types/unist": "^2.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-frontmatter": "^2.0.0", + "micromark-extension-frontmatter": "^2.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-visit": { - "version": "4.1.2", - "license": "MIT", + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "license": "MIT", + "node_modules/remark-mdx": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz", + "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "mdast-util-mdx": "^3.0.0", + "micromark-extension-mdxjs": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/vfile": { - "version": "5.3.7", - "license": "MIT", + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/vfile-message": { - "version": "3.1.4", - "license": "MIT", + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", @@ -22893,7 +25816,8 @@ }, "node_modules/remark-stringify": { "version": "11.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-to-markdown": "^2.0.0", @@ -22906,7 +25830,8 @@ }, "node_modules/renderkid": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", @@ -22915,9 +25840,25 @@ "strip-ansi": "^6.0.1" } }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, "node_modules/renderkid/node_modules/dom-serializer": { "version": "1.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", @@ -22929,7 +25870,8 @@ }, "node_modules/renderkid/node_modules/domhandler": { "version": "4.3.1", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, @@ -22942,7 +25884,8 @@ }, "node_modules/renderkid/node_modules/domutils": { "version": "2.8.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -22954,13 +25897,16 @@ }, "node_modules/renderkid/node_modules/entities": { "version": "2.2.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/renderkid/node_modules/htmlparser2": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -22968,7 +25914,6 @@ "url": "https://github.com/sponsors/fb55" } ], - "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", @@ -22986,14 +25931,16 @@ }, "node_modules/require-directory": { "version": "2.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "engines": { "node": ">=0.10.0" } @@ -23008,30 +25955,39 @@ }, "node_modules/requires-port": { "version": "1.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" }, "node_modules/reselect": { "version": "4.1.8", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", + "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==", "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.8", - "license": "MIT", + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", "dependencies": { - "is-core-module": "^2.13.0", + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-alpn": { "version": "1.2.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" }, "node_modules/resolve-cwd": { "version": "3.0.0", @@ -23045,7 +26001,7 @@ "node": ">=8" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { + "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", @@ -23054,16 +26010,10 @@ "node": ">=8" } }, - "node_modules/resolve-from": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/resolve-pathname": { "version": "3.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" }, "node_modules/resolve-url-loader": { "version": "5.0.0", @@ -23082,17 +26032,35 @@ "node": ">=12" } }, - "node_modules/resolve-url-loader/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, - "peer": true + "peer": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, "engines": { "node": ">=10" @@ -23100,7 +26068,8 @@ }, "node_modules/responselike": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", "dependencies": { "lowercase-keys": "^3.0.0" }, @@ -23127,14 +26096,16 @@ }, "node_modules/retry": { "version": "0.13.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "engines": { "node": ">= 4" } }, "node_modules/reusify": { - "version": "1.0.4", - "license": "MIT", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -23142,7 +26113,11 @@ }, "node_modules/rimraf": { "version": "3.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "peer": true, "dependencies": { "glob": "^7.1.3" }, @@ -23154,18 +26129,79 @@ } }, "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.3.tgz", + "integrity": "sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==", + "license": "MIT", "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "hash-base": "^3.1.2", + "inherits": "^2.0.4" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/ripemd160/node_modules/hash-base": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.2.tgz", + "integrity": "sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^2.3.8", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/ripemd160/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/ripemd160/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/ripemd160/node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/ripemd160/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" } }, + "node_modules/ripemd160/node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "version": "3.30.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.30.0.tgz", + "integrity": "sha512-kQvGasUgN+AlWGliFn2POSajRQEsULVYFGTvOZmK06d7vCD+YhZztt70kGk3qaeAXeWYL5eO7zx+rAubBc55eA==", "dev": true, "peer": true, "bin": { @@ -23183,6 +26219,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz", "integrity": "sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==", + "license": "MIT", "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0", @@ -23196,6 +26233,18 @@ "node": ">=12.0.0" } }, + "node_modules/run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -23208,6 +26257,8 @@ }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "funding": [ { "type": "github", @@ -23222,22 +26273,24 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/sade": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "license": "MIT", "dependencies": { "mri": "^1.1.0" @@ -23248,6 +26301,8 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", @@ -23261,13 +26316,13 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/safe-regex-test": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", @@ -23282,15 +26337,16 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sass": { - "version": "1.83.4", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.4.tgz", - "integrity": "sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==", + "version": "1.99.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz", + "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==", "dependencies": { "chokidar": "^4.0.0", - "immutable": "^5.0.2", + "immutable": "^5.1.5", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { @@ -23304,28 +26360,28 @@ } }, "node_modules/sass-loader": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.4.tgz", - "integrity": "sha512-LavLbgbBGUt3wCiYzhuLLu65+fWXaXLmq7YxivLhEqmiupCFZ5sKUAipK3do6V80YSU0jvSxNhEdT13IXNr3rg==", + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.2.tgz", + "integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==", "dependencies": { "neo-async": "^2.6.2" }, "engines": { - "node": ">= 18.12.0" + "node": ">= 14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "@rspack/core": "0.x || 1.x", + "fibers": ">= 3.1.0", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "@rspack/core": { + "fibers": { "optional": true }, "node-sass": { @@ -23336,9 +26392,6 @@ }, "sass-embedded": { "optional": true - }, - "webpack": { - "optional": true } } }, @@ -23356,15 +26409,10 @@ "url": "https://paulmillr.com/funding/" } }, - "node_modules/sass/node_modules/immutable": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", - "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==" - }, "node_modules/sass/node_modules/readdirp": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.1.tgz", - "integrity": "sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "engines": { "node": ">= 14.18.0" }, @@ -23374,8 +26422,12 @@ } }, "node_modules/sax": { - "version": "1.3.0", - "license": "ISC" + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "engines": { + "node": ">=11.0.0" + } }, "node_modules/saxes": { "version": "5.0.1", @@ -23391,15 +26443,22 @@ } }, "node_modules/scheduler": { - "version": "0.23.0", - "license": "MIT", + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "dependencies": { "loose-envify": "^1.1.0" } }, + "node_modules/schema-dts": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.5.tgz", + "integrity": "sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg==" + }, "node_modules/schema-utils": { - "version": "4.2.0", - "license": "MIT", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", @@ -23407,46 +26466,24 @@ "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "8.12.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, "node_modules/search-insights": { "version": "2.17.3", "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", + "license": "MIT", "peer": true }, "node_modules/section-matter": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", "dependencies": { "extend-shallow": "^2.0.1", "kind-of": "^6.0.0" @@ -23457,11 +26494,15 @@ }, "node_modules/select-hose": { "version": "2.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" }, "node_modules/selfsigned": { "version": "2.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dev": true, + "peer": true, "dependencies": { "@types/node-forge": "^1.3.0", "node-forge": "^1" @@ -23472,7 +26513,8 @@ }, "node_modules/semver": { "version": "7.5.4", - "license": "ISC", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -23485,7 +26527,8 @@ }, "node_modules/semver-diff": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "dependencies": { "semver": "^7.3.5" }, @@ -23496,23 +26539,40 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/send": { - "version": "0.18.0", - "license": "MIT", + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", "mime": "1.6.0", "ms": "2.1.3", - "on-finished": "2.4.1", + "on-finished": "~2.4.1", "range-parser": "~1.2.1", - "statuses": "2.0.1" + "statuses": "~2.0.2" }, "engines": { "node": ">= 0.8.0" @@ -23520,35 +26580,42 @@ }, "node_modules/send/node_modules/debug": { "version": "2.6.9", - "license": "MIT", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "license": "MIT" + "node_modules/send/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } }, "node_modules/serialize-javascript": { "version": "6.0.2", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-handler": { - "version": "6.1.6", - "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz", - "integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==", + "version": "6.1.7", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.7.tgz", + "integrity": "sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg==", "dependencies": { "bytes": "3.0.0", "content-disposition": "0.5.2", "mime-types": "2.1.18", - "minimatch": "3.1.2", + "minimatch": "3.1.5", "path-is-inside": "1.0.2", "path-to-regexp": "3.3.0", "range-parser": "1.2.0" @@ -23573,84 +26640,85 @@ "node": ">= 0.6" } }, - "node_modules/serve-handler/node_modules/range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", - "engines": { - "node": ">= 0.6" - } + "node_modules/serve-handler/node_modules/path-to-regexp": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==" }, "node_modules/serve-index": { - "version": "1.9.1", - "license": "MIT", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz", + "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==", "dependencies": { - "accepts": "~1.3.4", + "accepts": "~1.3.8", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" }, "engines": { "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", - "license": "MIT", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "license": "MIT", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", "dependencies": { "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.6" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "license": "ISC" - }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", - "license": "MIT" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "engines": { "node": ">= 0.6" } }, "node_modules/serve-static": { - "version": "1.15.0", - "license": "MIT", + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "~0.19.1" }, "engines": { "node": ">= 0.8.0" @@ -23660,6 +26728,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -23675,27 +26744,38 @@ "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" }, "node_modules/setprototypeof": { "version": "1.2.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz", + "integrity": "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==", + "license": "(MIT AND BSD-3-Clause)", "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.0" }, "bin": { "sha.js": "bin.js" + }, + "engines": { + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/shallow-clone": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dependencies": { "kind-of": "^6.0.2" }, @@ -23705,11 +26785,13 @@ }, "node_modules/shallowequal": { "version": "1.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "node_modules/shebang-command": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -23719,21 +26801,27 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { - "version": "1.8.1", - "license": "MIT", + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/shelljs": { "version": "0.8.5", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dependencies": { "glob": "^7.0.0", "interpret": "^1.0.0", @@ -23748,6 +26836,8 @@ }, "node_modules/should": { "version": "13.2.3", + "resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz", + "integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==", "license": "MIT", "dependencies": { "should-equal": "^2.0.0", @@ -23759,6 +26849,8 @@ }, "node_modules/should-equal": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz", + "integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==", "license": "MIT", "dependencies": { "should-type": "^1.4.0" @@ -23766,6 +26858,8 @@ }, "node_modules/should-format": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz", + "integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==", "license": "MIT", "dependencies": { "should-type": "^1.3.0", @@ -23774,10 +26868,14 @@ }, "node_modules/should-type": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz", + "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==", "license": "MIT" }, "node_modules/should-type-adaptors": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz", + "integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==", "license": "MIT", "dependencies": { "should-type": "^1.3.0", @@ -23786,6 +26884,8 @@ }, "node_modules/should-util": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", + "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==", "license": "MIT" }, "node_modules/side-channel": { @@ -23807,12 +26907,12 @@ } }, "node_modules/side-channel-list": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", "dependencies": { "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" + "object-inspect": "^1.13.4" }, "engines": { "node": ">= 0.4" @@ -23858,7 +26958,8 @@ }, "node_modules/signal-exit": { "version": "3.0.7", - "license": "ISC" + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "node_modules/sirv": { "version": "2.0.4", @@ -23873,14 +26974,24 @@ "node": ">= 10" } }, + "node_modules/sirv/node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "engines": { + "node": ">=10" + } + }, "node_modules/sisteransi": { "version": "1.0.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" }, "node_modules/sitemap": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz", - "integrity": "sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.3.tgz", + "integrity": "sha512-tAjEd+wt/YwnEbfNB2ht51ybBJxbEWwe5ki/Z//Wh0rpBFTCUSj46GnxUKEWzhfuJTsee8x3lybHxFgUMig2hw==", + "license": "MIT", "dependencies": { "@types/node": "^17.0.5", "@types/sax": "^1.2.1", @@ -23898,11 +27009,13 @@ "node_modules/sitemap/node_modules/@types/node": { "version": "17.0.45", "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", - "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==" + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "license": "MIT" }, "node_modules/skin-tone": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", "dependencies": { "unicode-emoji-modifier-base": "^1.0.0" }, @@ -23912,14 +27025,16 @@ }, "node_modules/slash": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "engines": { "node": ">=8" } }, "node_modules/slugify": { - "version": "1.6.6", - "license": "MIT", + "version": "1.6.9", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.9.tgz", + "integrity": "sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==", "engines": { "node": ">=8.0.0" } @@ -23928,6 +27043,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -23935,7 +27051,8 @@ }, "node_modules/sockjs": { "version": "0.3.24", - "license": "MIT", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", @@ -23946,15 +27063,17 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz", "integrity": "sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==", + "license": "MIT", "engines": { "node": ">= 6.3.0" } }, "node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, "node_modules/source-map-js": { @@ -24002,15 +27121,25 @@ }, "node_modules/source-map-support": { "version": "0.5.21", - "license": "MIT", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/space-separated-tokens": { - "version": "2.0.2", - "license": "MIT", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24018,7 +27147,8 @@ }, "node_modules/spdy": { "version": "4.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", @@ -24032,7 +27162,8 @@ }, "node_modules/spdy-transport": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", @@ -24044,12 +27175,14 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, "node_modules/srcset": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz", "integrity": "sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -24079,21 +27212,24 @@ } }, "node_modules/statuses": { - "version": "2.0.1", - "license": "MIT", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", "engines": { "node": ">= 0.8" } }, "node_modules/std-env": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", - "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "license": "MIT" }, "node_modules/stream-browserify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "license": "MIT", "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" @@ -24103,6 +27239,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", + "license": "MIT", "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", @@ -24112,7 +27249,8 @@ }, "node_modules/string_decoder": { "version": "1.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dependencies": { "safe-buffer": "~5.2.0" } @@ -24131,33 +27269,50 @@ } }, "node_modules/string-width": { - "version": "4.2.3", - "license": "MIT", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "license": "MIT", + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "ansi-regex": "^6.2.2" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/stringify-entities": { - "version": "4.0.3", - "license": "MIT", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", "dependencies": { "character-entities-html4": "^2.0.0", "character-entities-legacy": "^3.0.0" @@ -24169,7 +27324,8 @@ }, "node_modules/stringify-object": { "version": "3.3.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", @@ -24181,18 +27337,8 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -24211,21 +27357,24 @@ }, "node_modules/strip-bom-string": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-final-newline": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "engines": { "node": ">=6" } }, "node_modules/strip-json-comments": { "version": "3.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "engines": { "node": ">=8" }, @@ -24233,17 +27382,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "dependencies": { + "style-to-object": "1.0.14" + } + }, "node_modules/style-to-object": { - "version": "0.4.4", - "license": "MIT", + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", "dependencies": { - "inline-style-parser": "0.1.1" + "inline-style-parser": "0.2.7" } }, "node_modules/stylehacks": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz", "integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==", + "license": "MIT", "dependencies": { "browserslist": "^4.23.0", "postcss-selector-parser": "^6.0.16" @@ -24256,15 +27415,16 @@ } }, "node_modules/sucrase": { - "version": "3.35.0", - "license": "MIT", + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", - "glob": "^10.3.10", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", "ts-interface-checker": "^0.1.9" }, "bin": { @@ -24277,60 +27437,27 @@ }, "node_modules/sucrase/node_modules/commander": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "engines": { "node": ">= 6" } }, - "node_modules/sucrase/node_modules/glob": { - "version": "10.3.10", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/sucrase/node_modules/minimatch": { - "version": "9.0.3", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/supports-color": { - "version": "8.1.1", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "engines": { "node": ">= 0.4" }, @@ -24341,20 +27468,22 @@ "node_modules/svg-parser": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "license": "MIT" }, "node_modules/svgo": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", - "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.3.tgz", + "integrity": "sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==", + "license": "MIT", "dependencies": { - "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.3.1", "css-what": "^6.1.0", "csso": "^5.0.5", - "picocolors": "^1.0.0" + "picocolors": "^1.0.0", + "sax": "^1.5.0" }, "bin": { "svgo": "bin/svgo" @@ -24371,27 +27500,15 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", "engines": { "node": ">= 10" } }, - "node_modules/svgo/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, "node_modules/swagger2openapi": { "version": "7.0.8", + "resolved": "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.8.tgz", + "integrity": "sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==", "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", @@ -24422,15 +27539,21 @@ "dev": true }, "node_modules/tapable": { - "version": "2.2.1", - "license": "MIT", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", "engines": { "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/terser": { - "version": "5.27.0", - "license": "BSD-2-Clause", + "version": "5.19.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", + "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", @@ -24445,14 +27568,14 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "license": "MIT", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-Eum+5ajkaOhf5KbM26osvv21kLD7BaGqQ1UA4Ami4arYwylmGUQTgHFpHDdmJod1q4QXa66p0to/FBKID+J1vA==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "schema-utils": "^4.3.0", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -24465,33 +27588,98 @@ "webpack": "^5.1.0" }, "peerDependenciesMeta": { + "@minify-html/node": { + "optional": true + }, "@swc/core": { "optional": true }, + "@swc/css": { + "optional": true + }, + "@swc/html": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "cssnano": { + "optional": true + }, + "csso": { + "optional": true + }, "esbuild": { "optional": true }, + "html-minifier-terser": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "postcss": { + "optional": true + }, "uglify-js": { "optional": true } } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "license": "MIT", + "node_modules/terser-webpack-plugin/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.47.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.47.1.tgz", + "integrity": "sha512-tPbLXTI6ohPASb/1YViL428oEHu6/qv1OxqYnfaonVCFHqx4+wCd95pHrQWsL5X4pl90CTyW9piSAsS2L0VoMw==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -24508,18 +27696,23 @@ }, "node_modules/text-table": { "version": "0.2.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "peer": true }, "node_modules/thenify": { "version": "3.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", "dependencies": { "any-promise": "^1.0.0" } }, "node_modules/thenify-all": { "version": "1.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dependencies": { "thenify": ">= 3.1.0 < 4" }, @@ -24527,6 +27720,22 @@ "node": ">=0.8" } }, + "node_modules/thingies": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.6.0.tgz", + "integrity": "sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==", + "license": "MIT", + "engines": { + "node": ">=10.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "^2" + } + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -24536,12 +27745,14 @@ }, "node_modules/thunky": { "version": "1.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" }, "node_modules/timers-browserify": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "license": "MIT", "dependencies": { "setimmediate": "^1.0.4" }, @@ -24550,12 +27761,65 @@ } }, "node_modules/tiny-invariant": { - "version": "1.3.1", - "license": "MIT" + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==" }, "node_modules/tiny-warning": { "version": "1.0.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } }, "node_modules/tmp": { "version": "0.0.33", @@ -24576,9 +27840,30 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, + "node_modules/to-buffer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.2.tgz", + "integrity": "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==", + "license": "MIT", + "dependencies": { + "isarray": "^2.0.5", + "safe-buffer": "^5.2.1", + "typed-array-buffer": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/to-buffer/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, "node_modules/to-regex-range": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { "is-number": "^7.0.0" }, @@ -24600,9 +27885,9 @@ } }, "node_modules/to-vfile/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" }, "node_modules/to-vfile/node_modules/unist-util-stringify-position": { "version": "2.0.3", @@ -24646,7 +27931,8 @@ }, "node_modules/toidentifier": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "engines": { "node": ">=0.6" } @@ -24684,8 +27970,33 @@ } }, "node_modules/tr46": { - "version": "0.0.3", - "license": "MIT" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "peer": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tree-dump": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz", + "integrity": "sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } }, "node_modules/tree-kill": { "version": "1.2.2", @@ -24699,15 +28010,17 @@ }, "node_modules/trim-lines": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/trough": { - "version": "2.1.0", - "license": "MIT", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24715,23 +28028,24 @@ }, "node_modules/ts-interface-checker": { "version": "0.1.13", - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" }, "node_modules/ts-jest": { - "version": "29.2.2", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.2.2.tgz", - "integrity": "sha512-sSW7OooaKT34AAngP6k1VS669a0HdLxkQZnlC7T76sckGCokXFnvJ3yRlQZGRTAoV5K19HfSgCiSwWOSIfcYlg==", + "version": "29.4.9", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.4.9.tgz", + "integrity": "sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ==", "dev": true, "dependencies": { - "bs-logger": "0.x", - "ejs": "^3.0.0", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", + "bs-logger": "^0.2.6", + "fast-json-stable-stringify": "^2.1.0", + "handlebars": "^4.7.9", "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "^7.5.3", - "yargs-parser": "^21.0.1" + "lodash.memoize": "^4.1.2", + "make-error": "^1.3.6", + "semver": "^7.7.4", + "type-fest": "^4.41.0", + "yargs-parser": "^21.1.1" }, "bin": { "ts-jest": "cli.js" @@ -24741,11 +28055,12 @@ }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/transform": "^29.0.0", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3 <6" + "@jest/transform": "^29.0.0 || ^30.0.0", + "@jest/types": "^29.0.0 || ^30.0.0", + "babel-jest": "^29.0.0 || ^30.0.0", + "jest": "^29.0.0 || ^30.0.0", + "jest-util": "^29.0.0 || ^30.0.0", + "typescript": ">=4.3 <7" }, "peerDependenciesMeta": { "@babel/core": { @@ -24762,9 +28077,36 @@ }, "esbuild": { "optional": true + }, + "jest-util": { + "optional": true } } }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz", + "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/type-fest": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", + "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/tsconfig-paths": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", @@ -24789,13 +28131,33 @@ } }, "node_modules/tslib": { - "version": "2.6.2", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", + "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + }, + "node_modules/tsyringe": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz", + "integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==", + "license": "MIT", + "dependencies": { + "tslib": "^1.9.3" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/tsyringe/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "license": "0BSD" }, "node_modules/tty-browserify": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", - "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", + "license": "MIT" }, "node_modules/type-detect": { "version": "4.0.8", @@ -24808,7 +28170,8 @@ }, "node_modules/type-fest": { "version": "2.19.0", - "license": "(MIT OR CC0-1.0)", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "engines": { "node": ">=12.20" }, @@ -24818,7 +28181,8 @@ }, "node_modules/type-is": { "version": "1.6.18", - "license": "MIT", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -24827,6 +28191,20 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/typed-assert": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", @@ -24836,7 +28214,8 @@ }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dependencies": { "is-typedarray": "^1.0.0" } @@ -24845,6 +28224,7 @@ "version": "5.1.6", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "devOptional": true, "peer": true, "bin": { "tsc": "bin/tsc", @@ -24854,9 +28234,23 @@ "node": ">=14.17" } }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/undici-types": { - "version": "5.26.5", - "license": "MIT" + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz", + "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==" }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.1", @@ -24868,7 +28262,8 @@ }, "node_modules/unicode-emoji-modifier-base": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", "engines": { "node": ">=4" } @@ -24886,24 +28281,25 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", - "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", "engines": { "node": ">=4" } }, "node_modules/unified": { - "version": "11.0.4", - "license": "MIT", + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", "dependencies": { "@types/unist": "^3.0.0", "bail": "^2.0.0", @@ -24920,7 +28316,8 @@ }, "node_modules/unique-string": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dependencies": { "crypto-random-string": "^4.0.0" }, @@ -24943,17 +28340,10 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-find-after/node_modules/unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/unist-util-generated": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", "license": "MIT", "funding": { "type": "opencollective", @@ -24961,11 +28351,9 @@ } }, "node_modules/unist-util-is": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -24973,7 +28361,8 @@ }, "node_modules/unist-util-position": { "version": "5.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", "dependencies": { "@types/unist": "^3.0.0" }, @@ -24984,7 +28373,8 @@ }, "node_modules/unist-util-position-from-estree": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", "dependencies": { "@types/unist": "^3.0.0" }, @@ -24993,21 +28383,10 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-remove-position": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-visit": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/unist-util-stringify-position": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", "dependencies": { "@types/unist": "^3.0.0" }, @@ -25017,8 +28396,9 @@ } }, "node_modules/unist-util-visit": { - "version": "5.0.0", - "license": "MIT", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0", @@ -25030,8 +28410,9 @@ } }, "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "license": "MIT", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0" @@ -25041,24 +28422,50 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/unist-util-visit-parents/node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit/node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/universalify": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "engines": { "node": ">= 10.0.0" } }, "node_modules/unpipe": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "engines": { "node": ">= 0.8" } }, "node_modules/update-browserslist-db": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", - "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "funding": [ { "type": "opencollective", @@ -25086,7 +28493,8 @@ }, "node_modules/update-notifier": { "version": "6.0.2", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", + "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", "dependencies": { "boxen": "^7.0.0", "chalk": "^5.0.1", @@ -25110,19 +28518,10 @@ "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, - "node_modules/update-notifier/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/update-notifier/node_modules/boxen": { "version": "7.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz", + "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==", "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^7.0.1", @@ -25142,7 +28541,8 @@ }, "node_modules/update-notifier/node_modules/camelcase": { "version": "7.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", + "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", "engines": { "node": ">=14.16" }, @@ -25151,8 +28551,9 @@ } }, "node_modules/update-notifier/node_modules/chalk": { - "version": "5.3.0", - "license": "MIT", + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, @@ -25160,41 +28561,10 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/update-notifier/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/update-notifier/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/strip-ansi": { - "version": "7.1.0", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/uri-js": { "version": "4.4.1", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dependencies": { "punycode": "^2.1.0" } @@ -25208,6 +28578,7 @@ "version": "0.11.4", "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz", "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==", + "license": "MIT", "dependencies": { "punycode": "^1.4.1", "qs": "^6.12.3" @@ -25218,7 +28589,8 @@ }, "node_modules/url-loader": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", "dependencies": { "loader-utils": "^2.0.0", "mime-types": "^2.1.27", @@ -25241,9 +28613,51 @@ } } }, + "node_modules/url-loader/node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/url-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/url-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/url-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, "node_modules/url-loader/node_modules/schema-utils": { "version": "3.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -25270,25 +28684,13 @@ "node_modules/url/node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - }, - "node_modules/url/node_modules/qs": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", - "dependencies": { - "side-channel": "^1.1.0" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "license": "MIT" }, "node_modules/use-editable": { "version": "2.3.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/use-editable/-/use-editable-2.3.3.tgz", + "integrity": "sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==", "peerDependencies": { "react": ">= 16.8.0" } @@ -25297,6 +28699,7 @@ "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", @@ -25307,35 +28710,43 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "node_modules/utila": { "version": "0.4.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" }, "node_modules/utility-types": { - "version": "3.10.0", - "license": "MIT", + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", "engines": { "node": ">= 4" } }, "node_modules/utils-merge": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "8.3.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "deprecated": "uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/uvu": { "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "license": "MIT", "dependencies": { "dequal": "^2.0.0", @@ -25352,6 +28763,8 @@ }, "node_modules/uvu/node_modules/kleur": { "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "license": "MIT", "engines": { "node": ">=6" @@ -25371,10 +28784,17 @@ "node": ">=10.12.0" } }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, "node_modules/validate.io-array": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz", - "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==" + "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==", + "license": "MIT" }, "node_modules/validate.io-function": { "version": "1.0.2", @@ -25405,21 +28825,23 @@ }, "node_modules/value-equal": { "version": "1.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" }, "node_modules/vary": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "engines": { "node": ">= 0.8" } }, "node_modules/vfile": { - "version": "6.0.1", - "license": "MIT", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", "dependencies": { "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" }, "funding": { @@ -25428,61 +28850,18 @@ } }, "node_modules/vfile-location": { - "version": "4.1.0", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location/node_modules/@types/unist": { - "version": "2.0.10", - "license": "MIT" - }, - "node_modules/vfile-location/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location/node_modules/vfile": { - "version": "5.3.7", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location/node_modules/vfile-message": { - "version": "3.1.4", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" - }, + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, "node_modules/vfile-message": { - "version": "4.0.2", - "license": "MIT", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" @@ -25493,9 +28872,9 @@ } }, "node_modules/vite": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", - "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.5.tgz", + "integrity": "sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==", "dev": true, "peer": true, "dependencies": { @@ -25551,7 +28930,8 @@ "node_modules/vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "license": "MIT" }, "node_modules/w3c-hr-time": { "version": "1.0.2", @@ -25588,15 +28968,16 @@ }, "node_modules/warning": { "version": "4.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/watchpack": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz", + "integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -25607,7 +28988,8 @@ }, "node_modules/wbuf": { "version": "1.7.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dependencies": { "minimalistic-assert": "^1.0.0" } @@ -25623,45 +29005,53 @@ } }, "node_modules/web-namespaces": { - "version": "2.0.1", - "license": "MIT", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", + "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/webidl-conversions": { - "version": "3.0.1", - "license": "BSD-2-Clause" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10.4" + } }, "node_modules/webpack": { - "version": "5.97.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", - "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "version": "5.106.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.106.2.tgz", + "integrity": "sha512-wGN3qcrBQIFmQ/c0AiOAQBvrZ5lmY8vbbMv4Mxfgzqd/B6+9pXtLo73WuS1dSGXM5QYY3hZnIbvx+K1xxe6FyA==", "dependencies": { "@types/eslint-scope": "^3.7.7", - "@types/estree": "^1.0.6", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", - "acorn": "^8.14.0", - "browserslist": "^4.24.0", + "acorn": "^8.16.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.1", - "es-module-lexer": "^1.2.1", + "enhanced-resolve": "^5.20.0", + "es-module-lexer": "^2.0.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", + "loader-runner": "^4.3.1", + "mime-db": "^1.54.0", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.17", + "watchpack": "^2.5.1", + "webpack-sources": "^3.3.4" }, "bin": { "webpack": "bin/webpack.js" @@ -25704,6 +29094,17 @@ "node": ">= 10.13.0" } }, + "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/webpack-bundle-analyzer/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -25713,31 +29114,56 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", - "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.2.tgz", + "integrity": "sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==", + "dev": true, + "peer": true, "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.3", + "memfs": "^3.4.12", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "peer": true + }, + "node_modules/webpack-dev-middleware/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.6" } }, "node_modules/webpack-dev-server": { "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", "dev": true, - "license": "MIT", "peer": true, "dependencies": { "@types/bonjour": "^3.5.9", @@ -25782,21 +29208,63 @@ "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "peer": true + }, + "node_modules/webpack-dev-server/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "dev": true, + "peer": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.16.0", + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz", + "integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==", "dev": true, - "license": "MIT", "peer": true, "engines": { "node": ">=10.0.0" @@ -25815,11 +29283,11 @@ } }, "node_modules/webpack-merge": { - "version": "5.10.0", - "license": "MIT", + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", + "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", "dependencies": { "clone-deep": "^4.0.1", - "flat": "^5.0.2", "wildcard": "^2.0.0" }, "engines": { @@ -25827,8 +29295,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.2.3", - "license": "MIT", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.4.1.tgz", + "integrity": "sha512-eACpxRN02yaawnt+uUNIF7Qje6A9zArxBbcAJjK1PK3S9Ycg5jIuJ8pW4q8EMnwNZCEGltcjkRx1QzOxOkKD8A==", "engines": { "node": ">=10.13.0" } @@ -25855,74 +29324,45 @@ } } }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, + "node_modules/webpack/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">= 0.6" } }, "node_modules/webpackbar": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz", - "integrity": "sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-7.0.0.tgz", + "integrity": "sha512-aS9soqSO2iCHgqHoCrj4LbfGQUboDCYJPSFOAchEK+9psIjNrfSWW4Y0YEz67MKURNvMmfo0ycOg9d/+OOf9/Q==", + "license": "MIT", "dependencies": { - "ansi-escapes": "^4.3.2", - "chalk": "^4.1.2", + "ansis": "^3.2.0", "consola": "^3.2.3", - "figures": "^3.2.0", - "markdown-table": "^2.0.0", "pretty-time": "^1.1.0", - "std-env": "^3.7.0", - "wrap-ansi": "^7.0.0" + "std-env": "^3.7.0" }, "engines": { "node": ">=14.21.3" }, "peerDependencies": { + "@rspack/core": "*", "webpack": "3 || 4 || 5" - } - }, - "node_modules/webpackbar/node_modules/markdown-table": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", - "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", - "dependencies": { - "repeat-string": "^1.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/webpackbar/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/websocket-driver": { "version": "0.7.4", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", @@ -25934,7 +29374,8 @@ }, "node_modules/websocket-extensions": { "version": "0.1.4", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "engines": { "node": ">=0.8.0" } @@ -25943,6 +29384,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", "dev": true, "peer": true, "dependencies": { @@ -25957,16 +29399,24 @@ "peer": true }, "node_modules/whatwg-url": { - "version": "5.0.0", - "license": "MIT", + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "peer": true, "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" } }, "node_modules/which": { "version": "2.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dependencies": { "isexe": "^2.0.0" }, @@ -25978,14 +29428,16 @@ } }, "node_modules/which-typed-array": { - "version": "1.1.18", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", - "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "for-each": "^0.3.3", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, @@ -26004,68 +29456,53 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/widest-line": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" + "node_modules/wide-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "node_modules/widest-line/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", + "node_modules/wide-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/widest-line/node_modules/strip-ansi": { - "version": "7.1.0", - "license": "MIT", + "node_modules/widest-line": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", + "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", "dependencies": { - "ansi-regex": "^6.0.1" + "string-width": "^5.0.1" }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/wildcard": { "version": "2.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true }, "node_modules/wrap-ansi": { "version": "8.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -26078,25 +29515,10 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", "engines": { "node": ">=12" }, @@ -26105,8 +29527,9 @@ } }, "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "license": "MIT", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "engines": { "node": ">=12" }, @@ -26114,30 +29537,12 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", "dependencies": { - "ansi-regex": "^6.0.1" + "ansi-regex": "^6.2.2" }, "engines": { "node": ">=12" @@ -26148,21 +29553,26 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "license": "ISC" + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/write-file-atomic": { - "version": "3.0.3", - "license": "ISC", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/ws": { - "version": "7.5.9", - "license": "MIT", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { "node": ">=8.3.0" }, @@ -26179,9 +29589,40 @@ } } }, + "node_modules/wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", + "license": "MIT", + "dependencies": { + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wsl-utils/node_modules/is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/xdg-basedir": { "version": "5.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", + "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", "engines": { "node": ">=12" }, @@ -26197,6 +29638,8 @@ }, "node_modules/xml-formatter": { "version": "2.6.1", + "resolved": "https://registry.npmjs.org/xml-formatter/-/xml-formatter-2.6.1.tgz", + "integrity": "sha512-dOiGwoqm8y22QdTNI7A+N03tyVfBlQ0/oehAzxIZtwnFAHGeSlrfjF73YQvzSsa/Kt6+YZasKsrdu6OIpuBggw==", "license": "MIT", "dependencies": { "xml-parser-xo": "^3.2.0" @@ -26209,6 +29652,7 @@ "version": "1.6.11", "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz", "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==", + "license": "MIT", "dependencies": { "sax": "^1.2.4" }, @@ -26225,6 +29669,8 @@ }, "node_modules/xml-parser-xo": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/xml-parser-xo/-/xml-parser-xo-3.2.0.tgz", + "integrity": "sha512-8LRU6cq+d7mVsoDaMhnkkt3CTtAs4153p49fRo+HIB3I1FD1o5CeXRjRH29sQevIfVJIcPjKSsPU/+Ujhq09Rg==", "license": "MIT", "engines": { "node": ">= 10" @@ -26238,25 +29684,29 @@ }, "node_modules/xtend": { "version": "4.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", - "license": "ISC", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "engines": { "node": ">=10" } }, "node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "node_modules/yaml": { "version": "1.10.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "engines": { "node": ">= 6" } @@ -26268,7 +29718,8 @@ }, "node_modules/yargs": { "version": "17.7.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -26284,14 +29735,35 @@ }, "node_modules/yargs-parser": { "version": "21.1.1", - "license": "ISC", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "engines": { "node": ">=12" } }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, "engines": { "node": ">=10" }, @@ -26310,8 +29782,9 @@ } }, "node_modules/zwitch": { - "version": "2.0.4", - "license": "MIT", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/package.json b/package.json index 0bf95b8..a9ef1b1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "cmp-catalog-api", + "name": "arubacloud-api-portal", "version": "1.26.0", "private": true, "scripts": { @@ -12,10 +12,11 @@ "serve": "docusaurus serve", "write-translations": "docusaurus write-translations", "write-heading-ids": "docusaurus write-heading-ids", - "gen-api-docs": "docusaurus gen-api-docs", - "clean-api-docs": "docusaurus clean-api-docs", - "gen-api-docs:version": "docusaurus gen-api-docs:version", - "clean-api-docs:version": "docusaurus clean-api-docs:version" + "gen-api-docs": "docusaurus gen-api-docs all", + "clean-api-docs": "docusaurus clean-api-docs all", + "gen-api-docs:version": "docusaurus gen-api-docs:version compute:1.1", + "clean-api-docs:version": "docusaurus clean-api-docs:version compute:1.1", + "postinstall": "node postinstall.js" }, "dependencies": { "@docusaurus/core": "^3.7.0", @@ -24,8 +25,8 @@ "axios": "^1.7.2", "clsx": "^2.0.0", "docusaurus-lunr-search": "^3.3.2", - "docusaurus-plugin-openapi-docs": "^4.1.0", - "docusaurus-theme-openapi-docs": "^4.1.0", + "docusaurus-plugin-openapi-docs": "4.1.0", + "docusaurus-theme-openapi-docs": "4.1.0", "dotenv": "^16.3.1", "prism-react-renderer": "^2.3.0", "react": "^18.0.0", diff --git a/postinstall.js b/postinstall.js new file mode 100644 index 0000000..a16382c --- /dev/null +++ b/postinstall.js @@ -0,0 +1,151 @@ +/** + * Postinstall script: fix docusaurus-theme-openapi-docs@4.1.0 compatibility + * with Docusaurus 3.10.x. + * + * In Docusaurus 3.10.x the internal tabs API changed: + * - `useTabs(props)` is now a context READER (throws if not inside TabsContext) + * - `useTabsContextValue(props)` is the new state-creation hook + * - `TabsProvider` must explicitly wrap children to provide context + * + * The openapi theme@4.1.0 was written against the OLD API where `useTabs(props)` + * was the state creator, so two fixes are needed in each tab component: + * 1. Replace `useTabs(props)` → `useTabsContextValue(props)` + * 2. Wrap the returned JSX in `` so TabItem children + * can read the context via `useTabs()` without throwing. + */ + +const fs = require("fs"); +const path = require("path"); + +const components = [ + "SchemaTabs", + "MimeTabs", + "OperationTabs", + "DiscriminatorTabs", + "ApiTabs", + path.join("ApiExplorer", "CodeTabs"), +]; + +// Fix 1: useTabs(props) → useTabsContextValue(props) +const OLD_HOOK = "(0, internal_1.useTabs)(props)"; +const NEW_HOOK = "(0, internal_1.useTabsContextValue)(props)"; + +// Fix 2a: inject TabsProvider wrapper at the start of TabsComponent's return. +// Standard components (SchemaTabs, MimeTabs, etc.) go directly to the return. +// CodeTabs is special: it has "const { className } = props;" before the return. +const OLD_RETURN_START = + " const tabs = (0, internal_1.useTabsContextValue)(props);\n return react_1.default.createElement(\n \"div\","; +const NEW_RETURN_START = + " const tabs = (0, internal_1.useTabsContextValue)(props);\n return react_1.default.createElement(\n internal_1.TabsProvider,\n { value: tabs },\n react_1.default.createElement(\n \"div\","; + +// CodeTabs-specific pattern (has extra "const { className } = props;" line) +const OLD_RETURN_START_CODETABS = + " const tabs = (0, internal_1.useTabsContextValue)(props);\n const { className } = props;\n return react_1.default.createElement(\n \"div\","; +const NEW_RETURN_START_CODETABS = + " const tabs = (0, internal_1.useTabsContextValue)(props);\n const { className } = props;\n return react_1.default.createElement(\n internal_1.TabsProvider,\n { value: tabs },\n react_1.default.createElement(\n \"div\","; + +// Fix 2b: close the extra TabsProvider createElement at the end of TabsComponent +const OLD_RETURN_END = + " react_1.default.createElement(TabContent, { ...props, ...tabs })\n );\n}"; +const NEW_RETURN_END = + " react_1.default.createElement(TabContent, { ...props, ...tabs })\n )\n );\n}"; + +let patchedCount = 0; + +for (const component of components) { + const filePath = path.join( + __dirname, + "node_modules", + "docusaurus-theme-openapi-docs", + "lib", + "theme", + component, + "index.js" + ); + + if (!fs.existsSync(filePath)) { + console.warn(`[postinstall] Warning: ${filePath} not found, skipping.`); + continue; + } + + let content = fs.readFileSync(filePath, "utf8"); + // Normalize to LF so patterns work on both Windows (CRLF) and Linux (LF) + content = content.replace(/\r\n/g, "\n"); + let changed = false; + + // Fix 1 + if (content.includes(OLD_HOOK)) { + content = content.replaceAll(OLD_HOOK, NEW_HOOK); + changed = true; + console.log(`[postinstall] ${component}: patched useTabs -> useTabsContextValue`); + } else if (!content.includes(NEW_HOOK)) { + console.log(`[postinstall] ${component}: useTabs fix not needed.`); + } + + // Fix 2a + if (content.includes(OLD_RETURN_START)) { + content = content.replace(OLD_RETURN_START, NEW_RETURN_START); + changed = true; + console.log(`[postinstall] ${component}: injected TabsProvider wrapper (start)`); + } else if (content.includes(OLD_RETURN_START_CODETABS)) { + content = content.replace(OLD_RETURN_START_CODETABS, NEW_RETURN_START_CODETABS); + changed = true; + console.log(`[postinstall] ${component}: injected TabsProvider wrapper (start, CodeTabs variant)`); + } else if (!content.includes(NEW_RETURN_START) && !content.includes(NEW_RETURN_START_CODETABS)) { + console.warn(`[postinstall] ${component}: could not find TabsProvider start pattern — skipping.`); + } + + // Fix 2b + if (content.includes(OLD_RETURN_END)) { + content = content.replace(OLD_RETURN_END, NEW_RETURN_END); + changed = true; + console.log(`[postinstall] ${component}: injected TabsProvider wrapper (end)`); + } else if (!content.includes(NEW_RETURN_END)) { + console.warn(`[postinstall] ${component}: could not find TabsProvider end pattern — skipping.`); + } + + if (changed) { + fs.writeFileSync(filePath, content, "utf8"); + patchedCount++; + } else { + console.log(`[postinstall] ${component}: already patched or not affected.`); + } +} + +console.log(`[postinstall] Done. Patched ${patchedCount} component(s).`); + +// Fix 3: @docusaurus/plugin-content-docs@3.10.x introduced a strict check that +// throws when multiple sidebar items share the same translation key. The sidebar +// in this project has unavoidable duplicates (e.g. "Backup" in both the Storage +// and Container API generated sidebars). Downgrade the error to a warning so +// the `it` locale build does not fail while preserving all other behaviour. +const translationsFilePath = path.join( + __dirname, + "node_modules", + "@docusaurus", + "plugin-content-docs", + "lib", + "translations.js" +); + +if (fs.existsSync(translationsFilePath)) { + let tContent = fs.readFileSync(translationsFilePath, "utf8"); + tContent = tContent.replace(/\r\n/g, "\n"); + + const OLD_THROW = + " if (duplicates.length > 0) {\n throw new Error(`Multiple docs sidebar items produce the same translation key."; + const NEW_THROW = + " if (duplicates.length > 0) {\n console.warn(`[postinstall] Multiple docs sidebar items produce the same translation key."; + + if (tContent.includes(OLD_THROW)) { + tContent = tContent.replace(OLD_THROW, NEW_THROW); + fs.writeFileSync(translationsFilePath, tContent, "utf8"); + console.log("[postinstall] translations.js: downgraded duplicate-sidebar-key error to warning."); + } else if (tContent.includes(NEW_THROW)) { + console.log("[postinstall] translations.js: already patched."); + } else { + console.warn("[postinstall] translations.js: could not find duplicate-key throw pattern — skipping."); + } +} else { + console.warn(`[postinstall] Warning: ${translationsFilePath} not found, skipping.`); +} diff --git a/sidebars.js b/sidebars.js index f1b7ded..5f079cd 100644 --- a/sidebars.js +++ b/sidebars.js @@ -87,8 +87,6 @@ const sidebars = { description: 'Computing', // The external URL }, { - 'v1.0': require("./docs/documents/compute/sidebar.ts") - , 'v1.1': require("./docs/documents/compute/1.1/sidebar.ts") } ]